Get Wallet
const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://sandboxapi.me-cash.com/v1/ramp/wallet/{walletId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"status": "success",
"message": "fetch wallet successfully",
"data": {
"id": "bb438dfd-535f-4d5c-a9a7-cceb0988d4b3",
"address": "0xcb9aebd75ee1240e1e6d5a116772123f936ad109",
"blockChain": "MATIC-AMOY"
}
}Ramp
Get Wallet
Retrieve a specific cryptocurrency wallet by its ID.
GET
/
v1
/
ramp
/
wallet
/
{walletId}
Get Wallet
const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};
fetch('https://sandboxapi.me-cash.com/v1/ramp/wallet/{walletId}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"status": "success",
"message": "fetch wallet successfully",
"data": {
"id": "bb438dfd-535f-4d5c-a9a7-cceb0988d4b3",
"address": "0xcb9aebd75ee1240e1e6d5a116772123f936ad109",
"blockChain": "MATIC-AMOY"
}
}This endpoint retrieves details of a specific cryptocurrency wallet using its unique
walletId.Authorizations
Path Parameters
The unique identifier of the wallet to fetch.
Was this page helpful?
⌘I

