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

# Corridors

> Every pair the relay quotes, with its minimums, fee, reference band and resolvers online.

<ResponseField name="corridors" type="object[]">
  <Expandable title="Corridor">
    <ResponseField name="chainId" type="number" />

    <ResponseField name="chain" type="string" />

    <ResponseField name="base" type="object">`{ symbol, address, decimals, minimum }`, plus `tokenProgram` on Solana.</ResponseField>
    <ResponseField name="quote" type="object">Same shape.</ResponseField>
    <ResponseField name="fee" type="object | null">`{ feeToken, bps }` as the fee controller reports it (EVM) or as configured (Solana).</ResponseField>
    <ResponseField name="band" type="object | null">`{ base, quote, mid, low, high, sources, at }`: the oracle band for this pair, or null.</ResponseField>
    <ResponseField name="resolversOnline" type="number">Nodes quoting this pair right now.</ResponseField>
  </Expandable>
</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
    "corridors": [
      {
        "chainId": 84532, "chain": "Base Sepolia",
        "base": { "symbol": "cNGN", "address": "0xe2387F04d3858e7Cb64Ef5Ed6617f9B2fcEEAfa2", "decimals": 6, "minimum": "1000000000" },
        "quote": { "symbol": "USDC", "address": "0x036CbD53842c5426634e7929541eC2318f3dCF7e", "decimals": 6, "minimum": "1000000" },
        "fee": { "feeToken": "0x036CbD53842c5426634e7929541eC2318f3dCF7e", "bps": 5 },
        "band": { "base": "cNGN", "quote": "USDC", "mid": 1612.4, "low": 1598.1, "high": 1627.9, "sources": 5, "at": 1757750400123 },
        "resolversOnline": 2
      },
      {
        "chainId": 103, "chain": "Solana devnet",
        "base": { "symbol": "cNGN", "address": "6RFnYruxidpR1m9L91bs8cZKjmigEpxXB2Wv2rR8m2pu", "tokenProgram": "TokenzQdBNbLqP5VEhdkAS6EPFLC1PHnBqCXEpPxuEb", "decimals": 6, "minimum": "1000000000" },
        "quote": { "symbol": "USDT", "address": "An2RV3ZgsyXspuWLY2TgmjwR5UY1iYNgymrsLCTaPpCN", "tokenProgram": "TokenkegQfeZyiNwAJbNbGKPFXCWuBvf9Ss623VQ5DA", "decimals": 6, "minimum": "1000000" },
        "fee": { "feeToken": "An2RV3ZgsyXspuWLY2TgmjwR5UY1iYNgymrsLCTaPpCN", "bps": 5 },
        "band": null,
        "resolversOnline": 1
      }
    ]
  }
  ```
</ResponseExample>
