> ## Documentation Index
> Fetch the complete documentation index at: https://docs.spritz.finance/llms.txt
> Use this file to discover all available pages before exploring further.

# What we support

> Networks, tokens, settlement rails, and regions Spritz supports.

This page summarizes what Spritz supports today: the blockchains and tokens users pay
with, the rails and currencies money settles over, and the destination types you can
pay out to. Coverage expands over time, so for programmatic checks query the live
endpoints linked below rather than hardcoding these lists.

## At a glance

| Capability                                                  | Direction                  | Rails                                                    | Regions and currencies                     |
| ----------------------------------------------------------- | -------------------------- | -------------------------------------------------------- | ------------------------------------------ |
| [Off-ramp](/guides/use-cases/off-ramp)                      | crypto to fiat             | ACH, RTP, wire, EFT, SEPA, Faster Payments, push-to-card | US (USD), Canada (CAD), UK (GBP), EU (EUR) |
| [On-ramp](/guides/use-cases/on-ramp) (auto-ramp accounts)   | fiat to crypto             | ACH, wire, SEPA                                          | US (USD), EU (EUR)                         |
| [Linked bank on-ramp](/guides/use-cases/linked-bank-onramp) | fiat to crypto             | ACH debit                                                | US (USD)                                   |
| [Bill pay](/guides/use-cases/bill-pay)                      | crypto to fiat             | bill pay                                                 | US (USD)                                   |
| [Cards](/guides/use-cases/cards)                            | crypto-funded spend        | card deposit                                             | US (USD)                                   |
| [Embedded wallets](/guides/use-cases/embedded-wallets)      | wallets and on-chain yield | on-chain                                                 | Multi-chain                                |

## Networks

[Off-ramps](/guides/definitions#off-ramp) (crypto to fiat) support a broad set of chains:

`ethereum`, `polygon`, `arbitrum`, `base`, `optimism`, `avalanche`,
`binance-smart-chain`, `solana`, `bitcoin`, `tron`, `dash`, and `sui`.

[On-ramps](/guides/definitions#on-ramp) (fiat to crypto) deliver to a focused subset: `ethereum`, `polygon`, `base`,
`arbitrum`, `avalanche`, `optimism`, `solana`, `tron`, and `bitcoin`.

## Tokens

Stablecoins are supported most broadly. USDC is available on nearly every network;
USDT, DAI, USDP, and PYUSD are available on select networks.

Off-ramps aren't limited to stablecoins. You can pay with other supported tokens by
passing the token's contract address on the [off-ramp quote](/guides/use-cases/off-ramp).
Different tokens have different fee tiers, and stablecoins like USDC are usually
cheapest.

## Settlement rails and currencies

Where fiat lands depends on the destination's region:

| Region         | Currency | Rails                                  |
| -------------- | -------- | -------------------------------------- |
| United States  | USD      | ACH (standard and same-day), RTP, wire |
| Canada         | CAD      | EFT                                    |
| United Kingdom | GBP      | Faster Payments                        |
| Eurozone       | EUR      | SEPA                                   |

Spritz also supports paying out to debit cards (`push_to_card`, `card_deposit`) and to
bills (`bill_pay`), in addition to bank accounts.

## Destination types

You can pay out to several account types:

* **Bank accounts**: US, Canadian, UK, and IBAN-based accounts
* **Debit cards**: Visa and Mastercard
* **Bills**: pay a credit card, loan, or other biller directly
* **Virtual cards**: crypto-funded cards your users can spend

## Check coverage at runtime

Coverage changes, so the API is the source of truth. Query it live instead of
hardcoding:

```bash theme={null}
# Supported rail / currency / network / token combinations
curl https://platform.spritz.finance/v1/on-ramps/supported-pairs \
  # plus your integrator signing headers (see Authentication)

# Current exchange rates
curl https://platform.spritz.finance/v1/on-ramps/exchange-rates
```
