Overview
Authenticate and make a REST API v2 request
REST API v2 is the supported contract today. Its base URL is
https://api.aixbt.tech/v2.
Authentication
This public request returns the current topics ranking:
curl --fail-with-body "https://api.aixbt.tech/v2/topics"Most data routes require a key from
Integrations, sent in the x-api-key
header:
curl --fail-with-body "https://api.aixbt.tech/v2/projects?limit=5" \
-H "x-api-key: YOUR_API_KEY"Response contracts
Most data endpoints return status and data. List endpoints can also return
pagination, while endpoint-specific context appears under meta.
{
"status": 200,
"data": [],
"pagination": {
"page": 1,
"limit": 50,
"totalCount": 0,
"hasMore": false
}
}Response and error shapes are endpoint-specific. Consume code only when the
endpoint advertises it.
Rate limits
Key-specific limits appear in
Integrations. Responses expose the applicable
X-RateLimit-* headers. A rate-limited request returns 429 and Retry-After.
Pagination and filtering
Paginated list endpoints use page and limit. Where multi-value filters are
supported, comma-separated values use OR logic within one parameter; separate
filter parameters use AND logic.
Reference
Use the Reference for each endpoint's parameters, authentication, schemas, examples, and live request form. For help, contact support.