cURL
curl --request GET \ --url https://api.example.com/projects/{project_id} \ --header 'Authorization: Bearer <token>'
{ "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": { "id": "<string>", "created_at": "2023-11-07T05:31:56Z", "name": "<string>", "slug": "<string>", "is_default": true, "created_by_user_id": "<string>" }, "created_by_user": { "id": "<string>", "created_at": "2023-11-07T05:31:56Z", "username": "<string>" }, "description": "<string>", "tags": [ "<string>" ], "github_repo_id": 123, "github_repo": { "id": 123, "created_at": "2023-11-07T05:31:56Z", "updated_at": "2023-11-07T05:31:56Z", "name": "<string>", "is_private": true, "is_active": true, "installation": "<string>" } }
retrieve a specific project by ID
API key in Bearer token format
Successful Response
Show child attributes