This endpoint is used to obtain an Access Token using the Client Credentials Grant flow. This flow is typically used for machine-to-machine (M2M) communication where a specific user’s consent is not required, and the client application is acting on its own behalf.

Get ratesheet details

Retrieves a comprehensive Ratesheet for a specific site or offer. This document acts as a catalog of available vendor offerings, including detailed speed specifications, hand-off types, and multi-term pricing (MRR/NRR) for broadband and other connectivity products.

FeatureDetails
MethodGET
Endpoint/apis/v1alpha/namespaces/{namespace}/ratesheet/{name}

Path parameters

ParameterTypeRequiredDescription
namespaceStringYesThe unique identifier for the namespace. (e.g., 7 in the example)
nameStringYesThe resource name associated with the ratesheet (e.g., telr-test-001)

Headers

HeaderValueRequiredDescription
AuthorizationBearer <TOKEN>YesA valid API Bearer token for authentication
Content-Typeapplication/jsonYesSpecifies the media type of the resource (standard for JSON APIs)

Response structure

The response returns a ratesheet object containing metadata and a list of available service offerings.

Each object in the offerings array represents a unique product configuration from a vendor (e.g., Comcast).

Fieldnested propertyDescription
geoLocationThe latitude and longitude of the site, ensuring the rates provided are geographically accurate for the specific delivery point
spec.offeringsTechnical requirements are defined
vendorThe service provider (e.g., Comcast).
productThe specific commercial tier (e.g., “Enterprise Basic”, “Enterprise Core”).
downloadSpeedMbpsThe maximum download bandwidth.
uploadSpeedMbpsThe maximum upload bandwidth.
handOffTypeThe physical interface provided (e.g., RJ45 Ethernet/Copper).
networkProximityIndicates if the site is “On-Net” (GTT owned) or “Off-Net” (Third-party).
termThe contract duration in months (e.g., 12, 24, 36)
mrrMonthly Recurring Revenue (the base monthly cost)
nrrNon-Recurring Revenue (one-time installation/set-up fees)
dateExpiredEpoch timestamp indicating when this specific quote expires

Data insights (sample analysis)

Based on the provided response for Seattle (98121):

  • Vendor Dominance: Comcast is the primary provider for this site under the broadband category.
  • Price Incentives: Note that while the MRR remains stable across terms ($119.98), the NRR (Installation Fee) drops significantly as the term increases (e.g., $221.11 for 12 months vs. $49.00 for 36 months).
  • Symmetry: The “Enterprise Basic” tier is available in both asymmetric (50/35 Mbps) and symmetric (50/50 Mbps) configurations.

Example offering block

{
    "vendor": "Comcast",
    "product": "Enterprise Core",
    "downloadSpeedMbps": 150,
    "uploadSpeedMbps": 150,
    "prices": [
        {
            "term": 36,
            "mrr": 151.98,
            "nrr": 49.0
        }
    ]
}