# Verify Address Details

<mark style="color:green;">`GET`</mark> `/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

{% hint style="danger" %}
This feature is currently in testing and will be available in production soon.
{% endhint %}

Path Parameters

| Name      | Type   | Description                                                                                                    | Required |
| --------- | ------ | -------------------------------------------------------------------------------------------------------------- | -------- |
| `chain`   | string | Blockchain network name. Example: <mark style="color:orange;">`bitcoin`</mark>                                 | True     |
| `address` | string | Unique blockchain identifier. Example: <mark style="color:orange;">`1JjYpRXfPntVEJqAjxsYmvFjjJBdJyaJ2k`</mark> | True     |

Sample Request

{% tabs %}
{% tab title="REQUEST" %}

```json
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: ••••••' \
```

{% endtab %}
{% endtabs %}

{% tabs %}
{% tab title="RESPONSE" %}

```json
{
  "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"
  }
}
```

{% endtab %}
{% endtabs %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.ospree.io/ospree-api/blockchain-analytics/verify-address-details.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
