API
Build with the Akoln API
Integrate AI visibility data directly into your applications, dashboards, and workflows.
RESTful API
Clean, predictable endpoints following REST conventions
Fast Response
Average response time under 200ms for most endpoints
Secure
OAuth 2.0 authentication and encrypted data transfer
Global CDN
Edge deployment for low latency worldwide
Simple Integration
Get started with just a few lines of code. Our API is designed to be intuitive and easy to use, with comprehensive SDKs for popular languages.
- JavaScript / TypeScript SDK
- Python SDK
- Ruby SDK
- Go SDK
import { Akoln } from '@akoln/sdk';
const client = new Akoln({
apiKey: process.env.AKILZ_API_KEY
});
// Get visibility score
const visibility = await client.brands
.getVisibility('brand_123');
console.log(visibility.score);
// => 85
// Track competitors
const competitors = await client.brands
.getCompetitors('brand_123');
console.log(competitors);
// => [{ name: 'Competitor A', score: 72 }, ...]API Endpoints
A quick overview of available endpoints
GET
/v1/brandsGET
/v1/brands/:id/visibilityGET
/v1/brands/:id/competitorsPOST
/v1/brands/:id/auditGET
/v1/alertsPOST
/v1/webhooksReady to Build?
Sign up for a free account to get your API key and start integrating Akoln today.
Get Started Free