Skip to main content
Base URL: https://api.freemodel.app/v1
List the models available to your API key before selecting a model in a request.

List available models

GET /models
curl https://api.freemodel.app/v1/models \
  -H "Authorization: Bearer sk-xxxx"
Response
{
  "object": "list",
  "data": [
    {
      "id": "gpt-5.4-mini",
      "object": "model",
      "created": 1730000000,
      "owned_by": "freemodel"
    }
  ]
}
Use each returned data[].id as the model value for compatible endpoints. The response is scoped to your key, so it is more reliable than a hardcoded model list. For current public pricing, visit the FreeModel models page.