# ADH Riksbank Series Lookup

> ADH Riksbank Series Lookup is a paid API for AI agents from agentdatum.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Fetches processed Sveriges Riksbank economic time-series data (e.g. policy rate) with entity resolution, sourcing metadata, and observation date ranges.

## Facts

- Endpoint: GET https://agentdatum.com/api/v1/d/se-riksbank-series
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/adh-riksbank-series-lookup-92c59997
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_ht0KpOkI9NBHNebAXYdiw

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 adh-riksbank-series-lookup-92c59997
```

Example prompt: Can you pull the Sveriges Riksbank policy rate series data for me — I need the series ID, description, and the date range of available observations?

## When to prefer this

Choose this endpoint when you specifically need Sveriges Riksbank (Sweden's central bank) economic series metadata and observation date ranges, particularly for Swedish monetary policy rate (repo rate) data. It is ideal for macro regime analysis involving Sweden, SEK-denominated assets, or Scandinavian rate comparisons. Prefer it over generic financial data APIs when you need clean, entity-resolved, source-attributed central bank data at low cost via x402 micropayment.

## Known failure modes

- Missing or invalid required 'input' object returns a validation error
- Non-GET/HEAD/DELETE HTTP method rejected by schema
- Payment not settled via x402 results in 402 Payment Required response
- Upstream Riksbank data unavailable causes empty or error response
- Rate limiting if too many calls in short succession

## How this service works

ADH 金融情报层：把 239 个原始数据源洗成带实体解析、时间同步、溯源与派生结论的情报（宏观regime / 加密尽调 / 事件窗口），免费注入你的 AI 上下文。Agent 走 x402 结算，人类订阅（PayPal）即将上线。

## Output

A JSON object containing an array of Riksbank time-series records, each with fields: source ('Sveriges Riksbank'), seriesId (e.g. 'SECBREPOEFF'), groupId, seriesClosed flag, shortDescription, midDescription, longDescription (truncated), observationMinDate, observationMaxDate, plus top-level metadata: success flag, data_type ('经济指标'), and collected_at timestamp.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ]
    },
    "queryParams": {
     "type": "object",
     "properties": {},
     "required": []
    }
   },
   "required": [
    "type",
    "method"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "raw": {
   "data": [
    {
     "source": "Sveriges Riksbank",
     "groupId": 2,
     "seriesId": "SECBREPOEFF",
     "seriesClosed": false,
     "midDescription": "Policy rate",
     "longDescription": "The policy rate is the interest rate at which the banks can borrow or deposit in the Riksbank over a 7-day period. The p",
     "shortDescription": "Policy rate",
     "observationMaxDate": "2026-08-07",
     "observationMinDate": "1994-06-01"
    },
    {
     "source": "Sveriges Riksbank",
     "groupId": 2,
     "seriesId": "SECBREPOEFF",
     "seriesClosed": false,
     "midDescription": "Policy rate",
     "longDescription": "The policy rate is the interest rate at which the banks can borrow or deposit in the Riksbank over a 7-day period. The p",
     "shortDescription": "Policy rate",
     "observationMaxDate": "2026-08-07",
     "observationMinDate": "1994-06-01"
    }
   ],
   "success": true
  },
  "source": "generic_json",
  "data_type": "经济指标",
  "collected_at": "2026-08-09T18:15:02Z"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/adh-riksbank-series-lookup-92c59997/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agentdatum.com](https://www.zero.xyz/host/agentdatum.com/llms.txt)
