Want a free personalized recommendation for your software stack?Get yours
That Marketing Buddy
Home/API/Sequenzy
Sequenzy

Sequenzy API

Yes. Sequenzy publishes a public REST API with api-key auth. See docs.sequenzy.com for pricing details.

Auth: api-keyWebhooks: availableMCP also available
Public REST API documentedAgent-readiness 8/10
Data from Buddy's database, auto-rechecked weekly

What is the Sequenzy API?

Sequenzy has a documented public REST API at api.sequenzy.com/api/v1, authenticated with an API key. The docs at docs.sequenzy.com publish an llms.txt index, so an agent can discover the surface on its own.

Webhooks are first-class: create, test, replay and inspect deliveries for outbound events. The two things missing for a perfect score are a published OpenAPI spec and an official REST SDK, so today you write plain HTTP calls, or lean on the MCP, which covers most of the same ground.

For the broader picture: Sequenzy review, full pricing breakdown, .

HOOK IT TO YOUR STACK

Real Sequenzy API calls you'll write

sequenzy-apirest
#List your subscribers
GET/api/v1/subscribers?limit=50
200 OK · subscribers
Returned50 of 4,812
Fieldsemail, status, lists, tags
AuthBearer seq_user_…
sequenzy-apirest
#Send a transactional email from a template
POST/api/v1/transactional/send
202 Accepted · queued
Templatepassword-reset
Touser@acme.com
Message idmsg_9f2a
Track delivery via outbound webhooks.
sequenzy-apirest
#Trigger an event to start an automation
POST/api/v1/subscribers/events/trigger
202 Accepted · event recorded
Eventtrial_started
Subscriberuser@acme.com
Sequences entered1
TMB SCORE FOR SequenzyAuth: api-keyAgent fit: 8/10
Read review →

Endpoints illustrative. Confirm exact paths against the live API docs before integrating.

Pricing, limits, and integration

Both the REST API and the MCP server are part of the Sequenzy platform rather than a separate product, and Sequenzy leads with a free plan, so programmatic and agent access is reachable without an enterprise contract. Paid pricing scales by volume from a $19 Scale tier up to a custom Enterprise plan (1.2M+ emails).

Authentication is the same API key for both paths: generate it under Settings, API Keys, pass it as a Bearer-style key to the REST API, or set it as SEQUENZY_API_KEY for the @sequenzy/mcp server. The MCP server uses stdio transport, so it runs locally alongside the client rather than as a hosted OAuth endpoint.

Operational limits are lightly documented: rate-limit thresholds are not published, so build in backoff. There are framework guides for Node.js (Express, Next.js), Bun and SMTP, plus outbound webhooks, but no full set of standalone language SDKs, so outside the Node ecosystem you integrate against the REST API directly. The MCP tools carry readOnly/destructive/openWorld annotations, which is a genuine plus for safe agent use.

How much does the Sequenzy API actually cost?

Verify on docs

Sequenzy publishes an API, but per-tier gating wasn't extracted automatically.

  • Most likely scenario: API access is either included in all paid plans, or it's gated to higher tiers and we need to verify on the live docs page.
  • Until verified, treat the question "which plan unlocks the API" as open. Don't budget on the assumption it's free with the cheapest paid plan.

API at a glance

Auth method
api-key
SDK languages
OpenAPI spec
Webhooks
Full webhook management through both the API and the MCP: create, update, delete, test, list deliveries, and replay. Wire events into n8n, Slack, or your own endpoint.
Structured outputs
yes

Webhooks: Full webhook management through both the API and the MCP: create, update, delete, test, list deliveries, and replay. Wire events into n8n, Slack, or your own endpoint.

Which AI clients can read Sequenzy data?

Not every AI assistant supports MCP natively. Here's the per-client picture for Sequenzy specifically.

ClientSupportNotes
Claude (Desktop/Web)Native MCPAdd the @sequenzy/mcp server to your Claude Desktop config with SEQUENZY_API_KEY.
Claude CodeNative MCPRuns the @sequenzy/mcp stdio server; full 113-tool access.
CodexNative MCPSupported MCP client per Sequenzy docs.
CursorNative MCPAdd the stdio MCP server with your API key.
WindsurfNative MCPListed as a supported MCP client.

Sequenzy also has an MCP server

If you're wiring Sequenzy into Claude / Cursor / Codex, the MCP server is usually less code than the REST API.

See Sequenzy MCP page

What you can build with the Sequenzy API

Three personas, three different shapes of build. Pick the row that matches how you actually ship.

SOLO DEV / FOUNDER

Glue Sequenzy into your daily workflow

  • Pull a digest of campaign performance into your morning Slack
  • Trigger a one-off backfill when something looks off
  • Pipe data into your own SQLite for ad-hoc queries
Effort: A weekend, one Node or Python script
AGENCY / CONSULTANT

Sell Sequenzy reporting at scale

  • White-label Sequenzy data into client-branded dashboards
  • Run scheduled multi-account reports without logging into the Sequenzy UI
  • Cross-reference with the rest of the client's stack (CRM, analytics, ad spend)
Effort: 1-2 weeks, hits multi-tenant auth quickly
IN-HOUSE ENGINEER

Production pipelines for Sequenzy

  • Real-time sync into your warehouse via webhooks
  • Custom alerts the dashboard's built-in alerting can't express
  • Backfill + idempotency handling for Sequenzy data older than the dashboard exposes
Effort: Multi-week project, expect rate-limit tuning

Quickstart template

# Starter template — endpoint paths and SDK package names come from
# the Sequenzy API docs: https://docs.sequenzy.com

curl -X GET "https://api.sequenzy.com/<your-endpoint>" \
  -H "Authorization: Bearer $YOUR_API_KEY" \
  -H "Accept: application/json" | jq .

Template only. Endpoint paths, exact base URL, and auth header format come from docs.sequenzy.com.

Limits and gotchas

  • No OpenAPI spec — you write typed clients by hand or use a third-party generator on the docs HTML.
  • Webhooks available — react to Sequenzy events in real time instead of polling.
  • No official SDK detected. Plan on hitting the API directly with your HTTP client of choice.
  • Rate limits: always read the docs page before scaling — the published limit is usually lower than the practical one and overages can be expensive.
  • Structured JSON outputs — agent-friendly, no scraping required.
8/10

Agent-readiness verdict

Solid, well-documented API with webhooks and API-key auth. No OpenAPI spec or official SDK yet, so expect hand-rolled HTTP unless you drive it through the MCP.

Strong agent fit, top tier for an email tool. Sequenzy ships an official MCP server exposing 120 tools on its own domain, offered both as a hosted Streamable HTTP endpoint (api.sequenzy.com/v1/mcp) and a local stdio server (npx @sequenzy/mcp). Every tool carries structured outputs (outputSchema plus readOnlyHint, destructiveHint and openWorldHint annotations), so an agent gets typed, safe results instead of raw JSON. Webhooks (create, test, replay) and a documented REST API with an llms.txt index round it out, authenticated by API key. The only gaps versus a perfect score are a published OpenAPI spec and an official REST SDK, and the 120-tool MCP already covers most of what those would give you.

Official MCP, 120 tools, on own domainHosted Streamable HTTP + local stdioStructured outputs + tool annotationsWebhooks with create/test/replayDocumented REST API + llms.txt indexAPI-key auth

Sequenzy API FAQ

Does Sequenzy have a public API?+
Yes — REST API at docs.sequenzy.com, auth via api-key.
What auth does the Sequenzy API use?+
API key in a header — simplest to integrate, no OAuth dance.
Does Sequenzy support webhooks?+
Yes — webhooks are available on standard plans.
Should I use the API or the MCP server for Claude / Cursor / Codex?+
Prefer the MCP server for agent workflows — it's less code and pre-handles auth flows. Use the REST API for scheduled jobs, dashboards, and anything outside an LLM-driven flow.

Sources

Joonas Rotko
Joonas RotkoAuthor & Founder of That Marketing Buddy

10+ years in digital marketing. I review marketing software for AI-stack fit: real pricing, MCP and API support, and how cleanly each tool drops into an AI agent workflow, cross-checked against verified data and real user feedback.

Sequenzy

Try Sequenzy
WEEKLY NEWSLETTER

The marketing tools worth your money, scored for AI agent readiness

Every week I score the tools for MCP, API, and agent-readiness, then email you the ones that actually deliver, what plugs into Claude and Cursor, the pricing changes, and what to skip. No fluff, no daily spam.

Join for free. One email a week, unsubscribe anytime.