For the complete documentation index, see llms.txt.

Present Value Calculator API

finance 1 credit / call v2026-04-22 visual chart data

Discount a future value to present value with configurable compounding and chart-ready series.

One POST adds Present Value Calculator to your app, site, workflow, or agent — formula, validation, edge cases, and docs already handled.

prefer a UI? Open the Present Value Calculator on miniwebtool.com →

Start free — get a key → 1,000 credits · no card · 30 seconds

Endpoint

POST · 1cr
POST https://api.miniwebtool.com/v1/tools/present-value-calculator/run

Request body

Field Type Req.
future_value float
annual_rate_percent float
years float
compounding_per_year int
precision int

Cost & access

  • 1 credit per successful call — failed calls refund.
  • Starts on: Free.
  • Max payload: 65536 bytes.
  • Privacy mode: hash_only
  • Available on: free, starter, pro, business, scale

Response envelope

{
  "request_id": "01K...",
  "tool": "present-value-calculator",
  "tool_version": "2026-04-22",
  "credits_used": 1,
  "result": { ... }
}

Try it

Stored only in this browser tab. Playground test key is prefilled and only works on this page. Get a live key →

Get your own key

1,000 free calls/mo · no card · key arrives by email

One verification click, then your key + a ready-to-run request. No card, no spam.

Code examples

curl -X POST https://api.miniwebtool.com/v1/tools/present-value-calculator/run \
  -H 'Authorization: Bearer mwt_live_YOUR_KEY' \
  -H 'Content-Type: application/json' \
  -d '{}'
import requests

resp = requests.post(
    'https://api.miniwebtool.com/v1/tools/present-value-calculator/run',
    headers={'Authorization': 'Bearer mwt_live_YOUR_KEY'},
    json={},
)
resp.raise_for_status()
data = resp.json()
print(data)

result = data['result']
chart_data = result.get('chart_data', {})
balance_series = (
    chart_data.get('balance_over_time')
    or chart_data.get('minimum_payment_balance_over_time')
    or chart_data.get('series')
    or chart_data.get('points')
    or []
)
breakdown = (
    chart_data.get('payment_breakdown')
    or chart_data.get('monthly_payment_breakdown')
    or chart_data.get('total_cost_breakdown')
    or chart_data.get('breakdown')
    or chart_data.get('comparison')
    or []
)
strategy_series = chart_data.get('payment_strategy_comparison', [])
def chart_label(point):
    return point.get('label') or point.get('month') or point.get('year') or point.get('n') or point.get('x')
def chart_value(point):
    return point.get('value') or point.get('ending_balance') or point.get('y') or point.get('total_interest')
print('chart labels:', [chart_label(point) for point in balance_series])
print('chart values:', [chart_value(point) for point in balance_series])
print('breakdown:', breakdown)
print('strategy interest:', [(item['label'], item['total_interest']) for item in strategy_series])
const resp = await fetch(
  'https://api.miniwebtool.com/v1/tools/present-value-calculator/run',
  {
    method: 'POST',
    headers: {
      'Authorization': 'Bearer mwt_live_YOUR_KEY',
      'Content-Type': 'application/json',
    },
    body: JSON.stringify({}),
  }
);
const data = await resp.json();
console.log(data);

const result = data.result;
const chartData = result.chart_data ?? {};
const balanceSeries =
  chartData.balance_over_time ??
  chartData.minimum_payment_balance_over_time ??
  chartData.series ??
  chartData.points ??
  [];
const breakdown =
  chartData.payment_breakdown ??
  chartData.monthly_payment_breakdown ??
  chartData.total_cost_breakdown ??
  chartData.breakdown ??
  chartData.comparison ??
  [];

// Pass these arrays to Chart.js, Recharts, ECharts, etc.
const chartLabel = (item) =>
  item.label ?? item.month ?? item.year ?? item.n ?? item.x;
const chartValue = (item) =>
  item.value ?? item.ending_balance ?? item.y ?? item.total_interest;
const balanceChart = {
  labels: balanceSeries.map(chartLabel),
  values: balanceSeries.map(chartValue),
};
const breakdownChart = {
  labels: breakdown.map(chartLabel),
  values: breakdown.map(chartValue),
};
const strategySeries = chartData.payment_strategy_comparison ?? [];
const strategyChart = {
  labels: strategySeries.map((item) => item.label),
  values: strategySeries.map((item) => item.total_interest),
};
console.log({ balanceChart, breakdownChart, strategyChart });
<?php
$ch = curl_init('https://api.miniwebtool.com/v1/tools/present-value-calculator/run');
curl_setopt_array($ch, [
    CURLOPT_POST => true,
    CURLOPT_RETURNTRANSFER => true,
    CURLOPT_HTTPHEADER => [
        'Authorization: Bearer mwt_live_YOUR_KEY',
        'Content-Type: application/json',
    ],
    CURLOPT_POSTFIELDS => json_encode([

]),
]);
$resp = curl_exec($ch);
curl_close($ch);
print_r(json_decode($resp, true));
require 'net/http'
require 'json'
require 'uri'

uri = URI('https://api.miniwebtool.com/v1/tools/present-value-calculator/run')
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = (uri.scheme == 'https')

req = Net::HTTP::Post.new(uri)
req['Authorization'] = 'Bearer mwt_live_YOUR_KEY'
req['Content-Type'] = 'application/json'
req.body = {

}.to_json

resp = http.request(req)
puts JSON.parse(resp.body).inspect
package main

import (
  "bytes"
  "encoding/json"
  "fmt"
  "io"
  "net/http"
)

func main() {
  body, _ := json.Marshal(map[string]interface{}{
,
  })
  req, _ := http.NewRequest("POST", "https://api.miniwebtool.com/v1/tools/present-value-calculator/run", bytes.NewReader(body))
  req.Header.Set("Authorization", "Bearer mwt_live_YOUR_KEY")
  req.Header.Set("Content-Type", "application/json")

  resp, err := http.DefaultClient.Do(req)
  if err != nil { panic(err) }
  defer resp.Body.Close()
  out, _ := io.ReadAll(resp.Body)
  fmt.Println(string(out))
}
import java.net.URI;
import java.net.http.*;

var client = HttpClient.newHttpClient();
var req = HttpRequest.newBuilder()
    .uri(URI.create("https://api.miniwebtool.com/v1/tools/present-value-calculator/run"))
    .header("Authorization", "Bearer mwt_live_YOUR_KEY")
    .header("Content-Type", "application/json")
    .POST(HttpRequest.BodyPublishers.ofString("{}"))
    .build();

var resp = client.send(req, HttpResponse.BodyHandlers.ofString());
System.out.println(resp.body());
agents let your coding agent do it

Copy this into Claude Code, Cursor, Codex, Aider or Cline. It carries the endpoint, the full schema, a sample response, and the credit rules — so the agent wires present-value-calculator up correctly without draining your key.

Free to iterate: the prompt points the agent at POST /v1/tools/present-value-calculator/dry-run, which validates the request and returns the response shape for 0 credits. Only the final confirmation call is billed (1 credit).
Stable URL for this prompt: /tools/present-value-calculator/prompt.md (?variant=cursor / ?variant=mcp).
Paste into Claude Code, or save as CLAUDE.md context.
Integrate the MiniWebtool Present Value Calculator API into this project.

## Your task

1. Read the reference below.
2. Ask me where this belongs in the codebase if it is not obvious.
3. Write the integration in the language and style of the surrounding code:
   a small typed client function, errors handled, key read from the
   environment (never hard-coded, never committed).
4. Verify with `/dry-run` first, then exactly one live call.
5. Show me the diff and the live result.

## Credit budget — follow these exactly

This API is metered. A live call costs 1 credit; the free tier
includes 1,000 credits per month. Burning them during integration is the
single most common way to waste this key.

1. **Do all wiring against `/dry-run`, which costs 0 credits.** It validates the
   payload for real and returns a sample result with the exact response shape.
   Iterate there until your request builds and your parsing works.
2. **Make at most ONE live `/run` call** — a single end-to-end confirmation once
   dry-run passes. Print the result, then stop.
3. **Never call the API from unit tests, examples, or a retry loop.** Assert
   against the sample response captured from `/dry-run` instead.
4. **On 4xx, fix the payload — do not retry.** The error body is RFC 7807
   `application/problem+json` and says exactly what is wrong.
5. **On 429, honour `Retry-After`** and back off; do not tighten the loop.
6. **Read `X-MWT-Credits-Remaining`** on every response. If it drops below 50,
   stop making live calls and tell me.
7. If the integration needs repeated calls at runtime, **cache by input** — this
   tool is deterministic, so the same input always returns the same output.

## The API

**Present Value Calculator** — Discount a future value to present value with configurable compounding and chart-ready series.

- Live endpoint: `POST https://api.miniwebtool.com/v1/tools/present-value-calculator/run` — costs 1 credit
- Dry run: `POST https://api.miniwebtool.com/v1/tools/present-value-calculator/dry-run` — costs 0 credits, same auth and validation
- Auth: `Authorization: Bearer <MINIWEBTOOL_API_KEY>`
- Content type: `application/json`
- Tool version: `2026-04-22` (output shape is stable within a major version)
- Full machine-readable spec: `https://api.miniwebtool.com/v1/openapi.json`

### Request body

| field | type | required | notes |
|---|---|---|---|
| `future_value` | float | no | (default `10000`) |
| `annual_rate_percent` | float | no | (default `5`) |
| `years` | float | no | (default `10`) |
| `compounding_per_year` | int | no | (default `1`) |
| `precision` | int | no | (default `2`) |

Example request body:

```json
{}
```

### Response envelope

```json
{
  "request_id": "req_01H…",
  "tool": "present-value-calculator",
  "tool_version": "2026-04-22",
  "credits_used": 1,
  "result": {
    "future_value": 10000.0,
    "annual_rate_percent": 5.0,
    "years": 10.0,
    "compounding_per_year": 1,
    "discount_factor": 1.62889463,
    "present_value": 6139.13,
    "total_discount": 3860.87,
    "chart_data": {
      "series": [
        {
          "label": "Year 0",
          "year": 0,
          "value": 10000.0
        },
        {
          "label": "Year 1",
          "year": 1,
          "value": 9523.81
        },
        {
          "label": "Year 2",
          "year": 2,
          "value": 9070.29
        },
        {
          "label": "Year 3",
          "year": 3,
          "value": 8638.38
        },
        {
          "label": "Year 4",
          "year": 4,
          "value": 8227.02
        },
        {
          "label": "Year 5",
          "year": 5,
          "value": 7835.26
        },
        {
          "label": "Year 6",
          "year": 6,
          "value": 7462.15
        },
        {
          "label": "Year 7",
          "year": 7,
          "value": 7106.81
        },
        {
          "label": "Year 8",
          "year": 8,
          "value": 6768.39
        },
        {
          "label": "Year 9",
          "year": 9,
          "value": 6446.09
        },
        {
          "label": "Year 10",
          "year": 10,
          "value": 6139.13
        }
      ],
      "breakdown": [
        {
          "label": "Present value",
          "value": 6139.13
        },
        {
          "label": "Discount",
          "value": 3860.87
        }
      ],
      "series_truncated": false
    }
  }
}
```

`result` holds the tool output. Errors come back as
`application/problem+json` with `type`, `title`, `status`, and `detail`.

### Getting a key

If `MINIWEBTOOL_API_KEY` is not already in the environment, stop and ask me for
one — do not sign up, scrape, or guess a key. Free keys: https://api.miniwebtool.com/dashboard/
Paste into Codex, Aider, Cline, or any coding agent.
Integrate the MiniWebtool Present Value Calculator API into this project.

## Your task

1. Read the reference below.
2. Ask me where this belongs in the codebase if it is not obvious.
3. Write the integration in the language and style of the surrounding code:
   a small typed client function, errors handled, key read from the
   environment (never hard-coded, never committed).
4. Verify with `/dry-run` first, then exactly one live call.
5. Show me the diff and the live result.

## Credit budget — follow these exactly

This API is metered. A live call costs 1 credit; the free tier
includes 1,000 credits per month. Burning them during integration is the
single most common way to waste this key.

1. **Do all wiring against `/dry-run`, which costs 0 credits.** It validates the
   payload for real and returns a sample result with the exact response shape.
   Iterate there until your request builds and your parsing works.
2. **Make at most ONE live `/run` call** — a single end-to-end confirmation once
   dry-run passes. Print the result, then stop.
3. **Never call the API from unit tests, examples, or a retry loop.** Assert
   against the sample response captured from `/dry-run` instead.
4. **On 4xx, fix the payload — do not retry.** The error body is RFC 7807
   `application/problem+json` and says exactly what is wrong.
5. **On 429, honour `Retry-After`** and back off; do not tighten the loop.
6. **Read `X-MWT-Credits-Remaining`** on every response. If it drops below 50,
   stop making live calls and tell me.
7. If the integration needs repeated calls at runtime, **cache by input** — this
   tool is deterministic, so the same input always returns the same output.

## The API

**Present Value Calculator** — Discount a future value to present value with configurable compounding and chart-ready series.

- Live endpoint: `POST https://api.miniwebtool.com/v1/tools/present-value-calculator/run` — costs 1 credit
- Dry run: `POST https://api.miniwebtool.com/v1/tools/present-value-calculator/dry-run` — costs 0 credits, same auth and validation
- Auth: `Authorization: Bearer <MINIWEBTOOL_API_KEY>`
- Content type: `application/json`
- Tool version: `2026-04-22` (output shape is stable within a major version)
- Full machine-readable spec: `https://api.miniwebtool.com/v1/openapi.json`

### Request body

| field | type | required | notes |
|---|---|---|---|
| `future_value` | float | no | (default `10000`) |
| `annual_rate_percent` | float | no | (default `5`) |
| `years` | float | no | (default `10`) |
| `compounding_per_year` | int | no | (default `1`) |
| `precision` | int | no | (default `2`) |

Example request body:

```json
{}
```

### Response envelope

```json
{
  "request_id": "req_01H…",
  "tool": "present-value-calculator",
  "tool_version": "2026-04-22",
  "credits_used": 1,
  "result": {
    "future_value": 10000.0,
    "annual_rate_percent": 5.0,
    "years": 10.0,
    "compounding_per_year": 1,
    "discount_factor": 1.62889463,
    "present_value": 6139.13,
    "total_discount": 3860.87,
    "chart_data": {
      "series": [
        {
          "label": "Year 0",
          "year": 0,
          "value": 10000.0
        },
        {
          "label": "Year 1",
          "year": 1,
          "value": 9523.81
        },
        {
          "label": "Year 2",
          "year": 2,
          "value": 9070.29
        },
        {
          "label": "Year 3",
          "year": 3,
          "value": 8638.38
        },
        {
          "label": "Year 4",
          "year": 4,
          "value": 8227.02
        },
        {
          "label": "Year 5",
          "year": 5,
          "value": 7835.26
        },
        {
          "label": "Year 6",
          "year": 6,
          "value": 7462.15
        },
        {
          "label": "Year 7",
          "year": 7,
          "value": 7106.81
        },
        {
          "label": "Year 8",
          "year": 8,
          "value": 6768.39
        },
        {
          "label": "Year 9",
          "year": 9,
          "value": 6446.09
        },
        {
          "label": "Year 10",
          "year": 10,
          "value": 6139.13
        }
      ],
      "breakdown": [
        {
          "label": "Present value",
          "value": 6139.13
        },
        {
          "label": "Discount",
          "value": 3860.87
        }
      ],
      "series_truncated": false
    }
  }
}
```

`result` holds the tool output. Errors come back as
`application/problem+json` with `type`, `title`, `status`, and `detail`.

### Getting a key

If `MINIWEBTOOL_API_KEY` is not already in the environment, stop and ask me for
one — do not sign up, scrape, or guess a key. Free keys: https://api.miniwebtool.com/dashboard/
Save as .cursor/rules/miniwebtool-present-value-calculator.mdc
---
description: MiniWebtool Present Value Calculator API — usage and credit budget
globs:
alwaysApply: false
---

# MiniWebtool Present Value Calculator API

## The API

**Present Value Calculator** — Discount a future value to present value with configurable compounding and chart-ready series.

- Live endpoint: `POST https://api.miniwebtool.com/v1/tools/present-value-calculator/run` — costs 1 credit
- Dry run: `POST https://api.miniwebtool.com/v1/tools/present-value-calculator/dry-run` — costs 0 credits, same auth and validation
- Auth: `Authorization: Bearer <MINIWEBTOOL_API_KEY>`
- Content type: `application/json`
- Tool version: `2026-04-22` (output shape is stable within a major version)
- Full machine-readable spec: `https://api.miniwebtool.com/v1/openapi.json`

### Request body

| field | type | required | notes |
|---|---|---|---|
| `future_value` | float | no | (default `10000`) |
| `annual_rate_percent` | float | no | (default `5`) |
| `years` | float | no | (default `10`) |
| `compounding_per_year` | int | no | (default `1`) |
| `precision` | int | no | (default `2`) |

Example request body:

```json
{}
```

### Response envelope

```json
{
  "request_id": "req_01H…",
  "tool": "present-value-calculator",
  "tool_version": "2026-04-22",
  "credits_used": 1,
  "result": {
    "future_value": 10000.0,
    "annual_rate_percent": 5.0,
    "years": 10.0,
    "compounding_per_year": 1,
    "discount_factor": 1.62889463,
    "present_value": 6139.13,
    "total_discount": 3860.87,
    "chart_data": {
      "series": [
        {
          "label": "Year 0",
          "year": 0,
          "value": 10000.0
        },
        {
          "label": "Year 1",
          "year": 1,
          "value": 9523.81
        },
        {
          "label": "Year 2",
          "year": 2,
          "value": 9070.29
        },
        {
          "label": "Year 3",
          "year": 3,
          "value": 8638.38
        },
        {
          "label": "Year 4",
          "year": 4,
          "value": 8227.02
        },
        {
          "label": "Year 5",
          "year": 5,
          "value": 7835.26
        },
        {
          "label": "Year 6",
          "year": 6,
          "value": 7462.15
        },
        {
          "label": "Year 7",
          "year": 7,
          "value": 7106.81
        },
        {
          "label": "Year 8",
          "year": 8,
          "value": 6768.39
        },
        {
          "label": "Year 9",
          "year": 9,
          "value": 6446.09
        },
        {
          "label": "Year 10",
          "year": 10,
          "value": 6139.13
        }
      ],
      "breakdown": [
        {
          "label": "Present value",
          "value": 6139.13
        },
        {
          "label": "Discount",
          "value": 3860.87
        }
      ],
      "series_truncated": false
    }
  }
}
```

`result` holds the tool output. Errors come back as
`application/problem+json` with `type`, `title`, `status`, and `detail`.

### Getting a key

If `MINIWEBTOOL_API_KEY` is not already in the environment, stop and ask me for
one — do not sign up, scrape, or guess a key. Free keys: https://api.miniwebtool.com/dashboard/

## Credit budget — follow these exactly

This API is metered. A live call costs 1 credit; the free tier
includes 1,000 credits per month. Burning them during integration is the
single most common way to waste this key.

1. **Do all wiring against `/dry-run`, which costs 0 credits.** It validates the
   payload for real and returns a sample result with the exact response shape.
   Iterate there until your request builds and your parsing works.
2. **Make at most ONE live `/run` call** — a single end-to-end confirmation once
   dry-run passes. Print the result, then stop.
3. **Never call the API from unit tests, examples, or a retry loop.** Assert
   against the sample response captured from `/dry-run` instead.
4. **On 4xx, fix the payload — do not retry.** The error body is RFC 7807
   `application/problem+json` and says exactly what is wrong.
5. **On 429, honour `Retry-After`** and back off; do not tighten the loop.
6. **Read `X-MWT-Credits-Remaining`** on every response. If it drops below 50,
   stop making live calls and tell me.
7. If the integration needs repeated calls at runtime, **cache by input** — this
   tool is deterministic, so the same input always returns the same output.
Skip the HTTP client — connect the agent directly.
Add the MiniWebtool MCP server to this project, then use the
`present-value-calculator` tool from it.

Server URL: https://api.miniwebtool.com/v1/mcp
Transport: HTTP (Streamable HTTP / JSON-RPC 2.0)
Auth header: `Authorization: Bearer <MINIWEBTOOL_API_KEY>`

Claude Code:

```bash
claude mcp add --transport http miniwebtool https://api.miniwebtool.com/v1/mcp \
  --header "Authorization: Bearer $MINIWEBTOOL_API_KEY"
```

Or add it to the MCP config file your client uses:

```json
{
  "mcpServers": {
    "miniwebtool": {
      "type": "http",
      "url": "https://api.miniwebtool.com/v1/mcp",
      "headers": { "Authorization": "Bearer ${MINIWEBTOOL_API_KEY}" }
    }
  }
}
```

Once connected, `tools/list` exposes `present-value-calculator` with its JSON Schema, so you can
call it directly instead of writing an HTTP client.

## Credit budget — follow these exactly

This API is metered. A live call costs 1 credit; the free tier
includes 1,000 credits per month. Burning them during integration is the
single most common way to waste this key.

1. **Do all wiring against `/dry-run`, which costs 0 credits.** It validates the
   payload for real and returns a sample result with the exact response shape.
   Iterate there until your request builds and your parsing works.
2. **Make at most ONE live `/run` call** — a single end-to-end confirmation once
   dry-run passes. Print the result, then stop.
3. **Never call the API from unit tests, examples, or a retry loop.** Assert
   against the sample response captured from `/dry-run` instead.
4. **On 4xx, fix the payload — do not retry.** The error body is RFC 7807
   `application/problem+json` and says exactly what is wrong.
5. **On 429, honour `Retry-After`** and back off; do not tighten the loop.
6. **Read `X-MWT-Credits-Remaining`** on every response. If it drops below 50,
   stop making live calls and tell me.
7. If the integration needs repeated calls at runtime, **cache by input** — this
   tool is deterministic, so the same input always returns the same output.
how-to call present-value-calculator
  1. Get an API key
    Get an API key. Sign up free for a bearer token. 1,000 credits/month, no card.
  2. Assemble the JSON body
    Required fields: . See the Request body table above for the full schema.
  3. POST to https://api.miniwebtool.com/v1/tools/present-value-calculator/run
    Headers: Authorization: Bearer <key> and Content-Type: application/json. Copy-paste snippets in 7 languages are under Code examples.
  4. Parse the response
    Envelope: {request_id, tool, tool_version, credits_used, result}. The typed output lives in result.
faq frequently asked
What does the Present Value Calculator API do?+

Discount a future value to present value with configurable compounding and chart-ready series. Use it to add this utility without rebuilding formulas, validation, examples, and documentation.

How much does one call to Present Value Calculator cost?+

1 credit per successful call. Failed calls (validation errors, 5xx) don't bill.

What parameters does the Present Value Calculator API require?+

Required fields: (none). Full schema at /v1/openapi.json.

Is the Present Value Calculator API deterministic?+

Yes — same input, same output, forever. Tool version 2026-04-22; output shape is stable within a major version.

Does the Present Value Calculator API include visual chart data?+

Yes. Successful responses include `result.chart_data` with compact arrays for line or bar charts, so clients can render visuals with Chart.js, Recharts, ECharts, SVG, or canvas without requesting an image.

Can an AI agent call the Present Value Calculator API?+

Yes. Connect to https://api.miniwebtool.com/v1/mcp over the Model Context Protocol. The agent discovers `present-value-calculator` with its JSON Schema automatically, so the model can plan while MiniWebtool handles the exact tool result.

What format does the API return?+

JSON with a stable envelope: `{request_id, tool, tool_version, credits_used, result}`. Errors are RFC 7807 `application/problem+json`.

mcp use from an AI agent

Every endpoint on this site is also exposed via the Model Context Protocol at https://api.miniwebtool.com/v1/mcp. Claude, Cursor, and any MCP-capable agent can discover this tool (present-value-calculator) and its JSON Schema automatically — no client codegen.

# List tools the agent can call
curl -s https://api.miniwebtool.com/v1/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' \
 | jq '.result.tools[] | select(.name=="present-value-calculator")'
see-also related finance tools