Discover/crex.com API
live

crex.com APIcrex.com

Access live cricket scores, scorecards, ball-by-ball commentary, ICC rankings, fixtures, and news from crex.com via 7 structured JSON endpoints.

Endpoints
7
Updated
14d ago
Try it

No input parameters required.

api.parse.bot/scraper/92abcb7e-38a3-4b91-97f1-5728b10e53ee/<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/92abcb7e-38a3-4b91-97f1-5728b10e53ee/get_live_matches' \
  -H 'X-API-Key: $PARSE_API_KEY'
All endpoints · 7 totalclick to expand

Returns all currently live and recently completed cricket matches, including team names, current scores, match status, tournament/series name, venue, and match timestamps.

Input

No input parameters required.

Response
{
  "type": "array",
  "fields": {
    "team1": "string, first team name",
    "team2": "string, second team name",
    "venue": "string, match venue",
    "format": "string or null, match format (e.g. T20, ODI, Test, T20I)",
    "score1": "string or null, first team first innings score",
    "score2": "string or null, second team first innings score",
    "series": "string, series/tournament name",
    "status": "string, match result or status text",
    "match_id": "string, unique match identifier",
    "score1_2nd": "string or null, first team second innings score",
    "score2_2nd": "string or null, second team second innings score",
    "start_time": "integer or null, match start time as Unix timestamp in milliseconds",
    "team1_short": "string or null, first team short name",
    "team2_short": "string or null, second team short name"
  },
  "sample": {
    "data": [
      {
        "team1": "Hyderabad Kingsmen",
        "team2": "Islamabad United",
        "venue": "Gaddafi Stadium, Lahore",
        "format": "T20",
        "score1": "186/5(20.0",
        "score2": "184/7(20.0",
        "series": "Pakistan Super League 2026",
        "status": "Hyderabad Kingsmen won by 2 runs",
        "match_id": "10XU",
        "score1_2nd": null,
        "score2_2nd": null,
        "start_time": 1777644000000,
        "team1_short": "HHK",
        "team2_short": "ISU"
      }
    ],
    "status": "success"
  }
}

About the crex.com API

The Crex.com API covers 7 endpoints that expose live match data, full scorecards, ball-by-ball commentary, ICC rankings, fixtures, and cricket news. The get_live_matches endpoint returns every currently live and recently completed match with team names, scores, venue, format, and series name in a single call — no match ID required to start.

Live Matches, Scorecards, and Commentary

get_live_matches requires no inputs and returns a list of active and recently finished matches. Each object includes match_id, team1, team2, venue, format (T20, ODI, Test, T20I, or null), series, status, and both first- and second-innings scores via score1, score2, and score1_2nd. The match_id returned here is the key parameter you pass to downstream endpoints. get_match_scorecard takes that match_id and returns per-innings batting lines (player, runs, balls, fours, sixes, dismissal) and bowling figures (player, overs, runs, wickets, extras), along with the innings total and extras breakdown. get_match_live_commentary accepts a match_id and an optional last_doc_id for cursor-based pagination through older events. Each commentary entry carries a type field — b (ball), o (over summary), w (wicket), tm (team milestone), dh (day header), or wc (win confirmation) — plus over number, current score, primary text (c1), and detailed text (c2).

Match Info, Fixtures, and Rankings

get_match_info returns venue metadata, head-to-head records (hth), weather conditions (wU object with condition, temperature, and wind speed), and playing XIs encoded in the tp field. Venue average scores at various over marks are available in va. get_fixtures accepts a page index and grouping mode (wise: '1' groups by date) and returns scheduled and completed matches with team IDs, series IDs, scores, result text, and match format. get_rankings requires no inputs and returns ICC rankings across all three formats — test, odi, and t20 — with team names, rating points, and match counts.

News

get_news_list returns paginated cricket news articles. Each article object includes header, excerpt, newsUrl, cover_image_url, tags_array, and an optional attachedMatch field linking the article to a specific match. The next and prev boolean fields make it straightforward to walk through pages. The page and limit parameters control pagination.

Common use cases
  • Build a live cricket score ticker using get_live_matches for real-time team scores and match status.
  • Render a full match scorecard with batting and bowling figures for any completed or in-progress innings via get_match_scorecard.
  • Implement ball-by-ball commentary feeds with wicket and milestone event filtering using the type field from get_match_live_commentary.
  • Display weather and venue stats on a fantasy cricket app's match preview page using data from get_match_info.
  • Populate a fixtures calendar grouped by date using get_fixtures with wise: '1' and paginated page inputs.
  • Show ICC team rankings tables for Test, ODI, and T20 formats from get_rankings without any filtering parameters.
  • Attach breaking cricket news to match pages by cross-referencing attachedMatch fields from get_news_list.
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 crex.com offer an official developer API?+
Crex.com does not publish a documented public developer API or API portal for third-party access.
What event types appear in ball-by-ball commentary, and how do I distinguish them?+
Each commentary entry from get_match_live_commentary includes a type field. The values are: b for individual ball events (which carry c1 and c2 text fields), o for over summaries, w for wicket events, tm for team milestones, dh for day headers, and wc for win confirmation events. You filter on type to route events to the appropriate UI component or data handler.
How do I paginate through older commentary entries?+
The get_match_live_commentary endpoint uses cursor-based pagination. Each response entry includes an id integer field. Pass that value as last_doc_id in the next POST request for the same match_id to retrieve older entries. Omitting last_doc_id returns the most recent commentary.
Does the API cover player profiles, career statistics, or historical match archives?+
Not currently. The API covers live match data, per-match scorecards, commentary, fixtures, ICC team rankings, and news articles. Individual player profile pages and career statistics are not exposed as standalone endpoints. You can fork the API on Parse and revise it to add a player stats endpoint.
Are series-level standings or points tables available?+
Not currently. The API returns ICC team rankings via get_rankings and fixture metadata via get_fixtures, but tournament-level points tables and group standings are not included. You can fork the API on Parse and revise it to add a series standings endpoint.
Page content last updated . Spec covers 7 endpoints from crex.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.