cURL
curl --request GET \
--url https://davinci-app.com/api/v2/programmatic/projects/{projectId} \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"id": "<string>",
"name": "<string>",
"accessReason": "<string>",
"permissions": [
"<string>"
],
"ownerUserId": "<string>",
"ownerOrgId": "<string>",
"slug": "<string>",
"visibility": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
}Projects
Get project metadata and permissions
Returns 404 when the project does not exist or is hidden from the caller.
GET
https://davinci-app.com
/
api
/
v2
/
programmatic
/
projects
/
{projectId}
cURL
curl --request GET \
--url https://davinci-app.com/api/v2/programmatic/projects/{projectId} \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"id": "<string>",
"name": "<string>",
"accessReason": "<string>",
"permissions": [
"<string>"
],
"ownerUserId": "<string>",
"ownerOrgId": "<string>",
"slug": "<string>",
"visibility": "<string>",
"createdAt": "<string>",
"updatedAt": "<string>"
}
}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
Personal access token. Programmatic reads require the projects:read scope.
Path Parameters
Project id. May be compound in the form {projectId}--{branchName}.
Minimum string length:
1Response
Project metadata.
⌘I