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

# Get top hits

> Returns all top hits (high-value cards) for a given pack.

Returns the top hits for a pack, useful for rendering a "what could I pull" preview.

## Path parameters

<ParamField path="slug" type="string" required>
  The pack's `slug` from [`/api/v1/vm/available`](/api-reference/packs/list).
</ParamField>

## Example request

```http theme={"dark"}
GET /api/v1/vm/chase/rookie-pack-b6khqj
X-API-Key: <your_api_key>
```

## Response

<ResponseExample>
  ```json 200 theme={"dark"}
  [
    {
      "id": "card_id1",
      "name": "Juan Soto RC Auto /25",
      "image": "https://cdn.phygitals.com/cards/soto-rc-auto.png",
      "back_image": "https://cdn.phygitals.com/cards/soto-rc-auto-back.png",
      "fmv": 250.00
    },
    {
      "id": "card_id2",
      "name": "Juan Soto RC Auto /25",
      "image": "https://cdn.phygitals.com/cards/soto-rc-auto.png",
      "back_image": "https://cdn.phygitals.com/cards/soto-rc-auto-back.png",
      "fmv": 250.00
    },
    {
      "id": "card_id3",
      "name": "Juan Soto RC Auto /25",
      "image": "https://cdn.phygitals.com/cards/soto-rc-auto.png",
      "back_image": null,
      "fmv": 250.00
    }
  ]
  ```
</ResponseExample>

## Fields

<ResponseField name="id" type="string">
  Card identifier.
</ResponseField>

<ResponseField name="name" type="string">
  Card name.
</ResponseField>

<ResponseField name="image" type="string">
  CDN URL for the card image.
</ResponseField>

<ResponseField name="back_image" type="string | null">
  CDN URL for the card back image, or `null` when not available.
</ResponseField>

<ResponseField name="fmv" type="number">
  Fair-market value in USD.
</ResponseField>

## Errors

An unknown `:slug` returns `200 []` (empty array), **not** a `404`. Treat an empty array as "no top hits available" rather than as an error.
