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

Aiso API

Yes. Aiso ships a first-party REST API at app.getaiso.com/api/v1 covering projects, prompts, brands, snapshots and its brand, domain and URL reports, on a single per-account key, on Enterprise for brands or agency Scale. See getaiso.com/docs for the full reference.

Auth: API key (x-api-key) or OAuth BearerMCP also availableLLMs: n8n, Claude Code, Claude (Desktop/Web), Cursor, ChatGPT
Public REST API documentedAgent-readiness 6/10
Facts verified 2026-08-01

What is the Aiso API?

Aiso publishes a first-party REST API at https://app.getaiso.com/api/v1, documented at getaiso.com/docs. Authentication is an x-api-key header carrying one key per account, with an optional x-aiso-project-id header to scope a call to a single project.

The documented surface covers the objects the dashboard is built on: GET /projects and POST /projects, GET /prompts, GET /brands, GET /snapshots, and three report endpoints, POST /reports/brands for brand visibility metrics, POST /reports/domains for source domain citations and POST /reports/urls for individual source URLs. That is enough to mirror your visibility data into a warehouse and to stand up your own reporting on top of it.

The gaps are volume, tooling and access. Default limits are 10 requests a minute and 20 a day per key. There are no published SDKs in any language and no webhooks, so anything event-driven has to be built on polling. And while hosted MCP access now comes with every plan, the REST API specifically is still listed on Enterprise for brands, or the $705/mo agency Scale tier, so it is not reachable from the self-serve brand plans. The Apify actor, AISO Conversations Intelligence, remains available at about $10 per analysis as a pay-per-run alternative that needs no Aiso subscription tier at all.

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

HOOK IT TO YOUR STACK

Real Aiso API calls you'll write

aiso-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.
aiso-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.
aiso-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 AisoAuth: API keyAgent fit: 6/10
Read review →

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

Pricing, limits, and integration

The API is not priced separately. It is a feature line on a plan, and Aiso lists "API access" on the Enterprise tier for brands, which is custom-quoted. The self-serve brand plans (Starter $19/month, Pro $215, Advanced $445, or $16, $183 and $378 billed yearly) cover the dashboard product and the hosted MCP server, but not the REST API.

On the agency ladder the same line appears from Scale at $705 a month ($599 billed yearly) and on the custom Comprehensive tier. If you want programmatic access at a published price rather than through a sales conversation, agency Scale is the only way to get it.

Default limits are 10 requests a minute and 20 a day per key, which Aiso can raise on request, with response headers to manage retries. There are no SDKs and no webhooks. If none of that fits, the official Apify actor is still there: about $10 per successful analysis returning 10 to 20 real conversations for a domain, billed through Apify with no charge when nothing relevant is found, and no Aiso tier requirement.

How much does the Aiso API actually cost?

Verify on docs

Aiso 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 (x-api-key) or OAuth Bearer
SDK languages
OpenAPI spec
Webhooks
not available
Structured outputs

Which AI clients can read Aiso data?

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

ClientSupportNotes
n8nVia connectorsCall the REST API over HTTP, or the MCP server via n8n's MCP client node. No dedicated Aiso node.
Claude CodeNative MCPRemote MCP at app.getaiso.com/api/v1/mcp, x-api-key header, no local install. Needs Enterprise or agency Scale.
Claude (Desktop/Web)Native MCPNamed in Aiso's own setup docs. Remote HTTP MCP, so no local server to run.
CursorNative MCPNamed in Aiso's setup docs. Older stdio-only builds can bridge with mcp-remote.
ChatGPTAPI-only (custom code)No native connector. Reach it through the REST API in a custom integration.

Aiso also has an MCP server

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

See Aiso MCP page

What you can build with the Aiso API

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

SOLO DEV / FOUNDER

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

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

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

curl -X GET "https://www.getaiso.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 getaiso.com/docs.

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

Agent-readiness verdict

A documented first-party REST API covering projects, prompts, brands, snapshots and the brand, domain and URL reports, on a single account key. No SDKs, no webhooks, 20 requests a day by default, and unlike the MCP server it is still gated to Enterprise or agency Scale. 6 out of 10.

Solid agent fit, and the commercial catch has mostly lifted. Aiso runs an official hosted MCP server at app.getaiso.com/api/v1/mcp exposing 19 tools across projects, prompts, topics, brands, snapshots and its brand, domain and URL reports, plus a first-party REST API at app.getaiso.com/api/v1, both on one account API key sent as x-api-key. The MCP is remote HTTP, so Cursor and Claude Desktop connect with no local install, it accepts OAuth Bearer as well, and it is listed in Claude's connector directory. Since August 2026 hosted MCP access is included on every brand and agency plan, so the $19/mo Starter tier is the lowest paid price for MCP access in this category, beaten only by PromptWatch, which includes MCP on a free plan. Most tools read; create_project and add_prompts write, once per project. What keeps it level with Peec and Otterly rather than ahead: the REST API is still Enterprise for brands or the $705/mo agency Scale tier, keys default to 20 requests a day, and there are no SDKs and no webhooks.

Aiso API FAQ

Does Aiso have a public API?+
Yes — REST API at getaiso.com/docs, auth via API key.
What auth does the Aiso 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.

Aiso

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