---
title: "GET /api/v1/client/models"
method: GET
path: "/api/v1/client/models"
tags: ["Client API"]
---

# GET /api/v1/client/models

`GET /api/v1/client/models`

Endpoint for fetching all available models.

## Query parameters

- `per_page` integer
- `page` integer
- `filter[inference_types]` string[]

## Headers

- `Accept` 'application/json', required

## Response `200`

List of available models.

- ClientDiffusionModelCollection
  - `data` ClientDiffusionModelResource[] — List of available models
    - `name` string
    - `slug` string
    - `inference_types` object — Available inference types for this model with their specific configurations
    - `tags` string[] — Controlled labels for this model (e.g. test, experimental, new, beta).
    - `status` 'test_model' | 'standard_model' — Model maturity: test_model for externally-provided models, standard_model for native fleet models.
    - `info` object — Model specifications including limits, features, and defaults. Structure varies by model type.
    - `loras` ClientLoraResource[], nullable — Available LoRA models for this diffusion model. Only present when the model supports LoRA and has LoRA models available.
      - `display_name` string — Human friendly Lora name
      - `name` string — Lora name
    - `languages` ClientLanguageResource[], nullable — Available languages and voices for this model. Only present for TTS models that support multiple languages.
      - `name` string — Language display name
      - `slug` string — Language identifier slug
      - `voices` ClientVoiceResource[] — Available voices for this language
        - `name` string — Voice display name
        - `slug` string — Voice identifier slug
        - `gender` string, nullable — Voice gender classification

## Other responses

- `401` — Unauthorized user.
- `404` — Request not found.
- `429` — Rate limit exceeded. Check X-RateLimit-Type header to determine if minute (RPM) or daily (RPD) limit was hit.

---

[API](https://skmtc.net/deapi/apis/deapi-rest-api.md) · [All operations](https://skmtc.net/deapi/apis/deapi-rest-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/deapi/deapi-rest-api/versions/c70b8b231ca8/schema)
