Get Action details
curl --request GET \
--url https://dev.backend.scan.biya.io/api/v1/transactions/{id}import requests
url = "https://dev.backend.scan.biya.io/api/v1/transactions/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://dev.backend.scan.biya.io/api/v1/transactions/{id}', 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://dev.backend.scan.biya.io/api/v1/transactions/{id}",
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://dev.backend.scan.biya.io/api/v1/transactions/{id}"
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://dev.backend.scan.biya.io/api/v1/transactions/{id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://dev.backend.scan.biya.io/api/v1/transactions/{id}")
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{
"explorerId": "<string>",
"legacyHash": "<string>",
"legacyHashStatus": "<string>",
"blockHeight": 123,
"blockActionIndex": 123,
"bundleIndex": 123,
"actionIndexInBundle": 123,
"blockTime": 123,
"user": "<string>",
"signer": "<string>",
"effectiveUser": "<string>",
"actionType": "<string>",
"action": {},
"signedAction": {},
"status": "included",
"executionStatus": "succeeded",
"executionResponseStatus": "<string>",
"executionResponseType": "<string>",
"error": null,
"decodeStatus": "<string>",
"signatureVerificationStatus": "<string>",
"position": {
"height": 123,
"index": 123
},
"executionResponse": "<unknown>"
}{
"error": "block not found"
}{
"error": "block not found"
}{
"error": "block not found"
}{
"error": "block not found"
}{
"error": "block not found"
}Stable
Get Action details
Lookup by canonical explorerId or an unambiguous legacy hash.
Ambiguous legacy hashes return 409. This is the execution-detail endpoint.
GET
/
api
/
v1
/
transactions
/
{id}
Get Action details
curl --request GET \
--url https://dev.backend.scan.biya.io/api/v1/transactions/{id}import requests
url = "https://dev.backend.scan.biya.io/api/v1/transactions/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://dev.backend.scan.biya.io/api/v1/transactions/{id}', 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://dev.backend.scan.biya.io/api/v1/transactions/{id}",
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://dev.backend.scan.biya.io/api/v1/transactions/{id}"
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://dev.backend.scan.biya.io/api/v1/transactions/{id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://dev.backend.scan.biya.io/api/v1/transactions/{id}")
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{
"explorerId": "<string>",
"legacyHash": "<string>",
"legacyHashStatus": "<string>",
"blockHeight": 123,
"blockActionIndex": 123,
"bundleIndex": 123,
"actionIndexInBundle": 123,
"blockTime": 123,
"user": "<string>",
"signer": "<string>",
"effectiveUser": "<string>",
"actionType": "<string>",
"action": {},
"signedAction": {},
"status": "included",
"executionStatus": "succeeded",
"executionResponseStatus": "<string>",
"executionResponseType": "<string>",
"error": null,
"decodeStatus": "<string>",
"signatureVerificationStatus": "<string>",
"position": {
"height": 123,
"index": 123
},
"executionResponse": "<unknown>"
}{
"error": "block not found"
}{
"error": "block not found"
}{
"error": "block not found"
}{
"error": "block not found"
}{
"error": "block not found"
}Path Parameters
32-byte 0x hex Explorer ID or legacy hash.
Pattern:
^0x[0-9a-fA-F]{64}$Response
Action detail
Example:
"included"
Available options:
succeeded, failed, partially_succeeded, unknown Show child attributes
Show child attributes
Present only on the individual Action detail endpoint.