Discover/17lands.com API
live

17lands.com API17lands.com

Access 17lands card win rates, color archetype performance, trophy decklists, and player leaderboards for MTG Arena draft formats via a structured API.

Endpoints
5
Updated
4mo ago
Try it

No input parameters required.

api.parse.bot/scraper/185c7f2c-c4bb-4543-804e-36c6f657bb81/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Use it in your codegrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/185c7f2c-c4bb-4543-804e-36c6f657bb81/get_filters' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 5 totalclick to expand

Returns all available expansions, formats, and other filter metadata for constructing queries to other endpoints.

Input

No input parameters required.

Response
{
  "type": "object",
  "fields": {
    "colors": "array of color filter values (null, W, U, B, R, G)",
    "groups": "array of user skill group values (null, bottom, middle, top)",
    "formats": "array of format names (PremierDraft, TradDraft, QuickDraft, etc.)",
    "expansions": "array of expansion codes ordered by recency",
    "start_dates": "object mapping expansion codes to their start date timestamps",
    "ranked_formats": "array of format names that have ranked play",
    "formats_by_expansion": "object mapping expansion codes to their available formats",
    "live_formats_by_expansion": "object mapping currently active expansion codes to their live formats"
  },
  "sample": {
    "data": {
      "colors": [
        null,
        "W",
        "U"
      ],
      "groups": [
        null,
        "bottom",
        "middle"
      ],
      "formats": [
        "PremierDraft",
        "TradDraft",
        "QuickDraft"
      ],
      "expansions": [
        "SOS",
        "TMT",
        "ECL"
      ],
      "start_dates": {
        "SOS": "2026-04-21T15:00:00Z"
      },
      "ranked_formats": [
        "BotDraft",
        "PremierDraft",
        "QuickDraft"
      ],
      "formats_by_expansion": {
        "SOS": [
          "PremierDraft",
          "TradDraft",
          "QuickDraft"
        ]
      },
      "live_formats_by_expansion": {
        "SOS": [
          "PremierDraft",
          "TradDraft",
          "Sealed"
        ]
      }
    },
    "status": "success"
  }
}

About the 17lands.com API

The 17lands API exposes 5 endpoints covering Magic: The Gathering Arena draft analytics, including per-card win rate statistics, archetype color ratings, and 7-win trophy decklists. The get_card_ratings endpoint returns over 10 performance fields per card — including avg_seen, avg_pick, win_rate, drawn_improvement_win_rate, and play_rate — filterable by expansion, format, rarity, color, date range, and user skill group.

Card and Color Performance Data

The get_card_ratings endpoint returns per-card draft statistics for a given expansion and format. Each record includes avg_seen (average pick position when a card is seen in a pack), avg_pick (average pick position when taken), win_rate (game win rate when the card is in the deck), ever_drawn_win_rate, and drawn_improvement_win_rate — the delta in win rate between games where the card was drawn versus games where it sat in the deck. Filters include expansion, format, colors, rarity, user_group (top/middle/bottom), and a start_date/end_date window. Use get_filters first to retrieve valid values for all of these parameters, including available expansion codes and which formats are live right now.

Color Archetype and Trophy Data

get_color_ratings breaks down win/loss records by deck color combination — mono-color through five-color, including splash variants. Each row returns wins, games, color_name, short_name (e.g. WU, BR), and is_summary. The combine_splash boolean collapses splash variants into their base pair for cleaner comparison. The get_trophy_decks endpoint (POST) lists 7-win draft runs with deck metadata: colors, end_rank, start_rank, wins, losses, time, and an aggregate_id for identifying the deck. It accepts filters for ranks, deck_colors, and card_names, but only returns data for currently active or recent expansions.

Leaderboard and Filter Discovery

get_leaderboard returns the top players segmented into five categories — rank, wins, trophies, win_rate, and trophy_rate — each as an array of player entries filterable by expansion and format. The get_filters endpoint acts as a metadata registry: it returns all valid expansion codes, format names, formats_by_expansion, live_formats_by_expansion, and start_dates mapped to each expansion. Call it once to build any query against the other four endpoints.

Common use cases
  • Identify the highest drawn_improvement_win_rate cards in a new MTG set to find signal cards worth prioritizing in draft
  • Compare win_rate by user_group (top vs bottom) to detect cards that overperform for skilled players
  • Track color archetype strength across a format's lifespan using start_date/end_date filters on get_color_ratings
  • Filter get_trophy_decks by deck_colors and card_names to study how top-ranked players build specific archetypes
  • Build a draft tier list app that refreshes daily card ratings per expansion and format from get_card_ratings
  • Display leaderboard data segmented by trophy_rate and win_rate categories from get_leaderboard in a player stats dashboard
  • Use get_filters to automatically discover newly released expansions and their active formats without hardcoding values
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000250 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.

Frequently asked questions
Does 17lands have an official developer API?+
17lands does not publish a documented public developer API. The data exposed here is the same community analytics that appears on 17lands.com, structured for programmatic access.
What does `drawn_improvement_win_rate` actually measure in `get_card_ratings`?+
It is the difference in game win rate between games where the card was drawn and games where the card was in the deck but not drawn. A positive value means drawing the card improved your win probability; a value near zero means the card had little impact once it was in the deck.
Does `get_trophy_decks` return full decklists with card-by-card contents?+
No. It returns deck-level metadata: colors, wins, losses, start_rank, end_rank, time, and aggregate_id. It also returns a has_draft flag indicating whether pick-by-pick draft data is associated with the run. Individual card contents of a trophy deck are not included in the response. You can fork this API on Parse and revise it to add a deck detail endpoint if you need card-level data.
Are older expansion sets available through `get_trophy_decks`?+
The endpoint notes it only returns data for currently active or recent expansions. Historical trophy data for sets no longer in active rotation may not be available. get_card_ratings and get_color_ratings cover a broader historical window via their start_date/end_date parameters.
Does the API cover Constructed or other non-draft MTG Arena formats?+
Not currently. The API focuses on limited formats: PremierDraft, TradDraft, QuickDraft, and Sealed, as surfaced through get_filters. Constructed format data is not included. You can fork this API on Parse and revise it to add endpoints targeting Constructed data if 17lands publishes it.
Page content last updated . Spec covers 5 endpoints from 17lands.com.
Related APIs in SportsSee all →
mtggoldfish.com API
Access Magic: The Gathering metagame data from MTGGoldfish, including popular deck archetypes with popularity metrics, mana composition, and complete card lists. Retrieve metagame breakdowns by format and look up full deck lists by archetype or deck ID.
cardkingdom.com API
Search and browse Magic: The Gathering cards with real-time pricing and availability from Card Kingdom, including buylist prices and current deals. Find card details across all editions and filter by format to discover the best prices across the full catalog.
riftbound.leagueoflegends.com API
Browse and search the complete Riftbound TCG card collection with detailed information including set details, effect text, energy cost, power cost, might ratings, and collector numbers. Access comprehensive card data from the official gallery to find specific cards or explore the full catalog.
cardmarket.com API
Search and browse trading cards across Europe's largest marketplace, accessing detailed card information, listings, seller profiles, and finding the best bargains all in one place. Explore games and expansions to discover available singles and compare prices from multiple sellers.
royaleapi.com API
Track player profiles and battle histories, discover popular decks and card statistics, and explore clan information and leaderboards for Clash Royale. Access comprehensive game data and competitive rankings to improve your gameplay strategy and tournament participation.
grandarchive.com API
Access official Grand Archive TCG news, articles, and comprehensive card database to stay updated on the latest announcements, ban & restricted updates, and guides. Search cards, browse champions, and retrieve detailed card metadata all in one place.
onepiece.gg API
Access One Piece Trading Card Game deck lists and card statistics to discover popular competitive strategies and build optimized decks. Search through detailed deck information to compare card choices and improve your gameplay.
tcgplayer.com API
Search for trading cards across all games and sets on TCGPlayer, and instantly access detailed pricing information by condition plus current seller listings with prices, shipping costs, and seller ratings. Compare card values and find the best deals from multiple sellers all in one place.