# NetIntel Market Snapshot

> NetIntel Market Snapshot is a paid API for AI agents from netintel-production-440c.up.railway.app, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns a unified real-time snapshot of crypto prices, fiat exchange rates, gas fees, and market sentiment in a single call

## Facts

- Endpoint: GET https://netintel-production-440c.up.railway.app/market/snapshot
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/netintel-market-snapshot-a1a09aaf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FiOqMTpfEUc4vuOqlDcxC

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 netintel-market-snapshot-a1a09aaf
```

Example prompt: Give me a live market snapshot — current BTC, ETH, and SOL prices with 24h changes, USD/EUR and USD/GBP exchange rates, gas fees on Base and Ethereum, and the overall crypto market sentiment right now.

## When to prefer this

Choose this endpoint when you need a broad, multi-asset market overview in a single call rather than querying individual price or forex APIs separately. Ideal for dashboards, pre-trade checks, DeFi cost estimation, and any workflow that needs crypto prices, fiat rates, gas costs, and sentiment simultaneously. At $0.05/call with no API key required, it is efficient for both one-off agent lookups and periodic monitoring. Prefer it over individual crypto ticker APIs when you also need gas fees or sentiment context.

## Known failure modes

- Upstream data provider outage — sentiment or crypto feed unavailable, reflected in sections_ok count
- Stale data — cache_age_seconds will be elevated if live refresh failed, stale flag set to true
- Gas fee feed unavailable for one or more chains — partial gas array returned
- No charge on server errors or upstream failures per NetIntel billing policy

## How this service works

Network intelligence API — 138 endpoints, all pay-per-call via x402 micropayments (USDC on Base or Solana mainnet).

NetIntel is agent fair-trade aligned: transparent per-call pricing in USDC on Base or Solana via x402, no API keys or signup, and automatic no-charge on server errors, upstream failures, and input-validation rejections — failed calls are never billed across NetIntel's network, domain, and data-intelligence endpoints.

## Output

A JSON object containing: an array of crypto prices (BTC, ETH, SOL) with 24h high/low and percentage change from Coinbase, an array of fiat currency pairs (USD/EUR, USD/GBP, USD/JPY, EUR/GBP) with live rates from the European Central Bank, an array of gas fee estimates in USD and gwei for Base and Ethereum networks, a market sentiment score and classification (e.g. Fear/Greed), a staleness flag, the number of data sections successfully fetched, and a generation timestamp with cache age in seconds.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "properties": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "vs": "USD",
  "gas": [
   {
    "chain": "base",
    "transfer_usd": 0.000230535,
    "gas_price_gwei": 0.006
   },
   {
    "chain": "ethereum",
    "transfer_usd": 0.0046079,
    "gas_price_gwei": 0.119926866
   }
  ],
  "fiat": [
   {
    "pair": "USD/EUR",
    "rate": 0.8707,
    "rate_date": "2026-07-31"
   },
   {
    "pair": "USD/GBP",
    "rate": 0.74508,
    "rate_date": "2026-07-31"
   },
   {
    "pair": "USD/JPY",
    "rate": 160.24,
    "rate_date": "2026-07-31"
   },
   {
    "pair": "EUR/GBP",
    "rate": 0.855725,
    "rate_date": "2026-07-31"
   }
  ],
  "stale": false,
  "crypto": [
   {
    "price": 62445.13,
    "source": "coinbase",
    "symbol": "BTC",
    "low_24h": 62209.81,
    "high_24h": 63093,
    "change_24h_pct": -0.9224
   },
   {
    "price": 1830.6,
    "source": "coinbase",
    "symbol": "ETH",
    "low_24h": 1820.14,
    "high_24h": 1873.8,
    "change_24h_pct": -2.094
   },
   {
    "price": 70.84,
    "source": "coinbase",
    "symbol": "SOL",
    "low_24h": 70.51,
    "high_24h": 73.19,
    "change_24h_pct": -2.972
   }
  ],
  "findings": [],
  "sentiment": {
   "value": 27,
   "yesterday": 25,
   "classification": "Fear"
  },
  "sections_ok": 4,
  "generated_at": "2026-08-01T18:56:18.102Z",
  "cache_age_seconds": 0
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/netintel-market-snapshot-a1a09aaf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from netintel-production-440c.up.railway.app](https://www.zero.xyz/host/netintel-production-440c.up.railway.app/llms.txt)
