Catalog/gov-country-development-snapshot

Government

Country development snapshot vs all countries (percentile) API

For one country, the latest value of five development indicators PLUS where that country ranks globally for each (percentile against every other country, direction-aware so lower-is-better metrics like inflation/CO2 are scored correctly). The derived peer-percentile is the value: it says not just 'what' but 'how this country compares to the world'. Answers 'how developed is this country relative to others', 'is its life expectancy above or below the global norm', 'global percentile for GDP per capita'.

Price$0.01per request
MethodPOST
Route/v1/gov/country-development-snapshot
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache86400s public
govecon-dataworld-bankdevelopmentpercentilesnapshotpeer-comparisonderived
API URLhttps://x402.hexl.dev/v1/gov/country-development-snapshot
Integration docs
Example request
{
  "country": "DE"
}
Example response
{
  "country": "DE",
  "indicators": {
    "gdpPerCapitaUsd": {
      "value": 56103.7323,
      "year": 2024,
      "higherIsBetter": true,
      "globalPercentile": 88.84,
      "comparedAgainst": 215
    },
    "lifeExpectancyYears": {
      "value": 80.7927,
      "year": 2024,
      "higherIsBetter": true,
      "globalPercentile": 78.44,
      "comparedAgainst": 218
    },
    "internetUsersPct": {
      "value": null,
      "year": null,
      "higherIsBetter": true,
      "globalPercentile": null,
      "comparedAgainst": null
    },
    "co2PerCapitaTons": {
      "value": null,
      "year": null,
      "higherIsBetter": false,
      "globalPercentile": null,
      "comparedAgainst": null
    },
    "inflationPct": {
      "value": 2.2565,
      "year": 2024,
      "higherIsBetter": false,
      "globalPercentile": 65.8,
      "comparedAgainst": 193
    }
  },
  "note": "globalPercentile is where this country sits among all countries for that indicator (100 = best given direction)."
}
Input schema
{
  "type": "object",
  "required": [
    "country"
  ],
  "properties": {
    "country": {
      "type": "string",
      "description": "2- or 3-letter ISO country code (e.g. DE, DEU)."
    }
  }
}
Output schema
{
  "type": "object",
  "additionalProperties": true
}