--- title: Clients slug: Web/API/Clients translation_of: Web/API/Clients ---
{{SeeCompatTable}}{{APIRef("Service Workers API")}}
The Clients interface of the Service Workers API represents a container for a list of {{domxref("Client")}} objects.
id and returns it in a {{jsxref("Promise")}}.options parameter to return all service worker clients whose origin is the same as the associated service worker's origin. If options are not included, the method returns only the service worker clients controlled by the service worker. clients.matchAll(options).then(function(clients) {
for(i = 0 ; i < clients.length ; i++) {
if(clients[i] === 'index.html') {
clients.openWindow(clients[i]);
// or do something else involving the matching client
}
}
});
| Specification | Status | Comment |
|---|---|---|
| {{SpecName('Service Workers', '#clients', 'Clients')}} | {{Spec2('Service Workers')}} | Initial definition |