Get ERC-20 or ERC-721 token total supply by contract address
GEThttps://api.fuse.io/api/v0/explorer/?module=stats&action=tokensupply
Get ERC-20 or ERC-721 token total supply by contract address
Request
Query Parameters
module stringrequired
Possible values: [stats
]
action stringrequired
Possible values: [tokensupply
]
contractaddress stringrequired
apiKey stringrequired
Example: pk_1234567890
Responses
- 200
OK
- application/json
- Schema
- Example (auto)
Schema
messagestring
resultstring
statusstring
{
"message": "string",
"result": "string",
"status": "string"
}
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://api.fuse.io/api/v0/explorer");
request.Headers.Add("Accept", "application/json");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
ResponseClear