- Docs
- API Reference
- Endpoints
Endpoints
This placeholder page lists example API endpoints. Replace it with your real endpoint reference.
Projects
Endpoints for managing projects.
List projects
Returns a paginated list of projects.
GET /v1/projectsQuery parameters
| Parameter | Type | Description |
|---|---|---|
limit | integer | Maximum number of results (default 20). |
cursor | string | Pagination cursor from a previous page. |
Example response
{
"data": [
{ "id": "prj_001", "name": "Example Project", "status": "active" }
],
"next_cursor": null
}Create a project
Creates a new project and returns it.
POST /v1/projectsThe request body accepts:
name— the display name of the project (required).environment— one ofdevelopmentorproduction.
Events
Endpoints for reading activity events.
List events
GET /v1/eventsEvents are returned newest-first. Use the cursor parameter to page through
older results, exactly as with projects.