# GEDX402 Social – Twitter Quotes Lookup

> GEDX402 Social – Twitter Quotes Lookup is a paid API for AI agents from social.gedx402.com, paid per call via x402, $0.014/call, status unknown (last checked 2026-09-14).

Fetches quote tweets for a given Twitter post via the SociaVault proxy, paid per call with x402.

## Facts

- Endpoint: GET https://social.gedx402.com/v1/sociavault/twitter/quotes
- Price: $0.014/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gedx402-social-twitter-quotes-lookup-a39620c9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__NdMTNoaL1P-kdwi1FVCk

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 gedx402-social-twitter-quotes-lookup-a39620c9
```

Example prompt: Can you pull all the quote tweets for the Twitter post with ID 1802345678901234567 via SociaVault? Start from the beginning — no cursor needed.

## When to prefer this

Use this endpoint when you need to programmatically retrieve quote tweets for a specific Twitter post and are comfortable with x402 micropayment-per-call billing. Prefer this over scraping or other social APIs when you need a simple pay-as-you-go model without OAuth setup.

## Known failure modes

- Invalid or missing pid returns empty data or error
- Expired or invalid cursor causes pagination failure
- Payment not processed results in 402 response before data is returned
- Post ID does not exist on Twitter returns empty result set
- Rate limiting or SociaVault upstream unavailability returns error

## How this service works

SociaVault API proxy — twitter-quotes. Query/body matches https://docs.sociavault.com/api-reference/openapi.json. GET/POST per route; x402 per call. $0.014 USDC per request.

## Output

A JSON object with a `data` field containing quote tweet records for the requested post, a `success` boolean, and a `provider` string identifying SociaVault. Pagination is supported via a cursor field.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "pid": {
   "type": "string"
  },
  "cursor": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {},
  "success": true,
  "provider": "sociavault"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gedx402-social-twitter-quotes-lookup-a39620c9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from social.gedx402.com](https://www.zero.xyz/host/social.gedx402.com/llms.txt)
