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

Omnisend API

Yes. Omnisend publishes a public REST API with api_key auth. See api-docs.omnisend.com for the full reference.

Auth: api_keyMCP also availableLLMs: Claude (Desktop/Web), ChatGPT
Public REST API documentedAgent-readiness 7/10
Facts verified 2026-08-04

What is the Omnisend API?

Omnisend has a documented public REST API at https://api.omnisend.com/api/, versioned by date via an Omnisend-Version header (current 2026-03-15) rather than by URL path. The surface is broad for an email and SMS platform: Events, Contacts, Brands, Products, Product Categories, Batches, Campaigns, Segments, Email Content, Email Templates, Email Universal Layouts, Images, Reports, Statistics, and Automations. That covers the data an agent or integration actually needs: sync contacts, fire events, push catalog data, spin up campaigns, and read back stats.

It is built to modern conventions. List endpoints use cursor-based pagination (opaque paging.cursors.after / before tokens), and failures return RFC 9457 Problem Details, structured JSON with type, title, status, and detail, so an agent gets machine-readable errors instead of guesswork. Authentication is an API key sent in the Authorization header, and the docs ship an llms.txt index plus a public Postman collection for fast wiring.

The gaps are worth naming. Omnisend publishes no official language SDKs, so you call the REST endpoints directly or generate a client. And there is no dedicated webhook-subscription API: real-time delivery happens through a webhook action inside an automation workflow, not a top-level events-subscription endpoint, so event-driven wiring goes through the automation builder rather than a subscriptions resource.

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

HOOK IT TO YOUR STACK

Real Omnisend API calls you'll write

omnisend-apirest
#Pull contacts who subscribed in the last 30 days
GET/v3/contacts?limit=50&status=subscribed
200 OK · contacts
Returned50 of 12,480
Fieldsemail, status, tags, segments
Channelsemail + SMS consent
Cursor-paginate to sync the full list.
omnisend-apirest
#Fire a custom event to launch an automation
POST/v3/events
202 Accepted · event recorded
Eventorder_shipped
Contactbuyer@store.com
Automation enteredpost-purchase flow
Wire this to your OMS webhook.
omnisend-apirest
#Report an abandoned cart to trigger recovery
POST/v3/carts
201 Created · cart_id: c_7f2a
Products2 items ($148)
Recovery flowqueued
First reminderin 1h
TMB SCORE FOR OmnisendAuth: api_keyAgent fit: 7/10
Read review →

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

Pricing, limits, and integration

Omnisend's API is part of the product, not a separately-priced line: there is no API-only plan or per-call metering. Programmatic access runs on your normal Omnisend subscription, which meters on contacts and sends, so the API operates within whatever your plan already allows. Authentication is an API key in the Authorization header, and every 2026-03-15 request also carries an Omnisend-Version header to pin the schema.

Rate limits are set per endpoint group rather than one global number. Segments, for example, are documented at 100 requests per minute for reads and 15 per minute for create and update. Plan for those per-resource ceilings on any bulk sync. There are no official SDKs, so you call the endpoints directly or generate a typed client from the docs; a public Postman collection and an llms.txt index at api-docs.omnisend.com speed that up. For event-driven flows, note that webhooks are a send-webhook action inside an automation workflow, not a standalone subscriptions API, so wire real-time triggers through the automation builder.

How much does the Omnisend API actually cost?

Verify on docs

Omnisend 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
not available
Structured outputs
No-code automation
ZapierMake

Which AI clients can read Omnisend data?

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

ClientSupportNotes
Claude (Desktop/Web)Via connectorsAdd as a custom connector (Settings, Connectors) pointing at mcp.omnisend.com/mcp, then OAuth login. Official one-click connector coming soon.
ChatGPTNative MCPPublished Omnisend app in the ChatGPT app directory; connects over OAuth.

Omnisend also has an MCP server

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

See Omnisend MCP page

What you can build with the Omnisend API

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

SOLO DEV / FOUNDER

Glue Omnisend 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 Omnisend reporting at scale

  • White-label Omnisend data into client-branded dashboards
  • Run scheduled multi-account reports without logging into the Omnisend 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 Omnisend

  • Real-time sync into your warehouse on a cron
  • Custom alerts the dashboard's built-in alerting can't express
  • Backfill + idempotency handling for Omnisend 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 Omnisend API docs: https://api-docs.omnisend.com/

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

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

Limits and gotchas

  • No OpenAPI spec — you write typed clients by hand or use a third-party generator on the docs HTML.
  • 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.
  • No-code fallback: Zapier and Make.com cover the common triggers if you want to skip writing API code for simple flows.
7/10

Agent-readiness verdict

Score: 7/10 on API-readiness. Omnisend's REST API is well-designed and broad: date-versioned via Omnisend-Version, cursor pagination, RFC 9457 error bodies, API-key auth, an llms.txt index, and a Postman collection, spanning contacts, events, products, campaigns, segments, automations, and reporting. That is a clean, agent-friendly surface. It sits at 7 rather than higher because there are no official SDKs and no dedicated webhook-subscription endpoint (webhooks are an automation-workflow action), which adds glue work for real-time and code-heavy integrations.

Solid agent fit with a first-party MCP server and a clean REST API. Omnisend hosts an official MCP server at mcp.omnisend.com/mcp, authenticated over OAuth, so an agent can create campaigns, build automations, recommend and edit segments, and pull revenue reporting from Claude or ChatGPT. The REST API (api.omnisend.com/api) is date-versioned via an Omnisend-Version header, uses cursor pagination and RFC 9457 error bodies, and spans contacts, events, products, campaigns, segments, automations, and reports. It sits below the GA-official tier because the one-click Claude connector is still coming soon (custom connector for now), there are no official SDKs, and webhooks are an automation-workflow action rather than a subscription API.

Omnisend API FAQ

Does Omnisend have a public API?+
Yes — REST API at api-docs.omnisend.com, auth via api_key.
What auth does the Omnisend API use?+
api_key
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.

Omnisend

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