Model Intelligence API

Know which model to use.

Real-time pricing, benchmarks, and capability matching — served as an API.

$ curl "https://api.modelvet.ai/api/v1/recommend?task=code_generation"

Free tier · 1,000 req/day · No credit card

The response is the product.

One request. Ranked models, real prices, latency estimates.

GET /api/v1/recommend 200 OK · 38ms
Request
curl "https://api.modelvet.ai/api/v1/recommend?task=code_generation&maxCost=5&limit=3" \
  -H "Authorization: Bearer mv_..."
Response
{
  "task": "code_generation",
  "results": [
    {
      "model": "claude-sonnet-4-20250514",
      "provider": "anthropic",
      "score": 0.94,
      "cost_per_1m_tokens": 3.00,
      "latency_p50_ms": 820,
      "context_window": 200000
    },
    {
      "model": "gpt-4.1",
      "provider": "openai",
      "score": 0.91,
      "cost_per_1m_tokens": 2.00,
      "latency_p50_ms": 950,
      "context_window": 1047576
    },
    {
      "model": "gemini-2.5-pro",
      "provider": "google",
      "score": 0.89,
      "cost_per_1m_tokens": 1.25,
      "latency_p50_ms": 1100,
      "context_window": 1048576
    }
  ]

Task presets