/v1/search
Search by name or government type
Live testen
10 freie Calls pro Tag — keine Anmeldung, kein API-Key. Geht durchs oanor-Gateway.
Funktioniert. Hol dir einen API-Key und nutze sie in deinem Projekt.
API-Key holenCode-Snippets
curl "https://api.oanor.com/countrystats-api/v1/search" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/countrystats-api/v1/search", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/countrystats-api/v1/search");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/countrystats-api/v1/search",
headers={"x-oanor-key": "oanor_test_..."}
)
Beispiel-Response
Echte Antwort dieses Endpoints, erfasst beim letzten Health-Check.
{
"data": {
"count": 25,
"query": "republic",
"total": 146,
"countries": [
{
"code": "AL",
"emoji": "🇦🇱",
"country": "Albania",
"area_km2": 28748,
"government": "Republic",
"landlocked": false,
"population": 2866376,
"life_expectancy": 71.6,
"population_density": 104.6
},
{
"code": "DZ",
"emoji": "🇩🇿",
"country": "Algeria",
"area_km2": 2381741,
"government": "Republic",
"landlocked": false,
"population": 42228429,
"life_expectancy": 69.7,
"population_density": 17.7
},
{
"code": "AO",
"emoji": "🇦🇴",
"country": "Angola",
"area_km2": 1246700,
"government": "Republic",
"landlocked": false,
"population": 30809762,
"life_expectancy": 38.3,
"population_density": 24.7
},
{
"code": "AR",
"emoji": "🇦🇷",
"country": "Argentina",
"area_km2": 2780400,
"government": "Federal Republic",
"landlocked": false,
"population": 44494502,
"life_expectancy": 75.1,
"population_density": 16.3
},
{
"code": "AM",
"emoji": "🇦🇲",
"country": "Armenia",
"area_km2": 29800,
"government": "Republic",
"landlocked": true,
"population": 2951776,
"life_expectancy": 66.4,
"population_density": 103.7
},
{
"code": "AT",
"emoji": "🇦🇹",
"country": "Austria",
"area_km2": 83859,
"government": "Federal Republic",
"landlocked": true,
"population": 8840521,
"life_expectancy": 77.7,
"population_density": 107.2
},
{
"code": "AZ",
"emoji": "🇦🇿",
"country": "Azerbaijan",
"area_km2": 86600,
"government": "Federal Republic",
"landlocked": true,
"population": 9939800,
"life_expectancy": 62.9,
"population_density": 120.3
},
{
"code": "BD",
"emoji": "🇧🇩",
"country": "Bangladesh",
"area_km2": 143998,
"government": "Republic",
"landlocked": false,
"population": 161356039,
"life_ex
…