# glim.sh Twitter User Mentions Lookup

> glim.sh Twitter User Mentions Lookup is a paid API for AI agents from surf.cascade.fyi, paid per call via x402, $0.004/call, status unknown (last checked 2026-09-13).

Fetches live mentions of a specified Twitter/X user, returning recent tweets that tag that user, paid per call with no API key required.

## Facts

- Endpoint: POST https://surf.cascade.fyi/api/v1/twitter/users/%7Bref%7D/mentions
- Price: $0.004/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/glim-sh-twitter-user-mentions-lookup-675b984b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_bB5TbyvYq8vC1jzfjIrbI

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 glim-sh-twitter-user-mentions-lookup-675b984b -d '<json body>'
```

Example prompt: Pull the latest Twitter mentions for @openai right now — I want to see who's been tagging them recently.

## When to prefer this

Use this endpoint when your agent needs live Twitter mention data for a specific user without setting up Twitter API credentials or a scraping infrastructure. Ideal for monitoring brand mentions, tracking public figures, or enriching agent context with real-time social signals, all billed at a low per-call rate via x402 micropayments.

## Known failure modes

- Invalid or non-existent Twitter username/user ID returns empty data or 404
- Payment failure or insufficient USDC balance results in 402 response blocking the call
- Rate limiting on the underlying Twitter data source may return partial or no results
- Malformed {ref} path parameter causes a 400 bad request error
- Private or suspended Twitter accounts may return no accessible mention data

## How this service works

One remote endpoint gives your agent live data from Twitter, Reddit, the open web, GitHub and more. No API keys, no scraping stack - just connect the URL and go.

## Output

A JSON object containing a data array of mention objects (each with tweet ID and username) and a meta object with result_count indicating how many mentions were returned.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "type": "object",
     "properties": {
      "cursor": {
       "description": "Pagination cursor",
       "type": "string"
      },
      "since": {
       "description": "Only include mentions after this Unix timestamp",
       "type": "integer",
       "minimum": -9007199254740991,
       "maximum": 9007199254740991
      },
      "until": {
       "description": "Only include mentions before this Unix timestamp",
       "type": "integer",
       "minimum": -9007199254740991,
       "maximum": 9007199254740991
      }
     }
    },
    "pathParams": {
     "type": "object"
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "data": {
       "type": "array",
       "items": {
        "type": "object",
        "propertyNames": {
         "type": "string"
        },
        "additionalProperties": {}
       }
      },
      "meta": {
       "type": "object",
       "properties": {
        "result_count": {
         "type": "integer",
         "minimum": -9007199254740991,
         "maximum": 9007199254740991
        },
        "has_next_page": {
         "type": "boolean"
        },
        "next_cursor": {
         "type": "string"
        }
       },
       "required": [
        "result_count"
       ]
      },
      "summary": {
       "type": "object",
       "propertyNames": {
        "type": "string"
       },
       "additionalProperties": {}
      }
     },
     "required": [
      "data",
      "meta"
     ]
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": [
   {
    "id": "1234567890",
    "text": "Example tweet"
   }
  ],
  "meta": {
   "result_count": 1
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/glim-sh-twitter-user-mentions-lookup-675b984b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from surf.cascade.fyi](https://www.zero.xyz/host/surf.cascade.fyi/llms.txt)
