curl --request GET \
--url https://sg.sandbox.api.reap.global/activities/ \
--header 'Authorization: Bearer <token>' \
--header 'Reap-Version: <reap-version>'const options = {
method: 'GET',
headers: {'Reap-Version': '<reap-version>', Authorization: 'Bearer <token>'}
};
fetch('https://sg.sandbox.api.reap.global/activities/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://sg.sandbox.api.reap.global/activities/"
headers = {
"Reap-Version": "<reap-version>",
"Authorization": "Bearer <token>"
}
response = requests.get(url, headers=headers)
print(response.text){
"items": [
{
"type": "CRYPTO_DEPOSIT",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"occurredAt": "2024-01-15T10:30:00Z",
"data": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"accountId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"chainId": "ETHEREUM_MAINNET",
"transactionId": "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
"status": "PENDING",
"rejectionReason": "TRANSACTION_FAILED",
"amount": "1000.0",
"feeAmount": "5.0",
"senderAddress": "0x742d35Cc6634C0532925a3b844Bc9e7595f8fA21",
"occurredAt": "2024-01-15T10:30:00Z",
"createdAt": "2024-01-15T10:30:00Z",
"updatedAt": "2024-01-15T10:35:00Z",
"asset": {
"symbol": "USDC",
"name": "USD Coin",
"decimals": 6,
"logoUri": "<string>"
}
}
}
],
"nextCursor": "<string>"
}List activities
Retrieves a paginated, chronologically ordered list of fund movements. Supports filtering by resource identifiers, activity type, time window, and status.
curl --request GET \
--url https://sg.sandbox.api.reap.global/activities/ \
--header 'Authorization: Bearer <token>' \
--header 'Reap-Version: <reap-version>'const options = {
method: 'GET',
headers: {'Reap-Version': '<reap-version>', Authorization: 'Bearer <token>'}
};
fetch('https://sg.sandbox.api.reap.global/activities/', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://sg.sandbox.api.reap.global/activities/"
headers = {
"Reap-Version": "<reap-version>",
"Authorization": "Bearer <token>"
}
response = requests.get(url, headers=headers)
print(response.text){
"items": [
{
"type": "CRYPTO_DEPOSIT",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"occurredAt": "2024-01-15T10:30:00Z",
"data": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"accountId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"chainId": "ETHEREUM_MAINNET",
"transactionId": "0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef",
"status": "PENDING",
"rejectionReason": "TRANSACTION_FAILED",
"amount": "1000.0",
"feeAmount": "5.0",
"senderAddress": "0x742d35Cc6634C0532925a3b844Bc9e7595f8fA21",
"occurredAt": "2024-01-15T10:30:00Z",
"createdAt": "2024-01-15T10:30:00Z",
"updatedAt": "2024-01-15T10:35:00Z",
"asset": {
"symbol": "USDC",
"name": "USD Coin",
"decimals": 6,
"logoUri": "<string>"
}
}
}
],
"nextCursor": "<string>"
}Authorizations
API key as Bearer token
Headers
API version (YYYY-MM-DD)
2025-02-14 "2025-02-14"
Query Parameters
Maximum number of items to return (1-100, default: 20)
x <= 10020
50
100
Opaque cursor for pagination. Pass nextCursor from previous response to get next page.
Filter activities by account ID(s) (comma-separated)
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.
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.
CRYPTO_DEPOSIT, CRYPTO_WITHDRAWAL, FIAT_DEPOSIT, CARD_TRANSACTION, POSTING 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 confirmationCONFIRMED: Transaction confirmed on-chain, validation in progressAPPROVED: Deposit approved and credited to balanceREJECTED: Deposit rejected (see rejectionReason)
PENDING, CONFIRMED, APPROVED, REJECTED 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 transferPROCESSING: 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 irreversibleEXPIRED: Not signed before the signature window closedCANCELLED: Cancelled before it was signedFAILED: Ended without moving funds (see failureReason)
PENDING_SIGNATURE, PROCESSING, COMPLETED, EXPIRED, CANCELLED, FAILED 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 clearingCLEARED: Transaction settledDECLINED: Authorization was declinedVOID: Full reversal of pending auth or zero-amount verification
PENDING, CLEARED, DECLINED, VOID 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.
Inclusive lower bound on activity time (occurredAt). ISO 8601 datetime.
^(?:(?:\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
Response for status 200
Activity resource
- CryptoDeposit
- CryptoWithdrawal
- FiatDeposit
- CardTransaction
- Posting
Show child attributes
Show child attributes
Cursor for next page, or null if no more items