Rimble Raw Data API

Rimble's Raw Data API provides comprehensive esports data for League of Legends, CS:GO, DOTA 2, Valorant, Rocket League, Call of Duty, NBA2K, FIFA, Siege, and Cricket. We provide upcoming matches as well as live and post-game information for world-wide professional leagues, along with other useful metadata and final game states — all with extremely low latency and high accuracy. We also offer analytics and predictions (including player props and odds). Contact support@rimble.io for access to those endpoints. This documentation covers raw data access to our REST APIs (upcoming and post-game endpoints). For live websocket documentation, contact support@rimble.io. Our API only supports GET requests, and all requests must end with a trailing slash "/".

Base URLhttps://rimbleanalytics.com

Also available as a Postman Collection

Authentication

All endpoints require an API key passed via the x-api-key header.

Contact us at support@rimble.io to get your access key.

Example Request
curl
curl https://rimbleanalytics.com/raw/lol/upcoming-matches/ \
-H "x-api-key: YOUR_API_KEY"

Querying

Filter results with query parameters after the trailing slash. Combine multiple filters with &.

Spaces are permitted in team and league name values.

Filtered Request
curl
curl "https://rimbleanalytics.com/raw/lol/upcoming-matches/?date=2024-03-15&team=T1" \
-H "x-api-key: YOUR_API_KEY"

Terminology

A match is the event where two teams play each other, often as a best-of series. Each match may comprise multiple games. Results are provided per match.

Data Updates

All data feeds update hourly at 10 minutes past the hour. We recommend pulling at the top of the hour or 30 minutes past.

League of Legends

GETUpcoming Matches
https://rimbleanalytics.com/raw/lol/upcoming-matches/
Query Parameters
datematchidtimeteamleague
Request
curl
curl https://rimbleanalytics.com/raw/lol/upcoming-matches/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"date": "2022-03-19",
"time": "20:30:00",
"matchid": "107458367241281221",
"team_1_name": "Immortals Progressive",
"team_2_name": "100 Thieves",
"league": "LCS",
"source_url": "https://...",
"league_details": {
"id": "98767991299243165",
"name": "LCS",
"image": "http://...png"
},
"match_format": {
"type": "bestOf",
"count": 5,
"metadata": [
{
"game_number": 1,
"est_date": "2022-03-19",
"est_time": "20:30:00"
},
...
]
},
"stream_links": [
"https://...",
...
],
"teams": [
{
"id": "98767991930907107",
"name": "Immortals Progressive",
"slug": "IMG",
"designation": 1,
"image": "http://...png",
"players": [
{
"id": "103478281372021286",
"username": "Revenge",
"name": "Mohamed Kaddoura",
"role": "top",
"DOB": "1998-06-04",
"image": "http://...png",
},
...
]
},
...
]
},
...
]
GETLive Matches
https://rimbleanalytics.com/raw/lol/live-matches/
Query Parameters
datematchidtimeteamleague
Request
curl
curl https://rimbleanalytics.com/raw/lol/live-matches/ \
-H "x-api-key: YOUR_API_KEY"
GETCompleted Matches
https://rimbleanalytics.com/raw/lol/completed-matches/
Query Parameters
datematchidtimeteamleague
Request
curl
curl https://rimbleanalytics.com/raw/lol/completed-matches/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"date": "2022-03-17",
"time": "08:00:00",
"matchid": "107418445248214154",
"team_1_name": "DWG KIA",
"team_2_name": "DRX",
"league": "LCK",
"source_url": "https://...",
"league_details": {
"id": "98767991299243165",
"name": "LCK",
"image": "http://...png"
},
"match_format": {
"type": "bestOf",
"count": 5
},
"metadata": {
"games": [
{
"game_number": 1,
"red_team": "DWG KIA",
"blue_team": "DRX"
},
...
]
},
"stream_links": [
"https://...",
...
],
"teams": [
{
"id": "100725845018863243",
"name": "DWG KIA",
"slug": "DWG",
"designation": 1,
"image": "http://...png",
"win_result": 1,
"games_won": 3,
"results": [
{
"game_number": 1,
"totalGold": 62480,
"inhibitors": 0,
"towers": 7,
"barons": 2,
"totalKills": 15,
"dragons": [
"mountain",
"infernal",
"ocean",
"ocean"
]
},
...
]
"players": [
{
"id": "100725844988653773",
"username": "ShowMaker",
"name": "Su Heo",
"role": "mid",
"DOB": "1998-06-04",
"image": "http://...png",
"results": [
{
"game_number": 1,
"champion": "Alistar",
"level": 15,
"kills": 5,
"deaths": 2,
"assists": 1,
"totalGoldEarned": 9733,
"cs": 252,
"kp": 0.25,
"championDamageShare": 0.37980,
"wardsPlaced": 6,
"wardsDestroyed": 5,
"attackDamage": 268,
"abilityPower": 0,
"criticalChance": 0.0,
"attackSpeed": 171,
"lifeSteal": 10,
"armor": 117,
"magicResistance": 50,
"tenacity": 0.0,
"currentHealth": 2274,
"maxHealth": 2485
},
...
]
},
...
]
},
...
]
},
...
]
GETMatch Status
https://rimbleanalytics.com/raw/lol/match-status/?matchid={matchid}
Query Parameters
matchiddate
Request
curl
curl https://rimbleanalytics.com/raw/lol/match-status/?matchid={matchid} \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"metadata": {
"games": [
{
"game_number": 1,
"blue_team": "Dplus Kia",
"red_team": "Liiv SANDBOX"
},
{
"game_number": 2,
"blue_team": "Liiv SANDBOX",
"red_team": "Dplus Kia"
}
]
},
"match_format": {
"type": "bestOf",
"count": 3
},
"stream_links": [
"https://..."
],
"source_url": "https://...",
"time": "10:30:00",
"team_1_name": "Liiv SANDBOX",
"date": "2023-06-07",
"team_2_name": "Dplus Kia",
"teams": [
{
"image": "https://...png",
"games_won": 0,
"win_result": 0,
"players": [
{
"image": "https://...png",
"role": "none",
"DOB": "2004-09-04",
"name": "Minhyuk Ahn",
"id": "108205131563823136",
"results": [
{
"kills": null,
"currentHealth": null,
"magicResistance": null,
"lifeSteal": null,
"kp": null,
"level": null,
"abilityPower": null,
"championDamageShare": null,
"kda": null,
"wardsDestroyed": null,
"game_number": 1,
"cs": null,
"criticalChance": null,
"armor": null,
"assists": null,
"wardsPlaced": null,
"attackSpeed": null,
"tenacity": null,
"totalGoldEarned": null,
"maxHealth": null,
"deaths": null,
"champion": null,
"attackDamage": null
},
],
"username": "DDahyuk"
},
...
],
"results": [
{
"inhibitors": 0,
"totalKills": 0,
"totalGold": 43885,
"barons": 0,
"game_number": 1,
"towers": 2,
"dragons": []
},
...
],
"slug": "LSB"
},
...
],
"league_details": {
"name": "LCK",
"image": "https://...png",
"id": "98767991310872058"
},
"league": "LCK",
"matchid": "110371551279016176",
"match_status": "completed"
}
]
GETLeague Mappings
https://rimbleanalytics.com/raw/lol/league-mappings/
Query Parameters
league_idnamemin_prize_money
Request
curl
curl https://rimbleanalytics.com/raw/lol/league-mappings/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"id":"98767975604431411",
"name":"Worlds",
"prize_money":2225000
},
...
]
GETTeams
https://rimbleanalytics.com/raw/lol/teams/
Query Parameters
id
Request
curl
curl https://rimbleanalytics.com/raw/lol/teams/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"id": "103935530333072898",
"name": "AGO Rogue"
"image": "https://...png"
},
...
]
GETPlayers
https://rimbleanalytics.com/raw/lol/players/
Query Parameters
id
Request
curl
curl https://rimbleanalytics.com/raw/lol/players/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"id": "102808840667875469",
"username": "Sinmivak",
"name": "Jakub Rucki",
"DOB": "2001-01-17",
"image": "https://...png"
},
...
]

CS:GO

GETUpcoming Matches
https://rimbleanalytics.com/raw/csgo/upcoming-matches/
Query Parameters
datematchidtimeteamleague
Request
curl
curl https://rimbleanalytics.com/raw/csgo/upcoming-matches/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"date": "2022-03-16",
"time": "11:30:00",
"matchid": "2354541",
"team_1_name": "Vitality",
"team_2_name": "Sprout",
"league": "ESL Pro League Season 15",
"source_url": "https://...",
"league_details": {
"id": "6481",
"name": "ESL Pro League Season 15",
"image": "https://...png"
},
"match_format": {
"type": "bestOf",
"count": 3,
"metadata": [
{
"game_number": 1,
"est_date": "2022-03-16",
"est_time": "11:30:00"
},
...
]
},
"stream_links": [
"https://...",
...
],
"teams": [
{
"id": "9565",
"name": "Vitality",
"designation": 1,
"image": "https://...png",
"players": [
{
"id": "7322",
"username": "apEX",
"name": "Dan Madesclaire",
"DOB": "1998-06-04",
"image": "https://...png",
},
...
]
},
...
]
},
...
]
GETLive Matches
https://rimbleanalytics.com/raw/csgo/live-matches/
Query Parameters
datematchidtimeteamleague
Request
curl
curl https://rimbleanalytics.com/raw/csgo/live-matches/ \
-H "x-api-key: YOUR_API_KEY"
GETCompleted Matches
https://rimbleanalytics.com/raw/csgo/completed-matches/
Query Parameters
datematchidtimeteamleague
Request
curl
curl https://rimbleanalytics.com/raw/csgo/completed-matches/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"date": "2022-03-15",
"time": "20:00:00",
"matchid": "2355148",
"team_1_name": "MASONIC",
"team_2_name": "DREAM",
"league": "Elisa Invitational Spring 2022 Denmark Closed Qualifier",
"source_url": "https://...",
"league_details": {
"id": "6481",
"name": "Elisa Invitational Spring 2022 Denmark Closed Qualifier",
"image": "https://...png"
},
"match_format": {
"type": "bestOf",
"count": 3
},
"metadata": {
"games": [
{
"game_number": 1,
"map_name": "Inferno"
},
...
]
},
"stream_links": [
"https://...",
...
],
"teams": [
{
"id": "10867",
"name": "MASONIC",
"designation": 1,
"win_result": 0,
"games_won": 1,
"image": "https://...png",
"results": [
{
"game_number": 1,
"rounds_won": 16,
"totalKills": 80
},
...
]
"players": [
{
"id": "20300",
"username": "kraghen",
"name": "Tobias Kragh Jensen",
"DOB": "1998-06-04",
"image": "https://...png",
"results": [
{
"game_number": 1,
"kills": 16,
"deaths": 20,
"ADR": 76.7,
"KAST": 68.3
},
...
]
},
...
],
},
...
]
},
...
]
GETMatch Status
https://rimbleanalytics.com/raw/csgo/match-status/?matchid={matchid}
Query Parameters
matchiddate
Request
curl
curl https://rimbleanalytics.com/raw/csgo/match-status/?matchid={matchid} \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"metadata": {
"games": [
{
"game_number": 1,
"map_name": "Inferno"
},
{
"game_number": 2,
"map_name": "Nuke"
}
]
},
"match_format": {
"type": "bestOf",
"count": 3
},
"stream_links": [
"https://...",
...
],
"source_url": "https://...",
"time": "08:00:00",
"team_1_name": "e-LEMON-ators",
"date": "2023-06-07",
"team_2_name": "Antic",
"teams": [
{
"image": "https://...png",
"games_won": 2,
"win_result": 1,
"players": [
{
"name": "Eddie Azzi",
"image": "https://...png",
"id": "20238",
"results": [
{
"kills": 20,
"game_number": 1,
"KAST": 87.80000000000001,
"deaths": 12,
"ADR": 78.25
},
...
],
"DOB": null,
"username": "kyson"
},
...
],
"name": "e-LEMON-ators",
"id": "12011",
"designation": 1,
"results": [
{
"game_number": 1,
"totalKills": 101,
"rounds_won": 16
},
...
]
},
...
],
"league_details": {
"name": "ESL Australia & NZ Championship Season 16",
"image": "https://...png",
"id": "7132"
},
"league": "ESL Australia & NZ Championship Season 16",
"matchid": "2364591",
"match_status": "completed"
}
]
GETLeague Mappings
https://rimbleanalytics.com/raw/csgo/league-mappings/
Query Parameters
league_idnamemin_prize_money
Request
curl
curl https://rimbleanalytics.com/raw/csgo/league-mappings/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"id": "7077",
"name": "BLAST.tv Paris Major 2023 Oceania RMR Open Qualifier",
"dates": "Feb 16th 2023",
"prize_money": 10000
},
...
]
GETTeams
https://rimbleanalytics.com/raw/csgo/teams/
Query Parameters
id
Request
curl
curl https://rimbleanalytics.com/raw/csgo/teams/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"id": "4869",
"name": "ENCE"
"image": "https://...png"
},
...
]
GETPlayers
https://rimbleanalytics.com/raw/csgo/players/
Query Parameters
id
Request
curl
curl https://rimbleanalytics.com/raw/csgo/players/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"id": "16080",
"username": "dycha",
"name": "Paweł Dycha",
"DOB": null,
"image": "https://...png"
},
...
]

DOTA 2

GETUpcoming Matches
https://rimbleanalytics.com/raw/dota2/upcoming-matches/
Query Parameters
datematchidtimeteamleague
Request
curl
curl https://rimbleanalytics.com/raw/dota2/upcoming-matches/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"date": "2022-03-16",
"time": "18:00:00",
"matchid": "492995",
"team_1_name": "IVY",
"team_2_name": "No Bounty Hunter",
"league": "ESL Meisterschaft Spring 2022",
"source_url": "https://...",
"league_details": {
"id": "29103",
"name": "ESL Meisterschaft Spring 2022",
"image": "https://...png"
},
"match_format": {
"type": "bestOf",
"count": 3,
"metadata": [
{
"game_number": 1,
"est_date": "2022-03-16",
"est_time": "18:00:00"
},
...
]
},
"stream_links": [
"https://...",
...
],
"teams": [
{
"id": "28924",
"name": "IVY",
"designation": 1,
"image": "https://...png",
"players": [
{
"id": "70084",
"username": "TheBloodySky",
"DOB": "1998-06-04",
"image": "https://...png",
},
...
]
},
...
]
},
...
]
GETLive Matches
https://rimbleanalytics.com/raw/dota2/live-matches/
Query Parameters
datematchidtimeteamleague
Request
curl
curl https://rimbleanalytics.com/raw/dota2/live-matches/ \
-H "x-api-key: YOUR_API_KEY"
GETCompleted Matches
https://rimbleanalytics.com/raw/dota2/completed-matches/
Query Parameters
datematchidtimeteamleague
Request
curl
curl https://rimbleanalytics.com/raw/dota2/completed-matches/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"date": "2022-03-15",
"time": "14:00:00",
"matchid": "497271",
"team_1_name": "Team Liquid",
"team_2_name": "Team Secret",
"league": "Dota Pro Circuit '21/22: Season 2 - Western Europe",
"source_url": "https://...",
"league_details": {
"id": "29103",
"name": "Dota Pro Circuit '21/22: Season 2 - Western Europe",
"image": "https://...png"
},
"match_format": {
"type": "bestOf",
"count": 3
},
"stream_links": [
"https://...",
...
],
"metadata": {
"games": [
{
"game_number": 1,
"radiant_team": "Team Liquid",
"dire_team": "Team Secret",
"duration": 2418,
"pre_game_duration": 90
},
...
]
},
"teams": [
{
"id": "52643214",
"name": "Team Liquid",
"designation": 1,
"image": "https://...png",
"win_result": 0,
"games_won": 1,
"results": [
{
"game_number": 1,
"score": 24
},
...
],
"players": [
{
"id": "41661",
"username": "Boxi",
"DOB": "1998-06-04",
"image": "https://...png",
"results": [
{
"game_number": 1,
"hero": "Abaddon",
"kills": 3,
"deaths": 2,
"assists": 5,
"leaver_status": 0,
"last_hits": 341,
"denies": 21,
"gold_per_min": 655,
"xp_per_min": 723,
"level": 25,
"net_worth": 26200,
"aghanims_scepter": 0,
"aghanims_shard": 0,
"moonshard": 0,
"hero_damage": 23205,
"tower_damage": 23986,
"hero_healing": 0,
"gold": 3175,
"gold_spent": 24215,
"scaled_hero_damage": 10142,
"scaled_tower_damage": 11439,
"scaled_hero_healing": 0
},
...
]
},
...
]
},
...
]
},
...
]
GETMatch Status
https://rimbleanalytics.com/raw/dota2/match-status/?matchid={matchid}
Query Parameters
matchiddate
Request
curl
curl https://rimbleanalytics.com/raw/dota2/match-status/?matchid={matchid} \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"metadata": {
"games": [
{
"duration": 2599,
"pre_game_duration": 90,
"dire_team": "Ravens",
"game_number": 1,
"radiant_team": "TiltedBoys"
},
...
]
},
"match_format": {
"type": "bestOf",
"count": 1
},
"stream_links": [
"https://...",
...
],
"source_url": "https://...",
"time": "01:00:00",
"team_1_name": "TiltedBoys",
"date": "2023-06-08",
"team_2_name": "Ravens",
"teams": [
{
"image": "https://...png",
"games_won": 1,
"win_result": 0,
"players": [
{
"name": "Justin McCarthy",
"image": "https://...png",
"id": 35579769,
"results": [
{
"kills": null,
"gold_per_min": null,
"net_worth": null,
"gold_spent": null,
"level": null,
"aghanims_scepter": null,
"hero_damage": null,
"scaled_hero_damage": null,
"hero": null,
"game_number": 1,
"denies": null,
"moonshard": null,
"gold": null,
"last_hits": null,
"leaver_status": null,
"scaled_tower_damage": null,
"assists": null,
"tower_damage": null,
"hero_healing": null,
"scaled_hero_healing": null,
"xp_per_min": null,
"aghanims_shard": null,
"deaths": null
},
...
],
"DOB": null,
"username": "Jmac"
},
...
],
"name": "TiltedBoys",
"id": 7584152,
"designation": 1,
"results": [
{
"game_number": 1,
"score": 39
},
...
]
},
...
],
"league_details": {
"name": "DPC 2023 NA Summer Tour Division II – presented by PGL",
"tier": 8,
"id": 15353
},
"league": "DPC 2023 NA Summer Tour Division II – presented by PGL",
"matchid": "1535316861860007584152823011505100707",
"match_status": "completed"
}
]
GETLeague Mappings
https://rimbleanalytics.com/raw/dota2/league-mappings/
Query Parameters
league_idnamemin_prize_money
Request
curl
curl https://rimbleanalytics.com/raw/dota2/league-mappings/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"id": 17,
"name": "G-1 Champions League Season 5",
"prize_money": 10000,
"dates": "2013-03-19 - 2013-04-19"
},
...
]
GETTeams
https://rimbleanalytics.com/raw/dota2/teams/
Query Parameters
id
Request
curl
curl https://rimbleanalytics.com/raw/dota2/teams/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"id": "31949",
"name": "Refraction Gaming",
"image": "https://...png"
},
...
]
GETPlayers
https://rimbleanalytics.com/raw/dota2/players/
Query Parameters
id
Request
curl
curl https://rimbleanalytics.com/raw/dota2/players/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"id": "86941",
"username": "Meow",
"name": "John Yu",
"DOB": "1998-06-04",
"image": "https://...png"
},
...
]

Valorant

GETUpcoming Matches
https://rimbleanalytics.com/raw/valorant/upcoming-matches/
Query Parameters
datematchidtimeteamleague
Request
curl
curl https://rimbleanalytics.com/raw/valorant/upcoming-matches/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"date": "2022-03-15",
"time": "14:00:00",
"matchid": "69837",
"team_1_name": "DSYRE",
"team_2_name": "Ovation eSports",
"league": "Valorant Regional League DACH: Evolution",
"source_url": "https://...",
"league_details": {
"id": "926",
"name": "Valorant Regional League DACH: Evolution",
"image": "https://...png"
},
"match_format": {
"type": "bestOf",
"count": 3,
"metadata": [
{
"game_number": 1,
"est_date": "2022-03-15",
"est_time": "14:00:00"
},
...
]
},
"stream_links": [
"https://...",
...
],
"teams": [
{
"id": "6538",
"name": "DSYRE",
"designation": 1,
"slug": "DSR",
"image": "https://...png",
"players": [
{
"id": "3353",
"username": "Maru",
"DOB": "1998-06-04",
"image": "https://...png",
},
...
]
},
...
]
},
...
]
GETLive Matches
https://rimbleanalytics.com/raw/valorant/live-matches/
Query Parameters
datematchidtimeteamleague
Request
curl
curl https://rimbleanalytics.com/raw/valorant/live-matches/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"date": "2022-03-15",
"time": "14:00:00",
"matchid": "69837",
"team_1_name": "DSYRE",
"team_2_name": "Ovation eSports",
"league": "Valorant Regional League DACH: Evolution",
"source_url": "https://...",
"league_details": {
"id": "926",
"name": "Valorant Regional League DACH: Evolution",
"image": "https://...png"
},
"match_format": {
"type": "bestOf",
"count": 3,
"metadata": [
{
"game_number": 1,
"est_date": "2022-03-15",
"est_time": "14:00:00"
},
...
]
},
"stream_links": [
"https://...",
...
],
"teams": [
{
"id": "6538",
"name": "DSYRE",
"designation": 1,
"slug": "DSR",
"image": "https://...png",
"players": [
{
"id": "3353",
"username": "Maru",
"DOB": "1998-06-04",
"image": "https://...png",
},
...
]
},
...
]
},
...
]
GETCompleted Matches
https://rimbleanalytics.com/raw/valorant/completed-matches/
Query Parameters
datematchidtimeteamleague
Request
curl
curl https://rimbleanalytics.com/raw/valorant/completed-matches/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"date": "2022-03-15",
"time": "14:00:00",
"matchid": "69837",
"team_1_name": "DSYRE",
"team_2_name": "Ovation eSports",
"league": "Valorant Regional League DACH: Evolution",
"source_url": "https://...",
"league_details": {
"id": "926",
"name": "Valorant Regional League DACH: Evolution",
"image": "https://...png"
},
"match_format": {
"type": "bestOf",
"count": 3
},
"stream_links": [
"https://...",
...
],
"metadata": {
"games": [
{
"game_number": 1,
"map_name": "Split"
},
...
]
},
"teams": [
{
"id": "6538",
"name": "DSYRE",
"designation": 1,
"slug": "DSR",
"image": "https://...png",
"win_result": 0,
"games_won": 1,
"results": [
{
"game_number": 1,
"ct_score": 4,
"t_score": 5
},
...
]
"players": [
{
"id": "3353",
"username": "Maru",
"DOB": "1998-06-04",
"image": "https://...png",
"results": [
{
"game_number": 1,
"agent": "breach",
"kills": 15,
"deaths": 16,
"assists": 13,
"adr": 159,
"FK": 1,
"FD": 0,
"economy": "62",
"s_planted": "2",
"s_defused": "0"
},
...
]
},
...
]
},
...
]
},
...
]
GETMatch Status
https://rimbleanalytics.com/raw/valorant/match-status/?matchid={matchid}
Query Parameters
matchiddate
Request
curl
curl https://rimbleanalytics.com/raw/valorant/match-status/?matchid={matchid} \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"match_status": "completed",
"date": "2022-03-15",
"time": "14:00:00",
"matchid": "69837",
"team_1_name": "DSYRE",
"team_2_name": "Ovation eSports",
"league": "Valorant Regional League DACH: Evolution",
"source_url": "https://...",
"league_details": {
"id": "926",
"name": "Valorant Regional League DACH: Evolution",
"image": "https://...png"
},
"match_format": {
"type": "bestOf",
"count": 3
},
"stream_links": [
"https://...",
...
],
"metadata": {
"games": [
{
"game_number": 1,
"map_name": "Split"
},
...
]
},
"teams": [
{
"id": "6538",
"name": "DSYRE",
"designation": 1,
"image": "https://...png",
"win_result": 0,
"results": [
{
"game_number": 1,
"ct_score": 4,
"t_score": 5
},
...
]
"players": [
{
"id": "3353",
"username": "Maru",
"DOB": "1998-06-04",
"image": "https://...png",
"results": [
{
"game_number": 1,
"agent": "breach",
"kills": 15,
"deaths": 16,
"assists": 13,
"adr": 159,
"FK": 1,
"FD": 0,
"economy": "62",
"s_planted": "2",
"s_defused": "0"
},
...
]
},
...
]
},
...
]
}
]
GETLeague Mappings
https://rimbleanalytics.com/raw/valorant/league-mappings/
Query Parameters
league_idnamemin_prize_money
Request
curl
curl https://rimbleanalytics.com/raw/valorant/league-mappings/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"id": "1",
"name": "T1 x Nerd Street Gamers Invitational",
"dates": "May 3 - May 7, 2020",
"prize_money": 25000
},
...
]
GETTeams
https://rimbleanalytics.com/raw/valorant/teams/
Query Parameters
id
Request
curl
curl https://rimbleanalytics.com/raw/valorant/teams/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"id": "2815",
"name": "Version1"
"image": "https://...png"
},
...
]
GETPlayers
https://rimbleanalytics.com/raw/valorant/players/
Query Parameters
id
Request
curl
curl https://rimbleanalytics.com/raw/valorant/players/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"id": "729",
"username": "Zellsis",
"name": "Callum Lang",
"DOB": "1998-03-02",
"image": "https://...png"
},
...
]

Rocket League

GETUpcoming Matches
https://rimbleanalytics.com/raw/rocketleague/upcoming-matches/
Query Parameters
datematchidtimeteamleague
Request
curl
curl https://rimbleanalytics.com/raw/rocketleague/upcoming-matches/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
{
"date": "2022-11-13",
"time": "13:00:00",
"matchid": "63590778da9d7ca1c7bb9541",
"team_1_name": "Dunno Chief",
"team_2_name": "Playing Ducks",
"league": "EMEA Predator League 2022",
"source_url": "https://...",
"league_details": {
"name": "EMEA Predator League 2022",
"image": "https://...png",
"id": "634d6667da9d7ca1c7bb80f1"
},
"match_format": {
"type": "bestOf",
"count": 7,
"metadata": [
{
"game_number": 1,
"est_date": "2022-11-13",
"est_time": "13:00:00"
},
...
]
},
"stream_links": [
"https://...",
...
],
"teams": [
{
"id": "6020bc71f1e4807cc7002516",
"name": "Dunno Chief",
"designation": 1,
"image": "https://...png",
"players": [
{
"id": "5f3d8fdd95f40596eae23e11",
"username": "Kephiii",
"image": "https://...png",
"DOB": "1998-06-04"
},
...
]
},
...
],
},
...
]
GETLive Matches
https://rimbleanalytics.com/raw/rocketleague/live-matches/
Query Parameters
datematchidtimeteamleague
Request
curl
curl https://rimbleanalytics.com/raw/rocketleague/live-matches/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"date": "2022-11-13",
"time": "13:00:00",
"matchid": "63590778da9d7ca1c7bb9541",
"team_1_name": "Dunno Chief",
"team_2_name": "Playing Ducks",
"league": "EMEA Predator League 2022",
"source_url": "https://...",
"league_details": {
"name": "EMEA Predator League 2022",
"image": "https://...png",
"id": "634d6667da9d7ca1c7bb80f1"
},
"match_format": {
"type": "bestOf",
"count": 7,
"metadata": [
{
"game_number": 1,
"est_date": "2022-11-13",
"est_time": "13:00:00"
},
...
]
},
"stream_links": [
"https://...",
...
],
"teams": [
{
"id": "6020bc71f1e4807cc7002516",
"name": "Dunno Chief",
"designation": 1,
"image": "https://...png",
"players": [
{
"id": "5f3d8fdd95f40596eae23e11",
"username": "Kephiii",
"image": "https://...png",
"DOB": "1998-06-04"
},
...
]
},
...
],
},
...
]
]
GETCompleted Matches
https://rimbleanalytics.com/raw/rocketleague/completed-matches/
Query Parameters
datematchidtimeteamleague
Request
curl
curl https://rimbleanalytics.com/raw/rocketleague/completed-matches/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"date": "2022-10-28",
"time": "15:00:00",
"matchid": "63402215c437fde7e02dd8ea",
"team_1_name": "Oxygen Esports",
"team_2_name": "Turboclappers",
"league": "RLCS 2022-23 Fall Europe Regional 2",
"source_url": "https://...",
"league_details": {
"name": "RLCS 2022-23 Fall Europe Regional 2",
"image": "https://...png",
"id": "632ef8cfc437fde7e02dc032"
},
"match_format": {
"type": "bestOf",
"count": 5
},
"stream_links": [
"https://....",
....
],
"metadata": {
"games": [
{
"game_number": 1,
"duration": 300,
"blue_team": "Oxygen Esports",
"orange_team": "Turboclappers",
"map_name": "Mannfield (Night)"
}
]
},
"teams": [
{
"id": "6020bd98f1e4807cc700dc33",
"name": "Oxygen Esports",
"designation": 1,
"image": "https://...png",
"win_result": 1,
"results": [
{
"game_number": 1,
"result": 1,
"score": 1151,
"saves": 7,
"assists": 1,
"shots": 6,
"goals": 1,
"shootingPercentage": 16.666666666666664
},
...
]
"players": [
{
"id": "5f3d8fdd95f40596eae2415f",
"username": "Archie"
"DOB": "1998-06-04",
"image": "https://...png",
"results": [
{
"game_number": 1,
"score": 450,
"goalParticipation": 100,
"saves": 3,
"assists": 1,
"total_distance": 464628,
"shots": 5,
"shooting_percentage": 0,
"goals": 0
},
...
]
},
...
],
},
...
],
},
...
]
GETMatch Status
https://rimbleanalytics.com/raw/rocketleague/match-status/?matchid={matchid}
Query Parameters
matchiddate
Request
curl
curl https://rimbleanalytics.com/raw/rocketleague/match-status/?matchid={matchid} \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"status": "completed",
"date": "2022-10-28",
"time": "15:00:00",
"matchid": "63402215c437fde7e02dd8ea",
"team_1_name": "Oxygen Esports",
"team_2_name": "Turboclappers",
"league": "RLCS 2022-23 Fall Europe Regional 2",
"source_url": "https://...",
"league_details": {
"name": "RLCS 2022-23 Fall Europe Regional 2",
"image": "https://...png",
"id": "632ef8cfc437fde7e02dc032"
},
"match_format": {
"type": "bestOf",
"count": 5
},
"stream_links": [
"https://....",
....
],
"metadata": {
"games": [
{
"game_number": 1,
"duration": 300,
"blue_team": "Oxygen Esports",
"orange_team": "Turboclappers",
"map_name": "Mannfield (Night)"
}
]
},
"teams": [
{
"id": "6020bd98f1e4807cc700dc33",
"name": "Oxygen Esports",
"designation": 1,
"image": "https://...png",
"win_result": 1,
"results": [
{
"game_number": 1,
"result": 1,
"score": 1151,
"saves": 7,
"assists": 1,
"shots": 6,
"goals": 1,
"shootingPercentage": 16.666666666666664
},
...
]
"players": [
{
"id": "5f3d8fdd95f40596eae2415f",
"username": "Archie"
"DOB": "1998-06-04",
"image": "https://...png",
"results": [
{
"game_number": 1,
"score": 450,
"goalParticipation": 100,
"saves": 3,
"assists": 1,
"total_distance": 464628,
"shots": 5,
"shooting_percentage": 0,
"goals": 0
},
...
]
},
...
],
},
...
],
},
...
]
GETLeague Mappings
https://rimbleanalytics.com/raw/rocketleague/league-mappings/
Query Parameters
league_idnamemin_prize_money
Request
curl
curl https://rimbleanalytics.com/raw/rocketleague/league-mappings/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"id": "1",
"name": "T1 x Nerd Street Gamers Invitational",
"dates": "May 3 - May 7, 2020",
"prize_money": 25000
},
...
]
GETTeams
https://rimbleanalytics.com/raw/rocketleague/teams/
Query Parameters
id
Request
curl
curl https://rimbleanalytics.com/raw/rocketleague/teams/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"id": "2815",
"name": "Version1"
"image": "https://...png"
},
...
]
GETPlayers
https://rimbleanalytics.com/raw/rocketleague/players/
Query Parameters
id
Request
curl
curl https://rimbleanalytics.com/raw/rocketleague/players/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"id": "729",
"username": "Zellsis",
"name": "Callum Lang",
"DOB": "1998-03-02",
"image": "https://...png"
},
...
]

Call of Duty

GETUpcoming Matches
https://rimbleanalytics.com/raw/cod/upcoming-matches/
Query Parameters
datematchidtimeteamleague
Request
curl
curl https://rimbleanalytics.com/raw/cod/upcoming-matches/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"date": "2023-06-15",
"team_2_name": "Seattle Surge",
"teams": [
{
"name": "Atlanta FaZe",
"image": "https://...png",
"id": 7,
"slug": "ATL",
"players": [
{
"name": "Tyler Pharris",
"image": "https://...png",
"id": 94,
"username": "aBeZy"
},
...
],
},
...
],
"match_format": {
"type": "bestOf",
"count": 5,
"metadata": [
{
"game_number": 1,
"est_date": "2023-06-15",
"est_time": "20:30:00"
},
...
]
},
"stream_links": [],
"source_url": "https://...",
"league_details": {
"name": "Post Season",
"id": "20230615000000"
},
"time": "20:30:00",
"team_1_name": "Atlanta FaZe",
"league": "Post Season",
"matchid": "11471"
},
...
]
GETLive Matches
https://rimbleanalytics.com/raw/cod/live-matches/
Query Parameters
datematchidtimeteamleague
Request
curl
curl https://rimbleanalytics.com/raw/cod/live-matches/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"date": "2022-11-13",
"time": "13:00:00",
"matchid": "63590778da9d7ca1c7bb9541",
"team_1_name": "Dunno Chief",
"team_2_name": "Playing Ducks",
"league": "EMEA Predator League 2022",
"source_url": "https://...",
"league_details": {
"name": "EMEA Predator League 2022",
"image": "https://...png",
"id": "634d6667da9d7ca1c7bb80f1"
},
"match_format": {
"type": "bestOf",
"count": 7,
"metadata": [
{
"game_number": 1,
"est_date": "2022-11-13",
"est_time": "13:00:00"
},
...
]
},
"stream_links": [
"https://...",
...
],
"teams": [
{
"id": "6020bc71f1e4807cc7002516",
"name": "Dunno Chief",
"designation": 1,
"image": "https://...png",
"players": [
{
"id": "5f3d8fdd95f40596eae23e11",
"username": "Kephiii",
"image": "https://...png",
"DOB": "1998-06-04"
},
...
]
},
...
],
},
...
]
]
GETCompleted Matches
https://rimbleanalytics.com/raw/cod/completed-matches/
Query Parameters
datematchidtimeteamleague
Request
curl
curl https://rimbleanalytics.com/raw/cod/completed-matches/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"metadata": {
"games": [
{
"game_number": 0,
"game_mode": "CDL Hardpoint",
"map_name": "Zarqwa Hydroelectric"
},
...
]
},
"match_format": {
"type": "bestOf",
"count": 5
},
"stream_links": [
{
"broadcastPartnerName": "Twitch",
"isDefault": false,
"broadcastPartnerLogo": "https://...png",
"url": "https://...",
"broadcastPartnerId": 6
},
...
],
"source_url": "https://...",
"time": "17:30:00",
"team_1_name": "Minnesota Røkkr",
"date": "2023-05-28",
"team_2_name": "Atlanta FaZe",
"teams": [
{
"image": "https://...png",
"win_result": 0,
"games_won": 0,
"players": [
{
"name": "Marcus Reid",
"image": "https://...png",
"id": 270,
"results": [
{
"kills": null,
"bombs_defused": null,
"total_objective_time": null,
"total_kills": null,
"kill_death_ratio": null,
"highest_streak": null,
"total_multikills": null,
"objective_4_time": null,
"objective_2_time": null,
"highest_multikill": null,
"hill_time": null,
"time_spent_moving": null,
"total_time_alive": null,
"total_shots_hit": null,
"total_shots_fired": null,
"assists": null,
"total_headshots": null,
"bombs_planted": null,
"total_shots_head": null,
"total_score": null,
"id": null,
"objective_3_time": null,
"average_speed": null,
"deaths": null,
"total_assists": null,
"rounds_played": null,
"total_suicides": null,
"game_number": 0,
"total_objectives_captured": null,
"total_distance_traveled": null,
"objective_5_time": null,
"total_deaths": null,
"objective_1_time": null,
"total_damage_dealt": null,
"objective_tiers_contributed": null
},
...
],
"username": "Afro"
},
],
"name": "Minnesota Røkkr",
"id": 12,
"results": [
{
"win_result": 0,
"score": 154
},
...
],
"slug": "MIN"
},
GETMatch Status
https://rimbleanalytics.com/raw/cod/match-status/?matchid={matchid}
Query Parameters
matchiddate
Request
curl
curl https://rimbleanalytics.com/raw/cod/match-status/?matchid={matchid} \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"status": "completed",
"date": "2022-10-28",
"time": "15:00:00",
"matchid": "63402215c437fde7e02dd8ea",
"team_1_name": "Oxygen Esports",
"team_2_name": "Turboclappers",
"league": "RLCS 2022-23 Fall Europe Regional 2",
"source_url": "https://...",
"league_details": {
"name": "RLCS 2022-23 Fall Europe Regional 2",
"image": "https://...png",
"id": "632ef8cfc437fde7e02dc032"
},
"match_format": {
"type": "bestOf",
"count": 5
},
"stream_links": [
"https://....",
....
],
"metadata": {
"games": [
{
"game_number": 1,
"duration": 300,
"blue_team": "Oxygen Esports",
"orange_team": "Turboclappers",
"map_name": "Mannfield (Night)"
}
]
},
"teams": [
{
"id": "6020bd98f1e4807cc700dc33",
"name": "Oxygen Esports",
"designation": 1,
"image": "https://...png",
"win_result": 1,
"results": [
{
"game_number": 1,
"result": 1,
"score": 1151,
"saves": 7,
"assists": 1,
"shots": 6,
"goals": 1,
"shootingPercentage": 16.666666666666664
},
...
]
"players": [
{
"id": "5f3d8fdd95f40596eae2415f",
"username": "Archie"
"DOB": "1998-06-04",
"image": "https://...png",
"results": [
{
"game_number": 1,
"score": 450,
"goalParticipation": 100,
"saves": 3,
"assists": 1,
"total_distance": 464628,
"shots": 5,
"shooting_percentage": 0,
"goals": 0
},
...
]
},
...
],
},
...
],
},
...
]
GETLeague Mappings
https://rimbleanalytics.com/raw/cod/league-mappings/
Query Parameters
league_idnamemin_prize_money
Request
curl
curl https://rimbleanalytics.com/raw/cod/league-mappings/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"id": "1",
"name": "T1 x Nerd Street Gamers Invitational",
"dates": "May 3 - May 7, 2020",
"prize_money": 25000
},
...
]
GETTeams
https://rimbleanalytics.com/raw/cod/teams/
Query Parameters
id
Request
curl
curl https://rimbleanalytics.com/raw/cod/teams/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"id": "2815",
"name": "Version1"
"image": "https://...png"
},
...
]
GETPlayers
https://rimbleanalytics.com/raw/cod/players/
Query Parameters
id
Request
curl
curl https://rimbleanalytics.com/raw/cod/players/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"id": "729",
"username": "Zellsis",
"name": "Callum Lang",
"DOB": "1998-03-02",
"image": "https://...png"
},
...
]

NBA2K

GETUpcoming Matches
https://rimbleanalytics.com/raw/nba2k/upcoming-matches/
Query Parameters
datematchidtimeteamleague
Request
curl
curl https://rimbleanalytics.com/raw/nba2k/upcoming-matches/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"match_format": {
"type": "bestOf",
"count": 1,
"metadata": [
{
"game_number": 1,
"est_date": "2023-06-21",
"est_time": "22:00:00"
}
]
},
"stream_links": [],
"tournament_type": "5v5",
"source_url": null,
"time": "22:00:00",
"team_1_name": "Jazz Gaming",
"date": "2023-06-21",
"team_2_name": "T-Wolves Gaming",
"teams": [
{
"score": "",
"image": null,
"c": null,
"players": [
{
"name": "Kel Wilson",
"id": 1600251,
"role": "G",
"DOB": "1998-10-24"
},
...
],
"record": "1-0",
"name": "Jazz Gaming",
"id": 212,
"designation": 1,
"slug": "JZG"
},
...
],
"league_details": null,
"league": null,
"matchid": "1252300010"
},
...
]
GETLive Matches
https://rimbleanalytics.com/raw/nba2k/live-matches/
Query Parameters
datematchidtimeteamleague
Request
curl
curl https://rimbleanalytics.com/raw/nba2k/live-matches/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"date": "2022-11-13",
"time": "13:00:00",
"matchid": "63590778da9d7ca1c7bb9541",
"team_1_name": "Dunno Chief",
"team_2_name": "Playing Ducks",
"league": "EMEA Predator League 2022",
"source_url": "https://...",
"league_details": {
"name": "EMEA Predator League 2022",
"image": "https://...png",
"id": "634d6667da9d7ca1c7bb80f1"
},
"match_format": {
"type": "bestOf",
"count": 7,
"metadata": [
{
"game_number": 1,
"est_date": "2022-11-13",
"est_time": "13:00:00"
},
...
]
},
"stream_links": [
"https://...",
...
],
"teams": [
{
"id": "6020bc71f1e4807cc7002516",
"name": "Dunno Chief",
"designation": 1,
"image": "https://...png",
"players": [
{
"id": "5f3d8fdd95f40596eae23e11",
"username": "Kephiii",
"image": "https://...png",
"DOB": "1998-06-04"
},
...
]
},
...
],
},
...
]
]
GETCompleted Matches
https://rimbleanalytics.com/raw/nba2k/completed-matches/
Query Parameters
datematchidtimeteamleague
Request
curl
curl https://rimbleanalytics.com/raw/nba2k/completed-matches/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"metadata": {
"games": [
{
"visiting_score": 51,
"event_no": 169,
"home_score": 64,
"game_code": "20230620/BCGKGG",
"tournament_type": "3v3",
"play_time": "2023-06-20 23:03:32"
}
]
},
"match_format": {
"type": "bestOf",
"count": 1
},
"stream_links": [],
"tournament_type": "5v5",
"source_url": null,
"time": "00:00:00",
"team_1_name": "Bucks Gaming",
"date": "2023-06-21",
"team_2_name": "Kings Guard Gaming",
"teams": [
{
"score": "",
"image": null,
"c": null,
"win_result": 1,
"players": [
{
"name": "OneWildWalnut Downey",
"id": 1600011,
"role": "C",
"results": [
{
"rebounds": 9,
"aopp": 0,
"secondary_assists": 0,
"points": 4,
"number": 24,
"mopp": 0,
"passes_made": null,
"late": 0,
"mopr": 1,
"3_point_field_goals_attempted": 1,
"aopr": 1,
"slate": 0,
"front_court_touches": 0,
"drblm": 1,
"paint_touch": 5,
"personal_fouls": 0,
"free_throws_attempted": 0,
"searly": 0,
"contested_2pt_shots": 2,
"game_number": 1,
"vlate": 0,
"3_point_field_goals_made": 0,
"passes_attempted": 2,
"contested_defensive_rebounds": 7,
"vearly": 0,
"catch_shoot_points_made": 2,
"turnovers": 1,
"points_per_elbow_touch": 18,
"position": "C",
"passes_received": 9,
"free_throws_made": 0,
"total_rebounds": 9,
"screen_assists": 0,
"catch_shoot_points_attempted": 3,
"loose_balls_recovered": 0,
"steals": 0,
"fast_break_points_made": 0,
"contested_rebounds": 8,
"bdef": 9,
"player_id": 1600011,
"assists": 5,
"field_goals_attempted": 3,
"takeo": 0,
"offensive_rebounds": 1,
"defensive_rebounds": 8,
"points_in_paint": 4,
"dbmpt": 0,
"early": 0,
"field_goals_made": 2,
"rebound_chances": 37,
"blocks": 1,
"fast_break_points_attempted": 0,
"boxouts": 2,
"points_in_paint_attempted": 2,
"time_played": 0,
"excel": 1,
"vcp_id": null,
"points_in_paint_made": 2,
"contested_3pt_shots": 0,
"contested_offensive_rebounds": 1,
"fast_break_points": 0,
"charges_drawn": 0
}
],
"DOB": "1999-05-03"
},
...
],
"slug": "BCG"
},
...
],
"league_details": null,
"league": null,
"matchid": "1252300005"
},
...
]
GETMatch Status
https://rimbleanalytics.com/raw/nba2k/match-status/?matchid={matchid}
Query Parameters
matchiddate
Request
curl
curl https://rimbleanalytics.com/raw/nba2k/match-status/?matchid={matchid} \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"status": "completed",
"date": "2022-10-28",
"time": "15:00:00",
"matchid": "63402215c437fde7e02dd8ea",
"team_1_name": "Oxygen Esports",
"team_2_name": "Turboclappers",
"league": "RLCS 2022-23 Fall Europe Regional 2",
"source_url": "https://...",
"league_details": {
"name": "RLCS 2022-23 Fall Europe Regional 2",
"image": "https://...png",
"id": "632ef8cfc437fde7e02dc032"
},
"match_format": {
"type": "bestOf",
"count": 5
},
"stream_links": [
"https://....",
....
],
"metadata": {
"games": [
{
"game_number": 1,
"duration": 300,
"blue_team": "Oxygen Esports",
"orange_team": "Turboclappers",
"map_name": "Mannfield (Night)"
}
]
},
"teams": [
{
"id": "6020bd98f1e4807cc700dc33",
"name": "Oxygen Esports",
"designation": 1,
"image": "https://...png",
"win_result": 1,
"results": [
{
"game_number": 1,
"result": 1,
"score": 1151,
"saves": 7,
"assists": 1,
"shots": 6,
"goals": 1,
"shootingPercentage": 16.666666666666664
},
...
]
"players": [
{
"id": "5f3d8fdd95f40596eae2415f",
"username": "Archie"
"DOB": "1998-06-04",
"image": "https://...png",
"results": [
{
"game_number": 1,
"score": 450,
"goalParticipation": 100,
"saves": 3,
"assists": 1,
"total_distance": 464628,
"shots": 5,
"shooting_percentage": 0,
"goals": 0
},
...
]
},
...
],
},
...
],
},
...
]
GETLeague Mappings
https://rimbleanalytics.com/raw/nba2k/league-mappings/
Query Parameters
league_idnamemin_prize_money
Request
curl
curl https://rimbleanalytics.com/raw/nba2k/league-mappings/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"id": "1",
"name": "T1 x Nerd Street Gamers Invitational",
"dates": "May 3 - May 7, 2020",
"prize_money": 25000
},
...
]
GETTeams
https://rimbleanalytics.com/raw/nba2k/teams/
Query Parameters
id
Request
curl
curl https://rimbleanalytics.com/raw/nba2k/teams/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"id": "2815",
"name": "Version1"
"image": "https://...png"
},
...
]
GETPlayers
https://rimbleanalytics.com/raw/nba2k/players/
Query Parameters
id
Request
curl
curl https://rimbleanalytics.com/raw/nba2k/players/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"id": "729",
"username": "Zellsis",
"name": "Callum Lang",
"DOB": "1998-03-02",
"image": "https://...png"
},
...
]

FIFA

GETUpcoming Matches
https://rimbleanalytics.com/raw/fifa/upcoming-matches/
Query Parameters
datematchidtimeteamleague
Request
curl
curl https://rimbleanalytics.com/raw/fifa/upcoming-matches/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
{
"date": "2022-11-13",
"time": "13:00:00",
"matchid": "63590778da9d7ca1c7bb9541",
"team_1_name": "Dunno Chief",
"team_2_name": "Playing Ducks",
"league": "EMEA Predator League 2022",
"source_url": "https://...",
"league_details": {
"name": "EMEA Predator League 2022",
"image": "https://...png",
"id": "634d6667da9d7ca1c7bb80f1"
},
"match_format": {
"type": "bestOf",
"count": 7,
"metadata": [
{
"game_number": 1,
"est_date": "2022-11-13",
"est_time": "13:00:00"
},
...
]
},
"stream_links": [
"https://...",
...
],
"teams": [
{
"id": "6020bc71f1e4807cc7002516",
"name": "Dunno Chief",
"designation": 1,
"image": "https://...png",
"players": [
{
"id": "5f3d8fdd95f40596eae23e11",
"username": "Kephiii",
"image": "https://...png",
"DOB": "1998-06-04"
},
...
]
},
...
],
},
...
]
GETLive Matches
https://rimbleanalytics.com/raw/fifa/live-matches/
Query Parameters
datematchidtimeteamleague
Request
curl
curl https://rimbleanalytics.com/raw/fifa/live-matches/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"date": "2022-11-13",
"time": "13:00:00",
"matchid": "63590778da9d7ca1c7bb9541",
"team_1_name": "Dunno Chief",
"team_2_name": "Playing Ducks",
"league": "EMEA Predator League 2022",
"source_url": "https://...",
"league_details": {
"name": "EMEA Predator League 2022",
"image": "https://...png",
"id": "634d6667da9d7ca1c7bb80f1"
},
"match_format": {
"type": "bestOf",
"count": 7,
"metadata": [
{
"game_number": 1,
"est_date": "2022-11-13",
"est_time": "13:00:00"
},
...
]
},
"stream_links": [
"https://...",
...
],
"teams": [
{
"id": "6020bc71f1e4807cc7002516",
"name": "Dunno Chief",
"designation": 1,
"image": "https://...png",
"players": [
{
"id": "5f3d8fdd95f40596eae23e11",
"username": "Kephiii",
"image": "https://...png",
"DOB": "1998-06-04"
},
...
]
},
...
],
},
...
]
]
GETCompleted Matches
https://rimbleanalytics.com/raw/fifa/completed-matches/
Query Parameters
datematchidtimeteamleague
Request
curl
curl https://rimbleanalytics.com/raw/fifa/completed-matches/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"date": "2022-10-28",
"time": "15:00:00",
"matchid": "63402215c437fde7e02dd8ea",
"team_1_name": "Oxygen Esports",
"team_2_name": "Turboclappers",
"league": "RLCS 2022-23 Fall Europe Regional 2",
"source_url": "https://...",
"league_details": {
"name": "RLCS 2022-23 Fall Europe Regional 2",
"image": "https://...png",
"id": "632ef8cfc437fde7e02dc032"
},
"match_format": {
"type": "bestOf",
"count": 5
},
"stream_links": [
"https://....",
....
],
"metadata": {
"games": [
{
"game_number": 1,
"duration": 300,
"blue_team": "Oxygen Esports",
"orange_team": "Turboclappers",
"map_name": "Mannfield (Night)"
}
]
},
"teams": [
{
"id": "6020bd98f1e4807cc700dc33",
"name": "Oxygen Esports",
"designation": 1,
"image": "https://...png",
"win_result": 1,
"results": [
{
"game_number": 1,
"result": 1,
"score": 1151,
"saves": 7,
"assists": 1,
"shots": 6,
"goals": 1,
"shootingPercentage": 16.666666666666664
},
...
]
"players": [
{
"id": "5f3d8fdd95f40596eae2415f",
"username": "Archie"
"DOB": "1998-06-04",
"image": "https://...png",
"results": [
{
"game_number": 1,
"score": 450,
"goalParticipation": 100,
"saves": 3,
"assists": 1,
"total_distance": 464628,
"shots": 5,
"shooting_percentage": 0,
"goals": 0
},
...
]
},
...
],
},
...
],
},
...
]
GETMatch Status
https://rimbleanalytics.com/raw/fifa/match-status/?matchid={matchid}
Query Parameters
matchiddate
Request
curl
curl https://rimbleanalytics.com/raw/fifa/match-status/?matchid={matchid} \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"status": "completed",
"date": "2022-10-28",
"time": "15:00:00",
"matchid": "63402215c437fde7e02dd8ea",
"team_1_name": "Oxygen Esports",
"team_2_name": "Turboclappers",
"league": "RLCS 2022-23 Fall Europe Regional 2",
"source_url": "https://...",
"league_details": {
"name": "RLCS 2022-23 Fall Europe Regional 2",
"image": "https://...png",
"id": "632ef8cfc437fde7e02dc032"
},
"match_format": {
"type": "bestOf",
"count": 5
},
"stream_links": [
"https://....",
....
],
"metadata": {
"games": [
{
"game_number": 1,
"duration": 300,
"blue_team": "Oxygen Esports",
"orange_team": "Turboclappers",
"map_name": "Mannfield (Night)"
}
]
},
"teams": [
{
"id": "6020bd98f1e4807cc700dc33",
"name": "Oxygen Esports",
"designation": 1,
"image": "https://...png",
"win_result": 1,
"results": [
{
"game_number": 1,
"result": 1,
"score": 1151,
"saves": 7,
"assists": 1,
"shots": 6,
"goals": 1,
"shootingPercentage": 16.666666666666664
},
...
]
"players": [
{
"id": "5f3d8fdd95f40596eae2415f",
"username": "Archie"
"DOB": "1998-06-04",
"image": "https://...png",
"results": [
{
"game_number": 1,
"score": 450,
"goalParticipation": 100,
"saves": 3,
"assists": 1,
"total_distance": 464628,
"shots": 5,
"shooting_percentage": 0,
"goals": 0
},
...
]
},
...
],
},
...
],
},
...
]
GETLeague Mappings
https://rimbleanalytics.com/raw/fifa/league-mappings/
Query Parameters
league_idnamemin_prize_money
Request
curl
curl https://rimbleanalytics.com/raw/fifa/league-mappings/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"id": "1",
"name": "T1 x Nerd Street Gamers Invitational",
"dates": "May 3 - May 7, 2020",
"prize_money": 25000
},
...
]
GETTeams
https://rimbleanalytics.com/raw/fifa/teams/
Query Parameters
id
Request
curl
curl https://rimbleanalytics.com/raw/fifa/teams/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"id": "2815",
"name": "Version1"
"image": "https://...png"
},
...
]
GETPlayers
https://rimbleanalytics.com/raw/fifa/players/
Query Parameters
id
Request
curl
curl https://rimbleanalytics.com/raw/fifa/players/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"id": "729",
"username": "Zellsis",
"name": "Callum Lang",
"DOB": "1998-03-02",
"image": "https://...png"
},
...
]

Siege

GETUpcoming Matches
https://rimbleanalytics.com/raw/siege/upcoming-matches/
Query Parameters
datematchidtimeteamleague
Request
curl
curl https://rimbleanalytics.com/raw/siege/upcoming-matches/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
{
"date": "2022-11-13",
"time": "13:00:00",
"matchid": "63590778da9d7ca1c7bb9541",
"team_1_name": "Dunno Chief",
"team_2_name": "Playing Ducks",
"league": "EMEA Predator League 2022",
"source_url": "https://...",
"league_details": {
"name": "EMEA Predator League 2022",
"image": "https://...png",
"id": "634d6667da9d7ca1c7bb80f1"
},
"match_format": {
"type": "bestOf",
"count": 7,
"metadata": [
{
"game_number": 1,
"est_date": "2022-11-13",
"est_time": "13:00:00"
},
...
]
},
"stream_links": [
"https://...",
...
],
"teams": [
{
"id": "6020bc71f1e4807cc7002516",
"name": "Dunno Chief",
"designation": 1,
"image": "https://...png",
"players": [
{
"id": "5f3d8fdd95f40596eae23e11",
"username": "Kephiii",
"image": "https://...png",
"DOB": "1998-06-04"
},
...
]
},
...
],
},
...
]
GETLive Matches
https://rimbleanalytics.com/raw/siege/live-matches/
Query Parameters
datematchidtimeteamleague
Request
curl
curl https://rimbleanalytics.com/raw/siege/live-matches/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"date": "2022-11-13",
"time": "13:00:00",
"matchid": "63590778da9d7ca1c7bb9541",
"team_1_name": "Dunno Chief",
"team_2_name": "Playing Ducks",
"league": "EMEA Predator League 2022",
"source_url": "https://...",
"league_details": {
"name": "EMEA Predator League 2022",
"image": "https://...png",
"id": "634d6667da9d7ca1c7bb80f1"
},
"match_format": {
"type": "bestOf",
"count": 7,
"metadata": [
{
"game_number": 1,
"est_date": "2022-11-13",
"est_time": "13:00:00"
},
...
]
},
"stream_links": [
"https://...",
...
],
"teams": [
{
"id": "6020bc71f1e4807cc7002516",
"name": "Dunno Chief",
"designation": 1,
"image": "https://...png",
"players": [
{
"id": "5f3d8fdd95f40596eae23e11",
"username": "Kephiii",
"image": "https://...png",
"DOB": "1998-06-04"
},
...
]
},
...
],
},
...
]
]
GETCompleted Matches
https://rimbleanalytics.com/raw/siege/completed-matches/
Query Parameters
datematchidtimeteamleague
Request
curl
curl https://rimbleanalytics.com/raw/siege/completed-matches/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"date": "2022-10-28",
"time": "15:00:00",
"matchid": "63402215c437fde7e02dd8ea",
"team_1_name": "Oxygen Esports",
"team_2_name": "Turboclappers",
"league": "RLCS 2022-23 Fall Europe Regional 2",
"source_url": "https://...",
"league_details": {
"name": "RLCS 2022-23 Fall Europe Regional 2",
"image": "https://...png",
"id": "632ef8cfc437fde7e02dc032"
},
"match_format": {
"type": "bestOf",
"count": 5
},
"stream_links": [
"https://....",
....
],
"metadata": {
"games": [
{
"game_number": 1,
"duration": 300,
"blue_team": "Oxygen Esports",
"orange_team": "Turboclappers",
"map_name": "Mannfield (Night)"
}
]
},
"teams": [
{
"id": "6020bd98f1e4807cc700dc33",
"name": "Oxygen Esports",
"designation": 1,
"image": "https://...png",
"win_result": 1,
"results": [
{
"game_number": 1,
"result": 1,
"score": 1151,
"saves": 7,
"assists": 1,
"shots": 6,
"goals": 1,
"shootingPercentage": 16.666666666666664
},
...
]
"players": [
{
"id": "5f3d8fdd95f40596eae2415f",
"username": "Archie"
"DOB": "1998-06-04",
"image": "https://...png",
"results": [
{
"game_number": 1,
"score": 450,
"goalParticipation": 100,
"saves": 3,
"assists": 1,
"total_distance": 464628,
"shots": 5,
"shooting_percentage": 0,
"goals": 0
},
...
]
},
...
],
},
...
],
},
...
]
GETMatch Status
https://rimbleanalytics.com/raw/siege/match-status/?matchid={matchid}
Query Parameters
matchiddate
Request
curl
curl https://rimbleanalytics.com/raw/siege/match-status/?matchid={matchid} \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"status": "completed",
"date": "2022-10-28",
"time": "15:00:00",
"matchid": "63402215c437fde7e02dd8ea",
"team_1_name": "Oxygen Esports",
"team_2_name": "Turboclappers",
"league": "RLCS 2022-23 Fall Europe Regional 2",
"source_url": "https://...",
"league_details": {
"name": "RLCS 2022-23 Fall Europe Regional 2",
"image": "https://...png",
"id": "632ef8cfc437fde7e02dc032"
},
"match_format": {
"type": "bestOf",
"count": 5
},
"stream_links": [
"https://....",
....
],
"metadata": {
"games": [
{
"game_number": 1,
"duration": 300,
"blue_team": "Oxygen Esports",
"orange_team": "Turboclappers",
"map_name": "Mannfield (Night)"
}
]
},
"teams": [
{
"id": "6020bd98f1e4807cc700dc33",
"name": "Oxygen Esports",
"designation": 1,
"image": "https://...png",
"win_result": 1,
"results": [
{
"game_number": 1,
"result": 1,
"score": 1151,
"saves": 7,
"assists": 1,
"shots": 6,
"goals": 1,
"shootingPercentage": 16.666666666666664
},
...
]
"players": [
{
"id": "5f3d8fdd95f40596eae2415f",
"username": "Archie"
"DOB": "1998-06-04",
"image": "https://...png",
"results": [
{
"game_number": 1,
"score": 450,
"goalParticipation": 100,
"saves": 3,
"assists": 1,
"total_distance": 464628,
"shots": 5,
"shooting_percentage": 0,
"goals": 0
},
...
]
},
...
],
},
...
],
},
...
]
GETLeague Mappings
https://rimbleanalytics.com/raw/siege/league-mappings/
Query Parameters
league_idnamemin_prize_money
Request
curl
curl https://rimbleanalytics.com/raw/siege/league-mappings/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"id": "1",
"name": "T1 x Nerd Street Gamers Invitational",
"dates": "May 3 - May 7, 2020",
"prize_money": 25000
},
...
]
GETTeams
https://rimbleanalytics.com/raw/siege/teams/
Query Parameters
id
Request
curl
curl https://rimbleanalytics.com/raw/siege/teams/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"id": "2815",
"name": "Version1"
"image": "https://...png"
},
...
]
GETPlayers
https://rimbleanalytics.com/raw/siege/players/
Query Parameters
id
Request
curl
curl https://rimbleanalytics.com/raw/siege/players/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"id": "729",
"username": "Zellsis",
"name": "Callum Lang",
"DOB": "1998-03-02",
"image": "https://...png"
},
...
]

Cricket

GETUpcoming Matches
https://rimbleanalytics.com/raw/cricket/upcoming-matches/
Query Parameters
datematchidtimeteamleague
Request
curl
curl https://rimbleanalytics.com/raw/cricket/upcoming-matches/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"match_format":{
"type":"TEST"
},
"ground_details":{
"name":"FTZ Sports Complex (Board of Investment), Katunayake",
"id":59337
},
"stream_links":null,
"confirmed_rosters":true,
"source_url":"https://...",
"time":"04:30:00",
"team_1_name":"Ace Capital Cricket Club",
"date":"2025-02-21",
"team_2_name":"Panadura Sports Club",
"teams":[
{
"image":"https://img1.hscicdn.com/image/upload/lsci/db/PICTURES/CMS/318200/318245.png",
"players":[
{
"image":"https://img1.hscicdn.com/image/upload/lsci/db/PICTURES/CMS/209400/209463.gif",
"role":[
"allrounder"
],
"bowling_style":"right-arm offbreak",
"DOB":"1983-11-23",
"name":"Harsha Cooray",
"batting_style":"right-hand bat",
"id":48421,
"slug":"NHG Cooray"
},
...
],
"name":"Ace Capital Cricket Club",
"id":3629,
"designation":1,
"slug":"ACCC"
},
...
],
"league_details":{
"name":"MLT (3-day)",
"game_number":"Group A",
"id":1465791
},
"league":"MLT (3-day)",
"matchid":"1465857"
}
]
GETLive Matches
https://rimbleanalytics.com/raw/cricket/live-matches/
Query Parameters
datematchidtimeteamleague
Request
curl
curl https://rimbleanalytics.com/raw/cricket/live-matches/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"match_format":{
"type":"TEST"
},
"ground_details":{
"name":"FTZ Sports Complex (Board of Investment), Katunayake",
"id":59337
},
"stream_links":null,
"confirmed_rosters":true,
"source_url":"https://...",
"time":"04:30:00",
"team_1_name":"Ace Capital Cricket Club",
"date":"2025-02-21",
"team_2_name":"Panadura Sports Club",
"teams":[
{
"image":"https://img1.hscicdn.com/image/upload/lsci/db/PICTURES/CMS/318200/318245.png",
"players":[
{
"image":"https://img1.hscicdn.com/image/upload/lsci/db/PICTURES/CMS/209400/209463.gif",
"role":[
"allrounder"
],
"bowling_style":"right-arm offbreak",
"DOB":"1983-11-23",
"name":"Harsha Cooray",
"batting_style":"right-hand bat",
"id":48421,
"slug":"NHG Cooray"
},
...
],
"name":"Ace Capital Cricket Club",
"id":3629,
"designation":1,
"slug":"ACCC"
},
...
],
"league_details":{
"name":"MLT (3-day)",
"game_number":"Group A",
"id":1465791
},
"league":"MLT (3-day)",
"matchid":"1465857"
}
]
GETCompleted Matches
https://rimbleanalytics.com/raw/cricket/completed-matches/
Query Parameters
datematchidtimeteamleague
Request
curl
curl https://rimbleanalytics.com/raw/cricket/completed-matches/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"date":"2025-02-01",
"team_2_name":"Paarl Royals",
"teams":[
{
"image":"https://img1.hscicdn.com/image/upload/lsci/db/PICTURES/CMS/348900/348952.png",
"win_result":1,
"players":[
{
"image":"https://img1.hscicdn.com/image/upload/lsci/db/PICTURES/CMS/388400/388419.5.png",
"role":[
"batter"
],
"bowling_style":"right-arm offbreak",
"DOB":"1997-8-28",
"name":"Tony de Zorzi",
"batting_style":"left-hand bat",
"played_match":true,
"id":697183,
"results":[
{
"balls":8,
"runs_conceded":null,
"wides_conceded":null,
"fours_conceded":null,
"economy":null,
"overs":null,
"sixes":0,
"is_out":true,
"maidens":null,
"batting_position":0,
"fours":1,
"runs":8,
"strikerate":100,
"wickets":null
}
],
"slug":"T de Zorzi"
},
...
],
"name":"Sunrisers Eastern Cape",
"id":1335273,
"designation":1,
"results":[
{
"extras":9,
"noballs":0,
"runs":148,
"wickets":8,
"balls":120,
"wides":8
}
],
"slug":"SEC"
},
...
],
"match_format":{
"type":"T20"
},
"ground_details":{
"name":"St George's Park, Gqeberha",
"id":59159
},
"stream_links":null,
"source_url":"https://...",
"league_details":{
"name":"SA20",
"game_number":28,
"id":1437327
},
"time":"11:00:00",
"team_1_name":"Sunrisers Eastern Cape",
"league":"SA20",
"matchid":"1449661"
}
]
GETMatch Status
https://rimbleanalytics.com/raw/cricket/match-status/?matchid={matchid}
Query Parameters
matchiddate
Request
curl
curl https://rimbleanalytics.com/raw/cricket/match-status/?matchid={matchid} \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{ "status": "completed",
"date":"2025-02-01",
"team_2_name":"Paarl Royals",
"teams":[
{
"image":"https://img1.hscicdn.com/image/upload/lsci/db/PICTURES/CMS/348900/348952.png",
"win_result":1,
"players":[
{
"image":"https://img1.hscicdn.com/image/upload/lsci/db/PICTURES/CMS/388400/388419.5.png",
"role":[
"batter"
],
"bowling_style":"right-arm offbreak",
"DOB":"1997-8-28",
"name":"Tony de Zorzi",
"batting_style":"left-hand bat",
"played_match":true,
"id":697183,
"results":[
{
"balls":8,
"runs_conceded":null,
"wides_conceded":null,
"fours_conceded":null,
"economy":null,
"overs":null,
"sixes":0,
"is_out":true,
"maidens":null,
"batting_position":0,
"fours":1,
"runs":8,
"strikerate":100,
"wickets":null
}
],
"slug":"T de Zorzi"
},
...
],
"name":"Sunrisers Eastern Cape",
"id":1335273,
"designation":1,
"results":[
{
"extras":9,
"noballs":0,
"runs":148,
"wickets":8,
"balls":120,
"wides":8
}
],
"slug":"SEC"
},
...
],
"match_format":{
"type":"T20"
},
"ground_details":{
"name":"St George's Park, Gqeberha",
"id":59159
},
"stream_links":null,
"source_url":"https://...",
"league_details":{
"name":"SA20",
"game_number":28,
"id":1437327
},
"time":"11:00:00",
"team_1_name":"Sunrisers Eastern Cape",
"league":"SA20",
"matchid":"1449661"
}
]
GETLeague Mappings
https://rimbleanalytics.com/raw/cricket/league-mappings/
Query Parameters
league_idnamemin_prize_money
Request
curl
curl https://rimbleanalytics.com/raw/cricket/league-mappings/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"name":"MLT (3-day)",
"id":1465791
},
...
]
GETTeams
https://rimbleanalytics.com/raw/cricket/teams/
Query Parameters
id
Request
curl
curl https://rimbleanalytics.com/raw/cricket/teams/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"id": "2815",
"name": "Version1"
"image": "https://...png"
},
...
]
GETPlayers
https://rimbleanalytics.com/raw/cricket/players/
Query Parameters
id
Request
curl
curl https://rimbleanalytics.com/raw/cricket/players/ \
-H "x-api-key: YOUR_API_KEY"
Response
json
[
{
"image":"https://img1.hscicdn.com/image/upload/lsci/db/PICTURES/CMS/388400/388419.5.png",
"role":[
"batter"
],
"bowling_style":"right-arm offbreak",
"DOB":"1997-8-28",
"name":"Tony de Zorzi",
"batting_style":"left-hand bat",
"id":697183
},
...
]