API Reference
Detailed information about our API endpoints. Integrate with our services programmatically.
Authentication
API requests are authenticated using API keys. Include your API key in the `Authorization` header of your request.
Authorization: Bearer <YOUR_API_KEY>Endpoints
GET
/v1/projectsRetrieve a list of your projects.
Response
[
{
"id": "proj_123",
"name": "My First Project",
"created_at": "2023-10-27T10:00:00Z"
}
]POST
/v1/projectsCreate a new project.
Body
{
"name": "New Awesome Project"
}