For Agents
Add leads to automated email follow-up sequences in Bluetick.io and read engagement metrics without using the dashboard.
Get started with Bluetick.io API in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"add a contact to a Bluetick sequence"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with Bluetick.io API API.
Add a new contact to a Bluetick account by email and metadata
Enrol an existing contact in a follow-up sequence
Update a contact's profile fields including their primary email address
Remove a contact from the system to stop further follow-ups
List the sequences configured under an account
GET STARTED
Use for: Add a new lead to a Bluetick sequence, Find a Bluetick contact by email address, Pull metrics for a Bluetick sequence, Update a contact's primary email in Bluetick
Not supported: Does not author email content, send transactional or marketing broadcasts, or score leads — use for managing contacts and enrolling them in pre-built Bluetick follow-up sequences only.
Jentic publishes the only available OpenAPI document for Bluetick.io API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for Bluetick.io API, keeping it validated and agent-ready. Bluetick.io is an automated email follow-up tool that moves leads through a sales funnel by triggering personalised follow-up emails until a prospect replies. The API exposes accounts, contacts, and sequences, letting integrators add contacts to a sequence, manage contact records, and read per-sequence metrics on send volume and reply rates. Authentication uses an API key issued from the Bluetick dashboard.
Read per-sequence metrics on contact-level progress and action-level send/reply counts
Look up a contact by email address or contact ID
Patterns agents use Bluetick.io API API for, with concrete tasks.
★ CRM-triggered follow-up enrolment
Enrol new leads in a Bluetick follow-up sequence automatically when they enter the CRM. POST /v1/accounts/{accountId}/contacts creates the contact, then POST /v1/accounts/{accountId}/sequences/{id}/contacts adds them to the chosen sequence. Bluetick handles the staged email sends and stops as soon as the lead replies. Suitable for SDR pipelines, founder-led outbound, and event lead follow-up.
Call POST /v1/accounts/{accountId}/contacts with the lead's email and name, then POST /v1/accounts/{accountId}/sequences/{id}/contacts to enrol them in the sequence.
Sequence performance reporting
Pull per-sequence metrics for sales reporting dashboards. GET /v1/accounts/{accountId}/sequences/{id}/metrics/contacts returns contact-level progress (where each lead is in the sequence), and GET .../metrics/actions returns action-level send and reply counts. Useful for measuring step-by-step drop-off and identifying high-performing follow-up templates.
Call GET /v1/accounts/{accountId}/sequences/{id}/metrics/actions and return the send count and reply count for each step.
Contact list hygiene
Keep the Bluetick contact list clean by updating primary email addresses when leads change jobs, removing stale records, and re-keying contacts that bounced. PUT /v1/accounts/{accountId}/contacts/{emailAddressOrContactId} updates a contact, PUT .../emailaddresses/primary swaps which email is primary, and DELETE removes the contact entirely.
Call PUT /v1/accounts/{accountId}/contacts/{contactId}/emailaddresses/primary with the new email to swap which address Bluetick uses for follow-ups.
Reply detection and re-routing
When Bluetick stops a sequence because a lead replied, follow up downstream by reading the sequence's contact-level metrics and routing replies into the CRM as a hot lead. The action-level metrics endpoint surfaces reply counts, and the contact-level endpoint shows which contacts are in 'replied' state versus still being followed up.
Pull GET /v1/accounts/{accountId}/sequences/{id}/metrics/contacts and identify contacts whose state indicates they have replied.
AI agent SDR copilot
Let an AI agent enrol leads, surface sequence performance, and clean the contact list on behalf of a sales rep. The agent searches Jentic for the right Bluetick operation by intent, loads the schema, and executes with the API key held in the Jentic vault. Suitable for Slack-based SDR copilots and outbound campaign automations driven by an LLM.
Search Jentic for 'add a contact to a Bluetick sequence', load the schema, and execute it with the lead's email and the target sequence ID.
11 endpoints — jentic publishes the only available openapi specification for bluetick.
METHOD
PATH
DESCRIPTION
/v1/accounts/{accountId}/contacts
Create a new contact
/v1/accounts/{accountId}/sequences/{id}/contacts
Enrol a contact in a sequence
/v1/accounts/{accountId}/contacts/{emailAddressOrContactId}
Look up a contact by email or ID
/v1/accounts/{accountId}/contacts/{emailAddressOrContactId}
Update a contact's profile fields
/v1/accounts/{accountId}/contacts/{emailAddressOrContactId}
Remove a contact from Bluetick
/v1/accounts/{accountId}/sequences
List sequences in the account
/v1/accounts/{accountId}/sequences/{id}/metrics/actions
Read per-step send and reply metrics
/v1/accounts/{accountId}/contacts
Create a new contact
/v1/accounts/{accountId}/sequences/{id}/contacts
Enrol a contact in a sequence
/v1/accounts/{accountId}/contacts/{emailAddressOrContactId}
Look up a contact by email or ID
/v1/accounts/{accountId}/contacts/{emailAddressOrContactId}
Update a contact's profile fields
/v1/accounts/{accountId}/contacts/{emailAddressOrContactId}
Remove a contact from Bluetick
Three things that make agents converge on Jentic-routed access.
Credential isolation
Bluetick API keys are stored encrypted in the Jentic vault. Agents receive scoped execution access — the raw key never enters agent context, and per-environment keys are isolated under separate credentials.
Intent-based discovery
Agents search by intent (e.g. 'add a contact to a sequence' or 'pull sequence metrics') and Jentic returns the matching Bluetick operation across the 11 endpoints with its input schema, so the agent can call the right path without browsing the docs.
Time to first call
Direct integration: half a day to map account, contact, and sequence resources. Through Jentic: under 15 minutes — search, load, execute.
Alternatives and complements available in the Jentic catalogue.
Blueshift
Multi-channel customer engagement platform — broader scope than Bluetick's email-only follow-up
Choose Blueshift when the use case spans email, push, SMS, and segmentation; choose Bluetick for sales-focused email follow-up only
Bloomerang
Donor CRM — pair when nonprofit prospect outreach should run through Bluetick sequences
Use when an agent must add a Bloomerang prospect to a Bluetick follow-up sequence and stop on reply
BlueInk
E-signature — pair to send a contract once a Bluetick sequence triggers a positive reply
Use when an agent should hand off a Bluetick-warmed lead to a Blueink contract send
Specific to using Bluetick.io API API through Jentic.
Why is there no official OpenAPI spec for Bluetick.io API?
Bluetick.io publishes a developer documentation page but does not distribute a maintained OpenAPI 3 file. Jentic generates and maintains this spec so AI agents and developers can call Bluetick via standard tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the Bluetick.io API use?
Bluetick.io uses an API key issued from the Bluetick dashboard, passed as an Authorization header. Through Jentic, the API key is stored in the encrypted vault and injected at execution, so the agent never handles the raw key.
Can I add a contact to a sequence through this API?
Yes. First create the contact with POST /v1/accounts/{accountId}/contacts (or look up an existing contact via GET .../contacts/{emailAddressOrContactId}), then enrol them with POST /v1/accounts/{accountId}/sequences/{id}/contacts. Bluetick will start the configured follow-up cadence on the next scheduled send.
What are the rate limits for the Bluetick.io API?
Bluetick applies per-account rate limits not enumerated in the spec. Practical guidance is to keep request volume modest (under roughly 60 requests per minute per key); HTTP 429 responses include backoff hints. Higher limits are available on request for enterprise plans.
How do I read sequence performance metrics through Jentic?
Search Jentic for 'pull Bluetick sequence metrics', load the schema for GET /v1/accounts/{accountId}/sequences/{id}/metrics/actions, and execute it with the accountId and sequence id. Install with pip install jentic and call await client.execute(ExecutionRequest(...)).
Does Bluetick stop sending when a lead replies?
Yes. Reply detection is a core Bluetick feature — once a contact replies to any message in the sequence, subsequent steps are skipped and their state is recorded in the contact-level metrics. The action and contact metrics endpoints expose this state for downstream automation.
Is the Bluetick.io API free?
Bluetick.io operates on a paid subscription model. API access is included with paid plans, with limits scaling by tier. A trial is typically available; check the Bluetick.io pricing page for current details.
/v1/accounts/{accountId}/sequences
List sequences in the account
/v1/accounts/{accountId}/sequences/{id}/metrics/actions
Read per-step send and reply metrics