List Projects (Paginated)
GET
/v1/projects/list
const url = 'https://example.com/v1/projects/list?limit=20&sort=newest';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url 'https://example.com/v1/projects/list?limit=20&sort=newest'List projects for the current user with cursor-based pagination.
Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ”Header Parameters
Section titled “Header Parameters ”Responses
Section titled “ Responses ”Paginated list of projects
Media type application/json
PaginatedProjectsResponse
object
items
Example generated
{ "items": [ { "project_id": "2489E9AD-2EE2-8E00-8EC9-32D5F69181C0", "name": "example", "description": "example", "created_at": "2026-04-15T12:00:00Z", "updated_at": "2026-04-15T12:00:00Z" } ], "page_info": { "has_next": true, "end_cursor": "example", "total_count": 1 }}Invalid or missing API key
Media type application/json
ErrorResponse
Standard error response.
object
detail
required
Detail
Error message describing what went wrong
string
Example generated
{ "detail": "example"}Invalid pagination parameters