mirrored listing x402 eip155:8453

WHO Global Health Observatory — life expectancy, obesity, alcohol, air pollution by countr

WHO Global Health Observatory — life expectancy, obesity, alcohol, air pollution by country.

Do you run health.memoryapi.org? This listing was mirrored from Coinbase's public Bazaar. Claim it in 30 seconds — no account required — and it becomes verified, permanently overriding the mirrored copy.

Claim this listing
1000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-12
updated

Provider

health.memoryapi.org · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0x24FAcafEB49b4e3FACF0B3e69604A2F4640c9bf2",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "1000",
    "maxTimeoutSeconds": 300
  },
  {
    "scheme": "upto",
    "network": "eip155:8453",
    "payTo": "0x24FAcafEB49b4e3FACF0B3e69604A2F4640c9bf2",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "1000",
    "maxTimeoutSeconds": 300
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "description": "WHO Global Health Observatory data. Get life expectancy, BMI/obesity, alcohol consumption, air pollution (PM2.5), and more by country and year.",
      "iconUrl": "https://memoryapi.org/icon.png",
      "input": {
        "method": "GET",
        "queryParams": {
          "country": "USA",
          "indicator": "WHOSIS_000001",
          "limit": "10"
        },
        "schema": {
          "properties": {
            "country": {
              "description": "ISO3 country code (USA, CHN, GBR)",
              "type": "string"
            },
            "indicator": {
              "description": "WHO indicator code or search term (e.g. WHOSIS_000001, life expectancy)",
              "type": "string"
            },
            "limit": {
              "description": "Number of data points",
              "type": "string"
            }
          },
          "required": []
        },
        "type": "http"
      },
      "output": {
        "example": {
          "count": 10,
          "country": "USA",
          "data": [
            {
              "country": "USA",
              "unit": "years",
              "value": 76.4,
              "year": 2022
            }
          ],
          "indicator": "WHOSIS_000001",
          "indicator_name": "Life expectancy at birth (years)",
          "success": true
        }
      },
      "serviceName": "MemoryAPI Health",
      "tags": [
        "health",
        "genomics",
        "medical"
      ]
    },
    "schema": {
      "properties": {
        "input": {
          "properties": {
            "method": {
              "enum": [
                "GET"
              ],
              "type": "string"
            }
          },
          "required": [
            "method"
          ]
        }
      }
    }
  }
}

Use it

curl

curl "https://health.memoryapi.org/x402/health/global"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://health.memoryapi.org/x402/health/global");
if (res.status === 402) {
  const { accepts } = await res.json();
  // pay one of accepts[] via an x402 client, then retry with the payment header
}

Python

import httpx
res = httpx.get("https://health.memoryapi.org/x402/health/global")
if res.status_code == 402:
    accepts = res.json()["accepts"]
    # pay one of accepts[] via an x402 client, then retry with the payment header

Machine-readable

Everything on this page is also available as clean JSON at /resources/15431.json, and this resource appears in /discovery/resources and /discovery/search.