# DeepSearch KRX IR Documents API

> DeepSearch KRX IR Documents API is a paid API for AI agents from x402.deepsearch.com, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Retrieves official investor relations documents (earnings announcements, corporate briefings) for KRX-listed companies, returning title, published date, and PDF URL.

## Facts

- Endpoint: GET https://x402.deepsearch.com/v1/context/ir/:ticker
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/deepsearch-krx-ir-documents-api-3aeeb263
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_RRLAhj7IQeRrYJKEoilYL

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 deepsearch-krx-ir-documents-api-3aeeb263
```

Example prompt: Can you pull up the official IR documents and earnings announcements for Samsung Electronics — KRX ticker 005930 — and give me links to the PDFs?

## When to prefer this

Use this endpoint when you need official investor relations documents (earnings announcements, corporate briefings) for KRX-listed Korean companies and require direct PDF links. Prefer this over news or price endpoints when the user specifically needs formal IR filings rather than news summaries or financial metrics.

## Known failure modes

- Invalid or non-existent KRX ticker returns empty results or 404
- Non-KRX listed companies (e.g. NYSE, NASDAQ tickers) will not return results
- Payment failure if USDC balance is insufficient for $0.05 per call
- Ticker must be 6-digit KRX format; malformed tickers return validation error
- No IR documents available if company has not published any

## How this service works

Official IR documents (earnings announcements, corporate briefings) published by the company. Returns title, published date, and PDF URL. KRX-listed companies only.

## Output

A list of official IR documents for the specified KRX-listed company, each including the document title, publication date, and a direct PDF URL for earnings announcements and corporate briefings.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "queryParams": {
   "ticker": "005930",
   "exchange": "KRX"
  }
 }
}
```

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "ticker"
     ],
     "properties": {
      "ticker": {
       "type": "string",
       "description": "6-digit KRX ticker code"
      },
      "exchange": {
       "type": "string",
       "description": "Exchange code. Default: KRX"
      }
     }
    }
   },
   "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/deepsearch-krx-ir-documents-api-3aeeb263/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.deepsearch.com](https://www.zero.xyz/host/x402.deepsearch.com/llms.txt)
