# GBLIN Protocol Governance State

> GBLIN Protocol Governance State is a paid API for AI agents from gblin.digital, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns the GBLIN protocol's current governance state including contract owner, 48-hour immutable timelock parameters, and any pending governance operations.

## Facts

- Endpoint: GET https://gblin.digital/api/x402/governance
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/gblin-digital-41d91ffb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LjBHXUbg5fI9t8Ml_Jalx

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-digital-41d91ffb
```

Example prompt: What's the current GBLIN protocol governance state — who's the owner, what are the 48-hour timelock parameters, and are there any pending operations right now?

## When to prefer this

Use this endpoint when you need to audit or monitor the GBLIN protocol's governance posture, verify who controls the contract, check timelock immutability guarantees, or detect whether any administrative changes are queued. Prefer this over the main protocol state endpoint when governance and security audit information is the primary concern rather than NAV or basket composition.

## Known failure modes

- Protocol contract unreachable — returns 5xx if underlying blockchain node is down
- No pending operations — returns empty or null for the pending operation field if none exist
- Payment failure — returns 402 if USDC payment is not provided or insufficient
- Rate limiting — returns 429 if too many requests are made in a short period

## How this service works

GBLIN protocol governance state: owner, the 48h timelock delay that every owner-only change must pass through, and any pending operation.

## Output

Returns a JSON object containing the GBLIN protocol contract owner address, the configured 48-hour immutable timelock parameters, and details of any currently pending governance operations or proposals.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {}
 }
}
```

## Request schema (JSON Schema)

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "owner": "0x6aBeC8716fFeEcf7C3D6e68255b4797113E8e5Dd",
  "gblin_v6": "0x36C81d7E1966310F305eA637e761Cf77F90852f0",
  "timelock": {
   "address": "0x6aBeC8716fFeEcf7C3D6e68255b4797113E8e5Dd",
   "min_delay_hours": 48,
   "min_delay_seconds": 172800,
   "expected_min_delay_seconds": 172800,
   "min_delay_matches_expected": true
  },
  "verification": {
   "gblin_v5_basescan": "https://basescan.org/address/0x36C81d7E1966310F305eA637e761Cf77F90852f0#readContract",
   "timelock_basescan": "https://basescan.org/address/0x6aBeC8716fFeEcf7C3D6e68255b4797113E8e5Dd#readContract"
  },
  "trust_summary": "Ownership held by the 48h Timelock. All admin actions are delay-enforced on-chain.",
  "founder_wallet": "0x0000000000000000000000000000000000000002",
  "owner_is_timelock": true,
  "owner_is_renounced": false
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/gblin-digital-41d91ffb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from gblin.digital](https://www.zero.xyz/host/gblin.digital/llms.txt)
