> For the complete documentation index, see [llms.txt](https://docs-shop.rexdigital.group/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs-shop.rexdigital.group/api/store-1.md).

# Store

## Get Store

<mark style="color:blue;">`GET`</mark> `https://shop.rexdigital.group/api/v1/store`

Fetch the details of your store.

#### Query Parameters

| Name     | Type   | Description                                                                                                           |
| -------- | ------ | --------------------------------------------------------------------------------------------------------------------- |
| api\_key | string | Your api key which can be found by going to your store. Clicking on the cogwheel and navigating to the developer tab. |

{% tabs %}
{% tab title="200 Store received successfully." %}

```javascript
{
  "store": {
    "name": "Acme Incorporated",
    "slug": "acme-incorporated",
    "currency": "€",
    "business_hours": {
      "monday": "00:00 - 23:59",
      "tuesday": "00:00 - 23:59",
      "wednesday": "00:00 - 23:59",
      "thursday": "00:00 - 23:59",
      "friday": "00:00 - 23:59",
      "saturday": "00:00 - 23:59",
      "sunday": "00:00 - 23:59"
    },
    "closed_until": 1592517600,
    "cart": {
      "minimum_amount": null,
      "minimum_delivery_amount": null
    },
    "links": {
      "self": "https://shop.rexdigital.group/store/acme-incorporated"
    }
  }  
}
```

{% endtab %}
{% endtabs %}
