Crypto Network List

Retrieves Token List for the Crypto Withdraw

POST https://api.parona.in/V1/Withdraw/Crypto/CryptoNetworkList/

This endpoint allows you to list available Tokens for Crypto Withdrawals

Headers

Name
Type
Description

Accept

String

application/json

api-key*

String

ParonaPAY API Key

Request Body

Name
Type
Description

checksum*

String

Create a string imploding values with pipe character and hash it with sha256 algorithm.

PHP Example:

hash("sha256", "apiKey|secretkey|operationGuid")

operationGuid

String

Random GUID for each query generated on your side

{
    "status": true,
    "error": 0,
    "message": "Verification Successful",
    "networkList": [
        {
            "id": 1,
            "title": "TRC20"
        },
        {
            "id": 2,
            "title": "ERC20"
        },
        ...
    ]
}

Response Parameters

error: Request response error code. Returns 0 if succeeds.

message: Request response message.

networkList: Array of Networks available on our side.

Last updated