cURL
curl --request GET \
--url https://davinci-app.com/api/v2/programmatic \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"name": "<string>",
"version": "<string>",
"description": "<string>",
"documentation": "<string>",
"endpoints": {},
"authentication": "<string>"
}
}General
Get programmatic API metadata
Returns the current public programmatic API name, version, endpoint map, and authentication hint.
GET
https://davinci-app.com
/
api
/
v2
/
programmatic
cURL
curl --request GET \
--url https://davinci-app.com/api/v2/programmatic \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": {
"name": "<string>",
"version": "<string>",
"description": "<string>",
"documentation": "<string>",
"endpoints": {},
"authentication": "<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.
Response
200 - application/json
Programmatic API metadata.
⌘I