Get USDC balance on Base
curl --request GET \
--url https://api.hevn.finance/api/v1/mcp/get_balance \
--header 'x-api-key: <x-api-key>'import requests
url = "https://api.hevn.finance/api/v1/mcp/get_balance"
headers = {"x-api-key": "<x-api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<x-api-key>'}};
fetch('https://api.hevn.finance/api/v1/mcp/get_balance', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"email": "<string>",
"address": "<string>",
"balance": 0,
"remaining": 0
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}mcp
Get USDC balance on Base
GET
/
api
/
v1
/
mcp
/
get_balance
Get USDC balance on Base
curl --request GET \
--url https://api.hevn.finance/api/v1/mcp/get_balance \
--header 'x-api-key: <x-api-key>'import requests
url = "https://api.hevn.finance/api/v1/mcp/get_balance"
headers = {"x-api-key": "<x-api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'x-api-key': '<x-api-key>'}};
fetch('https://api.hevn.finance/api/v1/mcp/get_balance', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"email": "<string>",
"address": "<string>",
"balance": 0,
"remaining": 0
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Was this page helpful?
⌘I