> ## Documentation Index
> Fetch the complete documentation index at: https://magica.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Deprecated model runs

> List deprecated model identifiers and inspect legacy run history where supported.

Use this endpoint only for migration and historical lookup flows. New integrations should discover supported models with [`GET /v1/models`](/api-reference/nodes/list-models), [`GET /v1/models/catalog`](/api-reference/nodes/model-catalog), and [`GET /v1/models/search`](/api-reference/nodes/search).


## OpenAPI

````yaml GET /v1/nodes/deprecated-models
openapi: 3.1.0
info:
  title: Magica REST API
  version: 1.0.0
  description: >-
    REST API for managing Magica resources. Authenticate public endpoints with
    your Magica API key: Authorization: Bearer gx_xxx.
servers:
  - url: https://api.magica.com/api
security:
  - bearerAuth: []
paths:
  /v1/nodes/deprecated-models:
    get:
      tags:
        - Public REST
      summary: GET /api/v1/nodes/deprecated-models
      responses:
        '400':
          description: Bad Request
        '500':
          description: Internal Server Error
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````