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

# List Static Proxies

> Retrieve assigned static proxies and their copy-paste connection strings.

Use this endpoint when you need the static proxies currently assigned to the authenticated account.

## Request

```bash theme={null}
curl --request GET \
  --url "$FLOPPY_BASE_URL/v2/proxy/static" \
  --header "X-Api-Key: $FLOPPY_API_KEY"
```

## Response Shape

```json theme={null}
{
  "items": [
    {
      "id": 1,
      "ip": "123.45.67.89",
      "proxyType": "isp",
      "countryCode": "US",
      "countryName": "United States",
      "connection": {
        "host": "123.45.67.89",
        "port": 1080,
        "username": "USERNAME",
        "password": "PASSWORD",
        "connectionString": "http://USERNAME:PASSWORD@123.45.67.89:1080"
      },
      "ownedFrom": "2026-02-19T09:55:59.936291Z",
      "ownedUntil": null,
      "lastSwapAt": "2026-02-19T09:55:59.936291Z"
    }
  ],
  "pendingCount": 1
}
```

Use `items[n].connection.connectionString` as the proxy URL.

```bash theme={null}
curl --silent \
  --url "$FLOPPY_BASE_URL/v2/proxy/static" \
  --header "X-Api-Key: $FLOPPY_API_KEY" \
  | jq -r '.items[0].connection.connectionString'
```

## Usage Tips

| Situation                         | Tip                                                                                            |
| --------------------------------- | ---------------------------------------------------------------------------------------------- |
| You want a stable proxy endpoint  | Use static proxies instead of rotating proxies. The IP is assigned to the account.             |
| You need the copy-paste value     | Use `items[n].connection.connectionString`; avoid manually rebuilding it from separate fields. |
| You see `pendingCount` above zero | Some static proxies are still being prepared and are not in `items` yet.                       |
| You need inventory state          | Read `ownedFrom`, `ownedUntil`, and `lastSwapAt` to understand assignment timing.              |
| You need to check a proxy         | Send `items[n].connection.connectionString` to `POST /v2/proxy/check`.                         |

<Card title="Run static proxy list in API Reference" icon="play" href="/docs/api-reference/v2/endpoint/static-proxies">
  List assigned static proxies from the docs and inspect the response schema.
</Card>
