Skip to main content
GET
/
orgs
/
{org_id}
/
projects
cURL
curl --request GET \
  --url https://api.timbal.ai/orgs/{org_id}/projects \
  --header 'Authorization: Bearer <token>'
{
  "projects": [
    {
      "created_at": 123,
      "id": "<string>",
      "is_public_template": true,
      "name": "<string>",
      "role": "<string>",
      "template_uses": 123,
      "default_role": "<string>",
      "description": "<string>",
      "screenshot_url": "<string>"
    }
  ]
}
Organization admins will retrieve a list of all projects in the organization. Other users will retrieve a list of projects they have access to.

Authorizations

Authorization
string
header
required

Timbal API key. Obtain your API key from the Timbal platform settings. See Authentication for more information.

Path Parameters

org_id
string
required

Response

200 - application/json

Projects listed successfully

projects
object[]
required