1--- 2layout: api 3page_title: Regions - HTTP API 4description: The /regions endpoints list all known regions. 5--- 6 7# Regions HTTP API 8 9The `/regions` endpoints list all known regions. 10 11## List Regions 12 13| Method | Path | Produces | 14| ------ | ---------- | ------------------ | 15| `GET` | `/regions` | `application/json` | 16 17The table below shows this endpoint's support for 18[blocking queries](/api-docs#blocking-queries) and 19[required ACLs](/api-docs#acls). 20 21| Blocking Queries | ACL Required | 22| ---------------- | ------------ | 23| `NO` | `none` | 24 25### Sample Request 26 27```shell-session 28$ curl \ 29 https://localhost:4646/v1/regions 30``` 31 32### Sample Response 33 34```json 35["region1", "region2"] 36``` 37