Skip to main content
Version: 2019-05-29 (Current)

List all transfers

Retrieve a paginated list of all transfers belonging to your account. Results can be filtered by date range and sorted chronologically.


๐Ÿ”‘API Credentials

Request Parametersโ€‹

Recommended - 5 fieldsRecommended Parameters
โ–ผ
`limit`INTEGER(optional)
Number of records to return per page.
Example:20
Constraints:Minimum: 1, Maximum: 100
Default:20
`offset`INTEGER(optional)
Number of records to skip before returning results. Used for pagination.
Example:0
Default:0
`order`STRING(optional)
Sort order for results based on creation date.
Example:"chronological"
Values:chronological, reverse_chronological
Default:"chronological"
`from`STRING(optional)
Filter transfers created on or after this UTC datetime. ISO 8601 format.
Example:"2025-01-01T00:00:00Z"
`to`STRING(optional)
Filter transfers created on or before this UTC datetime. ISO 8601 format.
Example:"2025-12-31T23:59:59Z"

Responsesโ€‹

200

Successful transaction

Transfers list retrieved successfully. Returns paginated list with metadata.

Response structure:
  • object - Always "list"
  • data - Array of transfer objects
  • total - Total number of transfers matching filters
  • limit - Number of records per page
  • offset - Current pagination offset
  • from, to - Applied date filters

400

Bad request

Request validation failed. Check the error message for details.

Common causes:
  • Invalid date format for from or to
  • Invalid order value
  • Negative offset or limit
  • limit exceeds maximum (100)

401

Unauthorized

Authentication failed. Invalid or missing API key.

Common causes:
  • Missing Authorization header
  • Invalid secret key
  • Using public key instead of secret key
  • Incorrect HTTP Basic Auth format

Code samplesโ€‹

curl https://api.omise.co/transfers \
-u skey_test_5xuy4w91xqz7d1w9u0t:

Paginationโ€‹

Use limit and offset parameters to paginate through results:

# First page (0-19)
curl https://api.omise.co/transfers?limit=20&offset=0 \
-u skey_test_5xuy4w91xqz7d1w9u0t:

# Second page (20-39)
curl https://api.omise.co/transfers?limit=20&offset=20 \
-u skey_test_5xuy4w91xqz7d1w9u0t:

Try it outโ€‹

Recommended - 5 fields