Appearance
Country Metadata
GET /country-metadata
Retrieves ISO 3166-1 country reference mapping (alpha-2, alpha-3, numeric codes, names) used across SiteAtlas domain intelligence reports.
For users migrating from the legacy RapidAPI response, see the v1 to v2 migration guide.
Query Parameters
This endpoint accepts no query parameters.
Example Request
bash
curl -X GET "https://api.databee.dev/siteatlas/country-metadata" \
-H "Authorization: Bearer YOUR_DATABEE_API_KEY"Response Schema (200 OK)
json
{
"status": "success",
"meta": {
"count": 249,
"standard": "ISO 3166-1"
},
"countries": [
{
"name": "United States",
"alpha2": "US",
"alpha3": "USA",
"numeric": "840"
},
{
"name": "India",
"alpha2": "IN",
"alpha3": "IND",
"numeric": "356"
}
]
}