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

# Swap-Enabled Coins

> List all coins available for crypto-to-crypto swaps, optionally filtered by chain

<Note>
  **Auth method: Signed (HMAC)** — this endpoint requires the full set of signed
  headers: `x-access-id`, `x-request-id`, `x-timestamp`, and an HMAC-SHA256
  `authorization` signature. See [Authentication](/api-reference/authentication#signed-hmac-authentication).
</Note>

## Headers

<ParamField header="x-access-id" type="string" required>
  Your API access ID provided by Tender

  **Example:** `"your-access-id-here"`
</ParamField>

## Query Parameters

<ParamField query="chain" type="string">
  Comma-separated list of chain IDs to filter by. Returns coins available on those chains.

  **Example:** `"ethereum,solana"`
</ParamField>

## Response

<ResponseField name="status" type="string" required>
  **Example:** `"success"`
</ResponseField>

<ResponseField name="message" type="string" required>
  **Example:** `"success"`
</ResponseField>

<ResponseField name="data" type="array" required>
  Array of coins with swap enabled

  <Expandable title="coin object">
    <ResponseField name="id" type="string">
      Coin identifier

      **Example:** `"usdt"`
    </ResponseField>

    <ResponseField name="name" type="string">
      Display name

      **Example:** `"Tether USD"`
    </ResponseField>

    <ResponseField name="symbol" type="string">
      Ticker symbol

      **Example:** `"USDT"`
    </ResponseField>

    <ResponseField name="icon" type="string">
      Coin icon URL

      **Example:** `"https://tender-store.s3.amazonaws.com/icons/usdt.png"`
    </ResponseField>

    <ResponseField name="chains" type="array">
      Chain IDs this coin is available on

      **Example:** `["ethereum", "tron", "solana"]`
    </ResponseField>

    <ResponseField name="status" type="string">
      **Example:** `"active"`
    </ResponseField>
  </Expandable>
</ResponseField>
