Install Jentic One Beta
Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Sendiio 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%2Fsendiio.com%2Fsendiio" | 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%2Fsendiio.com%2Fsendiio" | 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 Sendiio API.
Check credentials
Subscribe to list (JSON)
Unsubscribe email
Get email list
Monitor Sendiio API operational status and events
GET STARTED
Patterns agents use Sendiio API for, with concrete tasks.
★ Communications Operations
Use the Sendiio API to perform communications operations programmatically. The API provides 22 endpoints covering core functionality including check credentials, subscribe to list (json), subscribe to list (redirect).
Call POST /auth/check to check credentials
Automated Authentication Management
Automate authentication operations by combining multiple Sendiio API endpoints. Agents can subscribe to list (json) and then subscribe to list (redirect) in a single workflow.
Call POST /lists/subscribe/json to subscribe to list (json), then verify the result
AI Agent Integration via Jentic
AI agents discover and call Sendiio 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 'check credentials', load the operation schema, and execute with Jentic-managed credentials
22 endpoints — sendiio is an email and sms marketing platform.
METHOD
PATH
DESCRIPTION
/auth/check
Check credentials
/lists/subscribe/json
Subscribe to list (JSON)
/lists/subscribe
Subscribe to list (redirect)
/lists/{encryptedId}/unsubscribe
Unsubscribe email
/lists/phone/{encryptedId}/unsubscribe
Unsubscribe phone
/lists/email/{encryptedId}
Get email list
/lists/phone/{encryptedId}
Get phone list
/lists/email
Get all email lists
/auth/check
Check credentials
/lists/subscribe/json
Subscribe to list (JSON)
/lists/subscribe
Subscribe to list (redirect)
/lists/{encryptedId}/unsubscribe
Unsubscribe email
/lists/phone/{encryptedId}/unsubscribe
Unsubscribe phone
/lists/email/{encryptedId}
Get email list
/lists/phone/{encryptedId}
Get phone list
/lists/email
Get all email lists
What agents get from Jentic-routed access to this vendor.
Setup
Wiring the Sendiio API by hand means setting up its dual header auth, sending both the token and secret headers on every request against sendiio.com/api/v1, and handling status codes yourself. Through Jentic you install once, import the Sendiio API from the API Directory, store the token and secret once, and your agent calls it.
Permission scoping
The Sendiio API puts the list id in the URL path (/lists/email/{encryptedId} and /lists/phone/{encryptedId}), so a rule can pin your agent to one list. You choose the operations it may call, so ones like unsubscribing a contact are not included unless you add them.
Credential isolation
Your Sendiio token and secret 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 'subscribe a contact to an email list', and Jentic returns the matching Sendiio 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 Sendiio API through Jentic.
What authentication does the Sendiio API use?
The Sendiio API uses an API key passed in the `token` 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 check credentials with the Sendiio API?
Yes. Use the POST /auth/check endpoint. The API returns structured JSON responses that agents can parse and act on directly.
What are the rate limits for the Sendiio 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 check credentials through Jentic?
Install the Jentic SDK with pip install jentic, authenticate through Jentic One, the self-hosted execution layer, then search for 'check credentials'. Jentic returns the matching Sendiio API operation with its input schema. Load the schema and execute the call - credentials are injected automatically.
How many endpoints does the Sendiio API have?
The Sendiio API exposes 22 endpoints covering authentication, fields, forms operations.
Can I limit what my agent is allowed to do with the Sendiio API?
Yes. Because you run Jentic One yourself, your own rules decide which Sendiio operations the agent may call, so you can allow it to subscribe a contact to a list while withholding operations like unsubscribing an email or phone number. The Sendiio API carries the list id in the URL path, as in /lists/email/{encryptedId} and /lists/phone/{encryptedId}, so a rule can pin the agent to one specific list. Your token and secret are held by your own Jentic One instance and injected only for the calls you have permitted.
For Agents
Programmatically check credentials, subscribe to list (json). Covers 22 operations with apiKey authentication.
Use for: I need to check credentials, I want to subscribe to list (json), Search for subscribe to list (redirect), Find all unsubscribe email
Not supported: Does not handle payments, crm, or developer tools - use for communications only.
Sendiio is an email and SMS marketing platform. The API provides endpoints for managing lists, forms, fields, sequences, webhooks, and authentication. The API exposes 22 endpoints secured with apiKey authentication.