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

# Formats & connection

> Strings, protocols, curl/Python examples

Proxy access is always by username and password (there's no IP whitelist). The same credentials work over HTTP and SOCKS5: pick the string format you want in the bot and drop it into your tool.

## String formats

In the proxy card you switch the format — the credentials stay the same, only the field order changes. The first option is filled in by default.

<Tabs>
  <Tab title="Rotating">
    ```text theme={"system"}
    user:pass@host:port      # default
    user:pass:host:port
    host:port:user:pass
    ```
  </Tab>

  <Tab title="Static">
    ```text theme={"system"}
    ip:port:login:password   # default
    login:password@ip:port
    ip:port
    ```
  </Tab>
</Tabs>

<Note>
  The `ip:port` format for static proxies carries no credentials in the string — enter the login and password separately wherever your tool asks for them.
</Note>

## Protocols

The same access works over both protocols — pick one by use case:

* **HTTP** — web, browsers, scrapers, antidetect profiles.
* **SOCKS5** — any TCP traffic and UDP.

The host and port may differ between HTTP and SOCKS5 — take them from the proxy card.

## Examples

<Tabs>
  <Tab title="curl">
    ```bash theme={"system"}
    # HTTP
    curl -x http://user:pass@host:port https://api.ipify.org
    # SOCKS5
    curl -x socks5://user:pass@host:port https://api.ipify.org
    ```
  </Tab>

  <Tab title="Python">
    ```python theme={"system"}
    proxies = {"http": "http://user:pass@host:port",
               "https": "http://user:pass@host:port"}
    requests.get(url, proxies=proxies)
    ```
  </Tab>

  <Tab title="Browser">
    FoxyProxy or your OS settings. For Dolphin/AdsPower — the proxy field in the profile.
  </Tab>
</Tabs>

<Tip>
  Check your IP through the proxy: `api.ipify.org` or `ifconfig.me`.
</Tip>

## Exporting the list

The **Export** button hands you the proxies in the chosen format. You can set the number of lines — presets **1 / 10 / 100 / 1000 / 5000 / 10000** (up to 10000). It's free and doesn't change the price: lines are repeated round-robin so you can spread the load across threads.

* More than one line — delivered as a `.txt` file.
* A single line — delivered inline in the chat as monospace text.

## Managing your subscription

In the proxy card (**My Proxies**):

| Button          | What it does                                               |
| --------------- | ---------------------------------------------------------- |
| **Export**      | Exports the proxies in the chosen format                   |
| **Add traffic** | Tops up traffic on the active subscription (geo is locked) |
| **Password**    | Shows or changes the password (the old one stops working)  |

<Note>
  Proxy won't connect or speed is throttled — [Proxies not working](/en/proxies/troubleshooting).
</Note>
