For Agents
Programmatically get account information, create a webhook subscription. Covers 103 operations with apiKey, basic authentication.
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.
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://jentic.com/install.sh?src=apis&api=%2Fapis%2Fsarbacane.com%2Fsarbacane" | 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%2Fsarbacane.com%2Fsarbacane" | 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
Edit a contact list
GET STARTED
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
/lists
List all contact lists
/lists/{listId}
Edit a contact list
/lists/{listId}
Delete a contact list
What agents get from Jentic-routed access to this vendor.
Setup
Wiring the Sarbacane API by hand means choosing between its basic auth and its accountId plus apiKey header scheme, then managing lists, webhooks, and their ids across calls yourself. Through Jentic you install once, import the Sarbacane API from the API Directory, store the credentials once, and your agent calls it.
Permission scoping
Sarbacane puts the list id in the URL path (/lists/{listId}), so a rule can pin your agent to one list. You choose the operations it may call, so a destructive one like deleting a list is not included unless you add it.
Credential isolation
Your Sarbacane credentials are stored once, encrypted, by your own Jentic One instance and injected at execution time. They never enter the agent's prompt, logs, or context.
Intent-based discovery
Agents search Jentic by intent such as 'get account information' or 'create a contact list', and Jentic returns the matching Sarbacane 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 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 your Jentic One instance 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 through Jentic One, the self-hosted execution layer, 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.
Can I limit what my agent is allowed to do with the Sarbacane API?
Yes. Jentic One is self-hosted by you, so your own rules decide which Sarbacane operations and credentials the agent may use. Because Sarbacane puts the list id in the URL path, such as /lists/{listId}, a rule can pin your agent to a single contact list. You also choose which operations are exposed, so a destructive call like DELETE /lists/{listId} stays out of reach unless you explicitly add it.