Reseller

This is the reseller endpoint. It allows you to fetch your own data. There is only one endpoint, which is /v1/reseller/my_info and it returns your own InfiniteProxies profile data including your residential and mobile balance.


GET/v1/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
/v1/reseller/my_info
curl --location --request GET 'https://api.infiniteproxies.com/v1/reseller/my_info' \
--header 'X-API-KEY: [API KEY]'

Response

{
  "data": {
      "username": "reseller_account",
      "balance": 500,
      "apikey": "secret_api_key_provided_by_support",
      "created_at": "2023-05-17T15:44:31.940155Z",
      "updated_at": "2023-05-24T10:09:32.264198Z"
  },
  "message": "",
  "status": 200,
  "timestamp": 1684927841071
}
GET/v1/reseller/proxy_settings

Get proxy settings

Receive the updated cities, regions and countries available for geo-targetting.

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
/v1/reseller/proxy_settings
curl --location --request GET 'https://api.infiniteproxies.com/v1/reseller/proxy_settings' \
--header 'X-API-KEY: [API KEY]'

Response

{
  "data": {
    "cities": {
      "data": [
        {
          "id": "abidijan",
          "name": "Abidijan",
          "country_code": "CI"
        },
        ...
      ]
    },
    "isp": {
      "AT&T Services": {
        "value": "att",
        "countryCode": "US"
      },
      ...
    },
    "region": {
      "data": [
        {
          "id": "aargau",
          "name": "Aargau",
        }
      ]
    }
  },
  "message": "",
  "status": 200,
  "timestamp": 1701607688977
}