Skip to main content
GET
/
api
/
v1
/
partner
/
transactions
/
{transaction_id}
Show Transaction by Merchant.
curl --request GET \
  --url https://api.money.orki.io/api/v1/partner/transactions/{transaction_id} \
  --header 'X-ORKI-API-KEY: <api-key>'
{
  "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,
    "orki_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",
    "status": "success",
    "provider": "stripe",
    "created_at": "2025-05-31T22:53:51.000000Z",
    "processed_at": "2025-06-01T23:50:50.000000Z"
  },
  "success": true,
  "code": 200
}

Authorizations

X-ORKI-API-KEY
string
header
required

Path Parameters

transaction_id
string
required

The ID of the transaction.

Response

200 - application/json

Transaction fetched successfully

msg
string
Example:

"Transaction fetched successfully"

data
object
success
boolean
Example:

true

code
integer
Example:

200