GET
/api/v2/transfers/crypto-transactionsGet user crypto transactions (CryptoConnect transfers)
Authentication
Send your API key in the x-api-key header on every request.
Parameters
| Field | Type | Required | Description |
|---|---|---|---|
| userId (query) | unknown | No | User ID |
| id (query) | string | No | Optional transfer ID filter |
| transactionHash (query) | string | No | Optional transaction hash filter |
| referenceId (query) | string | No | Optional reference ID filter |
| startTime (query) | string | No | Optional start time filter (milliseconds) |
| endTime (query) | string | No | Optional end time filter (milliseconds) |
| limit (query) | unknown | No | Number of results per page (default: 10) |
| page (query) | unknown | No | Page number (default: 1) |
Responses
200 — OK
| Field | Type | Required | Description |
|---|---|---|---|
| Transfers | array of CryptoTransferItem | No | |
| Total | unknown | No | |
| Page | unknown | No | |
| Limit | unknown | No |
400 — Bad Request
| Field | Type | Required | Description |
|---|---|---|---|
| Message | string | No | |
| Code | string | No | |
| Status | unknown | No | |
| ValidationErrors | object | No | |
| Details | string | No |
401 — Unauthorized
| Field | Type | Required | Description |
|---|---|---|---|
| Message | string | No | |
| Code | string | No | |
| Status | unknown | No | |
| ValidationErrors | object | No | |
| Details | string | No |
404 — Not Found
| Field | Type | Required | Description |
|---|---|---|---|
| Message | string | No | |
| Code | string | No | |
| Status | unknown | No | |
| ValidationErrors | object | No | |
| Details | string | No |
500 — Internal Server Error
| Field | Type | Required | Description |
|---|---|---|---|
| Message | string | No | |
| Code | string | No | |
| Status | unknown | No | |
| ValidationErrors | object | No | |
| Details | string | No |
Example request
curl -X GET "https://{base_url}/api/v2/transfers/crypto-transactions" \
-H "x-api-key: YOUR_API_KEY"This page is generated from the live OpenAPI specification and always matches the current API.