get https://api.northstake.dk/v1/account
import { NorthstakeApi } from '@northstake/northstakeapi';
const api = new NorthstakeApi('apiKey', 'privateKey')
const {body: result} = await api.account.getAccountInformation()
Responses
import { NorthstakeApi } from '@northstake/northstakeapi';
const api = new NorthstakeApi('apiKey', 'privateKey')
const {body: result} = await api.account.getAccountInformation()
xxxxxxxxxx
curl --request GET \
--url https://api.northstake.dk/v1/account \
--header 'accept: application/json'
xxxxxxxxxx
23{
"userId": "string",
"name": "string",
"email": "string",
"wallets": [
{
"id": "string",
"asset": "ETH",
"walletAddress": "string",
"walletName": "string"
}
],
"smartContracts": [
{
"name": "string",
"asset": "ETH",
"address": "string",
"type": "string",
"deployedAt": "2025-03-30T18:08:15.573Z",
"deployedBy": "string"
}
]
}