Skip to main content
GET
/
projects
list projects
curl --request GET \
  --url https://api.example.com/projects \
  --header 'Authorization: Bearer <token>'
{
  "page": 123,
  "page_size": 123,
  "more": true,
  "total_pages": 123,
  "results": [
    {
      "id": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "name": "<string>",
      "slug": "<string>",
      "team_id": "<string>",
      "created_by_user_id": "<string>",
      "is_default": true,
      "n_codes": 123,
      "n_analyses": 123,
      "team": "<string>",
      "created_by_user": "<string>",
      "n": 123,
      "description": "<string>",
      "tags": [
        "<string>"
      ],
      "github_repo_id": "<string>",
      "github_repo": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

API key in Bearer token format

Query Parameters

page
integer | null
default:0
page_size
integer | null
default:20
order_by
enum<string> | null
default:created_at
Available options:
created_at,
updated_at
order
enum<string> | null
default:desc
Available options:
desc,
asc
name
string | null
tag
string | null

Response

Successful Response

page
integer
required
page_size
integer
required
more
boolean
required
total_pages
integer
required
results
ProjectIndex · object[]