France
FR
Capital: Paris · Region: Europe
Overview
Request
curl example
curl -sS \ "https://example-data.com/api/v1/countries/12" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/countries/12" ); const country = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/countries.d.ts https://example-data.com/types/countries.d.ts
import type { Country } from "./types/countries";
const res = await fetch(
"https://example-data.com/api/v1/countries/12"
);
const country = (await res.json()) as Country; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/countries/12"
)
countrie = res.json() Response
{
"id": 12,
"name": "France",
"alpha2": "FR",
"alpha3": "FRA",
"numericCode": "250",
"capital": "Paris",
"region": "Europe",
"subregion": "Western Europe",
"currencyCode": "EUR",
"callingCode": "+33",
"flagEmoji": "🇫🇷"
}