---
title: "List Models"
method: GET
path: "/api/models/"
tags: ["models"]
---

# List Models

`GET /api/models/`

List all model configurations accessible to the current user

## Query parameters

- `skip` integer
- `limit` integer
- `model_provider` string, nullable — Filter by model type
- `category` string, nullable — Filter by category (llm, image)
- `is_active` boolean, nullable — Filter by active status

## Response `200`

Successful Response

- ModelWithAccessInfo[]
  - `id` integer, required
  - `model_id` string, required
  - `category` string, required
  - `model_provider` string, required
  - `model_name` string, required
  - `base_url` string, nullable, required
  - `temperature` number, nullable, required
  - `dimension` integer, nullable, required
  - `abilities` string[], nullable, required
  - `description` string, nullable, required
  - `created_at` string, nullable, required
  - `updated_at` string, nullable, required
  - `is_active` boolean, required
  - `is_owner` boolean, required
  - `can_edit` boolean, required
  - `can_delete` boolean, required
  - `is_shared` boolean, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/xorbitsai/apis/xagent.md) · [All operations](https://skmtc.net/xorbitsai/apis/xagent/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/xorbitsai/xagent/revisions/33e4ba4936ad/schema)
