# CryptoOps MCP Get Quote and Balance

> CryptoOps MCP Get Quote and Balance is a paid API for AI agents from cryptoops.friczero.com, paid per call via x402, $0.5/call, status unknown (last checked 2026-09-14).

Retrieves a cryptocurrency quote and account balance in a single pay-per-call MCP tool call via the x402 micropayment protocol

## Facts

- Endpoint: POST https://cryptoops.friczero.com/mcp
- Price: $0.5/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cryptoops-mcp-get-quote-and-balance-5ce9b2ef
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_G0hgmrQ04IgE4LmlM9Ybm

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 cryptoops-mcp-get-quote-and-balance-5ce9b2ef -d '<json body>'
```

Example prompt: Can you fetch me the current quote and account balance for my crypto holdings using CryptoOps right now? I need the live price and how much I have in the account.

## When to prefer this

Choose this endpoint when you need both a live cryptocurrency quote and an account balance in a single atomic call and are operating within an x402 micropayment-enabled agent framework on the Base network. Ideal for AI agents that need to minimize round trips and are already set up to pay per call via USDC on eip155:8453. Prefer this over separate quote and balance endpoints when latency and atomicity of the combined result matter.

## Known failure modes

- Payment failure if insufficient USDC balance for the 0.10 USDC per-call fee on Base (eip155:8453), returning a 402 Payment Required error
- Invalid or missing required input fields (type, method, bodyType, body) resulting in a 400 Bad Request
- Network or provider downtime causing the quote or balance data source to be unavailable
- Malformed JSON body causing request parsing errors
- Rate limiting or quota exhaustion returning a 429 Too Many Requests response

## How this service works

[MCP: get_quote_and_balance] Pay-per-call MCP tool priced at 0.10 USDC (100000 atomic units) via x402 v2 on eip155:8453.

## Output

Returns a JSON object with a success status and a toolResultReference containing the combined cryptocurrency quote (current market price) and account balance data retrieved in a single MCP tool call.

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

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "status": "success",
  "toolResultReference": {}
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cryptoops-mcp-get-quote-and-balance-5ce9b2ef/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from cryptoops.friczero.com](https://www.zero.xyz/host/cryptoops.friczero.com/llms.txt)
