Player Cards
Get player cards
Finds all the player cards you need
curl --request GET \
--url https://futapi.app/api/v1/player-cards \
--header 'x-api-key: <api-key>'
{
"currentPage": 1,
"totalPages": 10,
"totalCount": 100,
"isLastPage": false,
"isFirstPage": true,
"nextPage": 2,
"playerCards": [
{
"id": 1,
"heightInCentimeters": 180,
"commonName": "Neymar Jr",
"overallRating": 94,
"firstName": "Neymar",
"lastName": "Da Silva Santos Júnior",
"skillMovesRating": 5,
"weakFootRating": 4,
"attackingWorkRate": "HIGH",
"defensiveWorkRate": "LOW",
"preferredFoot": "RIGHT",
"playerPictureURL": "https://assets.futapi.app/player-pictures/player.webp",
"rarityId": 1,
"rarity": {
"id": 1,
"name": "Gold Rare",
"cardImageURL": "https://assets.futapi.app/rarity-images/gold_rare.webp",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
},
"clubId": 1,
"club": {
"id": 1,
"name": "FC Barcelona",
"imageURL": "https://assets.futapi.app/club-images/barcelona.webp",
"leagueId": 1,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
},
"cardURL": "https://assets.futapi.app/card-images/card.webp",
"quality": "GOLD",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
]
}
Authorizations
Query Parameters
Search for player cards by name
"Neymar"
Page number
1
Page size
10
Comma-separated list of related entities to include. Supports "rarity" and "club".
"rarity,club"
Created since
"2024-01-01T00:00:00.000Z"
Created until
"2024-01-01T00:00:00.000Z"
Response
Current page
1
Total pages
10
Total count
100
Is last page
false
Is first page
true
Next page
2
Player cards
The unique identifier of the player card.
1
The height of the player in centimeters.
x >= 0
180
The common name of the player.
"Neymar Jr"
The overall rating of the player. (0-100)
0 <= x <= 100
94
The first name of the player
"Neymar"
The last name of the player
"Da Silva Santos Júnior"
The skill moves rating of the player (0-5)
0 <= x <= 5
5
The weak foot rating of the player (0-5)
0 <= x <= 5
4
The defensive work rate of the player
HIGH
, LOW
The defensive work rate of the player
HIGH
, LOW
The preferred foot of the player
LEFT
, RIGHT
The URL of the player picture
"https://assets.futapi.app/player-pictures/player.webp"
The rarity ID of the player card
1
The rarity of the player card. Only included if requested..
The unique identifier of the rarity.
1
The name of the rarity.
"Gold Rare"
The URL of the card image for this rarity. Without any player card stats.
"https://assets.futapi.app/rarity-images/gold_rare.webp"
The creation date (ISO 8601) of the rarity.
The last update date (ISO 8601) of the rarity.
The club ID of the player card
1
The club of the player card. Only included if requested.
The unique identifier of the club.
1
The name of the club.
"FC Barcelona"
The URL of the club image.
"https://assets.futapi.app/club-images/barcelona.webp"
The league ID of the club.
1
The creation date (ISO 8601) of the club.
The last update date (ISO 8601) of the club.
The URL of the player card
"https://assets.futapi.app/card-images/card.webp"
The quality of the player card
GOLD
, SILVER
, BRONZE
The creation date (ISO 8601) of the player card.
The last update date (ISO 8601) of the player card or null if it was never updated.
curl --request GET \
--url https://futapi.app/api/v1/player-cards \
--header 'x-api-key: <api-key>'
{
"currentPage": 1,
"totalPages": 10,
"totalCount": 100,
"isLastPage": false,
"isFirstPage": true,
"nextPage": 2,
"playerCards": [
{
"id": 1,
"heightInCentimeters": 180,
"commonName": "Neymar Jr",
"overallRating": 94,
"firstName": "Neymar",
"lastName": "Da Silva Santos Júnior",
"skillMovesRating": 5,
"weakFootRating": 4,
"attackingWorkRate": "HIGH",
"defensiveWorkRate": "LOW",
"preferredFoot": "RIGHT",
"playerPictureURL": "https://assets.futapi.app/player-pictures/player.webp",
"rarityId": 1,
"rarity": {
"id": 1,
"name": "Gold Rare",
"cardImageURL": "https://assets.futapi.app/rarity-images/gold_rare.webp",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
},
"clubId": 1,
"club": {
"id": 1,
"name": "FC Barcelona",
"imageURL": "https://assets.futapi.app/club-images/barcelona.webp",
"leagueId": 1,
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
},
"cardURL": "https://assets.futapi.app/card-images/card.webp",
"quality": "GOLD",
"createdAt": "2023-11-07T05:31:56Z",
"updatedAt": "2023-11-07T05:31:56Z"
}
]
}