Get list of transactions by address
GEThttps://api.test2.btcs.network//api/accounts/list_of_txs_by_address/:address
Get list of transactions by address
Request
Path Parameters
address stringrequired
address
Query Parameters
apikey stringrequired
apikey
endblock string
endblock
offset string
offset
page string
page
sort string
sort
startblock string
startblock
- 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.test2.btcs.network/api/accounts/list_of_txs_by_address/:address");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
ResponseClear