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

# Hosted Endpoints

> Current hosted private-beta endpoint values and how examples reference them.

This page is the single public docs location for literal hosted private-beta
domains. Other examples use `NULLSPACE_API_URL`, `NULLSPACE_DOCS_URL`, or
placeholders so launch-domain updates do not require broad edits.

## Current Private Beta

| Surface | URL                                      |
| ------- | ---------------------------------------- |
| API     | `https://api.13-215-85-171.sslip.io`     |
| Docs    | `https://docs.13-215-85-171.sslip.io`    |
| Console | `https://console.13-215-85-171.sslip.io` |

## Shell Setup

For local interactive use:

```bash theme={"theme":{"light":"one-light","dark":"one-dark-pro"}}
nullspace auth login --api-url https://api.13-215-85-171.sslip.io
```

For scripts, CI, and coding agents:

```bash theme={"theme":{"light":"one-light","dark":"one-dark-pro"}}
export NULLSPACE_API_KEY=ns_live_...
export NULLSPACE_API_URL=https://api.13-215-85-171.sslip.io
export NULLSPACE_DOCS_URL=https://docs.13-215-85-171.sslip.io
```

The Python SDK, CLI, MCP server, and raw HTTP examples all read
`NULLSPACE_API_URL`. `NULLSPACE_DOCS_URL` is only for docs links in scripts,
runbooks, and launch handouts.

## Local Development

Local API development defaults to:

```bash theme={"theme":{"light":"one-light","dark":"one-dark-pro"}}
export NULLSPACE_API_URL=http://localhost:3000
```

Do not use the hosted beta endpoint in local integration tests unless the test
is explicitly marked as live and environment-gated.

## Related

* [First Machine](../quickstarts/first-machine)
* [Environment variables](./env-vars)
* [API reference scope](./api-scope)
