GET
/
api
/
v1
/
player-cards
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

x-api-key
string
header
required

Query Parameters

Search for player cards by name

Example:

"Neymar"

page
number

Page number

Example:

1

size
number

Page size

Example:

10

include
string

Comma-separated list of related entities to include. Supports "rarity" and "club".

Example:

"rarity,club"

createdSince
string

Created since

Example:

"2024-01-01T00:00:00.000Z"

createdUntil
string

Created until

Example:

"2024-01-01T00:00:00.000Z"

Response

200 - application/json
currentPage
number
required

Current page

Example:

1

totalPages
number
required

Total pages

Example:

10

totalCount
number
required

Total count

Example:

100

isLastPage
boolean
required

Is last page

Example:

false

isFirstPage
boolean
required

Is first page

Example:

true

nextPage
object
required

Next page

Example:

2

playerCards
object[]
required

Player cards