> For the complete documentation index, see [llms.txt](https://docs.openli.com/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.openli.com/docs/documentation/legal-monster-api/services/personal-data.md).

# Personal data

## List all personal data for a given service

<mark style="color:blue;">`GET`</mark> `https://app.openli.com/api/v1/services/:service_public_key/personaldata`

You can find a specific service's public key under settings in the app.&#x20;

**Example request:**

`https://app.openli.com/api/v1/services/123456789adbfc/personaldata`

#### Path Parameters

| Name                                             | Type | Description                               |
| ------------------------------------------------ | ---- | ----------------------------------------- |
| 123456789adbfc<mark style="color:red;">\*</mark> |      | The public key of the particular service. |

#### Headers

| Name                                        | Type | Description                   |
| ------------------------------------------- | ---- | ----------------------------- |
| X-API-Key<mark style="color:red;">\*</mark> |      | API key set for your project. |

{% tabs %}
{% tab title="200: OK An example response" %}

```javascript
{
    "personal_data": [
        {
            "sensitivity_type": "ordinary",
            "category": "Email, name, IP",
            "subjects": "Employees",
            "purpose": "We do this because...",
            "nature_of_processing": "The way we process it is...",
            "data_processing_locations": [
                {
                    "country_name": "Denmark",
                    "country_code": "DK"
                },
                ...
            ]
        }
    ]
}
```

{% endtab %}
{% endtabs %}
