Introduction
API Reference
- Swag Catalog
- Orders
- People
- Webhooks
API Changelog
Orders
List shipping regions
GET
/
api
/
ext
/
v1
/
shipping-regions
curl --request GET \
--url https://staging-api.covver.io/api/ext/v1/shipping-regions
{
"countryName": "United States",
"countryCode": "US",
"isBlacklisted": false,
"provinces": [
{
"provinceName": "California",
"provinceCode": "CA"
}
]
}
Response
200
application/json
Default Response
The response is of type object[]
.
curl --request GET \
--url https://staging-api.covver.io/api/ext/v1/shipping-regions
{
"countryName": "United States",
"countryCode": "US",
"isBlacklisted": false,
"provinces": [
{
"provinceName": "California",
"provinceCode": "CA"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.