Wholesale US electricity-market price + volatility signal (no params)
Wholesale US electricity-market price + volatility signal (no params)
50000 (raw units)
price
5
calls / 30d
2
unique payers
2026-09-16
updated
Provider
spark.lonestaroracle.xyz · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x52Ab53912D37759B2ad364f22dD06B16714b6C06",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "50000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp",
"payTo": "3nmeVj5m9Uq2hSTfsVsn3tJMHRJQNMKR1AjzyUJbrSgw",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "50000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"type": "http"
},
"output": {
"example": {
"battery_arbitrage": {
"best_market": "CAISO-SP15",
"intraday_spread_mwh": 348.1,
"negative_intervals_24h": 12
},
"coverage": "CAISO (California) live; ERCOT/PJM/MISO rolling out",
"markets": {
"CAISO": {
"SP15": {
"da_price": 61,
"da_rt_spread": 121.4,
"intraday_spread": 348.1,
"negative_intervals": 12,
"rt_price": 182.4,
"signal": "SCARCE",
"volatility": 74.2,
"window_high": 340.1,
"window_low": -8
}
}
},
"signal": "SCARCE",
"summary": "US West (CAISO) power scarce: SP15 real-time $182/MWh (day-ahead $61), 24h range -$8 to $340, 12 negative 5-min intervals."
},
"format": "json",
"type": "object"
}
},
"schema": {
"category": "energy",
"description": "Wholesale US electricity-market prices made agent-callable. One x402 call returns the real-time and day-ahead wholesale power price ($/MWh) by market hub, the day-ahead-vs-real-time spread, the 24-hour high/low range, the count of negative-price intervals, price volatility, and a CHEAP / NORMAL / ELEVATED / SCARCE / SPIKING signal — plus a battery-arbitrage read (best intraday spread, negative-price frequency). This is the price of the ELECTRON: the missing counterpart to ComputePulse (price of compute) and distinct from GridPulse (grid demand/mix/stress). The read a data-center-siting, battery-dispatch, energy-trading, or compute-cost agent needs on what power actually costs right now and how volatile it is. Pair it with ComputePulse to reason about the compute-power spread. $0.05 in USDC on Base via x402. Source: US ISO public data (CAISO OASIS live; ERCOT / PJM / MISO rolling out). Real-world-economy data, no crypto-dashboard equivalent.",
"name": "SparkPulse",
"properties": {
"input": {
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"properties": {},
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"battery_arbitrage": {
"best_market": "CAISO-SP15",
"intraday_spread_mwh": 348.1,
"negative_intervals_24h": 12
},
"coverage": "CAISO (California) live; ERCOT/PJM/MISO rolling out",
"markets": {
"CAISO": {
"SP15": {
"da_price": 61,
"da_rt_spread": 121.4,
"intraday_spread": 348.1,
"negative_intervals": 12,
"rt_price": 182.4,
"signal": "SCARCE",
"volatility": 74.2,
"window_high": 340.1,
"window_low": -8
}
}
},
"signal": "SCARCE",
"summary": "US West (CAISO) power scarce: SP15 real-time $182/MWh (day-ahead $61), 24h range -$8 to $340, 12 negative 5-min intervals."
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"tags": [
"power",
"electricity",
"energy",
"markets",
"grid"
],
"type": "object",
"version": "1.0.0"
}
},
"bc_kg64bd18": {}
}Use it
curl
curl "https://spark.lonestaroracle.xyz/power" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://spark.lonestaroracle.xyz/power");
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://spark.lonestaroracle.xyz/power")
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/4265.json, and this resource appears in /discovery/resources and /discovery/search.