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 / ActiveTrail API
ActiveTrail API logo

ActiveTrail API

★ Only Publicly Available OpenAPI DocumentMarketingEmail MarketingapiKey20 EndpointsREST

For Agents

Send email and SMS campaigns, manage contact lists, and trigger marketing automations through ActiveTrail's API.

Use for: I need to add a new subscriber to a group, Send an email campaign to a specific group, Trigger an automation when a customer signs up, Bulk import a CSV of contacts into ActiveTrail

Not supported: Does not handle deliverability infrastructure, push notifications, or paid advertising — use for ActiveTrail email and SMS campaigns, contact lists, and automation triggers only.

Jentic publishes the only available OpenAPI specification for ActiveTrail API, keeping it validated and agent-ready. ActiveTrail is an email marketing and automation platform with endpoints for contacts, groups, email campaigns, SMS campaigns, and automations. The spec covers 20 operations under five tags — Contacts, Groups, Campaigns, Automations, and SMS — with the API key passed in the Authorization header. The base URL points at ActiveTrail's MyMarketing platform.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the ActiveTrail API to your agent

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

Manage subscribers and bulk-import contacts via /contacts and /contacts/ImportContactsBulk

Organise audiences into groups and add or remove members through /groups and /groups/{groupId}/members

Send and schedule email campaigns using /campaigns and /campaigns/{campaignId}/send

Trigger SMS campaigns through the /smscampaign endpoint

Fire marketing automations on contact events via /automations/{automationId}/trigger

Look up and update single contacts by email at /contacts/{email}

Use Cases

Patterns agents use ActiveTrail API for, with concrete tasks.

★ Newsletter subscriber sync

Marketers sync website signups into ActiveTrail to drive newsletter sends. An agent can POST a new contact to /contacts when a form is submitted, attach them to a group via /groups/{groupId}/members, and confirm subscription status. The bulk-import endpoint /contacts/ImportContactsBulk handles larger CSV uploads from partner lists.

POST a new contact to /contacts with email and first_name, then add them to group 12 via /groups/12/members

Campaign scheduling

Email marketing teams schedule weekly newsletters and promotional sends. An agent can create a campaign at /campaigns, set its target group, and trigger send through /campaigns/{campaignId}/send. Pair this with an automation trigger so abandoned-cart or onboarding flows fire on contact events without a marketer manually clicking send.

Create a campaign for group 7 at /campaigns and trigger send via /campaigns/{campaignId}/send

SMS notification flow

Retailers and event organisers send time-sensitive SMS to customers. An agent can post to /smscampaign with the audience, message body, and send time. Combined with an automation trigger, the agent can also fire an SMS when a customer enters a workflow stage.

POST to /smscampaign with group_id, message body, and a scheduled send time for a flash-sale alert

AI agent integration

Marketing teams building agent assistants expose ActiveTrail through Jentic alongside CRM and analytics APIs. Through Jentic, the agent searches by intent, e.g. 'send an ActiveTrail campaign', and the API key stays in the Jentic vault.

Search Jentic for 'add a contact to ActiveTrail and send a welcome campaign', load both schemas, and execute the chain

Key Endpoints

20 endpoints — jentic publishes the only available openapi specification for activetrail api, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

POST

/contacts

Add a contact

GET

/contacts/{email}

Look up a contact by email

POST

/contacts/ImportContactsBulk

Bulk import contacts

GET

/groups

List groups

POST

/groups/{groupId}/members

Add member to group

POST

/campaigns/{campaignId}/send

Send a campaign

POST

/smscampaign

Send an SMS campaign

POST

/automations/{automationId}/trigger

Trigger an automation

POST

/contacts

Add a contact

GET

/contacts/{email}

Look up a contact by email

POST

/contacts/ImportContactsBulk

Bulk import contacts

GET

/groups

List groups

POST

/groups/{groupId}/members

Add member to group

POST

/campaigns/{campaignId}/send

Send a campaign

POST

/smscampaign

Send an SMS campaign

POST

/automations/{automationId}/trigger

Trigger an automation

Why Jentic?

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

Credential management

Credential isolation

ActiveTrail API keys are stored encrypted in the Jentic vault. Agents receive scoped execution handles, so the Authorization header value never enters the agent's context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent, e.g. 'send an ActiveTrail campaign' or 'add a contact', and Jentic returns the matching operation with its input schema.

Time to first call

Time to first call

Direct ActiveTrail integration: 1-2 days for auth, list management, and campaign trigger flow. Through Jentic: under 1 hour.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Alternative

Mailchimp API

→

Larger global email marketing platform with broader template and analytics tooling.

Choose Mailchimp when the customer needs a wider integration ecosystem or richer reporting than ActiveTrail provides.

Alternative

Klaviyo API

→

E-commerce-focused email and SMS marketing with deep store integration.

Pick Klaviyo for Shopify or e-commerce-heavy use cases where product-event triggers matter more.

Alternative

Constant Contact API

→

Long-standing email marketing platform popular with small businesses.

Use Constant Contact when the customer already has a long-running list there and event-marketing features matter.

FAQs

Specific to using ActiveTrail API through Jentic.

Why is there no official OpenAPI spec for ActiveTrail API?

ActiveTrail does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call ActiveTrail API via structured 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 ActiveTrail API use?

ActiveTrail uses an API key passed in the Authorization header. You generate the key in your ActiveTrail account settings. Through Jentic, the API key is stored encrypted in the Jentic vault and the agent receives a scoped execution handle, never the raw key.

Can I send email and SMS campaigns with the ActiveTrail API?

Yes. Email campaigns are created at /campaigns and triggered by POST /campaigns/{campaignId}/send. SMS campaigns go through /smscampaign with the audience and message body. Marketing automations can be triggered on demand via /automations/{automationId}/trigger.

What are the rate limits for the ActiveTrail API?

The OpenAPI spec does not declare explicit rate limits, so check ActiveTrail's developer documentation for the current ceiling. Bulk loads should go through /contacts/ImportContactsBulk rather than thousands of single-contact POSTs.

How do I add a contact and send a campaign through Jentic?

Run pip install jentic, search Jentic for 'add an ActiveTrail contact', load the POST /contacts schema, then chain a search for 'send an ActiveTrail campaign' and load /campaigns/{campaignId}/send. Jentic handles the Authorization header from the vault.

Does the ActiveTrail API support contact lookup by email?

Yes. GET /contacts/{email} returns the contact record for a given email address — useful for checking whether someone is already subscribed before adding them or for fetching their group memberships.

GET STARTED

Start building with ActiveTrail API

Explore with Jentic
View OpenAPI Document