v1

latestOpenAPI 3.1.02026-07-2414238909.1 KB

Get pricing for all Routee Services

You can retrieve pricing for all Routee services and specify various filters in order to retrieve only the prices that are of interest.

get/system/prices

Query parameters

mccstring

The mcc to filter price results.

mncstring

The mnc to filter price results.

servicestring

The service to filter price results (possible values: Sms, Voice, TwoStep, Lookup, NumberValidator, Viber).

Headers

Authorizationstring required

Bearer {access_token}

Response

200

Example response

{
  "sms": [
    {
      "mcc": "202",
      "country": "Greece",
      "iso": "GR",
      "networks": [
        {
          "network": "Cosmote",
          "mnc": "01",
          "price": 0.042
        }
      ]
    }
  ],
  "voice": [
    {
      "country": "Usa",
      "iso": "US",
      "mobilePrice": "0.009",
      "landlinePrice": "0.009"
    }
  ],
  "viber": [
    {
      "country": "Denmark",
      "iso": "DK",
      "prices": {
        "transactionalOutbound": "0.0046",
        "promotionalOutbound": "0.0081",
        "transactionalInbound": "0.0000",
        "promotionalInbound": "0.0000",
        "fee": "150.0000",
        "feePeriod": "30"
      }
    }
  ],
  "twoStep": {
    "sms": 0.08,
    "voice": 0.08
  },
  "lookup": {
    "perRequest": 0.004
  },
  "numberValidator": {
    "withoutPortedInfo": 0.0015,
    "withPortedInfo": 0.0035
  },
  "currency": {
    "code": "EUR",
    "name": "Euro",
    "sign": "€"
  }
}