Welcome to Viproxy client API. Here you'll find all the documentation you need to get up and running with the Viproxy client API.
To start working with Viproxy client API, get your API keys. You can generate an API key from your personal account at any time.
Note that your API requests are authenticated using API keys. Any request that doesn't include an API key will return an error.
The request allows to view all available proxy types.
GET /api/{apiKey}/proxyType
Response
{
"message": "Success",
"data": [
"IPv6",
"IPv4",
"ISP"
]
}
The request allows to view countries by proxy type IPv6.
GET /api/{apiKey}/country?proxyType=IPv6
Response
{
"message":"Success",
"data": [
{
"name":"Germany",
"code":"DE",
"alpha3Code":"DEU",
"proxyType":"IPv6",
},
{
"name":"England",
"code":"GB",
"alpha3Code":"GBR",
"proxyType":"IPv6",
}
]
}