Carrier Service
Mobile carriers, also known as wireless carriers or mobile network operators, own or control all the elements necessary to sell and deliver wireless communication services to users of mobile devices. The read-only Mobile Carrier Service allows you to see what mobile carriers are registered in the AppNexus system. You can use this service to retrieve the IDs of carriers for targeting in mobile campaigns.
You can target mobile campaigns based on the make and model of mobile devices as well. For more details, see the Device Make Service and Device Model Service.
REST API
View all carriers:
GET https://api.appnexus.com/carrier
View all carriers in a specific country:
GET https://api.appnexus.com/carrier?country_code=COUNTRY_CODE
View a specific carrier:
GET https://api.appnexus.com/carrier?id=CARRIER_ID
Find out which fields you can filter and sort by:
GET https://api.appnexus.com/carrier/meta
JSON Fields
Field | Type | Description |
---|---|---|
id | int | The ID of the mobile carrier. |
name | string | The name of the mobile carrier. |
country_code | enum | The ISO code for the country in which the carrier operates. |
country_name | string | The name of the country in which the carrier operates. |
codes | array of objects | Third-party representations for the mobile carrier. See Codes below for more details. |
Codes
Each object in the codes
array contains the following fields.
Field | Type | Description |
---|---|---|
id | int | The ID of the carrier. |
code | string | The third-party representation for carrier. |
notes | string | Identification information about the third-party. |
carrier_id | int | The ID of the carrier. |