> For the complete documentation index, see [llms.txt](https://docs.bullmq.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.bullmq.net/http-api/workers/getting-workers.md).

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