1. API
Dageno Open API
  • Introduction
  • Authentication
  • Errors and Error Responses
  • MCP
  • GEO Analysis Query Parameter Guide
  • API
    • Get brand base information
      GET
    • Execute GEO analysis query
      POST
    • List topics
      GET
    • List prompts
      GET
    • List responses by prompt
      GET
    • Get response detail by prompt
      GET
    • List citation domains
      GET
    • List citation URLs
      GET
    • List citation domains by prompt
      GET
    • List citation URLs by prompt
      GET
    • List content opportunities
      GET
    • List backlink opportunities
      GET
    • List community opportunities
      GET
  1. API

List citation domains by prompt

GET
/v1/open-api/prompts/{promptId}/citations/domains
Returns a paginated aggregation of cited domains for the specified prompt.

Request

Authorization
Add parameter in header
x-api-key
Example:
x-api-key: ********************
Path Params

Query Params

Header Params

Responses

🟢200
application/json
Citation domain list by prompt
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.dageno.ai/business/api/v1/open-api/prompts//citations/domains?page&pageSize&startAt&endAt&platforms&regions' \
--header 'x-api-key: <api-key>'
Response Response Example
{
    "success": true,
    "code": 0,
    "message": "OK",
    "data": {
        "items": [
            {
                "domain": "source-a.example",
                "domainType": "Corporate",
                "citationCount": 3,
                "citationRate": 0.75,
                "seoData": {
                    "totalVisits": 12000,
                    "bounceRate": 0.41,
                    "pagePerVisit": 3,
                    "avgDuration": 80.5
                }
            }
        ]
    },
    "meta": {
        "pagination": {
            "page": 1,
            "pageSize": 2,
            "total": 1,
            "totalPages": 1
        }
    }
}
Modified at 2026-03-30 02:09:16
Previous
List citation URLs
Next
List citation URLs by prompt
Built with