Fixed-Rate Inflation Calculator: API and MCP
Fixed-Rate Inflation Calculator over REST and MCP: input fields, limits, outputs, one example request and its real answer. Free, no sign-up.
GET /api/v1/tools/finance.inflation/mcp/finance
- Id
finance.inflation- Version
- 1.0.0
- Access
- Free
- Tool page
- Fixed-Rate Inflation Calculator
- Schema
GET /api/v1/tools/finance.inflation
Input
| Field | Type | Constraints | Default | Description |
|---|---|---|---|---|
amount (required) | number | > 0, ≤ 1,000,000,000,000,000 | Initial amount | |
rate (required) | number | ≥ 0, ≤ 1,000 | Annual inflation rate (%) | |
years (required) | number | > 0, ≤ 100 | Period (years) |
Output
| Field | Type | Description |
|---|---|---|
futureCost | number | Future cost |
purchasingPower | number | Purchasing power |
cumulativeInflation | number | Total inflation (%) |
Example request
{
"input": {
"amount": 1000,
"rate": 10,
"years": 5
},
"locale": "en"
}Example answer
{
"output": {
"futureCost": 1610.5100000000004,
"purchasingPower": 620.9213230591549,
"cumulativeInflation": 61.05100000000006
},
"steps": [
{
"id": "futureCost",
"formula": "F = A × (1 + r)^t",
"substitution": "F = 1,000 × (1 + 10%)^5",
"value": 1610.5100000000004
},
{
"id": "purchasingPower",
"formula": "P = A / (1 + r)^t",
"substitution": "P = 1,000 / (1 + 10%)^5",
"value": 620.9213230591549
}
],
"meta": {
"toolVersion": "1.0.0",
"locale": "en"
},
"citation": {
"url": "https://hesaplayici.com/en/finance/inflation-calculator",
"title": "Fixed-Rate Inflation Calculator"
}
}