Skip to main content
GET
/
payments
/
settlement_details
import cobo_waas2
from cobo_waas2.models.list_settlement_details200_response import (
    ListSettlementDetails200Response,
)
from cobo_waas2.rest import ApiException
from pprint import pprint

# See configuration.py for a list of all supported configurations.
configuration = cobo_waas2.Configuration(
    # Replace `<YOUR_PRIVATE_KEY>` with your private key
    api_private_key="<YOUR_PRIVATE_KEY>",
    # Select the development environment. To use the production environment, change the URL to https://api.cobo.com/v2.
    host="https://api.dev.cobo.com/v2",
)
# Enter a context with an instance of the API client
with cobo_waas2.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = cobo_waas2.PaymentApi(api_client)
    limit = 10
    before = "RqeEoTkgKG5rpzqYzg2Hd3szmPoj2cE7w5jWwShz3C1vyGmk1"
    after = "RqeEoTkgKG5rpzqYzg2Hd3szmPoj2cE7w5jWwShz3C1vyGSAk"
    merchant_id = "M1001"
    statuses = "Pending,Processing"

    try:
        # List all settlement details
        api_response = api_instance.list_settlement_details(
            limit=limit,
            before=before,
            after=after,
            merchant_id=merchant_id,
            statuses=statuses,
        )
        print("The response of PaymentApi->list_settlement_details:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling PaymentApi->list_settlement_details: %s\n" % e)

{
  "data": [
    {
      "currency": "USD",
      "token_id": "ETH_USDT",
      "chain_id": "ETH",
      "merchant_id": "M1001",
      "amount": "500.00",
      "settled_amount": "500.00",
      "status": "Pending",
      "bank_account": {
        "bank_account_id": "123e4567-e89b-12d3-a456-426614174003",
        "info": {
          "beneficiary_name": "John Doe",
          "beneficiary_address": "123 Main St, Anytown, USA",
          "account_number": "4111111111111111",
          "bank_name": "ABC Bank",
          "bank_country": "USA",
          "bank_address": "456 Bank Ave, Cityville, USA",
          "swift_or_bic": "ABCDEFGH"
        },
        "created_timestamp": 1744689600,
        "updated_timestamp": 1744689600
      },
      "transactions": [
        {
          "tx_id": "tx_123e4567-e89b-12d3-a456-426614174003",
          "tx_hash": "0x742d35Cc6634C0532925a3b844Bc454e4438f44e",
          "token_id": "ETH_USDT",
          "from_address": "0xF8e4bfc10A2821DF52D3322cB5170E5E9276b537",
          "to_address": "0x15B95A2D8af95D9F48148667B6b8B3CdF89e4F15",
          "amount": "0.15",
          "status": "Submitted",
          "created_timestamp": 1610445878970,
          "updated_timestamp": 1610445878970
        }
      ],
      "created_timestamp": 1744689600,
      "updated_timestamp": 1744689600,
      "crypto_address_id": "addr_ethusdt_20250429T134512_a8c31f",
      "payout_channel": "Crypto",
      "acquiring_type": "Order",
      "settlement_request_id": "S20250304-1001",
      "order_ids": [
        "O20250304-M1001-1001"
      ],
      "commission_fee": {
        "fee_amount": "<string>"
      },
      "bridging_fee": {
        "fee_amount": "<string>",
        "received_token_id": "<string>",
        "received_amount": "<string>"
      }
    }
  ],
  "pagination": {
    "before": "RqeEoTkgKG5rpzqYzg2Hd3szmPoj2cE7w5jWwShz3C1vyGmk1",
    "after": "RqeEoTkgKG5rpzqYzg2Hd3szmPoj2cE7w5jWwShz3C1vyGSAk",
    "total_count": 10000
  }
}
import cobo_waas2
from cobo_waas2.models.list_settlement_details200_response import (
    ListSettlementDetails200Response,
)
from cobo_waas2.rest import ApiException
from pprint import pprint

# See configuration.py for a list of all supported configurations.
configuration = cobo_waas2.Configuration(
    # Replace `<YOUR_PRIVATE_KEY>` with your private key
    api_private_key="<YOUR_PRIVATE_KEY>",
    # Select the development environment. To use the production environment, change the URL to https://api.cobo.com/v2.
    host="https://api.dev.cobo.com/v2",
)
# Enter a context with an instance of the API client
with cobo_waas2.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = cobo_waas2.PaymentApi(api_client)
    limit = 10
    before = "RqeEoTkgKG5rpzqYzg2Hd3szmPoj2cE7w5jWwShz3C1vyGmk1"
    after = "RqeEoTkgKG5rpzqYzg2Hd3szmPoj2cE7w5jWwShz3C1vyGSAk"
    merchant_id = "M1001"
    statuses = "Pending,Processing"

    try:
        # List all settlement details
        api_response = api_instance.list_settlement_details(
            limit=limit,
            before=before,
            after=after,
            merchant_id=merchant_id,
            statuses=statuses,
        )
        print("The response of PaymentApi->list_settlement_details:\n")
        pprint(api_response)
    except Exception as e:
        print("Exception when calling PaymentApi->list_settlement_details: %s\n" % e)

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

limit
integer
default:10

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

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.

merchant_id
string

The merchant ID.

statuses
string

A list of order, refund or settlement statuses. You can refer to the following operations for the possible status values:

Response

The request was successful.

data
object[]
pagination
object

The pagination information of the returned data.