Skip to main content
POST
/
api
/
fandom
/
users
/fandom/users
curl --request POST \
  --url https://api.anysite.io/api/fandom/users \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "wiki": "<string>",
  "user": "<string>",
  "timeout": 300,
  "lang": ""
}
'
[
  {
    "name": "<string>",
    "@type": "@fandom_user",
    "id": 123,
    "alias": "",
    "edit_count": 123,
    "gender": "<string>",
    "groups": [],
    "registered_at": "<string>",
    "web_url": ""
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
wiki
string
required

Wiki subdomain (e.g. harrypotter, minecraft) or a full wiki URL

Minimum string length: 1
Examples:

"harrypotter"

"minecraft"

"https://elderscrolls.fandom.com"

user
string
required

Wiki username

Minimum string length: 1
Example:

"Seth Cooper"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500
lang
string
default:""

Language path segment for multilingual wikis (e.g. de, es, pl); empty for the default

Maximum string length: 8

Response

Successful Response

name
string
required
@type
string
default:@fandom_user
id
integer | null
alias
string
default:""
edit_count
integer | null
gender
string | null
groups
string[]
registered_at
string | null
web_url
string
default:""