API Overview

Interact with Analision programmatically via REST API.

Base URL

https://api.analision.com/v1

Authentication

All requests require a Bearer token in the Authorization header:

GET /v1/products
Authorization: Bearer YOUR_API_KEY

You 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

PlanRequests/minute
Starter60
Pro300
EnterpriseUnlimited

Rate limit headers are included in every response:

X-RateLimit-Limit: 300
X-RateLimit-Remaining: 297

On this page