List available models

View as markdown
GET /z1/models

Get a list of all Plimver AI models available to your tier.

Model Tiers

  • Free: PV-TURBO, PV-CODEX (limited)
  • Startup: All models (limited)
  • Business: All models (unlimited)
  • Enterprise: All models + custom fine-tuning

Responses

  • 200 application/json

    List of models

    Hide response attribute Show response attribute object
    • models array[object]
      Hide models attributes Show models attributes object
      • id string
      • name string
      • description string
      • speed string
      • quality string
      • credit_cost integer

        Credits per request

      • use_cases array[string]
GET /z1/models
curl \
 --request GET 'https://api.plimverai.tech/z1/models' \
 --header "Authorization: Bearer $ACCESS_TOKEN"
Response examples (200)
{
  "models": [
    {
      "id": "PV-TURBO",
      "name": "Plimver Turbo",
      "description": "Ultra-fast responses for real-time applications",
      "speed": "Fastest (<1s)",
      "quality": "Good",
      "credit_cost": 1,
      "use_cases": [
        "Chat",
        "Quick answers",
        "Real-time interactions"
      ]
    }
  ]
}