Get activity for a block
Retrieves a paginated list of rune activity for a block.
Path Parameters
blockBlock Height & Block Hash
Query Parameters
offset?Offset
Result offset
limit?Limit
Results per page
Range
1 <= value <= 60
Response Body
Default Response
TypeScript Definitions
Use the response body type in TypeScript.
limitinteger
offsetinteger
totalinteger
resultsarray<object & object>
curl -X GET "https://api.hiro.so//runes/v1/blocks/777678/activity?offset=0&limit=1"
fetch("https://api.hiro.so//runes/v1/blocks/777678/activity?offset=0&limit=1")
package main
import (
"fmt"
"net/http"
"io/ioutil"
)
func main() {
url := "https://api.hiro.so//runes/v1/blocks/777678/activity?offset=0&limit=1"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
fmt.Println(res)
fmt.Println(string(body))
}
import requests
url = "https://api.hiro.so//runes/v1/blocks/777678/activity?offset=0&limit=1"
response = requests.request("GET", url)
print(response.text)
{
"limit": 20,
"offset": 0,
"total": 1,
"results": [
{
"rune": {
"id": "840000:1",
"number": 1,
"name": "ZZZZZFEHUZZZZZ",
"spaced_name": "Z•Z•Z•Z•Z•FEHU•Z•Z•Z•Z•Z"
},
"address": "bc1q7jd477wc5s88hsvenr0ddtatsw282hfjzg59wz",
"receiver_address": "bc1pgdrveee2v4ez95szaakw5gkd8eennv2dddf9rjdrlt6ch56lzrrsxgvazt",
"amount": "11000000000",
"operation": "etching",
"location": {
"block_hash": "00000000000000000000c9787573a1f1775a2b56b403a2d0c7957e9a5bc754bb",
"block_height": 840000,
"tx_id": "2bb85f4b004be6da54f766c17c1e855187327112c231ef2ff35ebad0ea67c69e",
"tx_index": 1,
"vout": 100,
"output": "2bb85f4b004be6da54f766c17c1e855187327112c231ef2ff35ebad0ea67c69e:100",
"timestamp": 1713571767
}
}
]
}