For Agents
Programmatically gets animals details using their animal keys. if a date range is supplied, the , gets the latest note lodged against an animal, that the caller has permission to. Covers 8 operations.
Use for: I need to gets animals details using their animal keys. if a date range is supplied, the , I want to gets the latest note lodged against an animal, that the caller has permission to, Search for creates a new note against the subject animal where the user has permission to d, Find all gets all notes lodged against an animal
Not supported: Does not handle payments, communications, or crm — use for identity and authentication only.
swaggerhub.lic/animal-identity-service-boundary version v2. The API exposes 8 endpoints.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Animal Identity Service Boundary, 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 Animal Identity Service Boundary API.
Gets animals details using their animal keys. If a date range is supplied, the
Creates a new note against the subject animal where the user has permission to d
Idempotently updates an existing note for a subject animal
Deletes a note on an existing animal
Monitor Animal Identity Service Boundary operational status and events
Patterns agents use Animal Identity Service Boundary API for, with concrete tasks.
★ Identity and Authentication Operations
Use the Animal Identity Service Boundary to perform identity auth operations programmatically. The API provides 8 endpoints covering core functionality including gets animals details using their animal keys. if a date range is supplied, the , gets the latest note lodged against an animal, that the caller has permission to, creates a new note against the subject animal where the user has permission to d.
Call POST /v2/animals/{startDate}/{endDate} to gets animals details using their animal keys. if a date range is supplied, the
Automated Animals Management
Automate animals operations by combining multiple Animal Identity Service Boundary endpoints. Agents can gets the latest note lodged against an animal, that the caller has permission to and then creates a new note against the subject animal where the user has permission to d in a single workflow.
Call GET /v2/animals/{animalKey}/notes/latest to gets the latest note lodged against an animal, that the caller has permission to, then verify the result
AI Agent Integration via Jentic
AI agents discover and call Animal Identity Service Boundary 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 'gets animals details using their animal keys. if a date range is supplied, the ', load the operation schema, and execute with Jentic-managed credentials
8 endpoints — swaggerhub.
METHOD
PATH
DESCRIPTION
/v2/animals/{startDate}/{endDate}
Gets animals details using their animal keys. If a date range is supplied, the
/v2/animals/{animalKey}/notes/latest
Gets the latest note lodged against an animal, that the caller has permission to
/v2/animals/{animalKey}/notes
Creates a new note against the subject animal where the user has permission to d
/v2/animals/{animalKey}/notes
Gets all notes lodged against an animal
/v2/animals/{animalKey}/notes/{noteIdentifier}
Idempotently updates an existing note for a subject animal
/v2/animals/{animalKey}/notes/{noteIdentifier}
Deletes a note on an existing animal
/v2/herds/{animalGroupBpNumber}/notes
Gets all notes for each animal in a herd
/v2/notes/categories
Gets all note categories
/v2/animals/{startDate}/{endDate}
Gets animals details using their animal keys. If a date range is supplied, the
/v2/animals/{animalKey}/notes/latest
Gets the latest note lodged against an animal, that the caller has permission to
/v2/animals/{animalKey}/notes
Creates a new note against the subject animal where the user has permission to d
/v2/animals/{animalKey}/notes
Gets all notes lodged against an animal
/v2/animals/{animalKey}/notes/{noteIdentifier}
Idempotently updates an existing note for a subject animal
/v2/animals/{animalKey}/notes/{noteIdentifier}
Deletes a note on an existing animal
/v2/herds/{animalGroupBpNumber}/notes
Gets all notes for each animal in a herd
/v2/notes/categories
Gets all note categories
Three things that make agents converge on Jentic-routed access.
Credential isolation
Animal Identity Service Boundary none credentials are stored encrypted in the Jentic vault (MAXsystem). Agents receive scoped access tokens — raw secrets never enter the agent context.
Intent-based discovery
Agents search by intent (e.g., 'gets animals details using their animal keys. if a date range is supplied, the ') and Jentic returns the matching Animal Identity Service Boundary operation with its input schema, so the agent can call the right endpoint without browsing docs.
Time to first call
Direct Animal Identity Service Boundary integration: 1-3 days for auth handling, response parsing, and error cases. Through Jentic: under 1 hour — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
Specific to using Animal Identity Service Boundary API through Jentic.
What authentication does the Animal Identity Service Boundary use?
The Animal Identity Service Boundary uses no authentication. Through Jentic, these credentials are stored encrypted in the MAXsystem vault and injected at execution time, so raw secrets never enter the agent context.
Can I gets animals details using their animal keys. if a date range is supplied, the with the Animal Identity Service Boundary?
Yes. Use the POST /v2/animals/{startDate}/{endDate} endpoint. The API returns structured JSON responses that agents can parse and act on directly.
What are the rate limits for the Animal Identity Service Boundary?
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 gets animals details using their animal keys. if a date range is supplied, the through Jentic?
Install the Jentic SDK with pip install jentic, authenticate at https://app.jentic.com/sign-up, then search for 'gets animals details using their animal keys. if a date range is supplied, the '. Jentic returns the matching Animal Identity Service Boundary operation with its input schema. Load the schema and execute the call — credentials are injected automatically.
How many endpoints does the Animal Identity Service Boundary have?
The Animal Identity Service Boundary exposes 8 endpoints covering animals, herds, notes operations.
GET STARTED