Economic Intelligence

List Economic Intelligence

Lists an account's recommendations and generation requests, newest first. Without an account, signed-out visitors receive a business-setup template and eligible users receive their saved setup recommendation.

get/economic_intelligence

Query parameters

account_idstring

Account ID, prefixed biz_. Defaults to the API key's own account; omit for personal onboarding.

status'queued' | 'pending' | 'ready' | 'executed' | 'superseded'

Filter recommendations by their current status.

firstinteger

Number of results to return from the start of the range.

afterstring

Return results after this cursor. Use page_info.end_cursor from the previous response to fetch the next page.

lastinteger

Number of results to return from the end of the range.

beforestring

Return results before this cursor. Use page_info.start_cursor from the previous response to fetch the previous page.

Response

recommendations listed

Example response

{
  "data": [
    {
      "account_id": "biz_xxxxxxxxxxxxxx",
      "action_type": "improve_landing_page",
      "created_at": "2026-01-01T12:00:00.000Z",
      "executed_at": "2026-01-01T12:00:00.000Z",
      "id": "reca_xxxxxxxxxxxxxx",
      "input": "more buyers",
      "prompt": "Create a 20% off promo code for my members.",
      "reasoning": "Capped 9 of 14 days.",
      "sentiment": "positive",
      "status": "executed",
      "superseded_at": "2026-01-01T12:00:00.000Z",
      "target_url": "https://example.com/join",
      "title": "Move $180 from 3 dead ad groups into BATCH#3, +1.7x return"
    }
  ],
  "page_info": {
    "start_cursor": "WyJjdXJzb3IiLDFd"
  }
}

Changes