Get country purchasing power parity
Get purchasing power parity for country
Path parameters
-
ISO-3166 Alpha2 or Alpha3 code for country
GET /countries/{countryCode}/purchasing-power
curl \
-X GET https://api.tellusdb.com/v1/countries/US/purchasing-power?token=api_token_value
Response examples (200)
{
"result": {
"country": {
"iso3166": {
"alpha2": "DK",
"alpha3": "DNK",
"numeric": "208"
},
"currencies": {
"DKK": {
"name": "Danish Krone",
"symbol": "kr"
}
}
},
"purchasing_power": {
"year": 2022,
"value": 6.404699,
"conversion_factor": 0.9061111957239999
}
},
"time_taken_ms": 1.3892211
}