curl --location --request POST 'https://api.dageno.ai/business/api/v1/open-api/geo/analysis' \
--header 'x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"target": {
"entity": "brand",
"metrics": [
"visibility",
"citation"
],
"filters": {
"dateRange": {
"startAt": "2026-03-28T00:00:00.000Z",
"endAt": "2026-03-28T00:00:00.000Z"
}
}
},
"analysis": {
"type": "summary",
"ranking": {
"orderBy": "visibility",
"direction": "asc"
},
"matrix": {
"rowDimension": "brand"
}
}
}'{
"success": true,
"code": 0,
"message": "OK",
"data": {
"rows": [
{
"topic": "Mock Topic A",
"visibility": 0.82,
"citation": 0.41
},
{
"topic": "Mock Topic B",
"visibility": 0.73,
"citation": 0.33
}
],
"query": {
"target": {
"entity": "topic",
"metrics": [
"visibility",
"citation"
],
"filters": {
"dateRange": {
"startAt": "2026-03-18T00:00:00.000Z",
"endAt": "2026-03-28T00:00:00.000Z"
}
}
},
"analysis": {
"type": "ranking",
"ranking": {
"orderBy": "visibility",
"direction": "desc"
}
}
}
}
}