# TickersFeed FX All Rates – Base Currency

> TickersFeed FX All Rates – Base Currency is a paid API for AI agents from api.tickersfeed.net, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-14).

Returns all available foreign exchange rates for a given base currency using ECB data via Frankfurter

## Facts

- Endpoint: GET https://api.tickersfeed.net/fx/rates/USD
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tickersfeed-fx-all-rates-base-currency-c6ccba53
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_v_FF_aQQKn8CPh91m_8hu

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 tickersfeed-fx-all-rates-base-currency-c6ccba53
```

Example prompt: Can you pull all the current exchange rates using USD as the base currency so I can see what everything is worth relative to the dollar today?

## When to prefer this

Use this endpoint when you need exchange rates for ALL currencies relative to a single base currency in one call. Prefer this over the single-pair endpoint when you need a full rate table or want to convert a base currency to many targets simultaneously. Best for building dashboards, doing multi-currency conversions, or any scenario where you need comprehensive forex coverage in one request.

## Known failure modes

- Invalid or unsupported base currency code returns an error
- Network or upstream ECB/Frankfurter service unavailability causes failure
- Payment not processed results in 402 response
- Rates may be end-of-day ECB data, not real-time intraday rates

## How this service works

Fetches live foreign exchange rates for a given base currency.

## Output

A JSON object containing the base currency, the current date, and a map of all available currency codes to their exchange rates relative to the base currency (e.g. {base: 'USD', date: '2026-06-20', rates: {EUR: 0.92, GBP: 0.79, JPY: 157.5, ...}})

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "properties": {
      "base": {
       "type": "string"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "base": {
       "type": "string",
       "description": "Base currency code (e.g. USD, EUR, GBP)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tickersfeed-fx-all-rates-base-currency-c6ccba53/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.tickersfeed.net](https://www.zero.xyz/host/api.tickersfeed.net/llms.txt)
