Stadium Data API
API Endpoint: Get Stadium Details
This endpoint retrieves detailed information about a specific cricket stadium based on the provided stadium ID. It is useful for obtaining various statistics and attributes related to the stadium.
Request
Method: GET
URL:
https://apiv3.sportsapi360.com/cricket/api/v2/stadium/:stadiumId
Path Parameter:
stadiumId
(string): The unique identifier for the stadium whose details are to be fetched.
Response
The response will return a JSON object containing the following structure:
image
(string): URL or path to an image of the stadium.venueID
(string): Unique identifier for the venue.fullName
(string): Full name of the stadium.capacity
(string): Seating capacity of the stadium.city
(string): City where the stadium is located.country
(string): Country where the stadium is located.bowlingEnds
(string): Description of the bowling ends.floodlight
(string): Information regarding floodlight availability.
Additionally, the response includes venueStats
, which contains detailed statistics for different formats of cricket:
odiDetails
: Statistics for One Day Internationals.avgIstInningScore
(string): Average score in the first innings.firstBattingWin
(integer): Number of times the first batting team won.firstMatch
,lastMatch
,highestScoreMatch
,lowestScoreMatch
: Objects containing details about specific matches (e.g., match name, status, score, start date).
testDetails
: Statistics for Test matches (same structure asodiDetails
).t20Details
: Statistics for T20 matches (same structure asodiDetails
).
This structured response allows consumers of the API to easily access and utilize stadium-related information for various cricket formats.
{API_KEY}
GET /cricket/api/v2/stadium/{stadiumId} HTTP/1.1
Host: apiv3.sportsapi360.com
Authorization: x-api-key YOUR_SECRET_TOKEN
Accept: */*
OK
{
"image": "https://static-image.sportsapi360.com/cricket/logo/team/89.png",
"venueID": "89",
"fullName": "Lord's Cricket Ground, London",
"capacity": "30000",
"city": "London",
"country": "England",
"bowlingEnds": "Pavilion End and Nursery End",
"floodlight": "yes",
"venueStats": {
"odiDetails": {
"avgIstInningScore": "227",
"firstBattingWin": 48.57142857142857,
"firstMatch": {
"matchString": "August 26, 1972 - Australia beat England by 5 wickets",
"matchName": "Australia vs England",
"matchStatusStr": " Australia beat England by 5 wickets",
"scoreStr": null,
"startDate": "August 26, 1972 "
},
"lastMatch": {
"matchString": "September 27, 2024 - England beat Australia by 186 runs",
"matchName": "Australia vs England",
"matchStatusStr": " England beat Australia by 186 runs",
"scoreStr": null,
"startDate": "September 27, 2024 "
},
"highestScoreMatch": {
"matchString": "334/4 - by England on June 7, 1975 - England beat India by 202 runs",
"matchName": "England vs India",
"matchStatusStr": " England beat India by 202 runs",
"scoreStr": "334/4 - England",
"startDate": " June 7, 1975 "
},
"lowestScoreMatch": {
"matchString": "107/10 - by South Africa on July 12, 2003 - England beat South Africa by 7 wickets",
"matchName": "England vs South Africa",
"matchStatusStr": " England beat South Africa by 7 wickets",
"scoreStr": "107/10 - England",
"startDate": " July 12, 2003 "
}
},
"testDetails": {
"avgIstInningScore": "263",
"firstBattingWin": 35.810810810810814,
"firstMatch": {
"matchString": "July 21, 1884 - England beat Australia by an innings and 5 runs",
"matchName": "Australia vs England",
"matchStatusStr": " England beat Australia by an innings and 5 runs",
"scoreStr": null,
"startDate": "July 21, 1884 "
},
"lastMatch": {
"matchString": "June 11, 2025 - South Africa beat Australia by 5 wickets",
"matchName": "Australia vs South Africa",
"matchStatusStr": " South Africa beat Australia by 5 wickets",
"scoreStr": null,
"startDate": "June 11, 2025 "
},
"highestScoreMatch": {
"matchString": "729/6 - by Australia on June 27, 1930 - Australia beat England by 7 wickets",
"matchName": "Australia vs England",
"matchStatusStr": " Australia beat England by 7 wickets",
"scoreStr": "729/6 - Australia",
"startDate": " June 27, 1930 "
},
"lowestScoreMatch": {
"matchString": "38/10 - by Ireland on July 24, 2019 - England beat Ireland by 143 runs",
"matchName": "England vs Ireland",
"matchStatusStr": " England beat Ireland by 143 runs",
"scoreStr": "38/10 - England",
"startDate": " July 24, 2019 "
}
},
"t20Details": {
"avgIstInningScore": "139",
"firstBattingWin": 60,
"firstMatch": {
"matchString": "June 5, 2009 - Netherlands beat England by 4 wickets",
"matchName": "England vs Netherlands",
"matchStatusStr": " Netherlands beat England by 4 wickets",
"scoreStr": null,
"startDate": "June 5, 2009 "
},
"lastMatch": {
"matchString": "July 29, 2018 - Match Abandoned",
"matchName": "-",
"matchStatusStr": " Match Abandoned",
"scoreStr": null,
"startDate": "July 29, 2018 "
},
"highestScoreMatch": {
"matchString": "199/4 - by West Indies on May 31, 2018 - West Indies beat ICC World XI by 72 runs",
"matchName": "-",
"matchStatusStr": " West Indies beat ICC World XI by 72 runs",
"scoreStr": "199/4 - West Indies",
"startDate": " May 31, 2018 "
},
"lowestScoreMatch": {
"matchString": "93/10 - by Netherlands on June 9, 2009 - Pakistan beat Netherlands by 82 runs",
"matchName": "Pakistan vs Netherlands",
"matchStatusStr": " Pakistan beat Netherlands by 82 runs",
"scoreStr": "93/10 - Pakistan",
"startDate": "June 9, 2009 "
}
}
}
}