List Transactions

List all transactions for your business.

Returns all transactions (on-ramp, off-ramp, buy, sell) for your business with pagination and filtering.

Endpoint

GET /v1/transactions

Authentication

Header
Value

x-api-key

Your API key

Query parameters

Parameter
Type
Required
Description

startPeriodDatetime

string

No

Start of date range (ISO 8601)

endPeriodDatetime

string

No

End of date range (ISO 8601)

page

number

No

Page number (default: 1)

limit

number

No

Items per page (default: 20)

search

string

No

Search by reference or email

Example request

curl -X GET "https://ramp-api.ivorypay.io/api/v1/transactions?page=1&limit=20" \
  -H "x-api-key: your_api_key"

Example response

Transaction features

Feature
Description

ON_RAMP

Fiat → Crypto

OFF_RAMP

Crypto → Fiat

BUY

Fiat collection

SELL

Fiat payout

Last updated