Request Example (JAVASCRIPT)
// JavaScript (Fetch API)
const response = await fetch("https://api.upraisertech.name.ng/v1/countries?continent=Africa", {
headers: {
"X-API-Key": "ut_live_98a76f5e4d3c2b1a0f9e8d7c"
}
});
const data = await response.json();
console.log(data.data);
Live JSON Envelope
200 OK • 14ms{
"success": true,
"message": "Countries fetched successfully",
"data": [
{
"id": "cnt_ng",
"iso2": "NG",
"iso3": "NGA",
"name": "Nigeria",
"capital": "Abuja",
"continent": "Africa",
"phoneCode": "+234",
"currency": "NGN",
"currencySymbol": "₦",
"flagUrl": "https://flagcdn.com/w320/ng.png",
"tld": ".ng",
"population": 218541212
},
{
"id": "cnt_gh",
"iso2": "GH",
"iso3": "GHA",
"name": "Ghana",
"capital": "Accra",
"continent": "Africa",
"phoneCode": "+233",
"currency": "GHS",
"currencySymbol": "GH₵"
}
],
"pagination": {
"page": 1,
"limit": 20,
"total": 54,
"totalPages": 3
},
"metadata": {
"timestamp": "2026-07-31T21:30:42Z",
"latencyMs": 14,
"version": "v1"
}
}