curl --request GET \
--url https://app.kapso.ai/api/v1/projects/{project_id} \
--header 'X-API-Key: <api-key>'
{
"data": {
"id": "project-456def",
"name": "Customer Support Project",
"description": "Main project for customer support operations",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
}
Returns details for a specific project
curl --request GET \
--url https://app.kapso.ai/api/v1/projects/{project_id} \
--header 'X-API-Key: <api-key>'
{
"data": {
"id": "project-456def",
"name": "Customer Support Project",
"description": "Main project for customer support operations",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z"
}
}
API key required for all endpoints
Project details
The response is of type object
.
Was this page helpful?