POST
/
api
/
v1
/
inflation_factors
curl --request POST \
  --url https://terrapinfinance.com/api/v1/inflation_factors \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "country": "DE",
  "from_date": "2024-07-17",
  "to_date": "2024-07-17"
}'
{
  "data": [
    {
      "factor": 127.43,
      "factor_date": "2025-06-01",
      "factor_type": "Eurostat"
    }
  ],
  "total": 1
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

200
application/json

Inflation factors

The response is of type object.