Skip to main content
GET
/
e1
/
api
/
v1
/
core
/
coverage
Coverage-API
curl --request GET \
  --url https://api-stage.orchestro.ai/e1/e1/api/v1/core/coverage \
  --header 'Authorization: <api-key>'
{
  "coverage": [
    {
      "serviceType": "GRD",
      "zip": [
        "01001",
        "01002",
        "01003",
        "01004",
        "01007",
        "01009",
        "01010",
        "01013",
        "01014",
        "01020",
        "01021",
        "01022",
        "01027"
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Query Parameters

accountNumber
string
required

The account number of the user or entity requesting the coverage information. This is a required parameter and must be passed in the query

Example:

"AC0088"

serviceType
string
required

The type of service for which coverage is being requested.

Example:

"GRD/DGRD"

Response

200 - application/json

Coverage API request Successful for GRD/DGRD

coverage
object[]
Example:
[
{
"serviceType": "GRD",
"zip": [
"01001",
"01002",
"01003",
"01004",
"01007",
"01009",
"01010",
"01013",
"01014",
"01020",
"01021",
"01022",
"01027"
]
}
]