Product

How Jentic Works

From API assessment to production deployment in four simple steps.

Product Overview

PLATFORM

Jentic OneSelf-hosted, open-source control plane between your agents and any APIAPI DirectoryBrowse 10,000+ APIs ready for AI agent integrationAPI ScorecardAssess your APIs for AI-readiness with automated scoringAgentic SandboxSafely simulate AI agents with your production APIsJenticSign in to the Jentic web app

CAPABILITIES

IntegrationConnect AI agents to your existing systemsWorkflowsDiscover and capture successful agent workflowsGovernanceDefine, observe, and enforce AI policies

TOOLS

Arazzo UIVisualize Arazzo workflows as interactive documentationArazzo EditorBuild and edit multi-step API workflows visually
Pricing
Developers

GET STARTED

DocumentationGuides and API referenceQuickstartGet up and running in minutes

COMMUNITY

GitHubOpen source projects and examples
Resources
BlogLatest articles and insightsPress & MediaBrand assets and press contactOpen StandardsBuilt on open specs. Never locked in.NewsletterAPIs, AI agents, mixed with architecture and strategy.
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Install Jentic OneBook a Demo
How Jentic WorksJentic OneAPI DirectoryAPI ScorecardAgentic SandboxJenticIntegrationWorkflowsGovernanceArazzo UIArazzo Editor
Pricing
DocumentationQuickstartGitHub
BlogPress & MediaOpen StandardsNewsletter
About UsCareersContact
Request a demoInstall Jentic One
Jentic
For Enterprises
  • Product Overview
  • Agentic Sandbox
  • Book a Demo
For Developers
  • Jentic One
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
ISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
APIs / Marketing / Bluetick.io API
Bluetick.io API logo

Bluetick.io API

★ Only Publicly Available OpenAPI DocumentMarketingMarketing AutomationapiKey11 EndpointsREST

For Agents

Add leads to automated email follow-up sequences in Bluetick.io and read engagement metrics without using the dashboard.

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 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.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the Bluetick.io API to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the Bluetick.io 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.

1

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 | sh
2

Step 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 instance

Jentic 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.

Capabilities

What an agent can do with Bluetick.io 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

Read per-sequence metrics on contact-level progress and action-level send/reply counts

Look up a contact by email address or contact ID

Use Cases

Patterns agents use Bluetick.io 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.

Key Endpoints

11 endpoints — jentic publishes the only available openapi specification for bluetick.

METHOD

PATH

DESCRIPTION

POST

/v1/accounts/{accountId}/contacts

Create a new contact

POST

/v1/accounts/{accountId}/sequences/{id}/contacts

Enrol a contact in a sequence

GET

/v1/accounts/{accountId}/contacts/{emailAddressOrContactId}

Look up a contact by email or ID

PUT

/v1/accounts/{accountId}/contacts/{emailAddressOrContactId}

Update a contact's profile fields

DELETE

/v1/accounts/{accountId}/contacts/{emailAddressOrContactId}

Remove a contact from Bluetick

GET

/v1/accounts/{accountId}/sequences

List sequences in the account

GET

/v1/accounts/{accountId}/sequences/{id}/metrics/actions

Read per-step send and reply metrics

POST

/v1/accounts/{accountId}/contacts

Create a new contact

POST

/v1/accounts/{accountId}/sequences/{id}/contacts

Enrol a contact in a sequence

GET

/v1/accounts/{accountId}/contacts/{emailAddressOrContactId}

Look up a contact by email or ID

PUT

/v1/accounts/{accountId}/contacts/{emailAddressOrContactId}

Update a contact's profile fields

DELETE

/v1/accounts/{accountId}/contacts/{emailAddressOrContactId}

Remove a contact from Bluetick

GET

/v1/accounts/{accountId}/sequences

List sequences in the account

GET

/v1/accounts/{accountId}/sequences/{id}/metrics/actions

Read per-step send and reply metrics

Why Jentic?

Three things that make agents converge on Jentic-routed access.

Credential management

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

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

Time to first call

Direct integration: half a day to map account, contact, and sequence resources. Through Jentic: under 15 minutes — search, load, execute.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

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

Complementary

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

Complementary

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

FAQs

Specific to using Bluetick.io 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.

GET STARTED

Start building with Bluetick.io API

Explore with Jentic
View OpenAPI Document