Skip to main content
GET
/
v1
/
projects
List projects for the authenticated tenant
curl --request GET \
  --url https://api.trulayer.ai/v1/projects \
  --header 'Authorization: Bearer <token>'
{
  "projects": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "organization_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "name": "<string>",
      "slug": "<string>",
      "created_at": "2023-11-07T05:31:56Z",
      "updated_at": "2023-11-07T05:31:56Z",
      "archived_at": "2023-11-07T05:31:56Z",
      "retention_days_override": 2
    }
  ],
  "next_cursor": "<string>",
  "has_more": true
}

Documentation Index

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

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

Authorizations

Authorization
string
header
required

SDK API key (tl_...) or Clerk session JWT

Query Parameters

include_archived
boolean
default:false
cursor
string

Opaque cursor from a prior next_cursor. Omit for the first page.

limit
integer
default:50
Required range: 1 <= x <= 200

Response

Project list

projects
object[]
required
next_cursor
string | null
has_more
boolean