# TokenGuard Funding History

> TokenGuard Funding History 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 on-chain funding history and capital flow data for crypto/DeFi tokens or protocols

## Facts

- Endpoint: POST https://eltociear-tokenguard.hf.space/funding_history
- 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-history-73374d45
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Gx6o0TVDYDmXL6ztFeKYv

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-history-73374d45 -d '<json body>'
```

Example prompt: Can you pull the full on-chain funding history for the Uniswap protocol — I want to see all historical capital raises and funding events recorded on-chain.

## When to prefer this

Choose this endpoint when you need historical on-chain funding event data for a specific DeFi protocol or token, especially when performing due diligence, competitive research, or tracking capital flows. It is part of the TokenGuard suite which specializes in DeFi analytics and on-chain intelligence, making it preferable over generic blockchain explorers for structured funding-focused queries.

## Known failure modes

- Unknown token or protocol address returns empty or error response
- Unsupported chain ID results in no data
- Invalid address format causes request rejection
- Micropayment failure (x402) blocks the call if wallet balance is insufficient
- Rate limiting if too many calls are made in rapid succession

## How this service works

funding history data for AI agents.

## Output

A JSON object containing historical funding events for the queried token or protocol, including dates, amounts, funding sources, and on-chain transaction references related to capital raises or investment activity.

## 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-history-73374d45/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)
