cURL
curl --request GET \
--url https://davinci-app.com/api/v2/programmatic/projects/{projectId}/objects/{objectId} \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"id": "<string>",
"type": "<string>",
"name": "<string>",
"parent": "<string>",
"children": [
"<string>"
],
"documentation": "<string>"
}
}Projects
Get a project object
Returns a full object payload. Object shape is type-specific; common fields are documented and extra fields are allowed.
GET
https://davinci-app.com
/
api
/
v2
/
programmatic
/
projects
/
{projectId}
/
objects
/
{objectId}
cURL
curl --request GET \
--url https://davinci-app.com/api/v2/programmatic/projects/{projectId}/objects/{objectId} \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"id": "<string>",
"type": "<string>",
"name": "<string>",
"parent": "<string>",
"children": [
"<string>"
],
"documentation": "<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:
1Minimum string length:
1Query Parameters
⌘I