# twitter.surf.cascade.fyi - Hester Peirce Twitter Profile Lookup

> twitter.surf.cascade.fyi - Hester Peirce Twitter Profile Lookup 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-14).

Fetches the Twitter/X profile data for SEC Commissioner Hester Peirce (@HesterPeirce), including bio, metrics, and account details.

## Facts

- Endpoint: GET https://twitter.surf.cascade.fyi/users/HesterPeirce
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/twitter-surf-cascade-fyi-6b09a775
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cpbmNkDIRKSKyIAov1T2s

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-6b09a775
```

Example prompt: Can you pull up Hester Peirce's Twitter profile — I want to see her follower count, bio, and verified status on X?

## When to prefer this

Use this endpoint when you specifically need profile metadata for SEC Commissioner Hester Peirce (@HesterPeirce) — such as verifying her account, retrieving her follower count, bio, or profile image for regulatory research, crypto policy monitoring, or social media analytics. It is a fixed-user endpoint, not a general-purpose Twitter profile search.

## Known failure modes

- HTTP 402 if payment not provided or insufficient USDC balance
- HTTP 404 if the user profile is not found or account is suspended
- HTTP 429 rate limiting from underlying Twitter/X API
- Network timeout if Twitter/X API is slow to respond
- Stale data if the underlying Twitter API cache has not refreshed

## How this service works

Fetches the HesterPeirce Twitter/X user profile and related data.

## Output

Returns a JSON object with Hester Peirce's Twitter/X profile including: user ID (613649581), display name, username (@HesterPeirce), location (Washington D.C.), bio description, verified status (true), account creation date, profile image URL, cover image URL, and public metrics (followers: ~128k, following: ~946, tweets: ~1725, likes: ~130, media: ~37).

## 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",
    "location",
    "username",
    "verified",
    "created_at",
    "description",
    "public_metrics",
    "cover_image_url",
    "profile_image_url"
   ],
   "properties": {
    "id": {
     "type": "string"
    },
    "url": {
     "type": "string"
    },
    "name": {
     "type": "string"
    },
    "location": {
     "type": "string"
    },
    "username": {
     "type": "string"
    },
    "verified": {
     "type": "boolean"
    },
    "created_at": {
     "type": "string"
    },
    "description": {
     "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-6b09a775/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)
