Skip to main content
GET
/
api
/
v1
/
partner
/
transactions
Show Partner Transactions.
curl --request GET \
  --url https://api.money.orki.io/api/v1/partner/transactions \
  --header 'X-ORKI-API-KEY: <api-key>'
{
  "msg": "Success",
  "data": {
    "transactions": [
      {
        "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"
      },
      {
        "id": "01jwmf9s2dmmtbq048xh94xxza",
        "provider_tx_id": "682d90414984372d417a43ee",
        "type": "BUY",
        "sender_address": null,
        "recipient_address": "UQB9tSE4jidlpbote0-hFXddpXi6PWYUL2JfrrVMJjcw0hrb",
        "exchange_rate": 1618.12,
        "transaction_hash": "6e9b376b9b8f6e1648e9b897e3fab31563ec5438c5d53d774c09061357d34677",
        "provider_fee": null,
        "orki_fee": null,
        "network_fee": null,
        "fiat_amount": 40000,
        "crypto_amount": 18.54,
        "fiat_currency": "NGN",
        "crypto_currency": "usdt",
        "network": "ton",
        "payment_method": "bank_transfer",
        "status": "success",
        "provider": "fonbnk",
        "created_at": "2025-06-01T00:47:07.000000Z",
        "processed_at": "2025-06-21T08:36:51.000000Z"
      }
    ],
    "meta": {
      "total": 9,
      "perPage": 2,
      "currentPage": 1,
      "lastPage": 5,
      "firstPage": 1,
      "firstPageUrl": "https://money.orki.test/api/v1/partner/transactions?page=1",
      "lastPageUrl": "https://money.orki.test/api/v1/partner/transactions?page=5",
      "nextPageUrl": "https://money.orki.test/api/v1/partner/transactions?page=2",
      "previousPageUrl": null
    }
  },
  "success": true,
  "code": 200
}

Authorizations

X-ORKI-API-KEY
string
header
required

Query Parameters

page
integer

Page number.

Example:

1

per_page
integer

Number of items per page.

Example:

5

filter[created_at]
string

Filter transactions created within the given date range. Format: start_date,end_date (e.g., 2023-01-01,2023-12-31).

Example:

"2023-01-01,2023-12-31"

Response

200 - application/json
msg
string
Example:

"Success"

data
object
success
boolean
Example:

true

code
integer
Example:

200