Prerequisites
- A Geoptie account with an active or trialing subscription
- At least one brand set up in the dashboard
- Basic familiarity with REST APIs
Step 1: Create your API key
- Go to API keys in the dashboard sidebar.
- Click Create API key.
- Choose whether the key covers your whole workspace or specific brands. See Authentication for the difference.
- Copy the key and store it securely.
Step 2: Authenticate your requests
Send the key as a bearer token in theAuthorization header:
Step 3: Make your first request
GET /v1/brands both proves the key works and returns the brand ids the other endpoints
need. Most endpoints are scoped to a brand, so this is where every integration starts.
id and use it with the brand endpoints:
Visibility
GET /v1/brands/{id}/visibilityPrompts
GET /v1/brands/{id}/promptsCitations
GET /v1/citations?brand_id={id}Competitors
GET /v1/competitors?brand_id={id}Error handling
The API uses standard HTTP status codes:
See Errors for the full list of codes.
Next steps
Authentication
Key types and access
Pagination
Walking large result sets
Need help
Email support@geoptie.com with theX-Request-Id from the
failing response.