# TokenGuard Crypto Market Dominance API

> TokenGuard Crypto Market Dominance API 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).

Returns cryptocurrency market dominance data showing the relative market share of major cryptocurrencies across the total crypto market

## Facts

- Endpoint: POST https://eltociear-tokenguard.hf.space/dominance
- 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-crypto-market-dominance-api-4050e9a3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ncJWGSNVAon9Oc96XW0bX

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-crypto-market-dominance-api-4050e9a3 -d '<json body>'
```

Example prompt: What's Bitcoin's current market dominance percentage, and how does it compare to Ethereum and the rest of the altcoin market right now?

## When to prefer this

Choose this endpoint when you need real-time or near-real-time cryptocurrency market dominance figures — particularly BTC vs ETH vs altcoin share of total market cap. Prefer this over general market data endpoints when the specific question is about relative market power or dominance ratios rather than absolute prices or volumes. Best for macro crypto market structure analysis.

## Known failure modes

- Empty JSON response if market data is temporarily unavailable
- Rate limiting or payment failure if x402 micropayment of $0.01 USDC is not properly submitted
- 503 errors if the HuggingFace Space is sleeping or under load
- Stale data if upstream market data provider has a delay
- Malformed response if request body parameters are invalid

## How this service works

dominance data for AI agents.

## Output

A JSON object containing market dominance percentages for major cryptocurrencies (e.g., BTC dominance, ETH dominance, others/altcoins) as a share of total crypto market capitalization. May include rankings and relative share breakdowns.

## 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-crypto-market-dominance-api-4050e9a3/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)
