Skip to main content
GET
/
collections
List Collections
curl --request GET \
  --url https://api.toughtongueai.com/api/public/collections \
  --header 'Authorization: Bearer <token>'
{
  "collections": [
    {
      "id": "collection_abc123",
      "name": "Sales Training Bundle",
      "description": "Complete sales training scenarios",
      "scenario_count": 5,
      "created_at": "2024-01-15T10:30:00Z"
    }
  ]
}
Returns collections you’ve created or have been granted access to. Supports organization context via the X-TT-ORG header.
{
  "collections": [
    {
      "id": "collection_abc123",
      "name": "Sales Training Bundle",
      "description": "Complete sales training scenarios",
      "scenario_count": 5,
      "created_at": "2024-01-15T10:30:00Z"
    }
  ]
}