Skip to main content
GET
/
models
cURL
curl --request GET \
  --url https://api.comput3.ai/v1/models \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "<string>",
      "object": "<string>",
      "created": 123,
      "owned_by": "<string>"
    }
  ]
}
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:
Authorization: Bearer YOUR_API_KEY

Example Request

curl
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.
{
  "models": [
    {
      "id": "llama-2-7b",
      "name": "Llama 2 7B",
      "status": "available",
      "gpu_type": "A100",
      "memory_gb": 40
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200 - application/json

List of available models

data
object[]