CR Bee Docs

API Reference

Integrate with the CR Bee REST API

The CR Bee REST API lets you build custom integrations with the car rental platform. Use it to fetch catalog data, check availability, create bookings, and receive real-time updates via webhooks.

OpenAPI Specification

The full machine-readable spec is published at /openapi.yaml. Use it to:

  • Generate client SDKs (openapi-generator, openapi-typescript, etc.)
  • Import into Postman / Insomnia / Bruno
  • Power your own internal API docs

Base URL

All API requests use your tenant subdomain:

https://{your-slug}.crbeeapp.com/api/v1/

Or, if you have a custom domain configured:

https://{your-domain}/api/v1/

Authentication

All requests require an API key passed as a Bearer token:

curl -H "Authorization: Bearer crb_live_your_key_here" \
  https://your-slug.crbeeapp.com/api/v1/settings

API keys are created in the admin dashboard under Settings > Developer.

On this page