Reseller
This is the reseller endpoint. It allows you to fetch your own data. There is only one endpoint, which is /v2/reseller/my_info
and it returns your own InfiniteProxies profile data including your residential and mobile balance.
GET/v2/reseller/my_info
Get self account
Retrieve your own InfiniteProxies account data.
Returned Properties
- Name
data
- Type
- object
- Description
The data of your InfiniteProxies account.
- Name
message
- Type
- string
- Description
The message of the response.
- Name
status
- Type
- number
- Description
The status code of the response.
- Name
timestamp
- Type
- number
- Description
The timestamp in milliseconds of the response.
Request
GET
/v2/reseller/my_infocurl --location --request GET 'https://api.infiniteproxies.com/v2/reseller/my_info' \
--header 'X-API-KEY: [API KEY]'
Response
{
"status": 200,
"message": "",
"timestamp": 1710520971155,
"data": {
"username": "reseller_username",
"apikey": "secret_api_key",
"created_at": "2023-05-23T21:11:36.575365Z",
"updated_at": "2024-03-04T11:50:48.007168Z",
"products": {
"sharedDataCenter": {
"balance": 0
},
"mobile": {
"balance": 0
},
"dataCenterIPV6": {
"balance": 0
},
"residentialIPV6": {
"balance": 0
},
"dataCenter": {
"balance": 0
},
"residential": {
"balance": 0
}
}
}
GET/v2/reseller/proxy_settings
Get proxy settings
Receive all possible targetting options grouped by the proxy types.
Returned Properties
- Name
data
- Type
- object
- Description
The data of our proxy settings.
- Name
message
- Type
- string
- Description
The message of the response.
- Name
status
- Type
- number
- Description
The status code of the response.
- Name
timestamp
- Type
- number
- Description
The timestamp in milliseconds of the response.
Request
GET
/v2/reseller/proxy_settingscurl --location --request GET 'https://api.infiniteproxies.com/v2/reseller/proxy_settings' \
--header 'X-API-KEY: [API KEY]'
Response
{
"status": 200,
"message": "",
"timestamp": 1710521062699,
"data": {
"residential": {
"countries": {
"HR": "Croatia",
...
},
"cities": {
"data": [
{
"id": "abidjan",
"name": "Abidjan",
"country_code": "ci"
},
...
]
},
"regions": {
"data": [
{
"id": ".sint.eustatius",
"name": " Sint Eustatius"
},
...
]
},
"isp": {
"Comcast Cable": {
"value": "comcast",
"countryCode": "US"
},
...
},
"continents": null
},
"sharedDataCenter": {
"countries": {
"NO": "Norway",
...
},
"cities": {
"data": [
{
"id": "karangsembung",
"name": "Karangsembung",
"country_code": "N/A"
},
...
]
},
"regions": {
"data": [
{
"id": "amazonas",
"name": "Amazonas"
},
...
]
},
"isp": {},
"continents": null
},
"mobile": {
"countries": {
"IE": "Ireland",
...
},
"cities": {
"data": [
{
"id": "auckland",
"name": "Auckland",
"country_code": "nz"
},
...
]
},
"regions": {
"data": [
{
"id": "kemerovo.oblast",
"name": "Kemerovo Oblast"
},
...
]
},
"isp": {},
"continents": null
}
}
}