# Get

## Get

<mark style="color:blue;">`GET`</mark> `https://{{account_id}}.acquire.io/api/v1/crm/block-visitor/{{id}}`

Retrieve information about a blocked visitor. The blocked visitor's ID must be passed in to the endpoint as a path parameter.

#### Path Parameters

| Name | Type    | Description               |
| ---- | ------- | ------------------------- |
| id   | integer | ID of the blocked visitor |

#### Query Parameters

| Name      | Type   | Description |
| --------- | ------ | ----------- |
| select    | array  |             |
| relations | object |             |

#### Headers

| Name          | Type   | Description       |
| ------------- | ------ | ----------------- |
| Authorization | string | Bearer {api\_key} |

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

```
{
  "data": {
    "id": 1,
    "data": {
      "id": 597304,
      "ip": "2402:8100:21fa:4213:bd98:f32c:7d38:872d",
      "email": "",
      "phone": ""
    },
    "dateCreated": "2021-02-04T20:00:46.000Z",
    "blockTill": "2022-02-04T23:59:59.000Z",
    "blockBy": 1,
    "type": "contact"
  }
}
```

{% endtab %}
{% endtabs %}
