Projects
List All Projects
List all projects (id + name only) for dropdown selectors.
GET
List All Projects
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
List all projects (id + name only) for dropdown selectors.
curl --request GET \
--url https://api.oviond.com/v1/projects/all \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": [
{
"id": "<string>",
"name": "<string>"
}
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
curl --request GET \
--url https://api.oviond.com/v1/projects/all \
--header 'Authorization: Bearer <token>'{
"success": true,
"data": [
{
"id": "<string>",
"name": "<string>"
}
]
}