# Tibane Staking Data API

> Tibane Staking Data API is a paid API for AI agents from api.deepnets.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns Tibane staking data for a specified Solana token mint address.

## Facts

- Endpoint: GET https://api.deepnets.ai/api/tibane-staking/53dYz1GWHvRBDGFTP36PaZMkkBEeTbb4BQHHZ6NCpump
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-deepnets-ai-e91989cf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ce95P_6sg8UjeNbgHm6pl

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 api-deepnets-ai-e91989cf
```

Example prompt: Can you pull up the Tibane staking data for the Solana token with mint address 53dYz1GWHvRBDGFTP36PaZMkkBEeTbb4BQHHZ6NCpump?

## When to prefer this

Use this endpoint when you specifically need Tibane staking data for a Solana token mint address, particularly for pump.fun tokens or other Solana-based DeFi tokens participating in the Tibane staking protocol. Prefer this over general token info endpoints when staking metrics are the primary concern.

## Known failure modes

- Invalid or malformed mint address returns an error response
- Token not found on Tibane staking protocol returns empty or null data
- Network timeout if Solana RPC is slow
- Payment failure if USDC balance is insufficient for the $0.01 per call fee

## How this service works

Returns Tibane staking data for the specified Solana token.

## Output

Returns Tibane staking statistics and metrics for the specified Solana token mint address, including staking-related data relevant to the token's DeFi activity on the Tibane protocol.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "mint"
     ],
     "properties": {
      "mint": {
       "type": "string",
       "example": "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263",
       "description": "Solana token mint address (base58). pump.fun tokens end in \"pump\"."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-deepnets-ai-e91989cf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.deepnets.ai](https://www.zero.xyz/host/api.deepnets.ai/llms.txt)
