> For the complete documentation index, see [llms.txt](https://springstreet.gitbook.io/springstreet.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://springstreet.gitbook.io/springstreet.io/api/getting-started/base-url-request.md).

# Base URL Request

The Base URL is the consistent starting point for every endpoint in the API.

### Production Environment

Production Environment

The following is the Base URL for our live production environment. All requests made to this URL will interact with real data.

`https://api.springstreet.io`

***

### Construction a Full API Request URL

To make a request, you combine the Base URL with the specific endpoint path you want to access.

Formula: `[Base URL]` + `[Endpoint Path]` = Full Request URL

Example:

* Base URL: `https://api.springstreet.io`
* Endpoint Path: `/debtors/search`
* Full URL for Request: `https://api.springstreet.io/debtors/search`
