Skip to main content
GET
Try Cobo WaaS Skill in your AI coding assistant (Claude Code, Cursor, etc.). Describe your needs in natural language to auto-generate production-ready SDK code and debug faster 🚀

Authorizations

BIZ-API-KEY
string
header
required

The API key. For more details, refer to API key.

In the API playground, enter your API secret, and your API key will be accordingly calculated.

Query Parameters

transaction_ids
string

A list of transaction IDs, separated by comma.

transaction_type
enum<string>

The type of the fiat transaction. Possible values include:

  • deposit: A deposit transaction.
  • transfer: A transfer transaction.
Available options:
deposit,
transfer
Example:

"deposit"

min_created_timestamp
integer<int64>

The time when the transaction was created, in Unix timestamp format, measured in milliseconds. You can use this parameter to filter transactions created on or after the specified time.

If you specify min_created_timestamp without specifying max_created_timestamp, max_created_timestamp is automatically set to min_created_timestamp + 90 days. If you specify both, the time range cannot exceed 90 days.

If not provided, the default value is 90 days before the current time. This default value is subject to change.

max_created_timestamp
integer<int64>

The time when the transaction was created, in Unix timestamp format, measured in milliseconds. You can use this parameter to filter transactions created on or before the specified time.

If you specify max_created_timestamp without specifying min_created_timestamp, min_created_timestamp is automatically set to max_created_timestamp - 90 days. If you specify both, the time range cannot exceed 90 days.

If not provided, the default value is the current time. This default value is subject to change.

before
string

A cursor indicating the position before the current page. This value is generated by Cobo and returned in the response. If you are paginating forward from the beginning, you do not need to provide it on the first request. When paginating backward (to the previous page), you should pass the before value returned from the last response.

after
string

A cursor indicating the position after the current page. This value is generated by Cobo and returned in the response. You do not need to provide it on the first request. When paginating forward (to the next page), you should pass the after value returned from the last response.

limit
integer<int32>
default:10

The maximum number of objects to return. For most operations, the value range is [1, 50].

Response

The information about the fiat transactions.

data
object[]
pagination
object

The pagination information of the returned data.