India
IN
Capital: New Delhi · Region: Asia
Overview
Request
curl example
curl -sS \ "https://example-data.com/api/v1/countries/30" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/countries/30" ); 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/30"
);
const country = (await res.json()) as Country; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/countries/30"
)
countrie = res.json() Response
{
"id": 30,
"name": "India",
"alpha2": "IN",
"alpha3": "IND",
"numericCode": "356",
"capital": "New Delhi",
"region": "Asia",
"subregion": "Southern Asia",
"currencyCode": "INR",
"callingCode": "+91",
"flagEmoji": "🇮🇳"
}