Fetch order details by order_id
curl --request GET \
--url https://sandbox.elementpay.net/orders/{order_id} \
--header 'X-API-Key: <api-key>'import requests
url = "https://sandbox.elementpay.net/orders/{order_id}"
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/{order_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://sandbox.elementpay.net/orders/{order_id}",
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/{order_id}"
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/{order_id}")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox.elementpay.net/orders/{order_id}")
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_crypto": 0.07536,
"amount_fiat": 10,
"currency": "KES",
"exchange_rate": 132.6965,
"token": "BASE_USDC(Testnet)",
"file_id": "EPay-95531bef5c",
"phone_number": "254712531490",
"creation_transaction_hash": "c69b5efb9852adcad851b8a7d778f922151a655d3cf04ebbc239202423bac6e6",
"order_type": "OnRamp",
"wallet_address": "0x4f07419e6bfccf8d256e8ef803cc2653dfbb9558",
"created_at": "2025-08-13T04:38:34.976Z",
"updated_at": "2025-08-13T04:38:34.982Z"
}
}{
"status": "error",
"message": "Invalid order_id format.",
"data": {
"field": "order_id",
"value": "abc123"
}
}{
"status": "error",
"message": "Unauthorized"
}{
"status": "error",
"message": "Order not found",
"data": {
"order_id": "0x0000000000000000000000000000000000000000000000000000000000000000"
}
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}{
"status": "error",
"message": "Internal error occurred"
}Order Endpoints
Get order by order_id
Retrieve an order’s metadata using its 32-byte hex order_id (with or without 0x).
GET
/
orders
/
{order_id}
Fetch order details by order_id
curl --request GET \
--url https://sandbox.elementpay.net/orders/{order_id} \
--header 'X-API-Key: <api-key>'import requests
url = "https://sandbox.elementpay.net/orders/{order_id}"
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/{order_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://sandbox.elementpay.net/orders/{order_id}",
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/{order_id}"
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/{order_id}")
.header("X-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://sandbox.elementpay.net/orders/{order_id}")
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_crypto": 0.07536,
"amount_fiat": 10,
"currency": "KES",
"exchange_rate": 132.6965,
"token": "BASE_USDC(Testnet)",
"file_id": "EPay-95531bef5c",
"phone_number": "254712531490",
"creation_transaction_hash": "c69b5efb9852adcad851b8a7d778f922151a655d3cf04ebbc239202423bac6e6",
"order_type": "OnRamp",
"wallet_address": "0x4f07419e6bfccf8d256e8ef803cc2653dfbb9558",
"created_at": "2025-08-13T04:38:34.976Z",
"updated_at": "2025-08-13T04:38:34.982Z"
}
}{
"status": "error",
"message": "Invalid order_id format.",
"data": {
"field": "order_id",
"value": "abc123"
}
}{
"status": "error",
"message": "Unauthorized"
}{
"status": "error",
"message": "Order not found",
"data": {
"order_id": "0x0000000000000000000000000000000000000000000000000000000000000000"
}
}{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}{
"status": "error",
"message": "Internal error occurred"
}Fetch an order by its
order_id (32-byte hex, with or without 0x).
Auth
Requires X-API-Key and returns the order only if owned by the calling user (internal keys may bypass, depending on server policy).⌘I

