List of activities belonging to user profile.
Activities represent snapshots of performed actions and can be filtered by various parameters to narrow down the results.
Security
UserToken or PersonalToken
Optional UUID for correlating requests across systems. If provided, Wise echoes it back in the response. Maximum 36 characters. Learn more.
Example:f47ac10b-58cc-4372-a567-0e02b2c3d479
- Production Environmenthttps://api.wise.com/v1/profiles/{profileId}/activities
- Sandbox Environmenthttps://api.wise-sandbox.com/v1/profiles/{profileId}/activities
- UserToken
- PersonalToken
curl -i -X GET \
'https://api.wise.com/v1/profiles/{profileId}/activities?monetaryResourceType=TRANSFER&status=IN_PROGRESS&since=2025-03-10T11%3A56%3A30.376Z&until=2025-03-30T23%3A59%3A59.999Z&nextCursor=&size=10' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'X-External-Correlation-Id: f47ac10b-58cc-4372-a567-0e02b2c3d479'OK - Successfully retrieved activities.
Headers
Echoed back when X-External-Correlation-Id was included in the request. Learn more.
Example:"f47ac10b-58cc-4372-a567-0e02b2c3d479"
Response
{ "cursor": "WyJQUklPUklUWSIsMTAwMDAxNjY5NzA4MjI0MDAwMDE2MDk5OV0=", "activities": [ { "id": "TU9ORVRBUllfQUNUSVZJVFk6OjE0NTU4OTk4OjpDQVJEX1RSQU5TQUNUSU9OOjozNDMwNDk=", "type": "CARD_PAYMENT", "resource": { … }, "title": "<strong>Test Payment</strong>", "description": "", "primaryAmount": "150 JPY", "secondaryAmount": "1.50 SGD", "status": "COMPLETED", "createdOn": "2023-01-01T00:00:00.000Z", "updatedOn": "2023-01-01T00:00:00.000Z" } ] }