Discover/metatft.com API
live

metatft.com APImetatft.com

Access TFT team composition data from MetaTFT: comp names, win rates, pick rates, recommended items, star carries, and traits via 3 structured endpoints.

Endpoints
3
Updated
14d ago
Try it
Number of days for stats (e.g., '1', '3', '7').
Comma-separated rank filter. Accepted values: CHALLENGER, GRANDMASTER, MASTER, DIAMOND, EM
Patch filter (e.g., 'current').
Queue ID (1100 for ranked).
api.parse.bot/scraper/fafd290f-21e4-421b-bd4d-0e7a011e8e05/<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/fafd290f-21e4-421b-bd4d-0e7a011e8e05/get_comps?days=3&rank=CHALLENGER%2CGRANDMASTER%2CMASTER' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 3 totalclick to expand

Get all TFT team compositions with their names, units, items, stars, win rates, pick rates, traits, and builds. Returns comps sorted by win rate (top 4 placement percentage).

Input
ParamTypeDescription
daysstringNumber of days for stats (e.g., '1', '3', '7').
rankstringComma-separated rank filter. Accepted values: CHALLENGER, GRANDMASTER, MASTER, DIAMOND, EMERALD, PLATINUM.
patchstringPatch filter (e.g., 'current').
queuestringQueue ID (1100 for ranked).
Response
{
  "type": "object",
  "fields": {
    "comps": "array of comp objects with cluster_id, name, units, stars, builds, top_items, traits, win_rate, pick_rate, avg_placement, play_count",
    "patch": "string TFT set identifier",
    "cluster_id": "integer current cluster version ID",
    "total_comps": "integer number of compositions returned",
    "total_games": "integer total games analyzed in the period"
  },
  "sample": {
    "data": {
      "comps": [
        {
          "name": "Shield Tank Leona",
          "stars": [
            "Leona",
            "Zoe",
            "Nasus",
            "Teemo",
            "Lissandra",
            "Diana"
          ],
          "units": [
            "Illaoi",
            "Ivern Minion",
            "Karma",
            "Leblanc",
            "Leona",
            "Mordekaiser",
            "Nunu",
            "Summon",
            "Zoe"
          ],
          "builds": [
            {
              "unit": "Leona",
              "count": 3713,
              "items": [
                "Bloodthirster",
                "Sterak's Gage",
                "Titan's Resolve"
              ],
              "score": 0.4432,
              "place_change": -0.133,
              "avg_placement": 3.7778
            }
          ],
          "traits": [
            {
              "name": "ADMIN",
              "count": 2
            },
            {
              "name": "Shield Tank",
              "count": 2
            }
          ],
          "stars_4": [],
          "win_rate": 64.23,
          "levelling": "lvl 5",
          "pick_rate": 0.41,
          "top_items": [
            {
              "item": "Bloodthirster",
              "count": 7339,
              "pick_rate": 88.73,
              "avg_placement": 3.9027
            }
          ],
          "cluster_id": "405000",
          "difficulty": -0.007,
          "play_count": 8271,
          "avg_placement": 3.911
        }
      ],
      "patch": "TFTSet17",
      "cluster_id": 405,
      "total_comps": 36,
      "total_games": 2000000
    },
    "status": "success"
  }
}

About the metatft.com API

The MetaTFT API exposes Teamfight Tactics meta data across 3 endpoints, returning comp names, win rates, pick rates, traits, and per-unit item recommendations sourced from MetaTFT. The get_comps endpoint delivers a ranked list of all current meta compositions, while get_comp_details provides build-level breakdowns and daily trend data for any individual comp identified by its comp_id.

Compositions and Meta Overview

The get_comps endpoint returns an array of composition objects, each containing name, units, stars, traits, win_rate, pick_rate, avg_placement, and top_items. Results can be filtered by days (1, 3, or 7), rank (CHALLENGER through PLATINUM as a comma-separated list), patch, and queue (1100 for ranked). The response also includes aggregate fields: total_games (games analyzed in the period), total_comps, and the current patch identifier.

Comp Details and Build Trends

Passing a comp_id from get_comps into get_comp_details unlocks build-level data: an array of builds objects (each with unit, items, avg_placement, score, and place_change), a full all_items map with per-item count, avg_placement, and pick_rate, and a levelling string for recommended level strategy. The trends array provides day-by-day count, avg, and pick data so you can track how a comp's performance shifts across the patch cycle.

Per-Unit Item Recommendations

The get_unit_items endpoint returns up to 10 recommended items per champion, sorted by unit pick rate. Each unit object includes unit, api_name, count, avg_placement, pick_rate, and a top_items array. The optional unit_name parameter accepts a case-insensitive partial match, so querying "ahri" will resolve to the correct champion record without requiring an exact name string.

Common use cases
  • Build a TFT tier list dashboard using win_rate and avg_placement from get_comps filtered to Challenger/Grandmaster ranks.
  • Generate patch-over-patch composition trend charts using the trends array from get_comp_details.
  • Recommend an in-game item build for a specific unit by querying get_unit_items with the champion name.
  • Track which star carries (stars field) define the current meta after each patch update.
  • Identify off-meta compositions by comparing pick_rate against win_rate across the full get_comps response.
  • Surface trait synergies in draft tools using the traits array returned per composition.
  • Evaluate how a specific comp's avg_placement shifts over a 7-day window using the days filter.
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 MetaTFT have an official developer API?+
MetaTFT does not publish a documented public developer API or developer portal for third-party access to its composition data.
What rank tiers can I filter compositions by in `get_comps`?+
The rank parameter accepts a comma-separated list from: CHALLENGER, GRANDMASTER, MASTER, DIAMOND, EMERALD, and PLATINUM. Passing multiple values (e.g., MASTER,GRANDMASTER,CHALLENGER) returns stats aggregated across those tiers.
Does the API return augment data or augment win rates for compositions?+
Not currently. The API covers comp-level builds, traits, unit items, and placement trends. Augment-specific stats are not included in any current endpoint. You can fork this API on Parse and revise it to add an augment-focused endpoint.
How fresh is the data returned by these endpoints?+
The days parameter in get_comps controls the lookback window (1, 3, or 7 days). The patch parameter also lets you scope results to the current patch. Data reflects recent ranked games within the selected window; real-time match-by-match freshness is not guaranteed.
Can I retrieve historical composition performance from previous TFT sets?+
The endpoints are oriented around the current TFT set, as indicated by the patch field in responses. Historical set data is not exposed through the current endpoints. You can fork this API on Parse and revise it to target prior-set data if that endpoint surface becomes available.
Page content last updated . Spec covers 3 endpoints from metatft.com.
Related APIs in SportsSee all →
athletic.net API
Search and analyze cross country and track & field performance data across the US, including athlete profiles, meet results, team rosters, and rankings. Access comprehensive meet information, historical records, and state-level competition data to track athlete progress and discover top performers.
maxpreps.com API
Access high school sports data from MaxPreps. Search for schools, retrieve team rosters and schedules, look up athlete profiles, and browse national or state rankings across all sports.
vg.no API
Access VG.no's latest news, articles, sports scores, and TV guides through a single interface where you can browse the front page, search articles by topic, view category-specific content, and find related stories. Get real-time sports scores and television schedules alongside comprehensive news coverage from Norway's leading news outlet.
vegasinsider.com API
Retrieve MLB betting odds from major sportsbooks including bet365, FanDuel, and DraftKings, covering Moneyline, Total, and Runline markets for any supported date. Easily compare odds across books to identify the best available lines.
puntoticket.com API
Browse and search events happening in Chile with PuntoTicket, viewing featured shows, filtering by category, and checking detailed pricing and availability for concerts, theater, sports, and more. Find the perfect event by exploring all listings or discovering what's trending right now.
130point.com API
Search for sold trading cards across eBay, Goldin, Heritage Auctions, Pristine Auction, MySlabs, and Fanatics Collect to find historical prices, sale dates, and marketplace information all in one place. Get comprehensive sales data to research card values and track market trends across multiple platforms instantly.
wynncraft.com API
Access detailed Wynncraft game information to look up item metadata and search across the complete item database, retrieve player statistics and character inventories, and browse guild information and global search results. Use this data to compare gear, track player progress, analyze guild rosters, or build tools for the Wynncraft community.
whoscored.com API
Search for players and teams, then dive deep into their performance metrics, match statistics, and detailed passing data to analyze football games and player abilities. Get comprehensive insights on team performance, individual player stats, and play-by-play event information to power your football analysis and decision-making.