Models

List available models via the Anthropic-compatible endpoint.

List models

GET
/anthropic/v1/models

Returns the list of models available on your current plan.

curl https://api.hacxgpt.com/anthropic/v1/models \
  -H "x-api-key: hk-proj-YOUR_API_KEY" \
  -H "anthropic-version: 2023-06-01"

Response

Response
{
  "data": [
    {
      "id": "hacxgpt",
      "display_name": "HacxGPT",
      "created_at": "2025-01-01T00:00:00Z"
    }
  ]
}