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

    Authentication

    1. Authentication Scheme#

    This Open API uses a project-level API key.
    Send the following header on every request:
    Header: x-api-key
    Value: <YOUR_PROJECT_API_KEY>
    Example:

    2. Common Authentication Failures#

    2.1 Missing Header#

    {
      "error": true,
      "code": 401,
      "message": "x-api-key header is required"
    }

    2.2 Invalid Key#

    {
      "error": true,
      "code": 401,
      "message": "Invalid project API key"
    }

    2.3 Inactive Key#

    {
      "error": true,
      "code": 403,
      "message": "Project API key is not active"
    }

    2.4 Expired Key#

    {
      "error": true,
      "code": 401,
      "message": "Project API key has expired"
    }

    3. Security Recommendations#

    Do not expose x-api-key directly in browser/front-end code.
    Do not log full API keys (log only masked prefixes/suffixes).
    Modified at 2026-03-29 06:42:30
    Previous
    Introduction
    Next
    Errors and Error Responses
    Built with