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 topics

GET
/v1/open-api/topics
Returns a paginated list of project topics based on the provided filters and time range.

Request

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

Header Params

Responses

🟢200
application/json
Topic list
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.dageno.ai/business/api/v1/open-api/topics?page&pageSize&startAt&endAt&topics&topicIds&platforms&regions' \
--header 'x-api-key: <api-key>'
Response Response Example
{
    "success": true,
    "code": 0,
    "message": "OK",
    "data": {
        "items": [
            {
                "id": "00000000-0000-4000-8000-000000000001",
                "topic": "Mock Topic A",
                "visibility": 0.82,
                "visibilityChangedRate": null,
                "sentiment": 74,
                "avgPosition": 1.6,
                "citationRate": 0.41,
                "volume": 12
            },
            {
                "id": "00000000-0000-4000-8000-000000000002",
                "topic": "Mock Topic B",
                "visibility": 0.73,
                "visibilityChangedRate": null,
                "sentiment": 69,
                "avgPosition": 2.1,
                "citationRate": 0.33,
                "volume": 8
            }
        ]
    },
    "meta": {
        "pagination": {
            "page": 1,
            "pageSize": 20,
            "total": 2,
            "totalPages": 1
        }
    }
}
Modified at 2026-03-30 02:09:16
Previous
Execute GEO analysis query
Next
List prompts
Built with