# Base URL The API base URL that precedes the endpoint paths. ## Format The base URL consists of a scheme, host, and base path. ``` :/// ``` ## Components ### Scheme The API is accessed via secure HTTP (i.e., https) **Scheme:** `https` ### Host Each product has its own host. | Product | Host value | | --- | --- | | Smartsheet | `api.smartsheet.com` | | Smartsheet Gov | `api.smartsheetgov.com` | | Smartsheet Regions Europe | `api.smartsheet.eu` | | Smartsheet Regions Australia | `api.smartsheet.au` | ### Base path The base path consists of the version number. The latest API version is `2.0`. **Basepath:** `2.0` ## Example base URLs Here are example base URLs for each product: | Product | Base URL | | --- | --- | | Smartsheet | `https://api.smartsheet.com/2.0` | | Smartsheet Gov | `https://api.smartsheetgov.com/2.0` | | Smartsheet Regions Europe | `https://api.smartsheet.eu/2.0` | | Smartsheet Regions Australia | `https://api.smartsheet.au/2.0` |