GET
/
sessions
/
{token}
/
services
/
internet
curl --request GET \
  --url https://api-sandbox.letshum.com/sessions/{token}/services/internet \
  --header 'Authorization: Bearer <token>'
{
  "message": "What happened in the most recent request.",
  "request_status": "ok",
  "data": {
    "internet": [
      {
        "provider_id": "0c970c65-7b01-3fc4-91ee-4ecb31f2acb8",
        "provider_name": "Rocket Fiber",
        "telephone": "+18332981433",
        "provider_icon": "<string>",
        "provider_logo": "https://harmony.letshum.com/images/providers/rocketfiber.png",
        "url": "https://provider.example.com/register?utm_source=Hum",
        "security_token": "fUdh4KG2XQDZarZvPZwSR_YRLPp5eFbD7QUTu7l-53HJ0T3nU2fjaesdOp1O2wUAO9",
        "button_label": "Get Started",
        "min_plan_price": {
          "amount_cents": 4999,
          "currency": "USD"
        },
        "promo_text": "$50 off your first month!",
        "promo_logo": "https://cdn.letshum.com/promo_icons/banknotes.svg",
        "offerings": [
          {
            "technology": "Fiber",
            "technology_category": "Terrestrial",
            "max_download_speed": 1000,
            "max_upload_speed": 1000
          }
        ],
        "product_catalog": [
          {
            "category": "internet",
            "category_name": "Internet Service",
            "category_description": "High-speed internet access plans",
            "products": [
              {
                "id": "8083bfe8-a53f-49eb-b0e8-a77d3e9e7577",
                "sku": "130235-INT-CBL-01",
                "name": "Internet Advantage",
                "category": "internet",
                "category_name": "Internet Service",
                "technology": "cable",
                "position": 1,
                "description": "Boosted Internet for users looking to stream and share content quickly.",
                "download_speed": 100,
                "upload_speed": 20,
                "data_limit": null,
                "channel_count": 0,
                "streaming_apps": [
                  "Disney+ Basic",
                  "ESPN+"
                ],
                "is_required_to_checkout": true,
                "is_bundle_qualifier": null,
                "required_with_plans": [],
                "included_with_plans": [],
                "initial_term_discount_months": 12,
                "pricing": {
                  "monthly_fee": {
                    "amount_cents": 4999,
                    "currency": "USD"
                  },
                  "extra_data_fee": {
                    "amount_cents": 4999,
                    "currency": "USD"
                  },
                  "professional_installation_fee": {
                    "amount_cents": 4999,
                    "currency": "USD"
                  },
                  "self_installation_fee": {
                    "amount_cents": 4999,
                    "currency": "USD"
                  },
                  "initial_term_discount": {
                    "amount_cents": 4999,
                    "currency": "USD"
                  },
                  "bundle_discount": {
                    "amount_cents": 4999,
                    "currency": "USD"
                  },
                  "autopay_discount": {
                    "amount_cents": 4999,
                    "currency": "USD"
                  },
                  "paperless_billing_discount": {
                    "amount_cents": 4999,
                    "currency": "USD"
                  }
                }
              }
            ]
          }
        ]
      }
    ]
  },
  "meta": {
    "session_token": "XqCmeTVgYXrbWrZFZEymkD",
    "session_status": "open",
    "agent_status": {
      "geocoding": "matched",
      "internet": "matched",
      "checkout": "pending"
    },
    "session_params": {
      "street1": "29090 Tiffany Drive E",
      "street2": "A2",
      "city": "Southfield",
      "state": "MI",
      "zip": 48034,
      "campaign_id": "1iYyMxsnTy87tFOvukTi7V"
    },
    "service_address": "1420 Washington Blvd, Detroit, MI 48201",
    "created_at": "2024-09-20T23:13:31.179Z",
    "updated_at": "2024-09-20T23:13:31.179Z",
    "responded_at": "2024-09-20T23:13:31.179Z",
    "hum_data_set": "25041808"
  }
}

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.

Path Parameters

token
string
required

The session token identifying the specific session

Example:

"XqCmeTVgYXrbWrZFZEymkD"

Response

200
application/json

Internet service providers, available plans, and logos/urls for a given service address.

The response is of type object.