Skip to main content
GET
/
api
/
v1
/
vm
/
chase
/
:slug
Get top hits
curl --request GET \
  --url https://api.example.com/api/v1/vm/chase/:slug
[
  {
    "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
  }
]
Returns the top hits for a pack, useful for rendering a “what could I pull” preview.

Path parameters

slug
string
required
The pack’s slug from /api/v1/vm/available.

Example request

GET /api/v1/vm/chase/rookie-pack-b6khqj
X-API-Key: <your_api_key>

Response

[
  {
    "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
  }
]

Fields

id
string
Card identifier.
name
string
Card name.
image
string
CDN URL for the card image.
back_image
string | null
CDN URL for the card back image, or null when not available.
fmv
number
Fair-market value in USD.

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.