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

# Retrieve model

> Get information about a specific model via the Anthropic-compatible API.



## OpenAPI

````yaml /api-reference/openapi.json get /anthropic/v1/models/{modelId}
openapi: 3.1.0
info:
  title: Neosantara AI API
  description: OpenAI-compatible LLM Gateway
  version: 1.0.0
servers:
  - url: https://api.neosantara.xyz
    description: Neosantara Production Gateway
security:
  - bearerAuth: []
paths:
  /anthropic/v1/models/{modelId}:
    get:
      tags:
        - Anthropic
      summary: Retrieve model
      description: Get information about a specific model via the Anthropic-compatible API.
      operationId: getAnthropicV1ModelsByModelId
      parameters:
        - schema:
            type: string
          in: path
          name: modelId
          required: true
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                    const: model
                  id:
                    type: string
                  display_name:
                    type: string
                  created_at:
                    type: string
                  context_window:
                    type: number
                  max_output_tokens:
                    type: number
                required:
                  - type
                  - id
                  - display_name
                  - created_at
                  - context_window
                  - max_output_tokens
        '404':
          description: Model not found
          content:
            application/json:
              schema:
                type: object
                properties:
                  type:
                    type: string
                    const: error
                  error:
                    type: object
                    properties:
                      type:
                        type: string
                        enum:
                          - invalid_request_error
                          - authentication_error
                          - permission_error
                          - not_found_error
                          - rate_limit_error
                          - api_error
                          - overloaded_error
                      message:
                        type: string
                      code:
                        type: string
                      param:
                        type:
                          - string
                          - 'null'
                    required:
                      - type
                      - message
                required:
                  - type
                  - error
      security:
        - bearerAuth: []
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````

## Related topics

- [Retrieve model](/api-reference/models/retrieve-model.md)
- [Retrieve file](/api-reference/files/retrieve-file.md)
- [Retrieve batch](/api-reference/batches/retrieve-batch.md)
- [Retrieve video job](/api-reference/videos/retrieve-video-job.md)
- [Retrieve file content](/api-reference/files/retrieve-file-content.md)
