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