Real-time GBLIN protocol state: NAV in USD, basket composition with dynamic weights, and C
Real-time GBLIN protocol state: NAV in USD, basket composition with dynamic weights, and Crash Shield status.
1000 (raw units)
price
15
calls / 30d
10
unique payers
2026-09-14
updated
Provider
gblin.digital · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x0ebA5d314F4f5Dcb7A094953Fa9311a45172dd1B",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "1000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {},
"type": "http"
},
"output": {
"example": {
"basket": [
{
"base_weight_pct": 50,
"dynamic_weight_pct": 50,
"is_stable": false,
"pool_fee_bps": 500,
"slashed": false,
"token": "0x4200000000000000000000000000000000000006"
}
],
"crash_shield_active": false,
"eth_price_usd": 3450.12,
"meta": {
"as_of_unix": 1747600000,
"chain": "base",
"chain_id": 8453,
"contract": "0x36C81d7E1966310F305eA637e761Cf77F90852f0"
},
"nav_usd": 1.234567,
"slippage_buffer_pct": 2.5,
"slippage_reason": "normal"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"properties": {},
"required": [],
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"basket": {
"type": "array"
},
"crash_shield_active": {
"type": "boolean"
},
"eth_price_usd": {
"type": "number"
},
"meta": {
"type": "object"
},
"nav_usd": {
"type": "number"
},
"slippage_buffer_pct": {
"type": "number"
},
"slippage_reason": {
"type": "string"
}
},
"required": [
"nav_usd",
"eth_price_usd",
"crash_shield_active",
"slippage_buffer_pct",
"slippage_reason",
"basket",
"meta"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://gblin.digital/api/x402/treasury-state" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://gblin.digital/api/x402/treasury-state");
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://gblin.digital/api/x402/treasury-state")
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/4164.json, and this resource appears in /discovery/resources and /discovery/search.