> ## Documentation Index
> Fetch the complete documentation index at: https://docs.aihubmix.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Pool Vendors & Icons

> Login-free lookup of display names and icons per model vendor, for rendering leaderboards and model cards

## Request Parameters

This is a login-free open endpoint — no authentication required; it can be called directly from frontend pages or third parties. CORS is enabled and the global API rate limit applies. No request parameters.

## Response Parameters

The response is a raw JSON object: keys are vendor ids (corresponding to the `v` field of [Routing Leaderboard & Model Pool](/en/api/RouterEndpoints/leaderboard) entries); values are the vendor's display metadata. Only vendors currently in the model pool are included.

<ResponseField name="{vendor}" type="object">
  Display metadata for one vendor.

  <ResponseField name="name" type="string">
    Vendor display name. Falls back to the vendor id when no matching vendor metadata exists.
  </ResponseField>

  <ResponseField name="icon" type="string">
    URL of the vendor logo. May be an empty string, in which case the frontend should provide its own fallback (e.g. a monogram placeholder).
  </ResponseField>
</ResponseField>

<Note>
  Results are cached server-side for 5 minutes: right after the model pool updates, a newly pooled vendor may take up to 5 minutes to appear in this response — fall back gracefully on missing keys.
</Note>

<ResponseExample>
  ```json 200 theme={null}
  {
    "anthropic": {
      "name": "Anthropic",
      "icon": "https://.../logo_claude.svg"
    },
    "deepseek": {
      "name": "DeepSeek",
      "icon": "https://.../logo_deepseek.svg"
    }
  }
  ```
</ResponseExample>

***

Last updated: 2026-07-13
