Skip to content

List projects

GET
/v1/projects

Retrieves a paginated list of projects available to the API token across all teams. Use the archived query parameter to switch between active and archived projects.

Authorizations

BearerAuth

API token provided in the Authorization header as a Bearer token.

Type
HTTP (bearer)

Parameters

Query Parameters

page

The page number to retrieve. Starts at 1.

Type
integer
Default
1
Minimum
1
page_size

Number of items per page (defaults to 25, maximum 100).

Type
integer
Default
25
Minimum
1
Maximum
100
archived

When true, returns archived projects instead of active ones.

Type
boolean
Default
false

Responses

Successful retrieval of the list of projects.

application/json
JSON
{
  
"projects": [
  
  
{
  
  
  
"id": "ab12cd34ef56gh78ij90klmn",
  
  
  
"name": "Landing Page Redesign",
  
  
  
"status": "active",
  
  
  
"team_id": "4a9d7b2c01e3f5g8h2j4k6l9",
  
  
  
"created_at": "2025-10-20T08:00:00.000Z",
  
  
  
"updated_at": "2025-11-04T12:05:30.000Z",
  
  
  
"is_widget_installed": true
  
  
}
  
],
  
"meta": {
  
  
"total_count": 105,
  
  
"page": 2,
  
  
"page_size": 25,
  
  
"last_page": false
  
}
}

Playground

Authorization
Variables
Key
Value

Samples

Powered by VitePress OpenAPI