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

# Supported Networks

> Tokens, networks, and identifiers accepted by the Partner API.

## Tokens

| Token | API Identifier | Description           |
| ----- | -------------- | --------------------- |
| USDT  | `usdt`         | Tether USD stablecoin |
| USDC  | `usdc`         | USD Coin stablecoin   |

## Networks

| Network | API Identifier | Chain           | Typical Confirmation Time |
| ------- | -------------- | --------------- | ------------------------- |
| BEP-20  | `bep20`        | BNB Smart Chain | \~15 seconds              |
| TRC-20  | `trc20`        | Tron            | \~3 minutes               |
| Base    | `base`         | Base (L2)       | \~2 seconds               |
| Solana  | `solana`       | Solana          | \~400 milliseconds        |

## Usage in API Requests

Pass lowercase identifiers in `crypto_currency` and `network` fields:

```json theme={null}
{
  "crypto_currency": "usdt",
  "network": "trc20"
}
```

## Valid Combinations

| Token  | `bep20`   | `trc20`   | `base`        | `solana`  |
| ------ | --------- | --------- | ------------- | --------- |
| `usdt` | Supported | Supported | Not supported | Supported |
| `usdc` | Supported | Supported | Supported     | Supported |

## Deposit Address Format

Each transaction returns a `deposit_address` specific to the requested network. Sending funds on a different network than specified will result in lost funds.
