# 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 %}


---

# 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.openli.com/docs/documentation/legal-monster-api/services.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.
