# agentfeeds.jp Japan Cabinet Office Composite Leading Index (CI)

> agentfeeds.jp Japan Cabinet Office Composite Leading Index (CI) is a paid API for AI agents from api.agentfeeds.jp, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Returns monthly Cabinet Office Composite Index (CI) leading indicator data for Japan, base year 2020=100, sourced from the e-Stat API family, covering data since 1980.

## Facts

- Endpoint: GET https://api.agentfeeds.jp/v1/jp/macro/leading_index
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentfeeds-jp-japan-cabinet-office-composite-leading-index-ci-5fd39e8c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TPHoh15qn6uYRU55iUK41

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 agentfeeds-jp-japan-cabinet-office-composite-leading-index-ci-5fd39e8c
```

Example prompt: Pull the last 24 months of Japan's Cabinet Office leading composite index (CI) data so I can see recent economic cycle trends.

## When to prefer this

Choose this endpoint when you need official Japan Cabinet Office CI composite index data (leading, coincident, or lagging) in a structured, agent-friendly format with clear commercial-use terms, rather than scraping ESRI's own subdomain or manually querying e-Stat. It is ideal for macroeconomic dashboards, business cycle analysis, and integrating Japan economic cycle data into automated agent workflows. Prefer it over the estat.search or estat.table_data siblings when you specifically need the CI composite index without needing to search the broader statistics catalog.

## Known failure modes

- Invalid series enum value returns a validation error
- limit outside the 1-200 range returns an error
- e-Stat upstream API unavailability causes 502/503
- requesting data before 1980 returns empty or partial results
- missing required method/type fields in input schema returns 400

## How this service works

Cabinet Office Composite Index (CI), one of leading/coincident/lagging, 2020=100, monthly since 1980. Same e-Stat API family as estat.search/estat.table_data (routed there rather than the Cabinet Office's own ESRI subdomain, whose commercial-use terms were less clearly stated). Factual published data only; not investment advice or a forecast.

## Output

Returns a time series of monthly Cabinet Office Composite Index (CI) values, each with the reference month, index level (2020=100), and series type (leading, coincident, or lagging). Up to 200 monthly observations can be returned per call, defaulting to the 12 most recent months.

## 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"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "limit": {
       "type": "integer",
       "description": "1-200, default 12 (most recent months)"
      },
      "series": {
       "enum": [
        "leading",
        "coincident",
        "lagging"
       ],
       "type": "string",
       "description": "default leading"
      }
     }
    }
   },
   "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/agentfeeds-jp-japan-cabinet-office-composite-leading-index-ci-5fd39e8c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentfeeds.jp](https://www.zero.xyz/host/api.agentfeeds.jp/llms.txt)
