Mobile Carriers

Mobile Carriers

Find All

GET /v1/meta/mobilecarriers

This is by no means an exhaustive list of all mobile carriers in the world. Rather, this is a list of the mobile carriers you can use to target your offers more specifically.

Mobile carriers are identified by carrier_code and each carrier is specific to a single country (specified by country_id).

cURL
curl --request GET 'https://api.eflow.team/v1/meta/mobilecarriers' \
--header 'X-Eflow-API-Key: <INSERT API KEY>'
Response
{
    "mobile_carriers": [
        {
            "mobile_carrier_id": 1,
            "carrier_name": "Bell Mobility Canada",
            "carrier_code": 100,
            "country_id": 36
        },
        ...,
        {
            "mobile_carrier_id": 294,
            "carrier_name": "YooMee Ivory Coast",
            "carrier_code": 7507,
            "country_id": 42
        }
    ]
}