VectorGap API docs
for agency implementations
Use the API when your agency is ready to connect VectorGap signals into client reporting, dashboards, and recurring GEO delivery workflows across a portfolio.
Clean, predictable endpoints following REST conventions. JSON request and response bodies.
Authenticate with `Authorization: Bearer <api_key>`. Generate and manage keys from your dashboard.
Rate limits and endpoint availability vary by plan and implementation status. Check the live docs and dashboard before depending on a specific quota.
Webhook support exists for selected events. Treat coverage as plan- and implementation-dependent until confirmed in your workspace.
API Endpoints
Current endpoints for managing brands, audits, analytics, and webhooks.
/v1/brands/v1/brands/v1/brands/{id}/v1/brands/{id}/audits/v1/brands/{id}/analytics/v1/webhooksQuick Start
Start by listing the brands available to your workspace.
// JavaScript/TypeScript
const response = await fetch('https://www.vectorgap.ai/api/v1/brands', {
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
}
});
const data = await response.json();
console.log(data);
// Response:
// {
// "data": [
// {
// "id": "brand_123",
// "brandName": "Acme Corp",
// "domain": "acme.com",
// "industry": "Technology",
// "description": "AI infrastructure platform",
// "createdAt": "2026-01-14T10:30:00Z",
// "updatedAt": "2026-01-15T08:20:00Z"
// }
// ],
// "meta": {
// "total": 1
// }
// }SDK Libraries
Official SDKs for Node.js, Python, and Go. Coming soon.
Coming Q2 2026Need implementation details for client reporting?
The API page is a late-stage validation surface. Use the docs as the single next step, then confirm current plan limits and endpoint coverage before shipping dependencies.