Skip to main content
POST
/
reports
/
mentions
Mentions report
curl --request POST \
  --url https://api.geoark.ai/api/customer/v1/reports/mentions \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "brand_id": "<string>",
  "project_id": "<string>",
  "start_date": "2023-12-25",
  "end_date": "2023-12-25",
  "limit": 1000,
  "offset": 0
}
'
{
  "data": "<array>",
  "total": 123
}

Authorizations

X-API-Key
string
header
required

API key from Dashboard → API Keys (Custom plan).

Body

application/json
brand_id
string

Filter by brand ID. Omit for all brands.

project_id
string

Alias for brand_id (integration compatibility).

start_date
string<date>

Start date (YYYY-MM-DD). Default: 30 days ago.

end_date
string<date>

End date (YYYY-MM-DD). Default: today.

limit
integer
default:1000

Max items to return.

Required range: 1 <= x <= 10000
offset
integer
default:0

Offset for pagination.

Required range: x >= 0

Response

Mentions report

data
array
total
integer