Rankings
Endpoint Description
This endpoint retrieves the FIFA rankings of football teams. It provides a list of teams along with their ranking details, which can be useful for applications that need to display or analyze current football team standings.
Request
Method: GET
URL:
https://apiv3.sportsapi360.com/football/api/v1/team/rankings/fifa
Response
The response is a JSON object containing the following structure:
rankings: An array of objects, each representing a team's ranking information.
team: An object containing details about the team.
name: The full name of the team.
shortName: The abbreviated name of the team.
gender: The gender category of the team.
nameCode: A code representing the team's name.
ranking: The current ranking of the team.
disabled: A boolean indicating if the team is disabled.
national: A boolean indicating if the team is a national team.
type: The type of team (e.g., national, club).
id: A unique identifier for the team.
country: An object containing country information.
alpha2: The two-letter country code.
alpha3: The three-letter country code.
name: The name of the country.
type: The type of ranking.
rowName: The name of the row in the ranking.
ranking: The current ranking position.
points: The points accumulated by the team.
previousRanking: The team's ranking in the previous update.
previousPoints: The points the team had in the previous update.
id: A unique identifier for the ranking entry.
country: An object representing country details (may be empty).
rankingClass: The classification of the ranking.
updatedAtTimestamp: A timestamp indicating when the rankings were last updated.
This endpoint does not require any request body, and it provides a comprehensive overview of the current FIFA rankings for football teams.
OK
GET /football/api/v1/team/rankings/fifa HTTP/1.1
Host: apiv3.sportsapi360.com
Authorization: x-api-key YOUR_SECRET_TOKEN
Accept: */*
OK
{
"rankings": [
{
"team": {
"name": "Argentina",
"shortName": "Argentina",
"gender": "M",
"nameCode": "ARG",
"ranking": 1,
"disabled": false,
"national": true,
"type": 0,
"id": 4819,
"country": {
"alpha2": "AR",
"alpha3": "ARG",
"name": "Argentina"
}
},
"type": 2,
"rowName": "Argentina",
"ranking": 1,
"points": 1885.36,
"previousRanking": 1,
"previousPoints": 1886.16,
"id": 112632,
"country": {},
"rankingClass": "team"
},
{
"team": {
"name": "Spain",
"shortName": "Spain",
"gender": "M",
"nameCode": "SPA",
"ranking": 2,
"disabled": false,
"national": true,
"type": 0,
"id": 4698,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain"
}
},
"type": 2,
"rowName": "Spain",
"ranking": 2,
"points": 1867.09,
"previousRanking": 2,
"previousPoints": 1854.64,
"id": 112633,
"country": {},
"rankingClass": "team"
}
],
"updatedAtTimestamp": 1754848822
}Endpoint Description
This endpoint retrieves the UEFA national team rankings for football. It provides information about the rankings of national teams participating in UEFA tournaments.
Request
Method: GET
URL:
https://apiv3.sportsapi360.com/football/api/v1/team/rankings/uefa/national
Response
The response will contain a JSON object with the following structure:
rankings: An array of ranking objects, each containing:
tournament: An object representing the tournament details, including:
name: The name of the tournament.
category: An object with details about the category, including:
name: The name of the category.
id: The unique identifier for the category.
country: An object containing country details, including:
alpha2: The two-letter country code.
alpha3: The three-letter country code.
name: The name of the country.
flag: The flag associated with the country.
id: The unique identifier for the tournament.
displayInverseHomeAwayTeams: A boolean indicating if home/away teams should be displayed inversely.
totalTeams: The total number of teams in the tournament.
playingTeams: The number of teams currently playing.
year: The year of the ranking.
type: An integer representing the type of ranking.
rowName: The name of the row in the ranking.
ranking: The ranking position of the team.
points: The points accumulated by the team.
id: The unique identifier for the ranking.
country: An object with country details similar to the tournament's country object.
rankingClass: A classification for the ranking.
updatedAtTimestamp: A timestamp indicating when the rankings were last updated.
Notes
Ensure that the base URL is correctly set before making the request.
The rankings may vary based on the latest updates from UEFA.
OK
GET /football/api/v1/team/rankings/uefa/national HTTP/1.1
Host: apiv3.sportsapi360.com
Authorization: x-api-key YOUR_SECRET_TOKEN
Accept: */*
OK
{
"rankings": [
{
"tournament": {
"name": "Premier League",
"category": {
"name": "England",
"id": 1,
"country": {
"alpha2": "EN",
"alpha3": "ENG",
"name": "England"
},
"flag": "england",
"alpha2": "EN"
},
"id": 17,
"country": {},
"displayInverseHomeAwayTeams": false
},
"totalTeams": 7,
"playingTeams": 0,
"year": "2025",
"type": 1,
"rowName": "England",
"ranking": 1,
"points": 115.196,
"id": 49983,
"country": {
"alpha2": "EN",
"alpha3": "ENG",
"name": "England"
},
"rankingClass": "uniquetournament"
},
{
"tournament": {
"name": "Serie A",
"category": {
"name": "Italy",
"id": 31,
"country": {
"alpha2": "IT",
"alpha3": "ITA",
"name": "Italy"
},
"flag": "italy",
"alpha2": "IT"
},
"id": 23,
"country": {},
"displayInverseHomeAwayTeams": false
},
"totalTeams": 8,
"playingTeams": 0,
"year": "2025",
"type": 1,
"rowName": "Italy",
"ranking": 2,
"points": 97.231,
"id": 49984,
"country": {
"alpha2": "IT",
"alpha3": "ITA",
"name": "Italy"
},
"rankingClass": "uniquetournament"
},
{
"tournament": {
"name": "LaLiga",
"category": {
"name": "Spain",
"id": 32,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain"
},
"flag": "spain",
"alpha2": "ES"
},
"id": 8,
"country": {},
"displayInverseHomeAwayTeams": false
},
"totalTeams": 7,
"playingTeams": 0,
"year": "2025",
"type": 1,
"rowName": "Spain",
"ranking": 3,
"points": 94.453,
"id": 49985,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain"
},
"rankingClass": "uniquetournament"
}
],
"updatedAtTimestamp": 1754832616
}Endpoint Description
This endpoint retrieves the UEFA club rankings for football teams. It provides a comprehensive list of teams along with their respective rankings, points, and associated metadata.
Request
Method: GET
URL:
https://apiv3.sportsapi360.com/football/api/v1/team/rankings/uefa/club
Response Structure
The response will return a JSON object containing the following fields:
rankings: An array of ranking objects, each representing a football team with the following properties:
team: An object containing details about the team:
name: The full name of the team.
shortName: The abbreviated name of the team.
gender: The gender category of the team.
nameCode: A code representing the team's name.
disabled: A boolean indicating if the team is disabled.
national: A boolean indicating if the team is a national team.
type: An integer representing the type of team.
id: The unique identifier for the team.
country: An object containing country details:
alpha2: The 2-letter country code.
alpha3: The 3-letter country code.
name: The name of the country.
year: The year for which the ranking is applicable.
type: An integer representing the type of ranking.
rowName: The name of the row in the ranking.
ranking: The rank of the team.
points: The points accumulated by the team.
id: The unique identifier for the ranking entry.
country: An object representing additional country details.
rankingClass: A string representing the classification of the ranking.
updatedAtTimestamp: A timestamp indicating when the rankings were last updated.
OK
GET /football/api/v1/team/rankings/uefa/club HTTP/1.1
Host: apiv3.sportsapi360.com
Authorization: x-api-key YOUR_SECRET_TOKEN
Accept: */*
OK
{
"rankings": [
{
"team": {
"name": "Real Madrid",
"shortName": "Real Madrid",
"gender": "M",
"nameCode": "RMA",
"disabled": false,
"national": false,
"type": 0,
"id": 2829,
"country": {
"alpha2": "ES",
"alpha3": "ESP",
"name": "Spain"
}
},
"year": "2025",
"type": 9,
"rowName": "Real Madrid C.F.",
"ranking": 1,
"points": 143.5,
"id": 50039,
"country": {},
"rankingClass": "team"
},
{
"team": {
"name": "Manchester City",
"shortName": "Man City",
"gender": "M",
"nameCode": "MCI",
"disabled": false,
"national": false,
"type": 0,
"id": 17,
"country": {
"alpha2": "EN",
"alpha3": "ENG",
"name": "England"
}
},
"year": "2025",
"type": 9,
"rowName": "Manchester City",
"ranking": 2,
"points": 137.75,
"id": 50038,
"country": {},
"rankingClass": "team"
}
],
"updatedAtTimestamp": 1754833220
}Last updated

