{
  "generated_at": "2026-05-11T00:56:48.476130+00:00",
  "slug": "bluepages-fyi-batch-data",
  "title": "Bluepages \u00b7 Batch Data",
  "url": "https://bluepages.fyi/batch/data",
  "category": "data",
  "summary": "Bluepages \u00b7 Batch Data \u2014 x402-protected data API. Pay $2.00 per call on base. Indexed by x402all.",
  "seo": {
    "title": "Bluepages \u00b7 Batch Data \u2014 x402 data API \u00b7 $2.00 per call",
    "description": "Bluepages \u00b7 Batch Data \u2014 x402-protected data API. Pay $2.00 per call on base. Indexed by x402all."
  },
  "use_cases": [],
  "risk_notes": [],
  "pricing_sanity": {
    "flag": "expensive_outlier",
    "ratio": 100.0,
    "median_category_atomic": 20000
  },
  "pricing_review_required": false,
  "pricing_decimal_suspect": false,
  "trust_tier": "indexed_external",
  "accepts": [
    {
      "scheme": "exact",
      "network": "base",
      "pay_to": "0xc21bdbba05d3662f0f63ac6d209c6cb17e61aad3",
      "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "max_amount_required_atomic": "2000000",
      "max_timeout_seconds": 60,
      "description": "Batch retrieve complete mapping data for up to 50 cryptocurrency addresses and/or Twitter handles in a single request. Returns Twitter handles, Farcaster usernames, ENS names, display names, and source metadata for each item. Accepts mixed arrays (max 50 total). Bulk discount: $2.00 for up to 50 items vs $2.50 for individual queries. Use POST with body: {addresses: [...], twitters: [...]}",
      "verified": false,
      "hints": {
        "input": {
          "type": "http",
          "method": "POST",
          "bodyType": "json",
          "bodyFields": {
            "twitters": {
              "type": "array",
              "description": "Array of Twitter handles to query (up to 50)"
            },
            "addresses": {
              "type": "array",
              "description": "Array of Ethereum addresses to query (up to 50)"
            }
          }
        },
        "output": {
          "results": {
            "type": "array",
            "description": "Array of full data results for each query"
          }
        }
      }
    }
  ],
  "origin": {
    "slug": "bluepages-fyi",
    "host": "bluepages.fyi",
    "url": "https://bluepages.fyi",
    "favicon": "https://bluepages.fyi/favicon.png"
  },
  "json_ld": {
    "@id": "https://x402all.com/resource/bluepages-fyi-batch-data",
    "url": "https://x402all.com/resource/bluepages-fyi-batch-data",
    "name": "Bluepages \u00b7 Batch Data",
    "@type": "WebAPI",
    "offers": {
      "url": "https://x402all.com/resource/bluepages-fyi-batch-data",
      "@type": "Offer",
      "price": "2",
      "availability": "https://schema.org/InStock",
      "priceCurrency": "USDC",
      "additionalProperty": [
        {
          "name": "paymentNetwork",
          "@type": "PropertyValue",
          "value": "base"
        },
        {
          "name": "paymentAsset",
          "@type": "PropertyValue",
          "value": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
        }
      ],
      "priceSpecification": {
        "@type": "UnitPriceSpecification",
        "price": "2.000000",
        "unitText": "call",
        "priceCurrency": "USDC"
      },
      "eligibleCustomerType": "Agent"
    },
    "sameAs": "https://bluepages.fyi/batch/data",
    "@context": "https://schema.org",
    "provider": {
      "@id": "https://x402all.com/server/bluepages-fyi",
      "url": "https://bluepages.fyi",
      "name": "bluepages.fyi",
      "@type": "Organization"
    },
    "identifier": "bluepages-fyi-batch-data",
    "description": "Bluepages \u00b7 Batch Data \u2014 x402-protected data API. Pay $2.00 per call on base. Indexed by x402all.",
    "potentialAction": {
      "@type": "BuyAction",
      "target": "https://axon402.com/test-buy?resource=bluepages-fyi-batch-data",
      "description": "Test-buy this endpoint on AXON"
    },
    "applicationCategory": "data"
  },
  "axon_deep_link": "https://axon402.com/test-buy?resource=bluepages-fyi-batch-data",
  "callability": {
    "status": "call_ready",
    "schema_callability": 0.722,
    "source": "provider_openapi",
    "source_confidence": 0.9,
    "match_confidence": 0.95,
    "schema_confidence": 1.0,
    "validated_at": "2026-05-10T23:48:17.355109+00:00",
    "warnings": []
  },
  "contract": {
    "method": "POST",
    "route_template": "/batch/data",
    "content_type": "application/json",
    "request_body_schema": {
      "type": "object",
      "properties": {
        "twitters": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Twitter handles to look up (with or without @)"
        },
        "addresses": {
          "type": "array",
          "items": {
            "type": "string"
          },
          "description": "Ethereum addresses to look up"
        }
      },
      "description": "Combined size of addresses + twitters must not exceed 50."
    },
    "response_schema": {
      "type": "object",
      "properties": {
        "results": {
          "type": "object",
          "properties": {
            "twitters": {
              "type": "object",
              "description": "Keyed by the input handle. Value shape mirrors the addresses entries (`{opted_out}` / `{found:false}` / `{found:true, totalResults, primary, alternates[]}`).",
              "additionalProperties": {
                "type": "object"
              }
            },
            "addresses": {
              "type": "object",
              "description": "Keyed by the input address. Value is one of: `{error}`, `{opted_out:true}`, `{found:false}`, or `{found:true, totalResults, primary, alternates[]}`.",
              "additionalProperties": {
                "type": "object",
                "properties": {
                  "error": {
                    "type": "string"
                  },
                  "found": {
                    "type": "boolean"
                  },
                  "primary": {
                    "type": "object",
                    "properties": {
                      "address": {
                        "type": "string"
                      },
                      "twitter": {
                        "type": "string"
                      },
                      "metadata": {
                        "type": "object"
                      },
                      "priority": {
                        "type": "number"
                      }
                    }
                  },
                  "opted_out": {
                    "type": "boolean"
                  },
                  "alternates": {
                    "type": "array",
                    "items": {
                      "type": "object"
                    }
                  },
                  "totalResults": {
                    "type": "integer"
                  }
                }
              }
            }
          }
        },
        "success": {
          "type": "boolean"
        },
        "timestamp": {
          "type": "string",
          "format": "date-time"
        },
        "totalItems": {
          "type": "integer"
        }
      }
    },
    "examples": [],
    "schema_presence": {
      "path_schema": "unknown",
      "query_schema": "unknown",
      "header_schema": "unknown",
      "request_body_schema": "declared",
      "response_schema": "declared"
    },
    "contract_hash": "ae69fe872c77715d34bf2b3c026a1dd37ecd6bde96219aa5a02b608582f9998f"
  }
}