Carriers

List all carriers or search by name

GET/v1/telco/carriers

List all carriers or search by name, OCN, or company name.

Requires:telco:read

Query Parameters

qstring
Search query -- matches against company name, common name, and OCN
Search carriers by name
curl "https://api.do.dev/v1/telco/carriers?q=verizon" \
-H "Authorization: Bearer YOUR_API_KEY"
Response200
{
"carriers": [
  {
    "ocn": "VZXX",
    "companyName": "Verizon Communications, Inc.",
    "commonName": "Verizon",
    "carrierType": "ILEC",
    "state": "NY",
    "country": "US",
    "npaNxxCount": 847
  }
]
}