Iterant is in early access. These docs describe the product as it works today.
Iterant Docs
brands

Get a brand overview

One call that says what state a brand is in: page counts by status, the highest-priority open opportunities, topic-coverage gaps, the AI-visibility headline and traffic/conversion rollups. Cheaper and better oriented than fanning out across the other routes, and its `nextActions` field points at what is worth looking at next. Narrow with `sections` when you need only half the picture. Signals figures are sampling-weighted estimates, not exact counts. Visibility figures are empty, not zero, when the brand has no tracking enabled.

GET
/api/v1/public/brands/{brandSlug}/overview/

Authorization

tenantApiKeyAuth
AuthorizationBearer <token>

In: header

Path Parameters

brandSlug*string
Match^[^/]+$

Query Parameters

responseFormat?string

How much to return. concise (the default) omits long-form text: briefs, outlines, evidence, passage excerpts, per-dimension breakdowns. detailed includes it and costs several times the tokens.

Default"concise"

Value in

  • "concise"
  • "detailed"
sections?string

Comma-separated. Legal values: pages, opportunities, coverage, visibility, signals. Defaults to all five.

window?string

Rolling window ending today.

Default"28d"

Value in

  • "28d"
  • "7d"
  • "90d"

Response Body

application/json

application/json

application/json

application/json

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/api/v1/public/brands/string/overview/"
{  "brandSlug": "orbital-labs",  "name": "Orbital Labs",  "websiteUrl": "https://orbital-labs.com",  "opportunities": {    "totalOpen": 12,    "byStatus": {      "ready": 9,      "drafted": 3    },    "top": []  },  "visibility": {    "enabled": false,    "windowDays": 28,    "visibilityScore": {      "value": null,      "previous": null    },    "shareOfVoice": {      "value": null,      "previous": null    },    "sovRank": {      "value": null,      "previous": null,      "of": 0    },    "topCompetitor": null  },  "nextActions": [    "12 open page opportunities: read the queue with the page-opportunities list, highest priority first."  ]}

Last updated on