# 로봇인사이트 Robot Industry Intelligence API

> 로봇인사이트 Robot Industry Intelligence API is a paid API for AI agents from robotinsight.kr, paid per call via x402, $0.11/call, status unknown (last checked 2026-09-15).

Retrieves Korean-language news and analysis on the global, US, and Korean robotics industry — covering humanoid robots, physical AI, collaborative robots, and component supply chains — with configurable depth levels.

## Facts

- Endpoint: GET https://robotinsight.kr/api/intel
- Price: $0.11/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/robot-industry-intelligence-api-e994ca4b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_3mCxSwddzHirf_evyysku

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 robot-industry-intelligence-api-e994ca4b
```

Example prompt: Pull the latest 10 full-depth articles from 로봇인사이트 about humanoid robots in Korea since 2024-01-01 — I need the full body and sources for each one.

## When to prefer this

Choose this endpoint when you need Korean-language robotics industry intelligence covering humanoid robots, physical AI, collaborative robots, or supply chain topics across global, US, or Korean markets. It is the right choice when you need structured, paginated, depth-selectable access to curated robotics news and company analysis in Korean. Prefer alternatives if you need real-time news scraping, English-language robotics news, or general manufacturing industry data beyond robotics.

## Known failure modes

- Invalid depth enum value returns error
- Date range with until before since may return empty results or error
- Limit outside 1-100 range may be rejected
- Stale or invalid cursor from previous session may fail pagination
- Empty result set if keyword matches no articles in date range
- Payment failure (x402) if USDC balance insufficient

## How this service works

Korean robotics industry intelligence, sold per query. Structured feed of Korea/Asia robot-sector news, analysis and KPIs - humanoids, physical AI, robot components (reducers, actuators, MEMS force-torque and tactile sensors), robot semiconductors, defense and logistics robots - written from Korean primary reporting and DART filings that English-language sources do not cover. Filter by date, region, category and keyword. Pay per query in USDC on Base or Polygon; empty results free.

## Output

Returns a JSON response containing robotics industry articles in Korean, with content depth depending on the chosen level: index returns titles only, brief adds summaries and KPIs, and full adds the complete article body and source references. The response also includes a nextCursor field for pagination through additional results.

## Request schema (JSON Schema)

```json
{
 "properties": {
  "input": {
   "properties": {
    "method": {
     "type": "string",
     "enum": [
      "GET"
     ]
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "depth": {
       "type": "string",
       "enum": [
        "index",
        "brief",
        "full"
       ],
       "description": "index = slug/date/category/title/facets (FREE, any limit), brief = +summary +KPIs ($0.02/item), full = +body +sources ($0.10/item). Paid queries add a $0.01 base fee, waived on cursor continuations. Empty results are free."
      },
      "limit": {
       "type": "string",
       "description": "1-100, default 5"
      },
      "region": {
       "type": "string",
       "description": "comma-separated: world, us, korea, company"
      },
      "category": {
       "type": "string",
       "description": "comma-separated; raw Korean kicker substring or a facet from x-vocabulary in /openapi.json"
      },
      "since": {
       "type": "string",
       "description": "YYYY-MM-DD, inclusive"
      },
      "until": {
       "type": "string",
       "description": "YYYY-MM-DD, inclusive"
      },
      "q": {
       "type": "string",
       "description": "keyword, matched against title and summary. Korean content; common English terms are auto-mapped to Korean."
      },
      "cursor": {
       "type": "string",
       "description": "opaque id from a previous response's nextCursor"
      }
     }
    }
   },
   "required": [
    "method"
   ]
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/robot-industry-intelligence-api-e994ca4b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from robotinsight.kr](https://www.zero.xyz/host/robotinsight.kr/llms.txt)
