Get carrier list information

HTTP method

Endpoint

GET

/v1/ dict_carriers

Note: If you want to add the query conditions, there are parameters Path introduced the field can be selected (only one query can be added at a time).

Path parameters

Parameter

Description

id

The unique id for the carrier.

name

The name for the carrier.

Response body parameters

Field

Type

Description

id

integer

The unique id for the carrier.

name

string

The name for the carrier.

Example request

Request GET https://{networkname}.api.offerslook.com/v1/dict_carriers

Request GET http://{networkname}.api.offerslook.com/v1/dict_carriers

Example response

    {
      "code": 0,
      "message": "Success",
      "data": {
           "dict_carrier": [
            {
                "id": 1,
                "name": "012 telecom"
            },
            {
                "id": 2,
                "name": "018 xphone"
            },
            {
                "id": 3,
                "name": "1o1o / one2free / new world mobility / sunmobile"
            }
        ]
      }
    }

Last updated