# SocialFetch Threads Profile Lookup

> SocialFetch Threads Profile Lookup is a paid API for AI agents from api.socialfetch.dev, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-15).

Fetches public profile information for a given Threads account by handle.

## Facts

- Endpoint: GET https://api.socialfetch.dev/v1/threads/profiles/:handle
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/socialfetch-threads-profile-lookup-b01d392e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_82sK4VJ5C342R9TYHh4ON

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability socialfetch-threads-profile-lookup-b01d392e
```

Example prompt: Can you pull up the Threads profile for @zuck and show me their bio and follower count?

## When to prefer this

Use this endpoint when you need to retrieve public profile information for a specific Threads user by handle. Prefer this over generic social data APIs when Threads-specific profile data is the target, and over scraping solutions when a clean paid API with predictable output is needed.

## Known failure modes

- Handle not found or account does not exist — returns error or empty result
- Private or deactivated account — data may be unavailable
- Handle exceeds 64 characters or is empty — schema validation error
- Threads platform rate limiting or downtime — upstream failure
- Missing leading @ handled gracefully, but malformed handles may error

## How this service works

Get a Threads profile for a creator or account.

## Output

Returns public profile data for the specified Threads account, including details such as username, display name, bio, follower count, and other publicly available metadata associated with the handle.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "handle"
     ],
     "properties": {
      "handle": {
       "type": "string",
       "maxLength": 64,
       "minLength": 1,
       "description": "Threads handle to look up, with or without a leading @."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/socialfetch-threads-profile-lookup-b01d392e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.socialfetch.dev](https://www.zero.xyz/host/api.socialfetch.dev/llms.txt)
