# Headers and Body Request  by Phone

## Header

<table><thead><tr><th>Type</th><th width="374">Value</th></tr></thead><tbody><tr><td>Content-Type</td><td>application/json</td></tr></tbody></table>

## Body

Example Request:

*raw (application/json)*

{% tabs %}
{% tab title="Example Request:" %}

```
{
  "key": "<API_Key>",
  "value": "+79017007397"
}
```

{% endtab %}

{% tab title="Response Body" %}
{&#x20;

&#x20;"id": 123456,&#x20;

&#x20;"status": "progress",&#x20;

&#x20;"message": "Results will be available soon. Use the API to retrieve data."

&#x20;}
{% endtab %}

{% tab title="CURL" %}

```
1.	curl -X 'POST' \
2.	  'https://irbis.espysys.com/api/developer/real_phone' \
3.	  -H 'accept: application/json' \
4.	  -H 'Content-Type: application/json' \
5.	  -d '{
6.	  "key": "<API_Key>",
7.	  "value": "+79017007397"
8.	}'

```

{% endtab %}
{% endtabs %}
