marvelsnapzone.com APImarvelsnapzone.com ↗
Access Marvel Snap card stats, energy costs, abilities, artwork, variants, and location effects via 4 structured endpoints from marvelsnapzone.com.
curl -X GET 'https://api.parse.bot/scraper/033dbbca-6b5e-4f24-a630-99cc7b0a6a53/get_cards?limit=3&offset=0' \ -H 'X-API-Key: $PARSE_API_KEY'
Get a paginated list of all Marvel Snap cards with metadata and variants. Returns cards sorted alphabetically by name.
| Param | Type | Description |
|---|---|---|
| limit | integer | Number of cards to return per page. |
| offset | integer | Starting index for pagination. |
{
"type": "object",
"fields": {
"cards": "array of card objects with slug, card_def_id, name, description, cost, power, source, art_url, type, and variants",
"total": "integer total number of cards in the database"
},
"sample": {
"data": {
"cards": [
{
"cost": "5",
"name": "Abomination",
"slug": "abomination",
"type": "Character",
"power": "9",
"source": "starter-card",
"art_url": "https://marvelsnapzone.com/wp-content/themes/blocksy-child/assets/media/cards/abomination.webp",
"variants": [
{
"id": "01",
"rarity": "Rare",
"source": "GeneralPool",
"art_url": null,
"category": "Pixel"
}
],
"card_def_id": "Abomination",
"description": ""
}
],
"total": 848
},
"status": "success"
}
}About the marvelsnapzone.com API
The Marvel Snap Zone API exposes 4 endpoints covering cards, variants, and locations from the Marvel Snap card game. The get_cards endpoint returns a paginated list of every card in the database — including cost, power, description, artwork URL, and all associated variants — while get_locations delivers the full location roster with effects, rarity, difficulty ratings, and featured date history.
Card Data
The get_cards endpoint returns an alphabetically sorted, paginated list of cards. Each card object includes slug, card_def_id, name, description, cost, power, source, art_url, type, and a variants array. Use the limit and offset parameters to page through the full catalog. The total field in the response tells you how many cards are in the database, so you can calculate pages without a separate count request.
Card Details and Search
get_card_details accepts a single required slug parameter (e.g. iron-man, absorbing-man) and returns the full field set for that card, including all available variants. Each variant object carries id, category, rarity, source, and art_url, making it straightforward to build variant galleries or filter by rarity tier. search_cards performs a case-insensitive substring match against both name and slug fields — useful for autocomplete or loose lookups where you only have a partial name like doom or spider.
Locations
get_locations returns a single dictionary keyed by location slug. Each location entry includes CardDefId, name, description, abilities, rarity, tip, difficulty, released, hasChange, wasAddedIn, and wasChangedIn. The wasChangedIn and hasChange fields let you track which locations have been patched over time, and difficulty provides a structured signal for how much a location disrupts standard play patterns.
Coverage Notes
Card source fields indicate acquisition method (e.g. Season Pass, Token Shop, Series drop), which is useful for building deck-building tools that surface obtainability alongside stats. Variant data is scoped to what is catalogued on Marvel Snap Zone; not every variant released in-game may appear if it hasn't been indexed on the source site yet.
- Build a card browser that surfaces cost, power, and ability text alongside artwork for every card in the game.
- Populate an autocomplete search field using
search_cardswith partial name queries like 'spider' or 'doom'. - Track location balance changes over time using the
wasChangedInandhasChangefields fromget_locations. - Generate variant galleries filtered by rarity tier using the
variantsarray returned byget_card_details. - Filter obtainable cards by
sourcefield to show players which cards are currently available in the Token Shop or Season Pass. - Seed a deck-builder app with full card stats by paginating through
get_cardswithlimitandoffset. - Show difficulty ratings and tips for each location to help players prepare counter-strategies.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does Marvel Snap Zone have an official developer API?+
What does the `variants` array in a card response contain?+
id, category, rarity, source, and art_url. This lets you distinguish between, say, a common border variant and a Signature Series art variant for the same card, and retrieve the artwork URL for each.Does the API return deck data, win-rate statistics, or meta tier lists?+
How does pagination work for `get_cards`?+
limit (cards per page) and offset (starting index) as query parameters. The response always includes a total integer reflecting the full database count, so you can calculate how many pages remain without making an extra request.Are card bundle prices or in-game shop costs included?+
source field indicates acquisition method (e.g. Token Shop, Series 3 drop) but does not include currency amounts. You can fork this API on Parse and revise it to add a pricing-focused endpoint if that data becomes available on the source site.