# Freysa Intelligence Crypto Price

> Freysa Intelligence Crypto Price is a paid API for AI agents from economic-agent-369.freysa.dev, paid per call via x402, $0.05/call, status down (last checked 2026-09-15).

Returns the real-time USD price and 24-hour change for any cryptocurrency ticker symbol

## Facts

- Endpoint: GET https://economic-agent-369.freysa.dev/api/crypto-price
- Price: $0.05/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/freysa-intelligence-crypto-price-b44a7425
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_H_hKbcqMU8WmaQk1JcLPz

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 freysa-intelligence-crypto-price-b44a7425
```

Example prompt: What's the current price of SOL in USD and how much has it changed in the last 24 hours?

## When to prefer this

Use this endpoint when you need a fast, single-ticker real-time crypto price lookup with 24h change data, especially within automated workflows that require per-call micropayment billing via x402. Prefer it over heavy market data APIs when you need lightweight, per-request pricing without API key management.

## Known failure modes

- Unknown or unsupported ticker symbol returns an error or empty result
- Network latency may cause stale pricing during high-volatility periods
- Payment failure or insufficient USDC balance blocks the request
- Delisted or very low-cap tokens may not be available

## How this service works

Security intelligence layer for autonomous agents. On-chain security, token risk analysis, wallet forensics, and transaction simulation. Pay-per-call via x402 on Base.

## Output

Returns the current USD price of the requested cryptocurrency ticker along with its 24-hour price change (absolute or percentage), enabling real-time market awareness for any listed crypto asset.

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

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "example": {
  "ticker": "BTC",
  "price_usd": 77000
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/freysa-intelligence-crypto-price-b44a7425/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from economic-agent-369.freysa.dev](https://www.zero.xyz/host/economic-agent-369.freysa.dev/llms.txt)
