> ## Documentation Index
> Fetch the complete documentation index at: https://docs.voyantcloud.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List Regions

> Retrieve accounting and geographic regions available in Voyant.

## Method

`GET` `/v1/ref/regions`

## Description

Returns the static list of regions used for reporting, tax, and localization logic. The payload includes both high-level geographic regions (for example `af`, `eu`, `na`) and economic groupings like `eu-union`, `schengen`, or `nafta`.

## Headers

<ParamField header="Authorization" type="string" required>
  Bearer token (for example <code>Authorization: Bearer YOUR\_API\_KEY</code>)
</ParamField>

## Response

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "items": [
      {
        "name": "Africa",
        "code": "af",
        "slug": "africa"
      },
      {
        "name": "European Union",
        "code": "eu-union",
        "slug": "european-union"
      }
    ]
  }
  ```
</ResponseExample>

Use these codes to interpret the `region` value returned by [/v1/ref/countries](./countries) or other endpoints that rely on the shared accounting regions schema.
