# Suverse Economy Lending Interest Rate

> Suverse Economy Lending Interest Rate is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-14).

Returns the annual bank lending interest rate (% charged to private sector) for a given country and optional year range, sourced from World Bank indicator FR.INR.LEND.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-economy-lending-interest-rate
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-economy-lending-interest-rate-d8fdf92c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_53re20naxh-xQnfs2cvA_

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability suverse-economy-lending-interest-rate-d8fdf92c -d '<json body>'
```

Example prompt: Can you look up the annual bank lending interest rate for Brazil from 2010 to 2022 using World Bank data?

## When to prefer this

Choose this endpoint when you need structured, World Bank-sourced annual lending interest rate data for any country, especially when building economic dashboards, conducting macroeconomic research, or comparing borrowing costs across countries over time. It is ideal for accessing the FR.INR.LEND indicator without needing a World Bank API key.

## Known failure modes

- Invalid or unsupported ISO country code returns an error or empty dataset
- Year range outside available World Bank data returns no results
- Missing required country code in request body causes validation error
- World Bank data gaps for certain countries/years return null values in the series
- Network or upstream World Bank API timeout causes service unavailability

## How this service works

Annual lending interest rate (% charged by banks to the private sector) for any country/year range. World Bank indicator FR.INR.LEND. Pass ISO country code (path) plus optional date range.

## Output

Returns a time series of annual lending interest rate values (%) for the specified country and year range, based on World Bank indicator FR.INR.LEND. Each data point includes the year and the corresponding interest rate percentage charged by banks to the private sector.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/suverse-economy-lending-interest-rate-d8fdf92c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
