Skip to content
Documentation/canton-network-docs/Splice APIsScan APIsScan APIView on canton-network-docs
canton-network-docs/Splice APIsScan APIsScan API

GET /v0/amulet

GET
/
v0
/
amulet-config-for-round
Try it
GET /v0/amulet-config-for-round

cURL

curl --request GET \
  --url https://scan.sv-1.global.canton.network.sync.global/api/scan/v0/amulet-config-for-round
import requests

url = "https://scan.sv-1.global.canton.network.sync.global/api/scan/v0/amulet-config-for-round"

response = requests.get(url)

print(response.text)
const options = {method: 'GET'};

fetch('https://scan.sv-1.global.canton.network.sync.global/api/scan/v0/amulet-config-for-round', 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://scan.sv-1.global.canton.network.sync.global/api/scan/v0/amulet-config-for-round",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
]);

$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://scan.sv-1.global.canton.network.sync.global/api/scan/v0/amulet-config-for-round"

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

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

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

	fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://scan.sv-1.global.canton.network.sync.global/api/scan/v0/amulet-config-for-round")
  .asString();
require 'uri'
require 'net/http'

url = URI("https://scan.sv-1.global.canton.network.sync.global/api/scan/v0/amulet-config-for-round")

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

request = Net::HTTP::Get.new(url)

response = http.request(request)
puts response.read_body
200
404
{
  "amulet_create_fee": "<string>",
  "holding_fee": "<string>",
  "lock_holder_fee": "<string>",
  "transfer_fee": {
    "initial": "<string>",
    "steps": [
      {
        "amount": "<string>",
        "rate": "<string>"
      }
    ]
  }
}
{
  "error": "<string>"
}

Query Parameters

round
integer<int64>
required

Response

200
application/json

ok

amulet_create_fee
string
required
holding_fee
string
required
lock_holder_fee
string
required
transfer_fee
object
required

Show child attributes