cURL
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>" } ] }
list all projects with search params. Returns a paginated response.
API key in Bearer token format
created_at
updated_at
desc
asc
Successful Response
Show child attributes