API

Creor APIs Overview

Creor provides multiple APIs for programmatic access to your team's data, AI-powered coding agents, and analytics.

Available APIs

APIDescriptionAvailability
Admin APIManage team members, settings, usage data, and spending. Build custom dashboards and monitoring tools.Enterprise teams
Analytics APIComprehensive insights into team's Creor usage, AI metrics, active users, and model usage.Enterprise teams
AI Code Tracking APITrack AI-generated code contributions at commit and change levels for attribution and analytics.Enterprise teams
Cloud Agents APIProgrammatically 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
curl https://api.creor.ai/teams/members \
-u YOUR_API_KEY:

Or set the Authorization header directly:

Authorization: Basic {base64_encode('YOUR_API_KEY:')}