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>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.timbal.ai/llms.txt

Use this file to discover all available pages before exploring further.

Organization admins will retrieve a list of all projects in the organization. Other users will retrieve a list of projects they have access to.
Use the view query parameter to control the response detail level. The default list view returns a lightweight ProjectPreview per project. Pass view=full to get the same rich ProjectDetail shape returned by the Get Project endpoint — including environments, knowledge bases, integrations, and workforce.

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

Query Parameters

view
enum<string>

Response detail level: "list" (default) returns a lightweight preview, "full" returns all project details

Available options:
list,
full

Response

200 - application/json

Projects listed successfully

projects
object[]
required