Skip to main content
GET
/
travel_rule
/
address_verifications
import cobo_waas2
from cobo_waas2.models.address_verification_status import AddressVerificationStatus
from cobo_waas2.models.list_address_verifications200_response import (
    ListAddressVerifications200Response,
)
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.TravelRuleApi(api_client)
    status = cobo_waas2.AddressVerificationStatus()
    chain_id = "ETH"
    address = "0x1234567890abcdef1234567890abcdef12345678"
    limit = 10
    before = "RqeEoTkgKG5rpzqYzg2Hd3szmPoj2cE7w5jWwShz3C1vyGmk1"
    after = "RqeEoTkgKG5rpzqYzg2Hd3szmPoj2cE7w5jWwShz3C1vyGSAk"

    try:
        # List address verifications
        api_response = api_instance.list_address_verifications(
            status=status,
            chain_id=chain_id,
            address=address,
            limit=limit,
            before=before,
            after=after,
        )
        print("The response of TravelRuleApi->list_address_verifications:\n")
        pprint(api_response)
    except Exception as e:
        print(
            "Exception when calling TravelRuleApi->list_address_verifications: %s\n" % e
        )

{
  "data": [
    {
      "verification_id": "fb377ea5-a97a-49b4-955d-23f8fdd5177a",
      "address": "0x1234567890abcdef1234567890abcdef12345678",
      "chain_id": "ETH",
      "status": "VERIFIED",
      "verification_method": "SATOSHI_TEST",
      "verified_at": 1732523887000
    }
  ],
  "pagination": {
    "before": "RqeEoTkgKG5rpzqYzg2Hd3szmPoj2cE7w5jWwShz3C1vyGmk1",
    "after": "RqeEoTkgKG5rpzqYzg2Hd3szmPoj2cE7w5jWwShz3C1vyGSAk",
    "total_count": 10000
  }
}

Documentation Index

Fetch the complete documentation index at: https://cobo.com/developers/llms.txt

Use this file to discover all available pages before exploring further.

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 🚀
import cobo_waas2
from cobo_waas2.models.address_verification_status import AddressVerificationStatus
from cobo_waas2.models.list_address_verifications200_response import (
    ListAddressVerifications200Response,
)
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.TravelRuleApi(api_client)
    status = cobo_waas2.AddressVerificationStatus()
    chain_id = "ETH"
    address = "0x1234567890abcdef1234567890abcdef12345678"
    limit = 10
    before = "RqeEoTkgKG5rpzqYzg2Hd3szmPoj2cE7w5jWwShz3C1vyGmk1"
    after = "RqeEoTkgKG5rpzqYzg2Hd3szmPoj2cE7w5jWwShz3C1vyGSAk"

    try:
        # List address verifications
        api_response = api_instance.list_address_verifications(
            status=status,
            chain_id=chain_id,
            address=address,
            limit=limit,
            before=before,
            after=after,
        )
        print("The response of TravelRuleApi->list_address_verifications:\n")
        pprint(api_response)
    except Exception as e:
        print(
            "Exception when calling TravelRuleApi->list_address_verifications: %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

status
enum<string>

Filter by verification status. Allowed values:

  • PENDING: A Satoshi Test challenge is in progress (countdown active or awaiting confirmation).
  • VERIFIED: The address ownership has been confirmed (by signature or by a matched Satoshi Test transfer).
  • FAILED: The verification attempt did not succeed (Satoshi Test expired without match, or signature verification rejected).

Omit this parameter to return records of all three statuses.

The lifecycle status of an address verification record.

  • PENDING: A Satoshi Test challenge is in progress (countdown active or awaiting confirmation).
  • VERIFIED: The address ownership has been confirmed (by signature or by a matched Satoshi Test transfer).
  • FAILED: The verification attempt did not succeed (Satoshi Test expired without match, or signature verification rejected).
Available options:
PENDING,
VERIFIED,
FAILED
Example:

"VERIFIED"

chain_id
string

Filter by chain ID (e.g. BTC, ETH, BASE_ETH, BSC_BNB, TRON).

Example:

"ETH"

address
string

Filter by counterparty (self-custody) wallet address.

Example:

"0x1234567890abcdef1234567890abcdef12345678"

limit
integer<int32>
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.

Response

Paginated list of address verification records.

Paginated list of address verification records.

data
Address verification · object[]
required

The page of address verification records.

pagination
object
required

The pagination information of the returned data.