GET
/
transfer
curl --request GET \
  --url https://staging-api.getpartna.com/v4/transfer \
  --header 'x-api-key: <api-key>' \
  --header 'x-api-user: <api-key>'
{
  "data": [
    {
      "amount": 10,
      "currency": "USD",
      "date": "2025-06-17T11:56:40Z",
      "fromAccount": "credit",
      "fromUser": "admin",
      "status": "completed",
      "timestamp": 1750161400,
      "toAccount": "user1",
      "toUser": "user1",
      "transactionReference": "abcdef2234567890abcdef1234567867",
      "transactionType": "Internal Transfer"
    }
  ],
  "message": "success"
}

Authorizations

x-api-key
string
header
required
x-api-user
string
header
required

Query Parameters

username
string
accountName
string
transactionReference
string
limit
string

Number of transactions to return. Default is 100 and maximum is 1000

currency
enum<string>
Available options:
BTC,
ETH,
NGN,
USD,
BNB,
GHS
unixStartDate
string

Unix timestamp in seconds. Must be less than UnixEndDate

unixEndDate
string

Unix timestamp in seconds. Must be greater than UnixStartDate

type
enum<string>
Available options:
OnRamp,
OffRamp,
Deposit,
Withdraw,
Transfer,
Convert
status
enum<string>
Available options:
processing,
completed,
failed,
pending,
retried

Response

200 - application/json

get transfer ok

The response is of type object.