Skip to main content
POST
/
x-profile
Get an X profile
curl --request POST \
  --url https://api.tryhuntr.com/x-profile \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "username": "openai"
}
'
{
  "success": true,
  "request_id": "<string>",
  "result": {},
  "price": 123,
  "credits_remaining": 123
}

Authorizations

x-api-key
string
header
required

Your Huntr API key. Get one at tryhuntr.com. Pass as x-api-key header on all authenticated requests.

Body

application/json
username
string
required

X username, @handle, or public x.com/twitter.com profile URL.

Response

Profile returned.

success
boolean
required
request_id
string
required
result
object
required
price
number
required
credits_remaining
number
required