# NetIntel Batch Currency Exchange

> NetIntel Batch Currency Exchange is a paid API for AI agents from netintel.dev, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Converts one base currency into up to 30 target fiat or crypto currencies in a single call, returning rate, converted amount, rate date, and source for each pair.

## Facts

- Endpoint: GET https://netintel.dev/currency-exchange/batch
- 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/netintel-batch-currency-exchange-e0391914
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_flgmrqBlL9FVjry7McdeL

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-batch-currency-exchange-e0391914
```

Example prompt: Convert 5000 USD into EUR, SAR, AED, COP, GBP, JPY, and BTC all at once and show me the rate, converted amount, and rate date for each.

## When to prefer this

Choose this endpoint when you need exchange rates or converted amounts for multiple target currencies from a single base currency in one request. It is far more cost-efficient than calling a single-pair endpoint repeatedly (one $0.02 call instead of up to 30). Prefer it when you need both fiat and crypto targets together, when you want combined ECB + Coinbase sourcing without managing your own API keys, or when you need the rate source and date alongside each result for auditability.

## Known failure modes

- Invalid or unsupported currency code returns null rate and lists the code in the unavailable array
- More than 30 target codes in a single call may be rejected or truncated
- Stale rates returned if upstream providers are delayed, indicated by the stale flag
- Unknown crypto ticker not covered by Coinbase returns null rate
- Malformed comma-separated list in 'to' parameter causes a parse error

## How this service works

Convert one base currency to up to 30 targets in a single call — fiat (~200 currencies incl. SAR, AED, COP) and major crypto — ECB reference rates + Coinbase spot, no API key. Per target: rate, converted amount, rate date, source. The batch sibling of /currency-exchange/convert: 30 pairs for one $0.02 call instead of 30 singles.

## Output

Returns an array of per-target objects each containing: target currency code, exchange rate, converted amount, rate date, and source (e.g. frankfurter, coinbase, currency-api). Also includes the base currency, the original amount, a staleness flag, and lists of any unavailable currencies or informational findings.

## 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": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "from",
      "to"
     ],
     "properties": {
      "to": {
       "type": "string",
       "description": "Comma list of 1–30 target codes, e.g. EUR,SAR,BTC. Aliases: targets, symbols"
      },
      "from": {
       "type": "string",
       "description": "Base currency: ISO 4217 fiat code or crypto ticker, e.g. USD or BTC. Aliases: base, source"
      },
      "amount": {
       "type": "number",
       "description": "Amount of the base currency to convert; default 1. Alias: value"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "from": {
       "type": "string"
      },
      "rates": {
       "type": "array",
       "items": {
        "type": "object",
        "properties": {
         "to": {
          "type": "string"
         },
         "rate": {
          "type": [
           "number",
           "null"
          ]
         },
         "source": {
          "type": [
           "string",
           "null"
          ],
          "description": "frankfurter | currency-api | er-api | coinbase | same (crosses join with +)"
         },
         "rate_date": {
          "type": [
           "string",
           "null"
          ]
         },
         "converted_amount": {
          "type": [
           "number",
           "null"
          ]
         }
        }
       }
      },
      "stale": {
       "type": "boolean"
      },
      "amount": {
       "type": "number"
      },
      "findings": {
       "type": "array"
      },
      "unavailable": {
       "type": "array",
       "items": {
        "type": "string"
       }
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "from": "USD",
  "rates": [
   {
    "to": "EUR",
    "rate": 0.8707,
    "source": "frankfurter",
    "rate_date": "2026-07-31",
    "converted_amount": 87.07
   },
   {
    "to": "SAR",
    "rate": 3.75,
    "source": "currency-api",
    "rate_date": "2026-08-01",
    "converted_amount": 375
   },
   {
    "to": "BTC",
    "rate": 0.000016014961,
    "source": "coinbase",
    "rate_date": "2026-08-01",
    "converted_amount": 0.0016014961
   }
  ],
  "stale": false,
  "amount": 100,
  "findings": [],
  "unavailable": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/netintel-batch-currency-exchange-e0391914/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from netintel.dev](https://www.zero.xyz/host/netintel.dev/llms.txt)
