Fetch order details using creation transaction hash
curl --request GET \
--url https://sandbox.elementpay.net/orders/tx/{tx_hash} \
--header 'X-API-Key: <api-key>'import requests
url = "https://sandbox.elementpay.net/orders/tx/{tx_hash}"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://sandbox.elementpay.net/orders/tx/{tx_hash}', 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://sandbox.elementpay.net/orders/tx/{tx_hash}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$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://sandbox.elementpay.net/orders/tx/{tx_hash}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://sandbox.elementpay.net/orders/tx/{tx_hash}")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox.elementpay.net/orders/tx/{tx_hash}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"status": "success",
"message": "Order fetched successfully",
"data": {
"order_id": "95531bef5c8a3997d61f672193b73c458455b3d1649f37ec356e9db45676bc3c",
"status": "PENDING",
"amount_fiat": 10,
"currency": "KES",
"amount_crypto": 0.07536,
"exchange_rate": 132.6965,
"token": "BASE_USDC(Testnet)",
"wallet_address": "0x4f07419e6bfccf8d256e8ef803cc2653dfbb9558",
"order_type": "OnRamp",
"phone_number": "254712531490",
"creation_transaction_hash": "c69b5efb9852adcad851b8a7d778f922151a655d3cf04ebbc239202423bac6e6",
"created_at": "2025-08-13T04:38:34.976000"
}
}
Order Endpoints
Get by creation tx hash
Returns only if the order belongs to the API key’s user.
Pagination notes:
- Not applicable here (single item).
- See /orders/wallet for limit/offset usage.
GET
/
orders
/
tx
/
{tx_hash}
Fetch order details using creation transaction hash
curl --request GET \
--url https://sandbox.elementpay.net/orders/tx/{tx_hash} \
--header 'X-API-Key: <api-key>'import requests
url = "https://sandbox.elementpay.net/orders/tx/{tx_hash}"
headers = {"X-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-API-Key': '<api-key>'}};
fetch('https://sandbox.elementpay.net/orders/tx/{tx_hash}', 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://sandbox.elementpay.net/orders/tx/{tx_hash}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-API-Key: <api-key>"
],
]);
$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://sandbox.elementpay.net/orders/tx/{tx_hash}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://sandbox.elementpay.net/orders/tx/{tx_hash}")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox.elementpay.net/orders/tx/{tx_hash}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"status": "success",
"message": "Order fetched successfully",
"data": {
"order_id": "95531bef5c8a3997d61f672193b73c458455b3d1649f37ec356e9db45676bc3c",
"status": "PENDING",
"amount_fiat": 10,
"currency": "KES",
"amount_crypto": 0.07536,
"exchange_rate": 132.6965,
"token": "BASE_USDC(Testnet)",
"wallet_address": "0x4f07419e6bfccf8d256e8ef803cc2653dfbb9558",
"order_type": "OnRamp",
"phone_number": "254712531490",
"creation_transaction_hash": "c69b5efb9852adcad851b8a7d778f922151a655d3cf04ebbc239202423bac6e6",
"created_at": "2025-08-13T04:38:34.976000"
}
}
Fetch an order by its creation transaction hash (on-chain
createOrder tx).
Auth & Scope
- Developer keys are scoped to their own orders only.
- Single-item lookup (no pagination).
- Use
/orders/mefor listing.
⌘I

