Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Common Platform API Crime Court List Publisher, 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://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | shStep 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 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 Common Platform API Crime Court List Publisher API.
Publish court list
Get court list publish statuses
Cleanup old publish status records and blob files
GET STARTED
For Agents
Programmatically publish court list, publish sjp court list to cath. Covers 6 operations.
Use for: I need to publish court list, I want to publish sjp court list to cath, Search for court list publish statuses, Find all cleanup old publish status records and blob files
Not supported: Does not handle payments, communications, or crm - use for developer tools only.
API for court list publishing service. The API exposes 6 endpoints.
Download court list (e.g. PDF)
Monitor Common Platform API Crime Court List Publisher operational status and events
Patterns agents use Common Platform API Crime Court List Publisher API for, with concrete tasks.
★ Developer Tools Operations
Use the Common Platform API Crime Court List Publisher to perform developer tools operations programmatically. The API provides 6 endpoints covering core functionality including publish court list, publish sjp court list to cath, get court list publish statuses.
Call POST /api/court-list-publish/publish to publish court list
Automated court-list-publish Management
Automate court-list-publish operations by combining multiple Common Platform API Crime Court List Publisher endpoints. Agents can publish sjp court list to cath and then get court list publish statuses in a single workflow.
Call POST /api/court-list-publish/sjp/publishCourtList to publish sjp court list to cath, then verify the result
AI Agent Integration via Jentic
AI agents discover and call Common Platform API Crime Court List Publisher 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 none tokens manually.
Search Jentic for 'publish court list', load the operation schema, and execute with Jentic-managed credentials
6 endpoints — api for court list publishing service.
METHOD
PATH
DESCRIPTION
/api/court-list-publish/publish
Publish court list
/api/court-list-publish/sjp/publishCourtList
Publish SJP court list to CaTH
/api/court-list-publish/publish-status
Get court list publish statuses
/api/court-list-publish/publish-status-cleanup
Cleanup old publish status records and blob files
/api/court-list-publish/download
Download court list (e.g. PDF)
/api/files/download/{fileId}
Download file by ID
/api/court-list-publish/publish
Publish court list
/api/court-list-publish/sjp/publishCourtList
Publish SJP court list to CaTH
/api/court-list-publish/publish-status
Get court list publish statuses
/api/court-list-publish/publish-status-cleanup
Cleanup old publish status records and blob files
/api/court-list-publish/download
Download court list (e.g. PDF)
Three things that make agents converge on Jentic-routed access.
Credential isolation
This Court List Publisher declares no credential, so there is nothing to store. If your deployment later requires one, your own Jentic One instance stores it encrypted and injects it at execution time so it never enters the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'publish a court list' or 'check publish status', and Jentic returns the matching Court List Publisher operation with its input schema so the agent calls the right endpoint without browsing the reference docs.
Time to first call
Alternatives and complements available in the Jentic catalogue.
Github
Alternative developer tools API
Choose Github when you need a different approach to developer tools operations
Specific to using Common Platform API Crime Court List Publisher API through Jentic.
What authentication does the Common Platform API Crime Court List Publisher use?
The Common Platform API Crime Court List Publisher uses no authentication. 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 publish court list with the Common Platform API Crime Court List Publisher?
Yes. Use the POST /api/court-list-publish/publish endpoint. The API returns structured JSON responses that agents can parse and act on directly.
What are the rate limits for the Common Platform API Crime Court List Publisher?
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 publish court list through Jentic?
Install the Jentic SDK with pip install jentic, authenticate through Jentic One, the self-hosted execution layer, then search for 'publish court list'. Jentic returns the matching Common Platform API Crime Court List Publisher operation with its input schema. Load the schema and execute the call - credentials are injected automatically.
How many endpoints does the Common Platform API Crime Court List Publisher have?
The Common Platform API Crime Court List Publisher exposes 6 endpoints covering court-list-publish, files operations.
Can I limit what my agent is allowed to do with the Common Platform API Crime Court List Publisher?
Yes. Because you run Jentic One yourself, your own rules decide which of this API's operations the agent may call, and scoping here is operations-only. You can allow read actions such as getting publish statuses (GET /api/court-list-publish/publish-status) or downloading a file by ID (GET /api/files/download/{fileId}) while withholding write actions such as publishing a court list (POST /api/court-list-publish/publish) or publishing an SJP court list to CaTH. The agent can only invoke the operations you have granted, so publishing stays off until you explicitly add it.
/api/files/download/{fileId}
Download file by ID