For Agents
Programmatically get account information, create a webhook subscription. Covers 103 operations with apiKey, basic authentication.
Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Sarbacane 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://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 Sarbacane API.
Get account information
Create a webhook subscription
Retrieve all webhook subscriptions
List all contact lists
GET STARTED
Use for: I need to account information, I want to a webhook subscription, Search for all webhook subscriptions, Find all a specific webhook
Not supported: Does not handle payments, communications, or crm — use for marketing only.
Sarbacane is a solution for managing, creating and sending email and SMS campaigns, as well as setting up intelligent, automated marketing workflows. The API exposes 103 endpoints secured with apiKey, basic authentication.
Edit a contact list
Patterns agents use Sarbacane API for, with concrete tasks.
★ Marketing Operations
Use the Sarbacane API to perform marketing operations programmatically. The API provides 103 endpoints covering core functionality including get account information, create a webhook subscription, retrieve all webhook subscriptions.
Call GET /info to get account information
Automated Authentication Management
Automate authentication operations by combining multiple Sarbacane API endpoints. Agents can create a webhook subscription and then retrieve all webhook subscriptions in a single workflow.
Call POST /webhooks to create a webhook subscription, then verify the result
AI Agent Integration via Jentic
AI agents discover and call Sarbacane 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, basic tokens manually.
Search Jentic for 'get account information', load the operation schema, and execute with Jentic-managed credentials
103 endpoints — sarbacane is a solution for managing, creating and sending email and sms campaigns, as well as setting up intelligent, automated marketing workflows.
METHOD
PATH
DESCRIPTION
/info
Get account information
/webhooks
Create a webhook subscription
/webhooks
Retrieve all webhook subscriptions
/webhooks/{webhookId}
Retrieve a specific webhook
/lists
Create a new contact list
/lists
List all contact lists
/lists/{listId}
Edit a contact list
/lists/{listId}
Delete a contact list
/info
Get account information
/webhooks
Create a webhook subscription
/webhooks
Retrieve all webhook subscriptions
/webhooks/{webhookId}
Retrieve a specific webhook
/lists
Create a new contact list
Three things that make agents converge on Jentic-routed access.
Credential isolation
Sarbacane API apiKey, basic 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., 'get account information') and Jentic returns the matching Sarbacane API operation with its input schema, so the agent can call the right endpoint without browsing docs.
Time to first call
Direct Sarbacane 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.
Specific to using Sarbacane API through Jentic.
What authentication does the Sarbacane API use?
The Sarbacane API uses apiKey, basic 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 get account information with the Sarbacane API?
Yes. Use the GET /info endpoint. The API returns structured JSON responses that agents can parse and act on directly.
What are the rate limits for the Sarbacane 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 account information through Jentic?
Install the Jentic SDK with pip install jentic, authenticate at https://app.jentic.com/sign-up, then search for 'get account information'. Jentic returns the matching Sarbacane API operation with its input schema. Load the schema and execute the call — credentials are injected automatically.
How many endpoints does the Sarbacane API have?
The Sarbacane API exposes 103 endpoints covering authentication, contacts, custom fields operations.
/lists
List all contact lists
/lists/{listId}
Edit a contact list
/lists/{listId}
Delete a contact list