Live Chainlink price feed on Base, read from the oracle contract at request time: price, r
Live Chainlink price feed on Base, read from the oracle contract at request time: price, round id, last update and feed address. Pairs: ETH-USD, BTC-USD, SOL-USD, LINK-USD, CBETH-USD, AERO-USD, USDC-USD, EUR-USD. Pass ?pair=ETH-USD (default ETH-USD). No third-party API, no cache.
20000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-16
updated
Provider
oraclepost.higgsfield.app · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x1fc80077903e22B626cE1CFF84748B3A7b0d675f",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "20000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"pair": "Pair to quote, e.g. ETH-USD"
},
"type": "http"
},
"output": {
"example": {
"age_seconds": 41,
"decimals": 8,
"feed_address": "0x71041dddad3595F9CEd3DcCFBe3D1F4b0a16Bb70",
"network": "eip155:8453",
"pair": "ETH-USD",
"price": 2401.4068,
"price_raw": "240140680000",
"round_id": "55340232221128658305",
"source": "chainlink",
"updated_at": "2026-09-16T10:12:03.000Z"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"method": {
"const": "GET"
},
"queryParams": {
"properties": {
"pair": {
"description": "Pair to quote, e.g. ETH-USD",
"type": "string"
}
},
"required": [
"pair"
],
"type": "object"
},
"type": {
"const": "http"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://oraclepost.higgsfield.app/api/premium/price" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://oraclepost.higgsfield.app/api/premium/price");
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://oraclepost.higgsfield.app/api/premium/price")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/7102.json, and this resource appears in /discovery/resources and /discovery/search.