# Getting workers

BullMQ Proxy provides a simple api to return all the registered workers in the system. Just call the `/workers` endpoint with the "GET" http verb:

{% tabs %}
{% tab title="Curl" %}

```powershell
curl --location 'http://mydomain.dev/workers/my-queue' \
--header 'Authorization: Bearer my-secret-token'
```

{% endtab %}
{% endtabs %}

{% hint style="info" %}
Currently it only returns the workers that are registered in the system and that **should** be running, however, things like disconnections to Redis™ hosts could prevent the workers from actually process any jobs. Use a BullMQ [dashboard](https://taskforce.sh) tool in order to get a better view of your queues and running workers.
{% endhint %}
