Skip to main content
GET
/
clients
/
me
/
integrations
/
0x
/
cross-chain
/
sources
List cross-chain bridge and swap sources
curl --request GET \
  --url https://api.portalhq.io/api/v3/clients/me/integrations/0x/cross-chain/sources \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "rawResponse": {
      "bridges": [
        {
          "name": "<string>",
          "chainPairs": [
            {
              "originChainId": "<string>",
              "destinationChainId": "<string>"
            }
          ]
        }
      ],
      "swapSources": [
        {
          "name": "<string>",
          "chainIds": [
            "<string>"
          ]
        }
      ],
      "zid": "<string>"
    }
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.portalhq.io/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Client API Key or Client Session Token (CST). Pass as a Bearer token in the Authorization header.

Query Parameters

zeroXApiKey
string

Optional 0x API key.

Response

200 - application/json

Sources retrieved successfully

data
object