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

Omnia API

Yes. Yes. Omnia ships a Bearer-authenticated REST API at app.useomnia.com/api/v1, on every plan including the €79 entry, covering brands, prompts, insights, trends and views. See docs.useomnia.com/api for pricing details.

Auth: OAuthMCP also availableLLMs: Claude Code, Claude (Desktop/Web), ChatGPT, Cursor
Public REST API documentedAgent-readiness 7/10
Facts verified 2026-07-22

What is the Omnia API?

Omnia's REST API is included on every plan, not gated to Enterprise, which is the exception rather than the rule in GEO. It follows plain REST conventions: resources have their own URLs, requests and responses are JSON, and HTTP verbs map to actions.

The surface is organised around nine resources, AI Answer, Brand, Insight, Prompt, Topic, Trend and View, most with performance sub-endpoints. Omnia's docs steer you toward Views as the grouping primitive for analytics and mark the older topic-scoped endpoints as deprecated, so build against Views if you are starting fresh.

Auth is a Bearer token prefixed ot_, generated from the API access page in your workspace. Rate limiting exists as a documented topic but the specific limits are not published, so budget for backpressure under heavy pulling.

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

HOOK IT TO YOUR STACK

Real Omnia API calls you'll write

omnia-apirest
#Get the top organic keywords for a domain
GET/v3/site-explorer/organic-keywords?target=mysite.com&limit=10
200 OK · 10 results
marketing automationpos 4 · vol 12.4k
email marketing softwarepos 6 · vol 8.9k
seo tools 2026pos 8 · vol 6.3k
best crm small businesspos 12 · vol 4.6k
Cron daily to track ranking shifts.
omnia-apirest
#Pull a competitor's backlink profile
GET/v3/site-explorer/backlinks?target=rival.com&limit=100
200 OK · 100 backlinks
Referring domains1,847
Domain Rating78
New backlinks (30d)+142
Lost backlinks (30d)-38
Pipe into a weekly Slack report.
omnia-apirest
#Trigger a fresh site audit
POST/v3/site-audit/scan
202 Accepted · scan_id: 7f2a
Statusqueued
Estimated finish~4 min
Webhook callbackconfigured
Last scan issues47 (12 critical)
TMB SCORE FOR OmniaAuth: bearerAgent fit: 7/10
Read review →

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

Pricing, limits, and integration

The API is not a separately-priced product, it comes with the SaaS subscription, so its cost is just your plan: €79/mo Growth, €279/mo Pro, or from €499/mo Enterprise (each about 20% cheaper billed annually). There is no free tier, but a 14-day trial with no card lets you exercise the API before paying. Because access is identical across tiers, the practical limit is not the API itself but the plan's prompt allowance (25 / 100 / 200+) and the monthly Insight credit pool (150 / 600 / 1,500).

On limits, know what is not published. Omnia documents that rate limiting exists but does not state the numbers, so treat sustained high-frequency polling as something to test rather than assume. There are no webhooks, so there is no push path; everything is a pull against REST or MCP. And there is no official SDK, so you are writing HTTP calls directly against app.useomnia.com/api/v1 with a Bearer token.

How much does the Omnia API actually cost?

Verify on docs

Omnia 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

API docs
Auth method
bearer
SDK languages
OpenAPI spec
Webhooks
not available
Structured outputs

Which AI clients can read Omnia data?

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

ClientSupportNotes
Claude CodeNative MCPVendor documents: claude mcp add --transport http omnia https://app.useomnia.com/mcp
Claude (Desktop/Web)Native MCPOAuth connector, one connection for both data and discovery tools.
ChatGPTNative MCPListed as a supported client.
CursorNative MCPJSON config with the app.useomnia.com/mcp URL.

Omnia also has an MCP server

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

See Omnia MCP page

What you can build with the Omnia API

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

SOLO DEV / FOUNDER

Glue Omnia into your daily workflow

  • Pull a digest of ranking changes 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 Omnia reporting at scale

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

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

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

Agent-readiness verdict

A clean, conventional REST API whose best feature is simply being available at the entry price. You can script exports and wire Omnia's visibility data into your own reporting on the €79 Growth plan. The honest gaps are the young-product ones: no official SDK (you call REST by hand), no webhooks (you poll), no published OpenAPI spec or rate-limit numbers. For a reporting integration that is fine; for anything event-driven, plan around the polling.

Strong agent fit for a GEO tool, and unusually so at the entry price. Omnia exposes an official OAuth MCP server (app.useomnia.com/mcp) and a Bearer-authenticated REST API (app.useomnia.com/api/v1), and BOTH are included on every plan from the €79 Growth tier rather than gated to Enterprise. The MCP gives an agent one connection to both data tools (share of voice, citations, sentiment, topics, prompts, insights, trends across ChatGPT, Perplexity, Google AI Overviews, Claude, Copilot and Gemini) and discovery tools that search Omnia's own API docs. Documented for Claude Code, Claude Desktop, Cursor, VS Code and ChatGPT, with machine-readable llms.txt. It stays short of a top score because it is read-oriented (pull visibility data in, no write/action surface over MCP), young, and ships no official SDK, no webhooks and no published rate limits or OpenAPI spec.

Omnia API FAQ

What auth does the Omnia API use?+
bearer
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.
Does Omnia have a public API?+
Not documented publicly as of the last check. Some tools expose private/partner APIs — contact sales if you need programmatic access.

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.

Omnia

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