---
title: "Public Model Hub Facet"
method: GET
path: "/public/v1/model_hub/{facet}"
tags: ["public", "model management"]
---

# Public Model Hub Facet

`GET /public/v1/model_hub/{facet}`

The distinct providers, modes or features across the published model groups, for the
Model Hub's filter dropdowns. No authentication.

Carries the same filters and search as the list route, so a dropdown offers exactly
the values the table can show: asking for providers under `filter[mode][in]=chat`
lists only the providers that serve a chat model.

Example curl:
```
curl --location --globoff         'http://0.0.0.0:4000/public/v1/model_hub/providers?filter[mode][in]=chat&page_size=50'
```

## Path parameters

- `facet` 'providers' | 'modes' | 'features', required

## Response `200`

Successful Response

- FacetListResponse — The distinct values one column takes over a filtered query. `data` holds bare values, not entity rows.
  - `data` string[], required
  - `meta` PageMeta, required — `has_more` rather than `total_count`, which would need a COUNT(*) over the whole match set per keystroke.
    - `page` integer, required
    - `page_size` integer, required
    - `has_more` boolean, required
  - `links` PageLinks, required — Hypermedia for a paginated list. No `first`/`last`: without a total count the last page is unknown.
    - `self` string, required
    - `prev` string, nullable
    - `next` string, nullable

## Other responses

- `422` — Validation Error

## Changes

- **2026-09-18** `082b5fabd909` — 1 info
  - endpoint added

[Change history](https://skmtc.dev/flock/apis/litellm-api/changes/public/v1/model_hub/:facet/get.md)

---

[API](https://skmtc.dev/flock/apis/litellm-api.md) · [All operations](https://skmtc.dev/flock/apis/litellm-api/llms.txt) · [OpenAPI document](https://skmtc.dev/flock/apis/litellm-api/revisions/7ed45f30a5f0?raw)
