Skip to main content
GET
/
api
/
vm
/
chase
/
:slug
Get chase cards
curl --request GET \
  --url https://api.example.com/api/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 chase (high-value) cards for a pack, useful for rendering a “what could I pull” preview before purchase.
No authentication required. This is a public read endpoint.

Path parameters

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

Example request

GET /api/vm/chase/topps-chrome-2024

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 (cropped front variant).
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 chase cards available” rather than as an error. Each pack in GET /api/vm/available also includes a short inline chase preview (typically the top cards). Use this endpoint when you need the full chase-card list with back images for a pack detail view.