> 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.md).

# Services

## List all services for your company

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

This endpoint can be used to retrieve the names and public-key identifiers for all of the services your company offers as a vendor.

#### Headers

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

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

```javascript
[
    {
    	"name": "Example service 1",
    	"public_key": "123456789adbfc"
    },
    {
        "name": "Example service 2",
        "public_key": "123456789adbfd"
    }
]
```

{% endtab %}
{% endtabs %}
