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/projects

Query parameters

ParameterTypeDescription
limitintegerMaximum number of results (default 20).
cursorstringPagination 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/projects

The request body accepts:

  • name — the display name of the project (required).
  • environment — one of development or production.

Events

Endpoints for reading activity events.

List events

GET /v1/events

Events are returned newest-first. Use the cursor parameter to page through older results, exactly as with projects.