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

    Introduction

    1. Basic Information#

    Base URL: https://api.dageno.ai/business
    API prefix: /api
    Versioning: URI versioning (current default is v1)
    Data format: application/json by default

    2. Authentication#

    This Open API uses x-api-key.
    Header name: x-api-key
    Type: string
    Required: yes
    Example:
    See details in Authentication.md.

    3. Unified Response Format#

    3.1 Success Response#

    {
      "success": true,
      "code": 0,
      "message": "OK",
      "data": {},
      "meta": {
        "pagination": {
          "page": 1,
          "pageSize": 20,
          "total": 100,
          "totalPages": 5
        }
      }
    }
    Notes:
    meta.pagination appears only on paginated endpoints.
    List endpoints usually return data in data.items.

    3.2 Error Response#

    {
      "error": true,
      "code": 401,
      "message": "x-api-key header is required"
    }
    See details in Errors.md.

    4. Quick Troubleshooting#

    401: check whether x-api-key is present and valid.
    403: API key may be inactive.
    400: check request parameters (time format, enum values, DSL shape).
    500: internal server error. Contact support with request context and timestamp.
    Modified at 2026-03-29 07:17:55
    Next
    Authentication
    Built with