Stacks Blockchain API

Proxy for the Stacks Blockchain API on a development network (devnet).


GET
/v1/ext/{apiKey}/stacks-blockchain-api/{*}

Path Parameters

apiKeystring

Hiro API key

*string

The path (endpoint) for the Stacks Blockchain API

Response Body

curl -X GET "https://api.platform.hiro.so/v1/ext/0941f307fd270ace19a5bfed67fbd3bc/stacks-blockchain-api/extended/v1/tx"
fetch("https://api.platform.hiro.so/v1/ext/0941f307fd270ace19a5bfed67fbd3bc/stacks-blockchain-api/extended/v1/tx")
package main

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

func main() {
  url := "https://api.platform.hiro.so/v1/ext/0941f307fd270ace19a5bfed67fbd3bc/stacks-blockchain-api/extended/v1/tx"

  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.platform.hiro.so/v1/ext/0941f307fd270ace19a5bfed67fbd3bc/stacks-blockchain-api/extended/v1/tx"

response = requests.request("GET", url)

print(response.text)
{}