Skip to main content
POST
/
api
/
itchio
/
games
/itchio/games
curl --request POST \
  --url https://api.anysite.io/api/itchio/games \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "game": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "@type": "@itchio_game",
    "alias": "<string>",
    "name": "<string>",
    "author": "<string>",
    "author_url": "<string>",
    "description": "<string>",
    "price": 123,
    "list_price": 123,
    "currency": "<string>",
    "is_free": false,
    "type": "<string>",
    "genre": "<string>",
    "tags": [],
    "platforms": [],
    "status": "<string>",
    "rating": {
      "@type": "@itchio_game_rating",
      "value": 123,
      "count": 123
    },
    "image": "<string>",
    "screenshots": [],
    "uploads": [],
    "languages": [],
    "made_with": [],
    "average_session": "<string>",
    "inputs": [],
    "accessibility": [],
    "links": [],
    "published_at": "<string>",
    "updated_at": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
game
string
required

Game page as {author}.itch.io/{slug} or a full game URL

Minimum string length: 1
Examples:

"hempuli.itch.io/baba-is-you"

"https://maddymakesgamesinc.itch.io/celeste"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
@type
string
default:@itchio_game
alias
string | null
name
string | null
author
string | null
author_url
string | null
description
string | null
price
integer | null
list_price
integer | null
currency
string | null
is_free
boolean
default:false
type
string | null
genre
string | null
tags
string[]
platforms
string[]
status
string | null
rating
ItchioGameRating · object
image
string | null
screenshots
string[]
uploads
ItchioGameUpload · object[]
languages
string[]
made_with
string[]
average_session
string | null
inputs
string[]
accessibility
string[]
published_at
string | null
updated_at
string | null