# GBLIN Treasury Analytics

> GBLIN Treasury Analytics is a paid API for AI agents from gblin-sentinel.vercel.app, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-16).

Returns live on-chain GBLIN index analytics from Base including total supply, NAV, basket dynamic weights for cbBTC/WETH/USDC, stability fund status, and keeper availability.

## Facts

- Endpoint: GET https://gblin-sentinel.vercel.app/api/data/gblin-analytics
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gblin-treasury-analytics-85d1cea9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_EDwCMHs889tynVnrWYJBq

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability gblin-treasury-analytics-85d1cea9
```

Example prompt: Pull the latest GBLIN treasury analytics from Base — I want to see the current NAV, total supply, the dynamic basket weights for cbBTC, WETH, and USDC, and whether the stability fund and keeper are available.

## When to prefer this

Use this endpoint when you need a comprehensive snapshot of the GBLIN index state in a single call — total supply, NAV, all three asset weights, and operational status — rather than querying individual metrics. Prefer this over the keeper-specific or recommendation endpoints when you want raw analytics rather than interpreted signals or actionable recommendations.

## Known failure modes

- On-chain RPC node unavailable — endpoint may time out or return a 503
- Index contract call reverts — returns error with contract-level revert reason
- Network congestion on Base causing stale or delayed data
- Payment of $0.002 USDC not provided — returns 402 Payment Required
- Malformed response if contract ABI changes without sentinel update

## How this service works

GBLIN treasury analytics on Base: total supply, NAV, basket dynamic weights (cbBTC/WETH/USDC), stability fund and keeper availability — read live from the on-chain index contract.

## Output

A JSON object containing the live GBLIN index state: total token supply, net asset value (NAV), dynamic basket weights for cbBTC, WETH, and USDC, stability fund status, and keeper bounty availability — all read directly from the on-chain index contract on Base.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "required": {
   "type": "string"
  },
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "data": {
   "basket": [
    {
     "symbol": "cbBTC",
     "weight_pct": 45
    },
    {
     "symbol": "WETH",
     "weight_pct": 45
    },
    {
     "symbol": "USDC",
     "weight_pct": 10
    }
   ],
   "nav_usd": 2001.55,
   "total_supply": "0.501234",
   "crash_shield_active": false
  },
  "price": "$0.002",
  "endpoint": "gblin-analytics"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gblin-treasury-analytics-85d1cea9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from gblin-sentinel.vercel.app](https://www.zero.xyz/host/gblin-sentinel.vercel.app/llms.txt)
