Citation Analysis

My Page Citations

Get detailed citation analysis across AI models including references to your specific URLs.

GET/api/v1/citations/:siteId

My Page Citations

cURL

curl --request GET \
  --url 'https://app.indexly.ai/api/v1/citations/SITE_ID?page=1&pageSize=20&scope=my&viewType=url&filter=all' \
  --header 'X-API-Key: YOUR_API_KEY'

Response

{
  "citations": [
    {
      "url": "https://indexly.ai",
      "domain": "indexly.ai",
      "totalCitations": 345,
      "position": 1.02,
      "modelBreakdown": {
        "OPENAI": 68,
        "GOOGLE": 113,
        "PERPLEXITY": 73,
        "AIOVERVIEW": 10,
        "GROK": 81,
        "CLAUDE": 0
      },
      "statusCode": 200
    }
  ],
  "pagination": {
    "page": 1,
    "pageSize": 20,
    "total": 125,
    "totalPages": 7
  },
  "lastCalculatedAt": "2026-03-17T08:38:34.458Z"
}

Authorizations

X-API-Keystringheaderrequired

API key for authentication. Get yours from the Indexly dashboard under Settings → API Access

Path parameters

siteIdstringrequired

Site ID (must belong to your organization). Get it from your Indexly dashboard.

Query parameters

pageinteger

Page number for pagination. Defaults to 1.

pageSizeinteger

Number of results per page. Defaults to 20, max 100.

scopestringrequired

Scope of citations to analyze. Use 'my' to get your page citations.

viewTypestringrequired

Group citations by specific pages. Use 'url'.

filterstring

Filter type. Use 'all'.

aiModelNamestring

Filter citations by a specific AI model (e.g., OPENAI, GOOGLE, PERPLEXITY).

Response

200 application/json

Default Response

citationsarrayrequiredList of citation objects containing url, domain, total citations and the status code.
paginationobjectrequiredPagination details containing page, pageSize, total documents, and totalPages.
lastCalculatedAtstringISO date indicating when the citation analysis was last computed.