Skip to main content
GET
/
addresses
/
{hash}
/
logs
Transaction Logs - By Wallet Address
curl --request GET \
  --url https://api.amberdata.com/blockchains/addresses/{hash}/logs \
  --header 'x-api-key: <api-key>'
import requests

url = "https://api.amberdata.com/blockchains/addresses/{hash}/logs"

headers = {"x-api-key": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {'x-api-key': '<api-key>'}};

fetch('https://api.amberdata.com/blockchains/addresses/{hash}/logs', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.amberdata.com/blockchains/addresses/{hash}/logs",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"x-api-key: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.amberdata.com/blockchains/addresses/{hash}/logs"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("x-api-key", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.amberdata.com/blockchains/addresses/{hash}/logs")
.header("x-api-key", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.amberdata.com/blockchains/addresses/{hash}/logs")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["x-api-key"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
  "status": 200,
  "title": "OK",
  "description": "Successful request",
  "payload": {
    "totalRecords": 6448870,
    "records": [
      {
        "removed": false,
        "logIndex": "230",
        "transactionIndex": "62",
        "transactionHash": "0x3c0abea77f9324b565696e51a6e7109a10fe320e985963b869105ce6e8db20f7",
        "blockHash": "0xa3f99da4a3871dbc8778a1fcb3a715ddbee89bfe3762eb6d1b624d4312e37757",
        "blockNumber": "7280571",
        "address": "0x06012c8cf97bead5deae237070f9587f8e7a266d",
        "data": [
          "00000000000000000000000012b353d1a2842d2272ab5a18c6814d69f4296873"
        ],
        "dataSize": 258,
        "timestamp": 1551393570000,
        "timestampNanoseconds": 0,
        "topics": [
          "0x241ea03ca20251805084d27d4440371c34a0b85ff108f6bb5611248f73818b80"
        ],
        "blockchainId": "1c9c969065fcd1cf"
      }
    ]
  }
}
"{}"

Authorizations

x-api-key
string
header
required

Headers

x-amberdata-blockchain-id
enum<string>
default:ethereum-mainnet

The id of the blockchain

Available options:
ethereum-mainnet

Path Parameters

hash
string
default:0x06012c8cf97bead5deae237070f9587f8e7a266d
required

The address to retrieve logs for

Query Parameters

blockNumber
integer<int32>

Filter by logs contained in this block number

transactionHash
string

Filter by logs from a specific transaction hash

topic
string

Filter the logs by a specific event Topic

startDate
string<date-time>

Filter by logs which happened after this date

endDate
string<date-time>

Filter by logs which happened before this date

page
integer<int32>
default:0

The page number to return.

size
integer<int32>
default:50

Number of records per page

Response

200

status
integer
default:0
Example:

200

title
string
Example:

"OK"

description
string
Example:

"Successful request"

payload
object