Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / Education / CoreCampus SIS Integration API
CoreCampus SIS Integration API logo

CoreCampus SIS Integration API

★ Only Publicly Available OpenAPI DocumentEducationStudent ManagementapiKey7 EndpointsREST

For Agents

Sync student records, enrollments, courses and grades from CoreCampus SIS into LMS, reporting or analytics systems through a small set of REST endpoints.

Use for: Create a new student record in CoreCampus from the admissions feed, Update a student's email address in CoreCampus after a name change, List all enrollments for the current term to build a course roster, Retrieve the course catalogue from CoreCampus for a term

Not supported: Does not handle financial aid, billing, or learning content delivery — use for student, enrollment, course catalogue and grade record sync only.

Jentic publishes the only available OpenAPI specification for CoreCampus SIS Integration API, keeping it validated and agent-ready. CoreCampus (Campus Cafe) is a higher-education Student Information System and the integration API exposes seven endpoints across students, enrollments, courses and grades. Operations cover listing and creating students, getting and updating individual student records, and listing enrollments, courses and grades for downstream reporting or LMS sync. Authentication is via an API key, and the API is intended for institution-side integrations rather than end-user portals.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the CoreCampus SIS Integration API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the CoreCampus SIS Integration API, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with CoreCampus SIS Integration API.

Create a student record in CoreCampus from an external admissions system

Update a student's profile fields when registrar information changes

List enrollments to feed an LMS course roster or attendance system

Pull the current course catalogue from CoreCampus for downstream display

Retrieve grades for end-of-term reporting or transcript generation

Look up a single student record by student ID for audit or support workflows

Use Cases

Patterns agents use CoreCampus SIS Integration API for, with concrete tasks.

★ Admissions to SIS Sync

Admissions platforms can push accepted applicants into CoreCampus by calling POST /students with the student profile. The endpoint creates the SIS record that downstream enrollment, course assignment and grading workflows depend on. PUT /students/{studentId} keeps profile changes in sync as the student progresses.

POST /students with the applicant's name, date of birth, email and program ID, then store the returned studentId on the admissions record.

LMS Roster Population

Learning management systems can populate course rosters from CoreCampus by calling GET /enrollments and GET /courses, then mapping students to course sections. This avoids manual roster uploads and keeps the LMS in step with registrar changes throughout the term.

GET /enrollments for term '2026-Fall', join with GET /courses, and for each course produce a roster CSV of studentId-to-courseId pairs.

End-of-Term Grade Reporting

Registrars can pull final grades for transcript generation or accreditation reporting via GET /grades. Combined with GET /students for student demographic data, this supports cohort-level outcome reporting without exporting CSVs from the SIS UI.

GET /grades filtered to term '2026-Spring', join each grade with GET /students/{studentId}, and emit a transcript-ready CSV per cohort.

AI Student Support Agent

An admin-side AI agent supporting registrar staff can answer 'what are this student's grades?' or 'create a new transfer student' by calling CoreCampus through Jentic. The agent searches by intent, loads the operation schema, and executes against the right /students or /grades endpoint while Jentic injects the API key.

Use Jentic to call GET /students/{studentId} for the queried student, then GET /grades for the same student, and summarise their current term performance.

Key Endpoints

7 endpoints — jentic publishes the only available openapi specification for corecampus sis integration api, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

GET

/students

List students

POST

/students

Create a student

GET

/students/{studentId}

Get a student by ID

PUT

/students/{studentId}

Update a student

GET

/enrollments

List enrollments

GET

/courses

List courses

GET

/grades

List grades

GET

/students

List students

POST

/students

Create a student

GET

/students/{studentId}

Get a student by ID

PUT

/students/{studentId}

Update a student

GET

/enrollments

List enrollments

GET

/courses

List courses

GET

/grades

List grades

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

Credential isolation

The CoreCampus API key sits in the Jentic credential vault. Agents creating students, listing enrollments or pulling grades through Jentic never see the key directly; Jentic injects it into outbound requests at execution time, and per-institution keys stay isolated.

Intent-based discovery

Intent-based discovery

Agents search Jentic with intents like 'create CoreCampus student' or 'list CoreCampus enrollments' and Jentic returns the matching /students, /enrollments, /courses or /grades operation along with its parameter schema.

Time to first call

Time to first call

Direct integration: 1-2 days to wire up student create/update, enrollment pulls and grade exports plus error handling. Through Jentic: under 30 minutes from signup to first student created.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

PowerSchool SIS API

→

K-12 focused SIS alternative with broader feature coverage and district-level scale

Choose PowerSchool when the institution is K-12 or a district rather than a single higher-education campus on Campus Cafe.

Complementary

Schoology API

→

LMS that consumes SIS rosters and grades for online course delivery

Pair Schoology with CoreCampus when the institution wants the LMS roster auto-populated from SIS enrollments.

Complementary

Clever API

→

Identity and rostering bridge between SIS data and learning applications

Use Clever alongside CoreCampus when the institution distributes SIS rosters into many third-party learning apps via SSO.

Complementary

Moodle API

→

Open-source LMS that can ingest CoreCampus enrollments and post back grades

Choose Moodle when the institution runs an open-source LMS and needs to populate course rosters from CoreCampus enrollments.

FAQs

Specific to using CoreCampus SIS Integration API through Jentic.

Why is there no official OpenAPI spec for CoreCampus SIS Integration API?

CoreCampus does not publish an OpenAPI specification at this URL. Jentic generates and maintains this spec so that AI agents and developers can call CoreCampus SIS Integration API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.

What authentication does the CoreCampus SIS Integration API use?

The API uses an API key. Through Jentic the API key sits in the credential vault and is attached to outbound CoreCampus requests at execution time, so the secret never enters agent context.

Can I create a new student record with the CoreCampus SIS Integration API?

Yes. POST /students accepts the student profile fields (name, contact info, program references) and returns the new studentId. Use PUT /students/{studentId} to keep that record in sync as registrar data changes.

How do I build a course roster from CoreCampus?

Call GET /enrollments to get the student-to-course mapping for the term, then GET /courses to enrich each enrollment with course metadata, and GET /students/{studentId} to attach student details for the roster.

What rate limits apply to the CoreCampus SIS Integration API?

The OpenAPI spec does not declare formal rate limits. Treat enrollments and grades pulls as bulk reads and run them on a schedule rather than continuously polling, with backoff on HTTP 429 responses.

How do I list students through Jentic with the CoreCampus SIS Integration API?

Run pip install jentic, search Jentic with 'list CoreCampus students', load the operation schema for GET /students and execute it; Jentic injects the API key from the vault on the request.

GET STARTED

Start building with CoreCampus SIS Integration API

Explore with Jentic
View OpenAPI Document