Verify Address Details

GET /api/v2/analytics/chains/{chain}/addresses/{address}/details This endpoint verifies and assesses a blockchain address by returning key compliance-related attributes. It checks whether the address exists and has a transaction history (is_validated), whether it is self-hosted and attested to by the customer (is_self_hosted), and whether the address ownership has been cryptographically proven via a digital signature (is_verified). Additionally, it indicates if the address is linked to a known customer account (is_customer), identifies the associated blockchain (chain_name), and includes a unique internal reference (reference_id). Note: This feature is currently supported for Solana, and Ethereum blockchains.

Path Parameters

Name
Type
Description
Required

chain

string

Blockchain network name. Example: bitcoin

True

address

string

Unique blockchain identifier. Example: 1JjYpRXfPntVEJqAjxsYmvFjjJBdJyaJ2k

True

Sample Request

curl -X GET https://sandbox.ospree.io/api/v2/analytics/chains/bitcoin/addresses/1Q8QR5k32hexiMQnRgkJ6fmmjn5fMWhdv9/details

-h 'Content-Type: application/json' \
-h 'Accept: application/json' \
-h 'Authorization: ••••••' \
{
  "status": "success",
  "data": {
    "address": "1Q8QR5k32hexiMQnRgkJ6fmmjn5fMWhdv9",
    "chain_name": "bitcoin",
    "is_validated": true, 
    "is_self_hosted": true,
    "is_verified": false,
    "is_customer": true,
    "reference_id": null
  }
}

Last updated