Get Wallet Details

This endpoint helps you get the details of your Terraswitch Corporate wallet details.

GET {{ BASE_URL }}/v1/corporate/wallet
import Axios from 'axios';

// set the api url
const API_URL = `${BASE_URL}/v1/corporate/wallet`;

// make request using axios
Axios({
    method: "GET",
    url: `${API_URL}`,
    headers: {
        lg: 'en',
        ch: 'web'
        Authorization: `Bearer ${API_KEY}`,
        'Content-Type': 'application/json',
    }
}).then((resp) => {
    console.log(resp)
}).catch((err) => {
    console.log(err)
})

Last updated