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


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.bullmq.net/http-api/workers/getting-workers.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
