For Agents
Programmatically get roles, create user. Covers 134 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 SpotDraft 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%2Fspotdraft.com%2Fspotdraft" | 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%2Fspotdraft.com%2Fspotdraft" | 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 SpotDraft API.
Get Roles
Create User
Update User roles
Deactivate a User
GET STARTED
Use for: I need to roles, I want to user, Search for user list, Find all user roles
Not supported: Does not handle payments, communications, or crm - use for ai and machine learning only.
SpotDraft Public API API Reference The SpotDraft API is organized around [REST](http://en.wikipedia.org/wiki/Representational_State_Transfer). Our API has predictable resource-oriented URLs, accepts [form-encoded](<https://en.wikipedia.org/wiki/POST_(HTTP)#Use_for_submitting_web_forms>) request bodies, returns [JSON-encoded](http://www.json.org/) responses, and uses standard HTTP response codes, a. The API exposes 134 endpoints secured with apiKey authentication.
Monitor SpotDraft API operational status and events
Patterns agents use SpotDraft API for, with concrete tasks.
★ AI and Machine Learning Operations
Use the SpotDraft API to perform ai ml operations programmatically. The API provides 134 endpoints covering core functionality including get roles, create user, get user list.
Call GET /v1/public/auth/roles to get roles
Automated V2.1 Contract APIs Management
Automate v2.1 contract apis operations by combining multiple SpotDraft API endpoints. Agents can create user and then get user list in a single workflow.
Call POST /v1/public/auth/users to create user, then verify the result
AI Agent Integration via Jentic
AI agents discover and call SpotDraft 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 'get roles', load the operation schema, and execute with Jentic-managed credentials
134 endpoints — spotdraft public api api reference the spotdraft api is organized around [rest](http://en.
METHOD
PATH
DESCRIPTION
/v1/public/auth/roles
Get Roles
/v1/public/auth/users
Create User
/v1/public/auth/users
Get User List
/v1/public/auth/users/{user_id}
Update User roles
/v1/public/auth/users/{user_id}
Deactivate a User
/v1/public/contracts
Create Contract
/v1/public/contracts
Get Contract List
/v1/public/contracts/by_external_metadata/{external_metadata_id}
Get Contract by External Metadata ID
/v1/public/auth/roles
Get Roles
/v1/public/auth/users
Create User
/v1/public/auth/users
Get User List
/v1/public/auth/users/{user_id}
Update User roles
/v1/public/auth/users/{user_id}
Deactivate a User
What agents get from Jentic-routed access to this vendor.
Setup
Wiring the SpotDraft API by hand means provisioning its API key, attaching it to every request, and pointing calls at the api.spotdraft.com/api host yourself. Through Jentic you install once, import the SpotDraft API from the API Directory, store the API key once, and your agent calls it.
Permission scoping
SpotDraft puts the user id in the URL path (/v1/public/auth/users/{user_id}), so a rule can pin your agent to one user record. You choose the operations it may call, so destructive ones like deleting a user are not included unless you add them.
Credential isolation
Your SpotDraft 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 roles' or 'create a contract', and Jentic returns the matching SpotDraft 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.
Specific to using SpotDraft API through Jentic.
What authentication does the SpotDraft API use?
The SpotDraft API uses an API key passed in the `Authorization` 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 get roles with the SpotDraft API?
Yes. Use the GET /v1/public/auth/roles endpoint. The API returns structured JSON responses that agents can parse and act on directly.
What are the rate limits for the SpotDraft 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 get roles through Jentic?
Install the Jentic SDK with pip install jentic, authenticate through Jentic One, the self-hosted execution layer, then search for 'get roles'. Jentic returns the matching SpotDraft API operation with its input schema. Load the schema and execute the call - credentials are injected automatically.
How many endpoints does the SpotDraft API have?
The SpotDraft API exposes 134 endpoints covering v2.1 contract apis, v2 contract apis, v2.1 counterparty apis operations.
/v1/public/contracts
Create Contract
/v1/public/contracts
Get Contract List
/v1/public/contracts/by_external_metadata/{external_metadata_id}
Get Contract by External Metadata ID