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

# Get Model

> Get detailed information about a specific model.

Returns complete model specifications including capabilities,
pricing, context window, and parameter options.

**Example:**
```
GET /integrations/providers/openai/models/gpt-4o
GET /integrations/providers/anthropic/models/claude-3-5-sonnet-20241022
```



## OpenAPI

````yaml api-reference/openapi.json get /api/v1/integrations/providers/{provider_id}/models/{model_id}
openapi: 3.1.0
info:
  title: FastAPI app
  version: 0.1.0
servers: []
security: []
paths:
  /api/v1/integrations/providers/{provider_id}/models/{model_id}:
    get:
      tags:
        - Integrations
      summary: Get Model
      description: |-
        Get detailed information about a specific model.

        Returns complete model specifications including capabilities,
        pricing, context window, and parameter options.

        **Example:**
        ```
        GET /integrations/providers/openai/models/gpt-4o
        GET /integrations/providers/anthropic/models/claude-3-5-sonnet-20241022
        ```
      operationId: >-
        get_model_api_v1_integrations_providers__provider_id__models__model_id__get
      parameters:
        - name: provider_id
          in: path
          required: true
          schema:
            type: string
            title: Provider Id
        - name: model_id
          in: path
          required: true
          schema:
            type: string
            title: Model Id
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError

````