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

Get response detail by prompt

GET
/v1/open-api/prompts/{promptId}/responses/{responseId}
Returns detailed response content and metadata for the specified response ID.

Request

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

Header Params

Responses

🟢200
application/json
Response detail by prompt
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.dageno.ai/business/api/v1/open-api/prompts//responses/' \
--header 'x-api-key: <api-key>'
Response Response Example
{
    "success": true,
    "code": 0,
    "message": "OK",
    "data": {
        "id": "00000000-0000-4000-8000-000000000030",
        "platform": "mock-platform",
        "region": "US",
        "createdAt": "2026-01-02T12:00:00.000Z",
        "date": "2026-01-02T00:00:00.000Z",
        "contentMd": "Detailed mock response content for API documentation only.\n\n[1]: https://example.com/source-a \"Mock Source A\"",
        "mentions": [
            {
                "domain": "brand.example",
                "brandName": "Mock Brand",
                "position": 1,
                "sentimentScore": 80
            },
            {
                "domain": "competitor-a.example",
                "brandName": "Competitor A",
                "position": 2,
                "sentimentScore": 65
            }
        ],
        "mentioned": true,
        "position": 1,
        "sources": [
            "https://example.com/source-a",
            "https://example.com/source-b"
        ]
    }
}
Modified at 2026-03-30 02:09:16
Previous
List responses by prompt
Next
List citation domains
Built with