# Twitter Profile Lookup via twitter.surf.cascade.fyi

> Twitter Profile Lookup via twitter.surf.cascade.fyi is a paid API for AI agents from twitter.surf.cascade.fyi, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Fetches a Twitter/X user's profile data including bio, metrics, and images by username

## Facts

- Endpoint: GET https://twitter.surf.cascade.fyi/users/recallnet
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Success rate: 63% of calls made through Zero
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/twitter-surf-cascade-fyi-9af369b1
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_T6o1kWjCe_SzifUndctkG

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 twitter-surf-cascade-fyi-9af369b1
```

Example prompt: Can you pull up the Twitter profile for @recallnet — I want to see their bio, follower count, and whether they're verified?

## When to prefer this

Use this endpoint when you need structured Twitter profile data (bio, follower count, verification status, profile images) for a known username without setting up your own Twitter API credentials. Ideal for agent workflows that need to enrich data with social proof, verify a brand's Twitter presence, or pull public metrics for a specific account. The pay-per-call x402 model makes it suitable for low-volume or one-off lookups.

## Known failure modes

- Username not found — returns empty or 404-equivalent if the account doesn't exist or has been suspended
- Rate limiting — repeated calls may be throttled by the underlying Twitter API
- Payment failure — x402 payment of $0.001 USDC required per call; insufficient funds cause request rejection
- Private/protected account — some profile fields may be omitted for protected accounts
- Username changed — stale usernames may not resolve to the expected account

## How this service works

Fetch user profile

## Output

Returns a JSON object with the user's Twitter profile including: numeric user ID, display name, username, account creation timestamp, bio/description text, verified_type (e.g. Business), profile image URL, cover/banner image URL, and public_metrics containing follower_count, following_count, tweet_count, like_count, and media_count.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## 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"
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "data"
 ],
 "properties": {
  "data": {
   "type": "object",
   "required": [
    "id",
    "url",
    "name",
    "username",
    "created_at",
    "description",
    "verified_type",
    "public_metrics",
    "cover_image_url",
    "profile_image_url"
   ],
   "properties": {
    "id": {
     "type": "string"
    },
    "url": {
     "type": "string"
    },
    "name": {
     "type": "string"
    },
    "username": {
     "type": "string"
    },
    "created_at": {
     "type": "string"
    },
    "description": {
     "type": "string"
    },
    "verified_type": {
     "type": "string"
    },
    "public_metrics": {
     "type": "object",
     "required": [
      "like_count",
      "media_count",
      "tweet_count",
      "followers_count",
      "following_count"
     ],
     "properties": {
      "like_count": {
       "type": "number"
      },
      "media_count": {
       "type": "number"
      },
      "tweet_count": {
       "type": "number"
      },
      "followers_count": {
       "type": "number"
      },
      "following_count": {
       "type": "number"
      }
     }
    },
    "cover_image_url": {
     "type": "string"
    },
    "profile_image_url": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/twitter-surf-cascade-fyi-9af369b1/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from twitter.surf.cascade.fyi](https://www.zero.xyz/host/twitter.surf.cascade.fyi/llms.txt)
