Browse and inspect the OpenDunes model catalog from Go.
The model catalog is public — no API key required. Each entry includes the provider, capabilities, context length, and DA pricing.
The catalog endpoint is GET /api/models. You can query it directly with Go's net/http or any HTTP client:
Append query parameters to narrow results:
| Parameter | Values | Description |
|---|---|---|
q | string | Full-text search |
provider | e.g. anthropic | Filter by provider |
capability | streaming, tools, vision, json_mode | Required capability |
free | true | Free models only |
context_min | integer | Minimum context window |
sort | popularity, price, name, context, newest | Sort field |
order | asc, desc | Sort direction |
Fetch a specific model by its slug:
The slug format is always provider/model. You can also browse the full catalog in the UI at /models.
GET /api/models/facets — available filter values (providers, capabilities, modalities).GET /api/models/stats — aggregate counts and pricing stats across the catalog.