mirrored listing x402 eip155:8453base

A signed, timestamped US economic statistic from the Bureau of Labor Statistics — unemploy

A signed, timestamped US economic statistic from the Bureau of Labor Statistics — unemployment rate, CPI, nonfarm payroll, participation or average hourly earnings. Returns the latest figure with about a year of history, a SHA-256 of the exact bytes BLS returned, and an Ed25519 signature. Use it to prove what a figure WAS at a moment, because BLS revises its series. Verify with soren.com/oracle-key.json

Do you run soren.com? 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
10000 (raw units)
price
2
calls / 30d
1
unique payers
2026-08-26
updated

Provider

soren.com · discovered, not yet claimed by its owner

Payment (x402 accepts[])

[
  {
    "scheme": "exact",
    "network": "eip155:8453",
    "payTo": "0xaDc3A47EFbD82Ed724a0E9A3D08D5A1A8e6586fd",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "10000",
    "maxTimeoutSeconds": 120
  },
  {
    "scheme": "exact",
    "network": "base",
    "payTo": "0xaDc3A47EFbD82Ed724a0E9A3D08D5A1A8e6586fd",
    "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
    "amount": "10000",
    "maxTimeoutSeconds": 120
  }
]

Output schema

{
  "bazaar": {
    "info": {
      "input": {
        "method": "GET",
        "queryParams": {
          "series": "unemployment_rate"
        },
        "type": "http"
      },
      "output": {
        "example": {
          "provenance": {
            "observed_at": "<ISO-8601 UTC>",
            "signature": {
              "algorithm": "Ed25519",
              "value": "<base64>"
            },
            "upstream_sha256": "<hex>"
          },
          "source": {
            "licence": "Public domain (US Government work, 17 U.S.C. 105).",
            "name": "US Bureau of Labor Statistics"
          },
          "value": {
            "latest": {
              "period_name": "<month>",
              "value": "<number>",
              "year": "<YYYY>"
            },
            "recent": [
              {
                "period_name": "<month>",
                "value": "<number>",
                "year": "<YYYY>"
              }
            ],
            "series": "unemployment_rate",
            "series_id": "LNS14000000",
            "units": "percent"
          }
        },
        "type": "json"
      }
    },
    "routeTemplate": "/v1/oracle/stat",
    "schema": {
      "$schema": "https://json-schema.org/draft/2020-12/schema",
      "properties": {
        "input": {
          "additionalProperties": false,
          "properties": {
            "method": {
              "enum": [
                "GET"
              ],
              "type": "string"
            },
            "queryParams": {
              "properties": {
                "series": {
                  "description": "One of: unemployment_rate, cpi, nonfarm_payroll, labor_force_participation, avg_hourly_earnings.",
                  "examples": [
                    "unemployment_rate"
                  ],
                  "type": "string"
                }
              },
              "required": [
                "series"
              ],
              "type": "object"
            },
            "type": {
              "const": "http",
              "type": "string"
            }
          },
          "required": [
            "type",
            "method"
          ],
          "type": "object"
        }
      }
    }
  }
}

Use it

curl

curl "https://soren.com/v1/oracle/stat"
# -> 402 Payment Required, accepts[] lists how to pay
# retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid

JavaScript

const res = await fetch("https://soren.com/v1/oracle/stat");
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://soren.com/v1/oracle/stat")
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/9084.json, and this resource appears in /discovery/resources and /discovery/search.