> For the complete documentation index, see [llms.txt](https://developer.browpay.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://developer.browpay.com/products/fetch-products.md).

# Fetch Products

{% hint style="info" %}
**We are in the process of enabling you to add a product via the API.**
{% endhint %}

<mark style="color:blue;">`GET`</mark> `{{base_url}}/products`

#### Headers

| Name                                            | Type   | Description                  |
| ----------------------------------------------- | ------ | ---------------------------- |
| Authorization<mark style="color:red;">\*</mark> | String | Bearer {{your\_secret\_key}} |

{% tabs %}
{% tab title="200: OK " %}

```json
{
    "success": true,
    "message": "Data retrieved successfully",
    "data": [
        {
            "id": "2acac77f-b7c5-408b-9b53-6984b17a8475",
            "name": "Chilli Fries",
            "description": null,
            "price": 60000,
            "createAt": "2023-09-26T21:57:24.000000Z",
            "updatedAt": "2023-09-26T21:57:24.000000Z"
        },
        {
            "id": "6ad5fe1a-1633-4eb9-9c72-d9ee2e0d9dfe",
            "name": "Burger",
            "description": "Burger without peanuts",
            "price": 30000,
            "createAt": "2023-05-26T19:04:17.000000Z",
            "updatedAt": "2023-05-26T19:04:17.000000Z"
        }
    ]
}
```

{% endtab %}
{% endtabs %}
