API Overview
Interact with Analision programmatically via REST API.
Base URL
https://api.analision.com/v1Authentication
All requests require a Bearer token in the Authorization header:
GET /v1/products
Authorization: Bearer YOUR_API_KEYYou can generate an API key from Settings → API Keys.
Response Format
All responses return JSON:
{
"data": {},
"meta": {
"page": 1,
"per_page": 20,
"total": 143
}
}Rate Limiting
| Plan | Requests/minute |
|---|---|
| Starter | 60 |
| Pro | 300 |
| Enterprise | Unlimited |
Rate limit headers are included in every response:
X-RateLimit-Limit: 300
X-RateLimit-Remaining: 297