Skip to main content

Get Fungible ERC20 Token Balances

GET 

https://api.fuse.io/api/v0/balances/assets/:address

Get Fungible ERC20 Token Balances

Request

Path Parameters

    address stringrequired

    The wallet address to query for ERC20 tokens.

Query Parameters

    apiKey stringrequired

    Your API key to authenticate requests.

    tokenAddress string

    Optional. The specific token address to query. If not provided, all token balances will be returned.

Responses

OK

Schema
    messagestring
    result object[]
  • Array [
  • balancestring
    contractAddressstring
    decimalsstring
    namestring
    symbolstring
    typestring
  • ]
  • statusstring
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://api.fuse.io/api/v0/balances/assets/:address");
request.Headers.Add("Accept", "application/json");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://api.fuse.io/api/v0/balances
Parameters
— pathrequired
— queryrequired
— query
ResponseClear

Click the Send API Request button above and see the response here!

Was this page helpful?