Fetch up to 50 locations and ratecenters using the query parameter. Results will contain city/state matches first and then rate center matches.
Requires an authorization header or IP Auth setup through the portal.
Success. The response will be an array of CityResult and RatecenterResult objects or the NoResults object
Bad request when missing query parameter or query length is less than three characters
[- {
- "state": "string",
- "city": "string",
- "type": "string",
- "rc_name": "string"
}
]
Lookup rate centers using zipcode or city/state, only exact matches are supported.
Requires an authorization header or IP Auth setup through the portal.
Success. The response will be an array of RatecenterResults or the NoResults object.
Bad request when missing required parameters
[- {
- "rc_name": "string",
- "rc_abbre": "string",
- "state": "string",
- "npa_nxx": [
- {
- "npa": "string",
- "nxx": "string",
- "ocn": "string",
- "effectivedate": "string"
}
]
}
]
Lookup rate centers using rate center name and state.Only exact matches are supported.
Requires an authorization header or IP Auth setup through the portal.
Success. The response will be an array of RateCenterResult objects.
Bad request when missing required parameters
[- {
- "rc_name": "string",
- "rc_abbre": "string",
- "state": "string",
- "npa_nxx": [
- {
- "npa": "string",
- "nxx": "string",
- "ocn": "string",
- "effectivedate": "string"
}
]
}
]
Lookup rate centers that contain a number that match a npa, nxx pair. Wildcards as (*) may be used for nxx.
Requires an authorization header or IP Auth setup through the portal.
Success. The response will be an array of RatecenterResults or the NoResults object.
Bad request when missing query parameter or query length is less than three characters
[- {
- "rc_name": "string",
- "rc_abbre": "string",
- "state": "string",
- "npa_nxx": [
- {
- "npa": "string",
- "nxx": "string"
}
]
}
]