For Agents
Programmatically list activestudents, count activestudents. Covers 64 operations with apiKey authentication.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the UCR SIS Data 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.
Step 1: Jentic One Host machine
# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fucr.edu%2Fucr-edu" | shStep 2: Agent machine
# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Fucr.edu%2Fucr-edu" | sh
jentic register # connects your agent to your Jentic One instanceJentic 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.
What an agent can do with UCR SIS Data API.
List ActiveStudents
Count ActiveStudents
Get ActiveStudent by ID
Query and filter UCR SIS Data API records by parameters
GET STARTED
Use for: I need to activestudents, I want to count activestudents, Search for activestudent by id, Find all current filters for activestudent
Not supported: Does not handle payments, communications, or crm - use for education only.
University of California Riverside Student Information Systems Data API. Provides access to student, academic, and institutional data through the Ethos platform. The API exposes 64 endpoints secured with apiKey authentication.
Monitor UCR SIS Data API operational status and events
Patterns agents use UCR SIS Data API for, with concrete tasks.
★ Education Operations
Use the UCR SIS Data API to perform education operations programmatically. The API provides 64 endpoints covering core functionality including list activestudents, count activestudents, get activestudent by id.
Call GET /api/sis-data-api/v1/ethos/active-student/list to list activestudents
Automated AcademicCatalog Management
Automate academiccatalog operations by combining multiple UCR SIS Data API endpoints. Agents can count activestudents and then get activestudent by id in a single workflow.
Call GET /api/sis-data-api/v1/ethos/active-student/count to count activestudents, then verify the result
AI Agent Integration via Jentic
AI agents discover and call UCR SIS Data API endpoints through Jentic without managing credentials directly. An agent searches for the required operation by intent, receives the matching endpoint schema, and executes the call with Jentic-managed authentication. This eliminates the need to read API documentation or handle apiKey tokens manually.
Search Jentic for 'list activestudents', load the operation schema, and execute with Jentic-managed credentials
64 endpoints — university of california riverside student information systems data api.
METHOD
PATH
DESCRIPTION
/api/sis-data-api/v1/ethos/active-student/list
List ActiveStudents
/api/sis-data-api/v1/ethos/active-student/count
Count ActiveStudents
/api/sis-data-api/v1/ethos/active-student/{id}
Get ActiveStudent by ID
/api/sis-data-api/v1/ethos/active-student/current-filters
Get current filters for ActiveStudent
/api/sis-data-api/v1/ethos/persons/list
List Persons
/api/sis-data-api/v1/ethos/persons/select-list
Get Person Select List
/api/sis-data-api/v1/ethos/persons/{id}
Get Person by ID
/api/sis-data-api/v1/ethos/persons/net-id-or-sid
Get Person by NetID or SID
/api/sis-data-api/v1/ethos/active-student/list
List ActiveStudents
/api/sis-data-api/v1/ethos/active-student/count
Count ActiveStudents
/api/sis-data-api/v1/ethos/active-student/{id}
Get ActiveStudent by ID
/api/sis-data-api/v1/ethos/active-student/current-filters
Get current filters for ActiveStudent
/api/sis-data-api/v1/ethos/persons/list
List Persons
What agents get from Jentic-routed access to this vendor.
Setup
Wiring the UCR SIS Data API by hand means sending an X-API-Key header on every call, pointing at the UCR gateway host, and matching each Ethos student and person operation to its request shape yourself. Through Jentic you install once, import the UCR SIS Data API from the API Directory, store the API key once, and your agent calls it.
Permission scoping
The UCR SIS Data API exposes read operations over students and persons, so scope your agent to the ones it needs, such as listing active students or reading a person record. You choose the operations it may call, so it is limited to the queries you enable and nothing more.
Credential isolation
Your UCR SIS API key is stored once, encrypted, by your own Jentic One instance and injected at execution time. It never enters the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'list active students' or 'look up a person by net id', and Jentic returns the matching UCR SIS Data API operation with its input schema so the agent calls the right endpoint without browsing the reference docs.
Alternatives and complements available in the Jentic catalogue.
Stripe
Complementary API for broader integration workflows
Use alongside UCR SIS Data API for multi-service workflows
Specific to using UCR SIS Data API through Jentic.
What authentication does the UCR SIS Data API use?
The UCR SIS Data API uses an API key passed in the `X-API-Key` header. Through Jentic, these credentials are stored encrypted in your Jentic One instance and injected at execution time, so raw secrets never enter the agent context.
Can I list activestudents with the UCR SIS Data API?
Yes. Use the GET /api/sis-data-api/v1/ethos/active-student/list endpoint. The API returns structured JSON responses that agents can parse and act on directly.
What are the rate limits for the UCR SIS Data API?
Rate limits are not specified in the OpenAPI spec. Check the vendor documentation for current limits. Through Jentic, rate limiting is handled automatically with retry logic built into the execution layer.
How do I list activestudents through Jentic?
Install the Jentic SDK with pip install jentic, authenticate through Jentic One, the self-hosted execution layer, then search for 'list activestudents'. Jentic returns the matching UCR SIS Data API operation with its input schema. Load the schema and execute the call - credentials are injected automatically.
How many endpoints does the UCR SIS Data API have?
The UCR SIS Data API exposes 64 endpoints covering academiccatalog, academiccredential, academicdiscipline operations.
/api/sis-data-api/v1/ethos/persons/select-list
Get Person Select List
/api/sis-data-api/v1/ethos/persons/{id}
Get Person by ID
/api/sis-data-api/v1/ethos/persons/net-id-or-sid
Get Person by NetID or SID