Skip to main content
POST
/
profile
Profile
curl --request POST \
  --url https://api.warmyourx.com/profile \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data 'username=<string>' \
  --data raw=false
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>",
      "input": "<unknown>",
      "ctx": {}
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/x-www-form-urlencoded
username
string
required

X username without the leading @.

raw
boolean
default:false

Return the raw X GraphQL payload instead of the normalized profile details.

Response

Successful Response