---
title: "Get a managed index"
method: GET
path: "/v1/rag/managed_indexes/{index_name}"
tags: ["beta.rag.managed_indexes"]
---

# Get a managed index

`GET /v1/rag/managed_indexes/{index_name}`

Returns the managed search index with the given name.

## Path parameters

- `index_name` string, required

## Response `200`

Successful Response

- ManagedIndexResponse — Wire representation of a managed index (decoupled from the domain model).
  - `id` string, uuid, required
  - `name` string, required
  - `status` 'provisioning' | 'ready' | 'failed' | 'deleting', required — Lifecycle of an index. Derived, not stored -- see ``managed_index_from_row``.
  - `status_message` string, nullable
  - `schema` ManagedIndexFields, required
    - `document_fields` object
    - `chunk_fields` object
  - `config` ManagedIndexConfig, required
    - `embedding` union, required
      - MistralEmbeddingModel
        - `type` 'mistral'
        - `name` string, required
        - `dtype` 'float16' | 'float32'
        - `dimensions` integer, required
        - `distance_metric` 'cosine' | 'inner_product' | 'l2'
      - CustomEmbeddingModel
        - `type` 'custom'
        - `name` string, required
        - `dtype` 'float16' | 'float32'
        - `dimensions` integer, required
        - `distance_metric` 'cosine' | 'inner_product' | 'l2'
  - `created_at` string, date-time, nullable
  - `modified_at` string, date-time, nullable

## Other responses

- `404` — Index not found
- `422` — Validation Error

## Changes

- **2026-09-23** `fa73befe1c61` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/mistral/apis/mistral-ai-api/changes/v1/rag/managed_indexes/:index_name/get.md)

---

[API](https://skmtc.dev/mistral/apis/mistral-ai-api.md) · [All operations](https://skmtc.dev/mistral/apis/mistral-ai-api/llms.txt) · [OpenAPI document](https://skmtc.dev/mistral/apis/mistral-ai-api/revisions/fa73befe1c61?raw)
