# Twitter Profile Lookup – tokenterminal

> Twitter Profile Lookup – tokenterminal 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 public Twitter profile and metadata for the @tokenterminal account, including bio, follower counts, and tweet stats.

## Facts

- Endpoint: GET https://twitter.surf.cascade.fyi/users/tokenterminal
- 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-e8a05d4d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_UAyUiFJBjdy4W2jlOPfDj

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-e8a05d4d
```

Example prompt: Can you pull up the public Twitter profile for Token Terminal — I want their bio, follower count, tweet count, and whether they're verified?

## When to prefer this

Use this endpoint when you need a structured snapshot of Token Terminal's (@tokenterminal) public Twitter profile, particularly their follower metrics, bio, and verification status, and you are operating in a micropayment-enabled (x402) environment supporting USDC on Solana or EVM chains. This is a hardcoded single-user endpoint — it does not accept arbitrary usernames.

## Known failure modes

- Payment required (402) if USDC payment header is missing or insufficient
- Network timeout if Twitter's underlying API is slow
- Stale data if Token Terminal's profile has changed since last cache
- Invalid response if the account has been suspended or deleted

## How this service works

Fetches public profile and metadata for the Twitter user tokenterminal; paid endpoint accepting Solana and EVM (USDC) payments.

## Output

Returns a data object with Token Terminal's Twitter user ID, display name, username, verified status and type, account creation date, bio description, profile and cover image URLs, pinned tweet IDs, and public metrics including 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",
    "verified",
    "created_at",
    "description",
    "verified_type",
    "public_metrics",
    "cover_image_url",
    "pinned_tweet_ids",
    "profile_image_url"
   ],
   "properties": {
    "id": {
     "type": "string"
    },
    "url": {
     "type": "string"
    },
    "name": {
     "type": "string"
    },
    "username": {
     "type": "string"
    },
    "verified": {
     "type": "boolean"
    },
    "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"
    },
    "pinned_tweet_ids": {
     "type": "array",
     "items": {
      "type": "string"
     }
    },
    "profile_image_url": {
     "type": "string"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/twitter-surf-cascade-fyi-e8a05d4d/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)
