Skip to main content
GET
/
collections
/
{collection_id}
Get Collection
curl --request GET \
  --url https://api.toughtongueai.com/api/public/collections/{collection_id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "collection_abc123",
  "name": "Sales Training Bundle",
  "description": "Complete sales training scenarios",
  "scenarios": [
    {
      "id": "scenario_xyz",
      "name": "Cold Call Practice"
    }
  ],
  "created_at": "2024-01-15T10:30:00Z"
}
Retrieve details for a collection you own or have access to. Supports organization context via the X-TT-ORG header.
collection_id
string
required
The unique identifier of the collection
{
  "id": "collection_abc123",
  "name": "Sales Training Bundle",
  "description": "Complete sales training scenarios",
  "scenarios": [
    {
      "id": "scenario_xyz",
      "name": "Cold Call Practice"
    }
  ],
  "created_at": "2024-01-15T10:30:00Z"
}