Get project
Get project
Returns a single project by ID, with the fields that define it. A project is the container that owns exactly one agent.
GET
Get project
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
curl --request GET \
--url https://realtime-api.voiceflow.com/v1/stable/project/{projectID} \
--header 'Authorization: Bearer <token>'{
"project": {
"id": "<string>",
"name": "<string>",
"image": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"workspaceID": "<string>",
"description": "<string>"
}
}Returns a single project by ID, with the fields that define it. A project is the container that owns exactly one agent.
curl --request GET \
--url https://realtime-api.voiceflow.com/v1/stable/project/{projectID} \
--header 'Authorization: Bearer <token>'{
"project": {
"id": "<string>",
"name": "<string>",
"image": "<string>",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z",
"workspaceID": "<string>",
"description": "<string>"
}
}Voiceflow bearer token
The ID of the project to operate on.
Returns the one project, with its name, description, image URL, and the workspace that holds it.
Show child attributes
Was this page helpful?