Skip to main content
GET
/
service_providers
Get FCC Service Providers
curl --request GET \
  --url https://api-sandbox.letshum.com/service_providers \
  --header 'Authorization: Bearer <token>'
{
  "providers": [
    {
      "id": "12345",
      "name": "Comcast Cable Communications",
      "fcc_name": "Comcast Cable Communications, LLC",
      "total_residential_units": 50000000,
      "type": "fcc_provider"
    },
    {
      "id": "12345-Xfinity",
      "name": "Xfinity",
      "fcc_name": "Comcast Cable Communications, LLC",
      "total_residential_units": 50000000,
      "type": "supplemental_brand"
    },
    {
      "id": "67890",
      "name": "Charter Communications",
      "fcc_name": "Charter Communications, Inc.",
      "total_residential_units": 30000000,
      "type": "fcc_provider"
    },
    {
      "id": "67890-Spectrum",
      "name": "Spectrum",
      "fcc_name": "Charter Communications, Inc.",
      "total_residential_units": 30000000
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer token authentication using JWT tokens. Include the token in the Authorization header as: Authorization: Bearer <token>

Obtain tokens through your Hum API account dashboard or contact support@letshum.com for access.

Response

Service providers retrieved successfully

providers
object[]
required

Array of service providers and their supplemental brands

I