Skip to main content

Get rate center by name

GET 
/geo/rc

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.

Request

Query Parameters

    rc_name stringrequired

    Rate center name

    state stringrequired

    State of the rate center

Responses

200: Success. The response will be an array of RateCenterResult objects.

400: Bad request when missing required parameters

401: Unauthorized request

Request samples


curl -L 'https://switchdata.telnyx.com/v1/geo/rc' \
-H 'Accept: application/json'

Response samples


[
{
"rc_name": "string",
"rc_abbre": "string",
"state": "string",
"npa_nxx": [
{
"npa": "string",
"nxx": "string",
"ocn": "string",
"effectivedate": "string"
}
]
}
]