Per Proxy Mobile Proxies
import requests
url = "https://api.proxidize.com/api/v1/subscription?type=per_proxy"
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