1. Open API
Dageno Open API
  • Introduction
  • Authentication
  • Errors and Error Responses
  • MCP
  • GEO Analysis Query Parameter Guide
  • Open 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 query fanout 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
    • Get keyword volume
      POST
  1. Open API

Get keyword volume

POST
/v1/open-api/keywords/volume
Forwards request to upstream keyword service and returns keyword volume data list.

Request

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

Body Params application/jsonRequired

Examples

Responses

🟢200
application/json
Keyword volume data
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.dageno.ai/business/api/v1/open-api/keywords/volume' \
--header 'x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "keywords": [
        "marketing teams",
        "content marketing"
    ]
}'
Response Response Example
{
    "success": true,
    "code": 0,
    "message": "OK",
    "data": [
        {
            "vol": 1300,
            "cpc": {
                "currency": "$",
                "value": "9.09"
            },
            "keyword": "marketing teams",
            "competition": 0.21,
            "trend": [
                {
                    "month": "March",
                    "year": 2025,
                    "value": 1600
                }
            ]
        },
        {
            "vol": 1900,
            "cpc": {
                "currency": "$",
                "value": "4.22"
            },
            "keyword": "content marketing",
            "competition": 0.31,
            "trend": [
                {
                    "month": "March",
                    "year": 2025,
                    "value": 2200
                }
            ]
        }
    ]
}
Modified at 2026-03-31 11:54:45
Previous
List community opportunities
Built with