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.

Path Parameters

verification_id
string<uuid>
required

The unique identifier of the address verification record.

Response

The address verification record.

Full detail of a single address verification record, including method-specific provenance.

  • verification_method=SIGNATUREsignature_detail is populated, satoshi_test_detail is null.
  • verification_method=SATOSHI_TESTsatoshi_test_detail carries the latest challenge state (status, remaining_seconds, matched_txid); signature_detail is null.
verification_id
string<uuid>
required

The unique identifier of this verification record.

Example:

"fb377ea5-a97a-49b4-955d-23f8fdd5177a"

address
string
required

The counterparty (self-custody) wallet address being verified.

Example:

"0x1234567890abcdef1234567890abcdef12345678"

chain_id
string
required

The chain on which this address is verified.

Example:

"ETH"

status
enum<string>
required

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"

verification_method
enum<string>
required

How a self-custody address was verified.

  • SIGNATURE: Verified by off-chain wallet signature (via Get a self-custody signature challenge + signed message).
  • SATOSHI_TEST: Verified by an on-chain micro-deposit (via Satoshi Test challenge).
Available options:
SIGNATURE,
SATOSHI_TEST
Example:

"SATOSHI_TEST"

verified_at
integer<int64> | null

Timestamp (milliseconds) when verification completed. null while status=PENDING or FAILED.

Example:

1732523887000

satoshi_test_detail
Satoshi Test challenge · object | null

The latest Satoshi Test challenge associated with this verification. Present only when verification_method=SATOSHI_TEST.

signature_detail
Signature verification detail · object | null

Off-chain signature provenance. Present only when verification_method=SIGNATURE.