Slm models

List all SLM models

Retrieve a paginated list of all available Small Language Models

GET
/slm-models
Authorization<token>

API key in the format: Bearer YOUR_API_KEY

In: header

Query Parameters

limit?integer

Maximum number of results to return (max 100)

Default50
Range1 <= value <= 100
offset?integer

Number of results to skip

Default0
Range0 <= value

Response Body

application/json

curl -X GET "https://api.chorus-ai.co/v1/slm-models"
{
  "data": [
    {
      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
      "name": "string"
    }
  ],
  "pagination": {
    "total": 0,
    "limit": 0,
    "offset": 0
  }
}

Last updated on