Build with the
VectorGap API
Programmatic access to selected VectorGap workflows and data. Build internal dashboards, trigger supported audits, and connect approved integrations. Availability depends on current plan and API maturity.
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 2026Ready to build?
API access and limits depend on the current plan and supported endpoint set. Start in the dashboard and confirm the live docs before building production dependencies.