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

# Pairs

> Get supported route pairs

Get all supported transfer routes.

## Response

<ResponseField name="pairs" type="array">
  Array of route pairs with `from`, `to`, and `enabled` fields
</ResponseField>

<RequestExample>
  ```bash theme={null}
  curl https://api.sw4p.io/sdk/v1/pairs \
    -H "X-API-Key: sk_..."
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "pairs": [
      { "from": "BASE", "to": "SOLANA", "enabled": true },
      { "from": "BASE", "to": "ETH", "enabled": true },
      { "from": "SOLANA", "to": "BASE", "enabled": true }
    ]
  }
  ```
</ResponseExample>
