Official SDKs
SDKs are currently in development. The Node.js SDK will be the first to launch.
Node.js
TypeScript/JavaScript SDK for Node.js and modern runtimes.
Direct API Access
While SDKs are in development, you can interact with the API directly using any HTTP client:
curl "https://api.corebill.io/v1/companies" \
-H "Authorization: Bearer sk_live_your_api_key"
OpenAPI Specification
Our complete API is documented using OpenAPI 3.1.0. You can use the spec to generate clients in any language:
Generate a Client
# Using openapi-generator
npx @openapitools/openapi-generator-cli generate \
-i openapi.yaml \
-g typescript-fetch \
-o ./corebill-client