Get Transaction Details
curl --request GET \
--url https://api.soltop.sh/transaction/{signature} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.soltop.sh/transaction/{signature}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.soltop.sh/transaction/{signature}', 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://api.soltop.sh/transaction/{signature}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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://api.soltop.sh/transaction/{signature}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.soltop.sh/transaction/{signature}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.soltop.sh/transaction/{signature}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"signature": "<string>",
"slot": 123,
"blockTime": 123,
"success": true,
"fee": 123,
"tokens": [
"<string>"
],
"leader": "<string>",
"client": "jito-solana",
"clientVersion": "1.18.15",
"validatorName": "Jito Validator",
"markets": [
{
"poolAddress": "<string>",
"account_label": "Pump.fun AMM (Percolator-WSOL) Market",
"account_tags": [
"pump.fun amm",
"market"
]
}
]
}
}{
"error": "Transaction not found",
"details": "No transaction found with signature: abc123...",
"timestamp": "2025-10-02T15:30:45.123Z"
}Transactions
Get Transaction Details
Retrieves detailed information about a specific transaction including slot, timestamp, success status, fee, tokens involved, and market information with human-readable labels and tags.
GET
/
transaction
/
{signature}
Get Transaction Details
curl --request GET \
--url https://api.soltop.sh/transaction/{signature} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.soltop.sh/transaction/{signature}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.soltop.sh/transaction/{signature}', 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://api.soltop.sh/transaction/{signature}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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://api.soltop.sh/transaction/{signature}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.soltop.sh/transaction/{signature}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.soltop.sh/transaction/{signature}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"success": true,
"data": {
"signature": "<string>",
"slot": 123,
"blockTime": 123,
"success": true,
"fee": 123,
"tokens": [
"<string>"
],
"leader": "<string>",
"client": "jito-solana",
"clientVersion": "1.18.15",
"validatorName": "Jito Validator",
"markets": [
{
"poolAddress": "<string>",
"account_label": "Pump.fun AMM (Percolator-WSOL) Market",
"account_tags": [
"pump.fun amm",
"market"
]
}
]
}
}{
"error": "Transaction not found",
"details": "No transaction found with signature: abc123...",
"timestamp": "2025-10-02T15:30:45.123Z"
}Authorizations
API Key authentication. Format: sk_live_xxx (production) or sk_test_xxx (testing). Obtain your API key from the Blockline Dashboard.
Path Parameters
Transaction signature (base58, 87-88 characters)
Pattern:
^[1-9A-HJ-NP-Za-km-z]{87,88}$