API documentation
  • Documention
    • Common information
      • Authorization in API
      • Currency
    • Services
    • Order management
      • Order list reception
      • Placing an order
      • Order changes
      • Order payment
      • Order operations
    • Network tools
      • Checker
      • Free proxies
Powered by GitBook
On this page
  1. Documention

Services

PreviousCurrencyNextOrder management

Last updated 1 year ago

List of available services

List of available locations for the service

List of available operators for the service

The request is used to get the list of available operators for purchasing "Mobile proxies plus" service.

List of services

get

List of available services

Query parameters
langstring · enumOptional

Language code

Default: ENPossible values:
currencystring · enumOptional

Currency code

Default: USDPossible values:
Responses
200
OK
application/json
get
GET /api/services HTTP/1.1
Host: v3.proxy-solutions.net
Accept: */*
200

OK

{
  "lang": "EN",
  "currency": "USD",
  "services": [
    {
      "id": 4,
      "provider": "server-proxies",
      "name": "City proxies",
      "location_choise": "city"
    }
  ]
}

List of available locations for the service

get

List of available locations for a chosen service. For services that allow the selection of a city, each element of the "countries" list will contain a list of available cities (field "cities").

Path parameters
service_idintegerRequiredExample: 4
Query parameters
langstring · enumOptional

Language code

Default: ENPossible values:
currencystring · enumOptional

Currency code

Default: USDPossible values:
Responses
200
OK
application/json
404
Service not found
get
GET /api/services/{service_id}/locations HTTP/1.1
Host: v3.proxy-solutions.net
Accept: */*
{
  "lang": "EN",
  "currency": "USD",
  "countries": [
    {
      "id": 24,
      "type": "city",
      "name": "New York",
      "country_name": "USA",
      "code": "US",
      "cities": [
        {
          "id": 24,
          "type": "city",
          "name": "New York",
          "country_name": "USA",
          "channels": 5,
          "operators": [
            {
              "id": 37,
              "name": "Orange",
              "channels": 5
            }
          ]
        }
      ]
    }
  ]
}

List of mobile operators for the service

get

List of all mobile operators for a given service, regardless of channel availability

Path parameters
service_idintegerRequiredExample: 4
Query parameters
langstring · enumOptional

Language code

Default: ENPossible values:
currencystring · enumOptional

Currency code

Default: USDPossible values:
Responses
200
OK
application/json
404
Service not found
get
GET /api/services/{service_id}/operators HTTP/1.1
Host: v3.proxy-solutions.net
Accept: */*
{
  "lang": "EN",
  "currency": "USD",
  "countries": [
    {
      "id": 37,
      "name": "Orange"
    }
  ]
}
  • List of available services
  • GETList of services
  • List of available locations for the service
  • GETList of available locations for the service
  • List of available operators for the service
  • GETList of mobile operators for the service