# md.fastdb.in Crypto Price Pulse

> md.fastdb.in Crypto Price Pulse is a paid API for AI agents from md.fastdb.in, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-13).

Returns aggregated real-time USD prices for any crypto asset — by symbol, CoinGecko ID, or chain:address — with a confidence score.

## Facts

- Endpoint: POST https://md.fastdb.in/pulse/price
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/md-fastdb-in-crypto-price-pulse-71778f16
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_2C2a-_jYlkDEeX12x9_zd

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 md-fastdb-in-crypto-price-pulse-71778f16 -d '<json body>'
```

Example prompt: What's the current USD price of Ethereum right now, with a confidence score? Also check the price of the token at contract address 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48 on Ethereum.

## When to prefer this

Use this endpoint when you need a real-time, aggregated USD price for any crypto asset — especially when you need flexibility to look up by ticker symbol, CoinGecko ID, or raw on-chain token contract address, and when confidence scoring matters for downstream decisions. Prefer it over single-source price feeds when data reliability signal is important.

## Known failure modes

- Unknown symbol or CoinGecko ID returns a 404 or empty result
- Unrecognized chain:address pair may return low confidence or no data
- Network latency from aggregation sources may cause slight delay
- Misspelled symbol or ID returns an error or null price
- Low-liquidity tokens may return a low confidence score or no price

## How this service works

Real-time USD prices for any crypto asset — majors by symbol, any CoinGecko id, any token by chain:address. Aggregated, with confidence score.

## Output

Returns the current USD price of the requested crypto asset (by symbol, CoinGecko ID, or chain:address), aggregated across sources, along with a confidence score indicating data reliability.

## 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": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "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": {
  "at": "2026-07-17T15:00:00.000Z",
  "prices": {
   "BTC": {
    "key": "coingecko:bitcoin",
    "usd": 63164.1,
    "symbol": "BTC",
    "confidence": 0.99
   },
   "ETH": {
    "key": "coingecko:ethereum",
    "usd": 1818.32,
    "symbol": "ETH",
    "confidence": 0.99
   }
  },
  "source": "defillama"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/md-fastdb-in-crypto-price-pulse-71778f16/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from md.fastdb.in](https://www.zero.xyz/host/md.fastdb.in/llms.txt)
