SDKs & Libraries
Official client libraries for the CollaBevy API
Using the REST API Directly
The CollaBevy API is a standard REST API that works with any HTTP client. No SDK is required to get started.
// JavaScript/TypeScript
const response = await fetch('https://collabevy.com/api/creator/collabs', {
headers: {
'Authorization': 'Bearer sk_live_your_api_key',
'Content-Type': 'application/json'
}
});
const { data } = await response.json();Community Libraries
Know of a community-built library for the CollaBevy API? Let us know and we'll feature it here.