Skip to main content
GET
List activities

Authorizations

Authorization
string
header
required

API key as Bearer token

Headers

Reap-Version
enum<string>
required

API version (YYYY-MM-DD)

Available options:
2025-02-14
Example:

"2025-02-14"

Query Parameters

limit
integer
default:20

Maximum number of items to return (1-100, default: 20)

Required range: x <= 100
Examples:

20

50

100

cursor
string

Opaque cursor for pagination. Pass nextCursor from previous response to get next page.

accountId
string<uuid>[]

Filter activities by account ID(s) (comma-separated)

cardId
string<uuid>[]

Filter card transactions by card ID(s) (comma-separated). Refines which card transactions are returned without excluding other activity types - combine with type=CARD_TRANSACTION to see one card's transactions alone.

type
enum<string>[]

Restrict the feed to one or more activity types (comma-separated). This is the only parameter that controls which types appear; every other filter refines its own type without excluding the others. Defaults to every type.

Available options:
CRYPTO_DEPOSIT,
CRYPTO_WITHDRAWAL,
FIAT_DEPOSIT,
CARD_TRANSACTION,
POSTING
cryptoDepositStatus
enum<string>[]

Filter crypto deposits by status (comma-separated). Refines which crypto deposits are returned without excluding other activity types - combine with type=CRYPTO_DEPOSIT to see deposits alone.

  • PENDING: Transaction detected, awaiting confirmation
  • CONFIRMED: Transaction confirmed on-chain, validation in progress
  • APPROVED: Deposit approved and credited to balance
  • REJECTED: Deposit rejected (see rejectionReason)
Available options:
PENDING,
CONFIRMED,
APPROVED,
REJECTED
cryptoWithdrawalStatus
enum<string>[]

Filter crypto withdrawals by status (comma-separated). Refines which crypto withdrawals are returned without excluding other activity types - combine with type=CRYPTO_WITHDRAWAL to see withdrawals alone.

  • PENDING_SIGNATURE: Funds reserved, awaiting the signature that authorizes the transfer
  • PROCESSING: Signed and being executed on chain. Once there is a transactionId the transfer has been submitted to the network.
  • COMPLETED: The transfer is confirmed and irreversible
  • EXPIRED: Not signed before the signature window closed
  • CANCELLED: Cancelled before it was signed
  • FAILED: Ended without moving funds (see failureReason)
Available options:
PENDING_SIGNATURE,
PROCESSING,
COMPLETED,
EXPIRED,
CANCELLED,
FAILED
cardTransactionStatus
enum<string>[]

Filter card transactions by status (comma-separated). Refines which card transactions are returned without excluding other activity types - combine with type=CARD_TRANSACTION to see transactions alone.

  • PENDING: Authorization approved, awaiting clearing
  • CLEARED: Transaction settled
  • DECLINED: Authorization was declined
  • VOID: Full reversal of pending auth or zero-amount verification
Available options:
PENDING,
CLEARED,
DECLINED,
VOID
virtualAssetId
string<uuid>[]

Filter postings by virtual asset ID(s) (comma-separated). Matches postings that contain at least one entry against any of the given virtual assets. Refines which postings are returned without excluding other activity types - combine with type=POSTING to see postings alone.

since
string<date-time>

Inclusive lower bound on activity time (occurredAt). ISO 8601 datetime.

Pattern: ^(?:(?:\d\d[2468][048]|\d\d[13579][26]|\d\d0[48]|[02468][048]00|[13579][26]00)-02-29|\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\d|30)|(?:02)-(?:0[1-9]|1\d|2[0-8])))T(?:(?:[01]\d|2[0-3]):[0-5]\d(?::[0-5]\d(?:\.\d+)?)?(?:Z))$

Response

200 - application/json

Response for status 200

items
(CryptoDeposit · object | CryptoWithdrawal · object | FiatDeposit · object | CardTransaction · object | Posting · object)[]
required

Activity resource

nextCursor
string | null
required

Cursor for next page, or null if no more items