Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl --request GET \
--url https://api.money.orki.io/api/v1/partner/transactions/{transaction_id} \
--header 'X-ORKI-API-KEY: <api-key>'import requests
url = "https://api.money.orki.io/api/v1/partner/transactions/{transaction_id}"
headers = {"X-ORKI-API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-ORKI-API-KEY': '<api-key>'}};
fetch('https://api.money.orki.io/api/v1/partner/transactions/{transaction_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://api.money.orki.io/api/v1/partner/transactions/{transaction_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-ORKI-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://api.money.orki.io/api/v1/partner/transactions/{transaction_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-ORKI-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://api.money.orki.io/api/v1/partner/transactions/{transaction_id}")
.header("X-ORKI-API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.money.orki.io/api/v1/partner/transactions/{transaction_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-ORKI-API-KEY"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"msg": "Transaction fetched successfully",
"data": {
"id": "01jwm8tchegxy37f12jck7b0bx",
"provider_tx_id": "cos_1RUyHbQRBKAgk6f06LOvXqFU",
"type": "BUY",
"sender_address": null,
"recipient_address": "0x5f661d0e61d3F79DA6605AB6173453084599c5aC",
"exchange_rate": 239.2,
"transaction_hash": "random_hash_here",
"provider_fee": 60.6,
"client_fee": null,
"network_fee": 0.05,
"fiat_amount": 400,
"crypto_amount": 1500,
"fiat_currency": "USD",
"crypto_currency": "eth",
"network": "ethereum",
"payment_method": "credit_debit_card",
"partner_context": "order-12345",
"status": "success",
"provider": "stripe",
"created_at": "2025-05-31T22:53:51.000000Z",
"processed_at": "2025-06-01T23:50:50.000000Z"
},
"success": true,
"code": 200
}This endpoint retrieves the details of a specific transaction under the partner’s account.
curl --request GET \
--url https://api.money.orki.io/api/v1/partner/transactions/{transaction_id} \
--header 'X-ORKI-API-KEY: <api-key>'import requests
url = "https://api.money.orki.io/api/v1/partner/transactions/{transaction_id}"
headers = {"X-ORKI-API-KEY": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-ORKI-API-KEY': '<api-key>'}};
fetch('https://api.money.orki.io/api/v1/partner/transactions/{transaction_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://api.money.orki.io/api/v1/partner/transactions/{transaction_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-ORKI-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://api.money.orki.io/api/v1/partner/transactions/{transaction_id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-ORKI-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://api.money.orki.io/api/v1/partner/transactions/{transaction_id}")
.header("X-ORKI-API-KEY", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.money.orki.io/api/v1/partner/transactions/{transaction_id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-ORKI-API-KEY"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"msg": "Transaction fetched successfully",
"data": {
"id": "01jwm8tchegxy37f12jck7b0bx",
"provider_tx_id": "cos_1RUyHbQRBKAgk6f06LOvXqFU",
"type": "BUY",
"sender_address": null,
"recipient_address": "0x5f661d0e61d3F79DA6605AB6173453084599c5aC",
"exchange_rate": 239.2,
"transaction_hash": "random_hash_here",
"provider_fee": 60.6,
"client_fee": null,
"network_fee": 0.05,
"fiat_amount": 400,
"crypto_amount": 1500,
"fiat_currency": "USD",
"crypto_currency": "eth",
"network": "ethereum",
"payment_method": "credit_debit_card",
"partner_context": "order-12345",
"status": "success",
"provider": "stripe",
"created_at": "2025-05-31T22:53:51.000000Z",
"processed_at": "2025-06-01T23:50:50.000000Z"
},
"success": true,
"code": 200
}The ID of the transaction.