GET
/
api
/
v1
/
transfers
/
managed
/
networks
curl --request GET \
  --url https://integration-api.getfront.com/api/v1/transfers/managed/networks \
  --header 'X-Client-Id: <api-key>' \
  --header 'X-Client-Secret: <api-key>'
{
  "content": {
    "networks": [
      {
        "tokens": [
          {
            "symbol": "ETH",
            "logoUrl": "https://frontuserfilecdn.azureedge.net/public/logos/tokens/ETH.svg"
          },
          {
            "symbol": "USDC",
            "logoUrl": "https://frontuserfilecdn.azureedge.net/public/logos/tokens/USDC.svg"
          },
          {
            "symbol": "USDT",
            "logoUrl": "https://frontuserfilecdn.azureedge.net/public/logos/tokens/USDT.svg"
          }
        ],
        "supportedBrokerTypes": [
          "deFiWallet",
          "robinhood",
          "coinbase",
          "kraken",
          "binanceInternational",
          "binanceUs"
        ],
        "supportedTokens": [
          "ETH",
          "USDC",
          "USDT"
        ],
        "nativeSymbol": "ETH",
        "id": "e3c7fdd8-b1fc-4e51-85ae-bb276e075611",
        "name": "Ethereum",
        "chainId": "1",
        "logoUrl": "https://frontuserfilecdn.azureedge.net/public/logos/networks/Ethereum.svg"
      }
    ]
  },
  "status": "ok",
  "message": "",
  "errorType": ""
}

Authorizations

X-Client-Secret
string
header
required

Contact Front to get client Secret

X-Client-Id
string
header
required

Contact Front to get client Id

Response

200
application/json
Success
status
enum<string>
Available options:
ok,
serverFailure,
permissionDenied,
badRequest,
notFound,
conflict,
tooManyRequest,
locked
message
string | null

A message generated by the API

displayMessage
string | null

User-friendly display message that can be presented to the end user

errorType
string | null

Strictly-typed error type that is explaining the reason of an unsuccessful status of the operation. All possible error types are available in the documentation.

content
object