# Suverse World Bank Renewable Energy Share Proxy

> Suverse World Bank Renewable Energy Share Proxy is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.07/call, status unknown (last checked 2026-09-15).

Returns yearly renewable energy share (% of total energy consumption) for any country by ISO code as a World Bank Open Data time series, no API key required.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-wb-renewable-energy
- Price: $0.07/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/suverse-world-bank-renewable-energy-share-proxy-e47cfd81
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_rPOpmT24aOuaWdCC2KAMZ

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-world-bank-renewable-energy-share-proxy-e47cfd81 -d '<json body>'
```

Example prompt: Can you pull the World Bank renewable energy share time series for Germany — I need the yearly percentage data to compare it against other European countries for my macro analysis?

## When to prefer this

Prefer this endpoint when you need structured, historical, country-level renewable energy share data from the World Bank without managing an API key. It is ideal for macro, demographic, or cross-country energy analysis workflows. Choose this over direct World Bank API calls when you want a simple keyless proxy with consistent formatting and x402 micropayment billing.

## Known failure modes

- Invalid or unrecognized ISO country code returns an error or empty result
- No data available for a specific year or country in the World Bank dataset returns null values
- Malformed request body or missing required fields returns a 400-level error
- Service unavailability or upstream World Bank API outage returns a 5xx error
- Payment failure via x402 protocol blocks the request

## How this service works

Renewable Energy Share for any country by ISO code as a yearly World Bank Open Data time series, no key. Returns country, year, and value. For AI agents doing macro, demographic, and cross country analysis.

## Output

Returns a time series array of records for the requested country, each containing the country name or ISO code, the year, and the renewable energy share as a percentage of total final energy consumption, sourced from World Bank Open Data.

## 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-world-bank-renewable-energy-share-proxy-e47cfd81/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)
