Skip to main content
POST
/
api
/
itchio
/
users
/itchio/users
curl --request POST \
  --url https://api.anysite.io/api/itchio/users \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "user": "<string>",
  "timeout": 300
}
'
[
  {
    "alias": "<string>",
    "url": "<string>",
    "@type": "@itchio_user",
    "id": 123,
    "name": "<string>",
    "image": "<string>",
    "creator_url": "<string>",
    "registered_at": "<string>",
    "post_count": 123,
    "topic_count": 123,
    "follower_count": 123,
    "following_count": 123,
    "links": [],
    "games": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
user
string
required

Creator username, {author}.itch.io page, or a full itch.io profile/creator URL

Minimum string length: 1
Examples:

"hempuli"

"maddymakesgamesinc.itch.io"

"https://itch.io/profile/hempuli"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

alias
string
required
url
string
required
@type
string
default:@itchio_user
id
integer | null
name
string | null
image
string | null
creator_url
string | null
registered_at
string | null
post_count
integer | null
topic_count
integer | null
follower_count
integer | null
following_count
integer | null
games
ItchioUserGame · object[]