# BluPages Batch Address/Twitter Mapping Lookup

> BluPages Batch Address/Twitter Mapping Lookup is a paid API for AI agents from bluepages.fyi, paid per call via x402, $2/call, status unknown (last checked 2026-09-14).

Batch retrieves identity mapping data for up to 50 blockchain addresses or Twitter handles in a single call.

## Facts

- Endpoint: POST https://bluepages.fyi/batch/data
- Price: $2/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bluepages-fyi-37eaace5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_-QqTjLSIf4nWCoyIwb4Ll

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 bluepages-fyi-37eaace5 -d '<json body>'
```

Example prompt: Look up the BluPages identity mapping data for these 3 wallet addresses and 2 Twitter handles all at once: 0xABC123, 0xDEF456, 0x789GHI, @vitalikbuterin, and @sassal0x.

## When to prefer this

Use this endpoint when you need to resolve or map multiple (up to 50) blockchain addresses or Twitter handles to their linked identities in a single efficient call, rather than making individual lookups. Prefer this over the single-record check endpoint when processing lists of users or addresses in bulk.

## Known failure modes

- Batch size exceeds 50 entries — request rejected
- Invalid address format in the list
- Twitter handle not found in BluPages database
- Payment of $2 USDC not received — 402 response
- Partial results if some identities are unknown
- Network timeout on large batches

## How this service works

Look up cryptocurrency addresses linked to social accounts and curated labels. Paid API service using x402 protocol on Base mainnet.

## Output

Returns identity mapping data for each submitted address or Twitter handle, linking blockchain addresses to their associated Twitter/social identities (or vice versa), covering up to 50 entries per batch call.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "addresses": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "description": "Array of addresses (up to 50)"
  },
  "identities": {
   "type": "array",
   "items": {
    "type": "string"
   },
   "description": "Array of identities to look up (up to 50)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "results": {
   "addresses": {
    "0x1234...": {
     "found": true,
     "labels": [
      {
       "name": "Binance",
       "type": "cex",
       "detail": "Binance 1",
       "source": "hildobby",
       "priority": 71
      }
     ],
     "address": "0x1234...",
     "cluster": null,
     "sanctions": [],
     "identities": [
      {
       "type": "twitter",
       "value": "example_user",
       "source": "neynar",
       "priority": 25
      },
      {
       "type": "twitter",
       "value": "example_alt",
       "source": "layer3",
       "priority": 100
      }
     ]
    },
    "0x5678...": {
     "found": false
    }
   },
   "identities": {
    "@user1": {
     "found": true,
     "results": [
      {
       "labels": [],
       "address": "0xabcd...",
       "cluster": null,
       "matchType": "twitter",
       "sanctions": [],
       "identities": [
        {
         "type": "twitter",
         "value": "user1",
         "source": "uniswap-sybil",
         "priority": 20
        }
       ],
       "matchedValue": "user1"
      }
     ],
     "totalMatches": 1
    }
   }
  },
  "success": true,
  "timestamp": "2025-12-27T12:00:00.000Z",
  "totalItems": 3
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bluepages-fyi-37eaace5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bluepages.fyi](https://www.zero.xyz/host/bluepages.fyi/llms.txt)
