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 URLs

GET
/v1/open-api/citations/urls
Returns a paginated list of cited URLs with filtering support.

Request

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

Header Params

Responses

🟢200
application/json
Citation url list
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.dageno.ai/business/api/v1/open-api/citations/urls?page&pageSize&startAt&endAt&topics&topicIds&platforms&keyword&domain&regions' \
--header 'x-api-key: <api-key>'
Response Response Example
{
    "success": true,
    "code": 0,
    "message": "OK",
    "data": {
        "items": [
            {
                "url": "https://example.com/articles/mock-page-a",
                "urlHash": "mockhash000000000000000000000000000000000001",
                "pageType": "Article",
                "domain": "example.com",
                "title": "Mock page A",
                "citationCount": 4,
                "citationRate": 0.08,
                "mentions": [
                    {
                        "domain": "brand.example",
                        "brandName": "Mock Brand"
                    }
                ],
                "mentioned": true
            }
        ]
    },
    "meta": {
        "pagination": {
            "page": 1,
            "pageSize": 2,
            "total": 1,
            "totalPages": 1
        }
    }
}
Modified at 2026-03-30 02:09:16
Previous
List citation domains
Next
List citation domains by prompt
Built with