Request
Response Shape
items[n].connection.connectionString as the proxy URL.
Usage Tips
Run static proxy list in API Reference
List assigned static proxies from the docs and inspect the response schema.
Documentation Index
Fetch the complete documentation index at: /docs/llms.txt
Use this file to discover all available pages before exploring further.
Retrieve assigned static proxies and their copy-paste connection strings.
curl --request GET \
--url "$FLOPPY_BASE_URL/v2/proxy/static" \
--header "X-Api-Key: $FLOPPY_API_KEY"
{
"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
}
items[n].connection.connectionString as the proxy URL.
curl --silent \
--url "$FLOPPY_BASE_URL/v2/proxy/static" \
--header "X-Api-Key: $FLOPPY_API_KEY" \
| jq -r '.items[0].connection.connectionString'
| 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. |
Was this page helpful?