Skip to main content
GET
https://davinci-app.com
/
api
/
v2
/
programmatic
/
projects
cURL
curl --request GET \
  --url https://davinci-app.com/api/v2/programmatic/projects \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "projects": [
      {
        "id": "<string>",
        "projectId": "<string>",
        "name": "<string>",
        "ownerLicenseKey": "<string>",
        "ownerUserId": "<string>",
        "ownerOrgId": "<string>",
        "visibility": "<string>",
        "createdAt": "<string>",
        "modifiedAt": "<string>"
      }
    ],
    "count": 1,
    "page": 2,
    "limit": 2,
    "totalPages": 1
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.davinci-app.com/llms.txt

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

Authorizations

Authorization
string
header
default:dav_ak_live_your_token
required

Personal access token. Programmatic reads require the projects:read scope.

Query Parameters

page
integer
default:1
Required range: x >= 1
limit
integer
default:50
Required range: 1 <= x <= 100

Response

Project page.

success
boolean
required
data
object
required