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

# List Models

> List available models

Retrieve a list of available GPU models and their current status on the Comput3 Network.

## Authentication Required

This endpoint requires a valid API key in the Authorization header:

```bash theme={null}
Authorization: Bearer YOUR_API_KEY
```

## Example Request

```bash curl theme={null}
curl -X GET "https://api.comput3.ai/v1/models" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json"
```

## Response

Returns an array of available models with their specifications and availability status.

```json theme={null}
{
  "models": [
    {
      "id": "llama-2-7b",
      "name": "Llama 2 7B",
      "status": "available",
      "gpu_type": "A100",
      "memory_gb": 40
    }
  ]
}
```


## OpenAPI

````yaml GET /models
openapi: 3.1.0
info:
  title: Comput3 Network API
  description: >-
    API for the Comput3 Network - distributed GPU computing platform for AI
    workloads
  license:
    name: MIT
  version: 1.0.0
servers:
  - url: https://api.comput3.ai/v1
security:
  - bearerAuth: []
paths:
  /models:
    get:
      description: List available models
      responses:
        '200':
          description: List of available models
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Model'
components:
  schemas:
    Model:
      type: object
      properties:
        id:
          type: string
        object:
          type: string
        created:
          type: integer
        owned_by:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````