For Agents
Programmatically list available segments, get segment metrics. Covers 38 operations with apiKey authentication.
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Tradable Bits 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.
# On the machine that will host your Jentic One instance:
curl -fsSL https://raw.githubusercontent.com/jentic/jentic-one/main/tools/install.sh | sh# 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 Tradable Bits API API.
List available segments
Get segment metrics
Create fan record
Search fan records
Update fan
GET STARTED
Use for: I need to available segments, I want to segment metrics, Search for fans in a segment, Find all fan record
Not supported: Does not handle payments, communications, or crm — use for marketing only.
Fan engagement and CRM platform API. Manage fans, segments, tickets, performances, streams, and more. The API exposes 38 endpoints secured with apiKey authentication.
Patterns agents use Tradable Bits API API for, with concrete tasks.
★ Marketing Operations
Use the Tradable Bits API to perform marketing operations programmatically. The API provides 38 endpoints covering core functionality including list available segments, get segment metrics, get fans in a segment.
Call GET /v1/segments to list available segments
Automated Apps Management
Automate apps operations by combining multiple Tradable Bits API endpoints. Agents can get segment metrics and then get fans in a segment in a single workflow.
Call GET /v1/segments/{segment_type}/{segment_id}/status to get segment metrics, then verify the result
AI Agent Integration via Jentic
AI agents discover and call Tradable Bits 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 available segments', load the operation schema, and execute with Jentic-managed credentials
38 endpoints — fan engagement and crm platform api.
METHOD
PATH
DESCRIPTION
/v1/segments
List available segments
/v1/segments/{segment_type}/{segment_id}/status
Get segment metrics
/v1/segments/{segment_type}/{segment_id}
Get fans in a segment
/v1/crm/fans
Create fan record
/v1/crm/fans
Search fan records
/v1/crm/fans/{fan_id}
Update fan
/v1/crm/fans/{fan_id}
Get specific fan
/v1/crm/fans/{fan_id}
Delete fan
/v1/segments
List available segments
/v1/segments/{segment_type}/{segment_id}/status
Get segment metrics
/v1/segments/{segment_type}/{segment_id}
Get fans in a segment
/v1/crm/fans
Create fan record
/v1/crm/fans
Search fan records
Three things that make agents converge on Jentic-routed access.
Credential isolation
Tradable Bits API apiKey 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., 'list available segments') and Jentic returns the matching Tradable Bits API operation with its input schema, so the agent can call the right endpoint without browsing docs.
Time to first call
Direct Tradable Bits API 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.
Mailchimp
Alternative marketing API
Choose Mailchimp when you need a different approach to marketing operations
Hubspot
Alternative marketing API
Choose Hubspot when you need a different approach to marketing operations
Specific to using Tradable Bits API API through Jentic.
What authentication does the Tradable Bits API use?
The Tradable Bits API uses an API key passed in the `api_key` query. 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 list available segments with the Tradable Bits API?
Yes. Use the GET /v1/segments endpoint. The API returns structured JSON responses that agents can parse and act on directly.
What are the rate limits for the Tradable Bits 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 available segments through Jentic?
Install the Jentic SDK with pip install jentic, authenticate at https://app.jentic.com/sign-up, then search for 'list available segments'. Jentic returns the matching Tradable Bits API operation with its input schema. Load the schema and execute the call — credentials are injected automatically.
How many endpoints does the Tradable Bits API have?
The Tradable Bits API exposes 38 endpoints covering apps, crm, entertainment operations.
/v1/crm/fans/{fan_id}
Update fan
/v1/crm/fans/{fan_id}
Get specific fan
/v1/crm/fans/{fan_id}
Delete fan