Skip to main content
GET
/
api
/
user
/
available_models
Get the List of Available Models for the Current User
curl --request GET \
  --url https://aihubmix.com/api/user/available_models \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "model": "<string>",
      "developer_id": 123,
      "order": 123
    }
  ],
  "success": true,
  "message": "<string>"
}

Documentation Index

Fetch the complete documentation index at: https://docs.aihubmix.com/llms.txt

Use this file to discover all available pages before exploring further.

Request Parameters

Request Headers

Authentication for the request. This API uses the AIHubMix Manage Key for authentication.
The content type of the request. This parameter must be set to application/json.

Response Parameters

data
array
List of models.
model
string
Model name.
developer_id
integer
Model developer ID.
order
integer
Model order.
success
boolean
Indicates success.
message
string
Message (may be empty). Returns the reason for failure if the request fails.