API
Creor APIs Overview
Creor provides multiple APIs for programmatic access to your team's data, AI-powered coding agents, and analytics.
Available APIs
| API | Description | Availability |
|---|---|---|
| Admin API | Manage team members, settings, usage data, and spending. Build custom dashboards and monitoring tools. | Enterprise teams |
| Analytics API | Comprehensive insights into team's Creor usage, AI metrics, active users, and model usage. | Enterprise teams |
| AI Code Tracking API | Track AI-generated code contributions at commit and change levels for attribution and analytics. | Enterprise teams |
| Cloud Agents API | Programmatically create and manage AI-powered coding agents for automated workflows and code generation. | Beta (All Plans) |
Authentication
All Creor APIs use Basic Authentication.
Basic Authentication
Use your API key as the username in basic authentication (leave password empty):
1
2
2
curl https://api.creor.ai/teams/members \
-u YOUR_API_KEY:
-u YOUR_API_KEY:
Or set the Authorization header directly:
Authorization: Basic {base64_encode('YOUR_API_KEY:')}