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

# Password

> HTTP Basic Auth with username and password

Standard authentication via HTTP Basic Auth.

## Format

```
{username}-{params}:{password}@{host}:{port}
```

## Credentials

| Component | Format           |
| --------- | ---------------- |
| Username  | `sub_` + 8 chars |
| Password  | 16 chars         |

## Examples

```bash theme={null}
# Basic
curl -x "http://sub_xxx:pass@gate.turnoxy.com:1318" https://example.com

# With parameters
curl -x "http://sub_xxx-country-US:pass@gate.turnoxy.com:1318" https://example.com

# Multiple parameters
curl -x "http://sub_xxx-country-US-session-abc123:pass@gate.turnoxy.com:1318" https://example.com
```

## Errors

All failures return `407 Proxy Authentication Required`:

* Invalid username or password
* Expired subscription
* Exhausted traffic quota

<Note>
  Specific failure cause is not disclosed for security.
</Note>
