# TokenGuard Funding Data Endpoint

> TokenGuard Funding Data Endpoint is a paid API for AI agents from eltociear-tokenguard.hf.space, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Retrieves funding-related DeFi/crypto data (e.g. funding rates, project funding rounds, or protocol treasury info) via a micropayment-gated POST call on the TokenGuard platform

## Facts

- Endpoint: POST https://eltociear-tokenguard.hf.space/funding
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tokenguard-funding-data-endpoint-466ef718
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_mDUUGMAOfo3A4WcAuvpSk

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 tokenguard-funding-data-endpoint-466ef718 -d '<json body>'
```

Example prompt: Can you pull the current funding data for the token at address 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 on Base using TokenGuard?

## When to prefer this

Choose this endpoint when you need funding-specific DeFi data (funding rates, protocol treasury, or investment round info) for crypto tokens and you are operating in an x402 micropayment-enabled agent environment on Base. It is part of a 65-route suite so it is best suited for agents already integrated with the TokenGuard API ecosystem rather than one-off lookups.

## Known failure modes

- Insufficient USDC balance for x402 micropayment — payment rejected before data is returned
- Invalid or unrecognized token address — returns empty or error JSON
- Unsupported chain identifier — endpoint may return null data
- Rate limiting or HuggingFace Spaces cold-start latency causing timeout
- Malformed POST body — missing required query fields returns validation error

## How this service works

funding data for AI agents.

## Output

Returns a JSON object containing funding-related metrics for the queried token or protocol, which may include funding rates, round details, treasury balances, or protocol financing data depending on the specific query parameters supplied.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "required": [],
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {}
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tokenguard-funding-data-endpoint-466ef718/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from eltociear-tokenguard.hf.space](https://www.zero.xyz/host/eltociear-tokenguard.hf.space/llms.txt)
