Utility
Supported Regions
Verify if a user is coming from a supported region.
GET
/v0/is-supported-region/{IP_ADDRESS}
IP_ADDRESS*
curl --request GET \
--url https://api.zebedee.io/v0/is-supported-region/{IP_ADDRESS} \
--header 'apikey: <apikey>'
Description
The ZBD API is available in over 100 countries around the world, and we’re always aiming to expand our reach.
If you wish to know whether the incoming user request is coming from a region where ZBD is supported or not, you can use this simple API endpoint and pass the target IP address as a parameter.
Usage
The idea behind this endpoint is that in order to serve your users the best way possible, you should check where they are located and ensure that they can make use of ZBD services.
Configuration
Path Parameters
IP_ADDRESSrequired
string
IP address to check
Header Parameters
apikeyrequired
string
ZBD Project API Key
{
"success": true,
"data": {
"ipAddress": "66.109.221.0",
"isSupported": true,
"ipCountry": "US",
"ipRegion": "CO"
}
}
Was this page helpful?
curl --request GET \
--url https://api.zebedee.io/v0/is-supported-region/{IP_ADDRESS} \
--header 'apikey: <apikey>'
{
"success": true,
"data": {
"ipAddress": "66.109.221.0",
"isSupported": true,
"ipCountry": "US",
"ipRegion": "CO"
}
}