Get Models
List all available models for chat completions and embeddings.
Language Models
GET /proxy/v1/modelsList all available language models. No authentication required.
Example Request
bash
curl https://ai.hackclub.com/proxy/v1/modelsResponse Format
This endpoint is OpenAI compatible, so the response format matches the OpenAI models endpoint:
json
{
"object": "list",
"data": [
{
"id": "qwen/qwen3-32b",
"object": "model",
"created": 1677649963,
"owned_by": "qwen"
},
...
]
}Embedding Models
GET /proxy/v1/embeddings/modelsList all available embedding models. No authentication required.
Example Request
bash
curl https://ai.hackclub.com/proxy/v1/embeddings/modelsResponse Format
This endpoint is OpenRouter compatible, so the response format matches the OpenRouter models endpoint.