# live WLFI price curl -s https://owlchart.com/api/wlfi/price # full snapshot incl USD1 curl -s https://owlchart.com/api/wlfi/market
const r = await fetch('https://owlchart.com/api/wlfi/market'); const m = await r.json(); console.log(`WLFI $${m.priceUsd} | USD1 cap $${m.usd1?.marketCapUsd}`);
import requests m = requests.get("https://owlchart.com/api/wlfi/market").json() print(m["priceUsd"], m["circulatingSupply"])
# convert a 100 USD1 invoice to WLFI at the live price const m = await (await fetch('https://owlchart.com/api/wlfi/market')).json(); const wlfiAmount = 100 * (m.usd1?.priceUsd || 1) / m.priceUsd;
| Field | Type | Meaning |
|---|---|---|
v | int | schema version, currently 1, bumped only on breaking change |
at / iso | ms / ISO-8601 | server time of the response |
priceUsd | number | live WLFI price in USD from the public exchange feed |
change24hPct | number | 24h move in percent |
volume24hUsd, high24hUsd, low24hUsd | number | 24h turnover and range |
marketCapUsd, circulatingSupply, rank | number | from public market listings |
usd1 | object | USD1 stablecoin snapshot: priceUsd, marketCapUsd, volume24hUsd |
source | string | where the data comes from, glass-box always |
const m = await (await fetch('https://owlchart.com/api/wlfi/market')).json(); const wlfi = usd1Amount * (m.usd1?.priceUsd || 1) / m.priceUsd;
Connecting to the gateway API…
Three steps: install the official SDK for wallets, policies and money movement; point pricing at /api/wlfi/market for conversion, checkout display and settlement checks; use /api/wlfi/history for risk, charts and audit trails. Need more (webhooks, more pairs, SLAs)? Tell us on X and we build the next endpoint the community needs.
AgentPay SDK (official) » ★ WLFI World Hub Request an endpoint