Smile Center Health Developers
Canonical public English routes stay under /en/, while UK language-region targeting is expressed in
document metadata as en-GB. This panel documents the current worker contract and provides an
in-browser test surface without persisting secrets.
Selected endpoint
Returns the country code and default dial code inferred from Cloudflare geo headers so the lead form can preselect the phone prefix.
No request body schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"title": "GeoPhoneCountryResponse",
"type": "object",
"additionalProperties": false,
"required": [
"ok",
"country",
"country_name",
"dial_code"
],
"properties": {
"ok": {
"type": "boolean",
"const": true
},
"country": {
"type": "string",
"minLength": 2,
"maxLength": 2
},
"country_name": {
"type": [
"string",
"null"
]
},
"dial_code": {
"type": "string",
"pattern": "^\\+\\d+$"
}
}
} Send a request to inspect the live response.