Get etching
Retrieves information for a Rune etching.
Path Parameters
etchingRune ID & Rune number & Rune name & Rune name with spacers
Response Body
Default Response
TypeScript Definitions
Use the response body type in TypeScript.
idID
Rune ID
nameName
Rune name
spaced_nameSpaced name
Rune name with spacers
numberNumber
Rune number
divisibilityDivisibility
Rune decimal places
symbolSymbol
Rune symbol
turboTurbo
Rune upgradeability
mint_termsMint terms
Rune mint terms
supplySupply information
Rune supply information
locationTransaction location
Location of the transaction which confirmed this operation
Default Response
TypeScript Definitions
Use the response body type in TypeScript.
errorstring
Value in
"Not found"
curl -X GET "https://api.hiro.so//runes/v1/etchings/string"
fetch("https://api.hiro.so//runes/v1/etchings/string")
package main
import (
"fmt"
"net/http"
"io/ioutil"
)
func main() {
url := "https://api.hiro.so//runes/v1/etchings/string"
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/etchings/string"
response = requests.request("GET", url)
print(response.text)
{
"id": "840000:1",
"name": "ZZZZZFEHUZZZZZ",
"spaced_name": "Z•Z•Z•Z•Z•FEHU•Z•Z•Z•Z•Z",
"number": 1,
"divisibility": 2,
"symbol": "ᚠ",
"turbo": false,
"mint_terms": {
"amount": "100",
"cap": "1111111",
"height_start": 840000,
"height_end": 1050000,
"offset_start": 0,
"offset_end": 200
},
"supply": {
"current": "11274916350",
"minted": "274916100",
"total_mints": "250",
"mint_percentage": "59.4567",
"mintable": true,
"burned": "5100",
"total_burns": "17",
"premine": "11000000000"
},
"location": {
"block_hash": "00000000000000000000c9787573a1f1775a2b56b403a2d0c7957e9a5bc754bb",
"block_height": 840000,
"tx_id": "2bb85f4b004be6da54f766c17c1e855187327112c231ef2ff35ebad0ea67c69e",
"tx_index": 1,
"vout": 100,
"output": "2bb85f4b004be6da54f766c17c1e855187327112c231ef2ff35ebad0ea67c69e:100",
"timestamp": 1713571767
}
}
{
"error": "Not found"
}