Skip to main content
GET
/
v1
/
projects
List all projects
curl --request GET \
  --url https://api.example.com/v1/projects
{
  "data": [
    {
      "name": "<string>",
      "id": "<string>",
      "description": "<string>"
    }
  ],
  "next_cursor": "<string>"
}

Query Parameters

cursor
string | null

Cursor for pagination (project ID)

limit
integer
default:100

The max number of projects to return at a time.

include_experiment_projects
boolean
default:false

Include experiment projects in the response. Experiment projects are created from running experiments.

Response

A list of projects with pagination information

data
Project · object[]
required
next_cursor
string | null
required