Fetch “about this profile” metadata
Retrieve extended profile context for a Twitter account including professional category, and any linked entities.
POST
/about-profile Profile https://api.fetchlayer.dev/twitter/about-profile Headers
Authorization string required Bearer token — your FetchLayer API key.
Parameters
handle string required Twitter handle without @.
Response Fields
about-profile
Fetch “about this profile” metadata
handle string Twitter handle.
category string Professional category label.
isBusiness boolean Whether the account is marked as a business.
isGovernment boolean Whether the account is marked as a government entity.
affiliates[] array Affiliated accounts or entities.
Request
curl -X POST "https://api.fetchlayer.dev/twitter/about-profile" \
-H "Authorization: Bearer ss-your-key" \
-H "Content-Type: application/json" \
-d '{"handle":"openai"}'Response
{
"handle": "OpenAI",
"category": "Technology",
"isBusiness": true,
"isGovernment": false,
"affiliates": []
}