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 brand base information

GET
/v1/open-api/brand
Returns base brand context for the current project. If Accept or Content-Type includes text/markdown, the response is returned as Markdown.

Request

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

Responses

🟢200
application/json
Brand base info
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.dageno.ai/business/api/v1/open-api/brand' \
--header 'x-api-key: <api-key>'
Response Response Example
{
    "success": true,
    "code": 0,
    "message": "OK",
    "data": {
        "id": "00000000-0000-4000-8000-000000000010",
        "projectId": "00000000-0000-4000-8000-000000000011",
        "name": "Mock Brand",
        "domain": "brand.example",
        "tagline": "Mock Tagline",
        "description": "This is mock brand description text for API example output.",
        "logo": "https://example.com/assets/mock-logo.png",
        "website": "https://brand.example",
        "socials": [
            {
                "url": "https://social.example/mock-brand",
                "platform": "MockSocial"
            }
        ],
        "keywords": [
            "keyword-one",
            "keyword-two",
            "keyword-three"
        ],
        "createdAt": "2026-01-01T00:00:00.000Z",
        "updatedAt": "2026-01-01T00:00:00.000Z",
        "summary": "# Mock Brand\n\n## Overview\nMock summary content for documentation examples only.\n\n## Core Value\nData shown here is anonymized and non-production.",
        "competitors": [
            {
                "id": "00000000-0000-4000-8000-000000000012",
                "domain": "competitor-a.example",
                "brand": "Competitor A",
                "status": "succeeded"
            },
            {
                "id": "00000000-0000-4000-8000-000000000013",
                "domain": "competitor-b.example",
                "brand": "Competitor B",
                "status": "succeeded"
            }
        ]
    }
}
Modified at 2026-03-30 02:09:16
Previous
GEO Analysis Query Parameter Guide
Next
Execute GEO analysis query
Built with