# Kktc Exchange Rates — REST API endpoint `kktc-exchange-rates`

Return live buy and sell exchange rates (against Turkish lira) from Northern Cyprus (KKTC) exchange offices and banks, per currency, with the best buy and best sell office. Optionally filter to one currency code.

- Category: finance
- MCP server: https://mcp.findutils.com/ (Streamable HTTP, no API keys, 120 req/min per IP)
- REST endpoint: POST https://api.findutils.com/api/tools/kktc-exchange-rates/execute (no API keys, 60 req/min per IP)
- Network tool: fetches a fixed, hard-coded public upstream (never a private host).
- Reference page: https://findutils.com/api/kktc-exchange-rates/
- Same tool on the other surface: https://findutils.com/mcp/kktc-exchange-rates/

## Call the endpoint (verified example)

```bash
curl -X POST https://api.findutils.com/api/tools/kktc-exchange-rates/execute \
  -H "Content-Type: application/json" \
  -d '{
    "currency": "GBP"
  }'

# Parameter schema
curl https://api.findutils.com/api/tools/kktc-exchange-rates
```

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `currency` | string | no | Optional ISO currency code to filter, e.g. "GBP", "USD", "EUR". Omit for all currencies. |

Example arguments (verified):

```json
{
  "currency": "GBP"
}
```

OpenAPI 3.1 spec: https://findutils.com/api/openapi.json · Interactive docs: https://findutils.com/api/docs/

## Also an MCP tool

```bash
claude mcp add findutils --transport http https://mcp.findutils.com/
```

Then ask the client to call `findutils:kktc_exchange_rates`. Full MCP reference: https://findutils.com/mcp/kktc-exchange-rates/

---
Full catalog: GET https://api.findutils.com/api/tools · https://findutils.com/api/ · https://findutils.com/llms.txt
