---
title: "View Service Dependencies"
description: "Enterprise Stack services often rely on other services to provide their full functionality. For instance, a Wallet Service might depend on KMS, DID, DID Store, and Credential Store services, and a DID Service can depend…"
stack: "Enterprise Stack (commercial) — version 0.21.0"
stack_version: "0.21.0"
stack_comparison: https://docs.walt.id/community-vs-enterprise.md
canonical_url: https://docs.walt.id/enterprise-stack/administration/services/dependency-services/view
generated: 2026-07-08
---
# View Service Dependencies

Enterprise Stack services often rely on other services to provide their full functionality. For instance, a Wallet Service might depend on KMS, DID, DID Store, and Credential Store services, and a DID Service can depend on a DID Store.
You can view all current dependencies of a service via the `/dependencies/list` endpoint on its service API.

## List dependencies (DID Service example)

**Option: CURL**

Endpoint: `/v1/{target}/did-service-api/dids/dependencies/list` | [API Reference](https://enterprise.sandbox.walt.id/swagger/index.html#/DID%20Service/get_v1__target__did_service_api_dids_dependencies_list)

**Example Request**

```bash
curl -X 'GET' \
  'https://{orgHost}.enterprise-sandbox.waltid.dev/v1/{target}/did-service-api/dids/dependencies/list' \
  -H 'accept: application/json' \
  -H 'Authorization: Bearer {yourToken}'
```

**Path Parameters**

- `orgHost`: _String_ - Organization host alias to call against. When you are working in the sandbox organization `test`, the base URL becomes `https://test.enterprise-sandbox.waltid.dev`.
- `target`: _resourceIdentifier_ - Full path to the DID service you want to inspect, following `{organization}.{tenant}.{serviceId}`. For example, the sandbox DID service target would be `test.tenant1.did-service-1`.

**Example Response** `200 OK`

```json
[
  "test.tenant1.did-store-1"
]
```

- Each entry is the fully-qualified service path of a dependency. The list is empty when no dependencies are configured.
