# List machines

## List your machines

<mark style="color:blue;">`GET`</mark> `https://api.meria.com/v1/hardwares/:type`

This endpoint allows to get all owned machines group by its category (bobs or asics)

#### Path Parameters

| Name | Type   | Description                                                    |
| ---- | ------ | -------------------------------------------------------------- |
| type | string | Apply a filter of machine type to this request (bobs or asics) |

#### Headers

| Name    | Type   | Description            |
| ------- | ------ | ---------------------- |
| API-KEY | string | Authentification token |

{% tabs %}
{% tab title="200 Machines successfully retrieved." %}

```
{
    "success": true,
    "data": {
        "asics": [
            {
                "id": 330,
                "type": "S17+",
                "status": "active",
                "hashrate": 36270000000000,
                "currencyCode": "BTC",
                "uptime": 71640,
                "mined": {
                    "BTC": 0.02070824
                }
            }
        ],
        "bobs": [
            {
                "serial": 580099,
                "status": "inactive",
                "uptime": "285",
                "lastActivity": 1568986845,
                "hashrate": 175260000,
                "currencyCode": "ETH",
                "mined": {
                    "ETH": 5.00003053
                }
            }
        ]
    }
}
```

{% endtab %}
{% endtabs %}


---

# 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.meria.com/hardwares/list.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.
