List Wallets

This guide is for retrieving all wallets linked to your account

Create a new user

GET /wallets/{network}

Headers

Name
Value

Content-Type

application/json

Token

<token>

Query Params

Name
Type
Description

network

string

The cryptocurrency network (e.g., Ethereum/Tron).

Response

The response will be in JSON format and contains the following structure

{
    "status": "1",
    "message": "Request was successful",
    "count": 1,
    "data": [
        {
            "crypto_network": "Tron",
            "address_name": "Yogupay TRC20",
            "crypto_address": "TL1234aiqsJacvpji9QWMBazeEbTCKHpTN",
            "currency": "USDT",
            "created_at": "2025-07-30T06:42:08.000Z"
        }
    ]
}

Last updated