Residential - perGB API
Browse the REST API reference for Per GB Residential Proxies, including user info, settings, whitelisting, and access points.
import requests
url = "https://api.proxidize.com/api/v1/subscription?type=per_gb"
headers = {
"Authorization": "Bearer <API_TOKEN>"
}
response = requests.get(url, headers=headers)
data = response.json()
# Response structure:
# {
# "data": [
# {
# "meta_data": {
# "username": "your-username"
# }
# }
# ]
# }
print(data)Last updated
Was this helpful?