Getting Started
1Introduction
The CollaBevy API lets you programmatically access your collaboration data. You can retrieve collaborations, manage contracts, track invoices, and more.
2Get Your API Key
To use the API, you need an API key. Go to Settings > API in your CollaBevy dashboard to create one. API access requires an Elite plan.
3Make Your First Request
Once you have your API key, you can make requests to the API. All requests should include your API key in the Authorization header.
Code Examples
curl -X GET "https://collabevy.com/api/creator/collabs" \
-H "Authorization: Bearer sk_live_your_api_key"Rate Limits
The API is rate limited to 60 requests per minute by default. Rate limit information is included in the response headers:
X-RateLimit-Limit- Maximum requests per minuteX-RateLimit-Remaining- Requests remaining in current windowX-RateLimit-Reset- Unix timestamp when the limit resets
Response Format
All API responses follow a consistent JSON format:
{
"success": true,
"data": { ... },
"error": null,
"timestamp": "2026-01-11T12:00:00.000Z"
}For error responses, success will be false and the error object will contain a code and message.