> ## 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.

# List models

> Get a list of models available via the Anthropic-compatible API.



## OpenAPI

````yaml /api-reference/openapi.json get /anthropic/v1/models
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:
    get:
      tags:
        - Anthropic
      summary: List models
      description: Get a list of models available via the Anthropic-compatible API.
      operationId: getAnthropicV1Models
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      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
                  has_more:
                    type: boolean
                  first_id:
                    type:
                      - string
                      - 'null'
                  last_id:
                    type:
                      - string
                      - 'null'
                required:
                  - data
                  - has_more
                  - first_id
                  - last_id
        '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

- [List models](/api-reference/models/list-models.md)
- [Integrasi Claude Desktop](/id/agents/claude-desktop.md)
- [Integrasi Cursor](/id/agents/cursor.md)
- [Integrasi Cline & Roo Code](/id/agents/cline.md)
- [List batches](/api-reference/batches/list-batches.md)
