For the complete documentation index, see llms.txt. This page is also available as Markdown.

Get Networks List

Retrieves the blockchain networks supported for a token or wallet operation.

Endpoint

GET /whitelabel/wallet/getNetworksList

Request Headers

x-tlp-apikey: <api-key>
x-tlp-signature: <hmac-signature>

Query Parameters

Provide at least one of the following user identifiers: endUserEmail, endUserId, or externalUserId.

Field
Type
Required
Description

endUserEmail

String

Conditional

End user’s registered email address

endUserId

Number

Conditional

Tylt end-user ID

externalUserId

String

Conditional

Merchant’s own user identifier

At least one identifier is required.

Example Request

GET /whitelabel/wallet/getNetworksList?externalUserId=user-10021

Signed query object:

{
  "endUserId": 20001, // Optional: Provide one user identifier only
  "endUserEmail": "joe@example.com", // Optional: Alternative to endUserId and externalUserId
  "externalUserId": "user-10021", // Optional: Alternative to endUserId and endUserEmail
}

The exact token parameter name must be confirmed against the deployed API schema.

Code Snippet

Example Response

Merchant Responsibilities

The selected network must match the destination or sending wallet’s network.

The merchant should clearly display:

  • Network name

  • Token symbol

  • Deposit availability

  • Withdrawal availability

  • Estimated network fee, where available

  • Minimum deposit or withdrawal amount, where applicable

Using an incorrect blockchain network may result in permanent loss of funds.

Last updated