INTERACTIVE API PLAYGROUND

Execute API Requests Live

Test endpoints, modify headers & params, inspect live response envelopes, and generate multi-language SDK code.

Request Builder

Query Parameters
Headers
Response Payload
200 OK (14ms)
{
  "success": true,
  "message": "Countries fetched successfully",
  "data": [
    {
      "id": "cnt_ng",
      "iso2": "NG",
      "name": "Nigeria",
      "capital": "Abuja",
      "continent": "Africa",
      "phoneCode": "+234",
      "currency": "NGN"
    },
    {
      "id": "cnt_gh",
      "iso2": "GH",
      "name": "Ghana",
      "capital": "Accra",
      "continent": "Africa",
      "phoneCode": "+233",
      "currency": "GHS"
    }
  ],
  "pagination": {
    "page": 1,
    "limit": 10,
    "total": 240,
    "totalPages": 24
  },
  "metadata": {
    "timestamp": "2026-08-18T07:07:40.616Z",
    "version": "v1"
  }
}
api.upraisertech.name.ng/v1

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"
  }
}