Threads
Profile
per_call
Resolves a Threads handle into display name, biography, external links, avatar, verification flag, follower count and the connected Instagram account. Useful for cross-platform creator mapping as Threads audiences grow.
Endpoint
GET /v1/threads/profile
Price
$1.50
per 1,000 calls · $0.0015 per call
Cost per call
1 credit
Failed calls never charged
Parameters
target
required
stringThe Threads handle, URL or identifier to resolve.
limit
optional
integerItems to return for list responses. Default 10, max 100.
cursor
optional
stringPagination cursor returned by a previous response.
Example request
Sandbox calls return deterministic sample data in the live payload shape.
curl
curl "https://api.fastfetchz.com/v1/threads/profile?target=nasa" \
-H "X-API-Key: $FASTFETCHZ_KEY"Example response
200 application/json
{
"success": true,
"service": {
"platform": "Threads",
"name": "Profile",
"slug": "profile"
},
"credits_charged": 1,
"credits_remaining": 99,
"latency_ms": 214,
"data": {
"profile": {
"id": "1000150815",
"username": "nasa",
"full_name": "Nasa",
"biography": "Sample biography returned by the FastFetchz sandbox.",
"verified": true,
"is_private": false,
"follower_count": 464445,
"following_count": 1115,
"media_count": 635,
"external_url": "https://nasa.example.com",
"profile_pic_url": "https://cdn.example.com/threads/nasa.jpg",
"created_at": "2021-12-14T10:34:47.243Z"
}
}
}Error codes
StatusCodeMeaning
401invalid_api_keyMissing or unrecognized X-API-Key header. No credits are charged.
402insufficient_creditsYour balance is below the cost of the call. Top up to continue.
403account_suspended / key_revokedThe account is suspended or the key was revoked.
429rate_limitedThe key exceeded its monthly cap or the burst limit. Retry later.
500upstream_errorUnexpected failure while fulfilling the request. Not charged.