Verify Address Details
GET
/api/v2/analytics/chains/{chain}/addresses/{address}/details
This endpoint returns compliance-related attributes of a blockchain address, including:
is_validated – Indicates whether the address exists and has a transaction history
is_self_hosted – Shows if the address has been labeled as self-hosted
is_verified – Confirms if ownership has been cryptographically proven via a digital signature
is_customer – Flags whether the address is associated with a known customer account
reference_id – Internal reference ID of the associated accoun
This feature is currently in testing and will be available in production soon.
Path Parameters
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": "bitcoin",
"is_validated": true, // true or false
"is_self_hosted": true, // true or false
"is_verified": false, // true or false
"is_customer": true, // true or false
"reference_id": "CUSTOMER-234923423"
}
}
Last updated