Skip to main content
POST
/
api
/
itchio
/
games
/
search
/itchio/games/search
curl --request POST \
  --url https://api.anysite.io/api/itchio/games/search \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "count": 2,
  "timeout": 300,
  "query": "puzzle",
  "tag": "<string>"
}
'
[
  {
    "id": 123,
    "@type": "@itchio_game_search_result",
    "alias": "<string>",
    "name": "<string>",
    "url": "<string>",
    "author": "<string>",
    "author_url": "<string>",
    "tagline": "<string>",
    "genre": "<string>",
    "platforms": [],
    "price": 123,
    "is_free": false,
    "is_on_sale": false,
    "image": "<string>",
    "rating": {
      "@type": "@itchio_game_rating",
      "value": 123,
      "count": 123
    }
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
count
integer
required

Max number of games to return

Required range: x >= 1
timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
query
string | null

Keyword to search games by

Minimum string length: 1
Example:

"puzzle"

sort
enum<string> | null

Ordering for browsing games

Available options:
new-and-popular,
top-rated,
top-sellers,
newest
genre
enum<string> | null

Filter by genre

Available options:
action,
adventure,
platformer,
puzzle,
rpg,
shooter,
simulation,
sports,
strategy,
visual-novel,
other
tag
string | null

Filter by tag (e.g. pixel-art, horror)

Minimum string length: 1
platform
enum<string> | null

Filter by supported platform

Available options:
windows,
osx,
linux,
android,
web
pricing
enum<string> | null

Filter by pricing

Available options:
free,
paid,
on-sale

Response

Successful Response

id
integer
required
@type
string
default:@itchio_game_search_result
alias
string | null
name
string | null
url
string | null
author
string | null
author_url
string | null
tagline
string | null
genre
string | null
platforms
string[]
price
integer | null
is_free
boolean
default:false
is_on_sale
boolean
default:false
image
string | null
rating
ItchioGameRating · object