# TokenGuard Options Endpoint

> TokenGuard Options 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 available options or configuration for the TokenGuard crypto/DeFi data API for AI agents

## Facts

- Endpoint: POST https://eltociear-tokenguard.hf.space/options
- 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-options-endpoint-fabc2c2f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_XwJrXaxGdVj_FhgcQiuTA

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-options-endpoint-fabc2c2f -d '<json body>'
```

Example prompt: What options and configurations are available on the TokenGuard crypto/DeFi API so I can figure out which routes to use for ERC-20 token safety checks and market data?

## When to prefer this

Use this endpoint when you need to discover what options, parameters, or configurations are available before making specific data calls to the TokenGuard API. It's a discovery/preflight step, useful before querying ERC-20 safety, DeFi analytics, or market data endpoints on the same platform.

## Known failure modes

- Empty JSON response due to undocumented schema
- Payment failure if x402 micropayment of $0.01 USDC is not correctly attached
- 503 or unavailability due to Hugging Face Space cold start or resource limits
- Malformed or unexpected response structure due to low crawl quality score
- Rate limiting or quota errors if called repeatedly

## How this service works

options data for AI agents.

## Output

A JSON object describing available API options, supported parameters, configuration settings, or route metadata for the TokenGuard crypto/DeFi data platform. The exact schema is undocumented but expected to include information about available query options for the 65-route API covering ERC-20 safety, market data, DeFi analytics, and on-chain intelligence.

## 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-options-endpoint-fabc2c2f/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)
