AI summaries for the most recent DART filings of a Korean ticker
AI summaries for the most recent DART filings of a Korean ticker
25000 (raw units)
price
2
calls / 30d
1
unique payers
2026-09-16
updated
Provider
api.koreafilings.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "eip155:8453",
"payTo": "0x8467Be164C75824246CFd0fCa8E7F7009fB8f720",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "25000",
"maxTimeoutSeconds": 60
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"limit": {
"description": "Max filings to return (1–50, default 5). Final price is 0.005 × limit USDC. Note: the agent is charged for limit, not for the actual row count returned. A ticker with fewer recent filings than limit still costs the full amount; pre-filter via the free /v1/disclosures/recent feed if budget is tight. The response body's `delivered` field shows the actual count and `chargedFor` echoes the price multiplier.",
"required": false,
"type": "integer"
},
"ticker": {
"description": "Six-digit KRX ticker (e.g. 005930 for Samsung Electronics). Resolve from a company name first via the free /v1/companies?q={name} endpoint.",
"required": true,
"type": "string"
}
},
"type": "http"
},
"output": {
"example": {
"chargedFor": 5,
"count": 1,
"delivered": 1,
"summaries": [
{
"actionableFor": [
"traders"
],
"eventType": "OTHER",
"generatedAt": "2026-04-24T09:00:00Z",
"importanceScore": 7,
"rcptNo": "20260424900874",
"sectorTags": [
"Capital Goods"
],
"summaryEn": "AI-generated English summary of the disclosure.",
"tickerTags": [
"095440"
]
}
],
"ticker": "005930"
},
"type": "json"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"method": {
"enum": [
"GET",
"HEAD",
"DELETE"
],
"type": "string"
},
"queryParams": {
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://api.koreafilings.com/v1/disclosures/by-ticker" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://api.koreafilings.com/v1/disclosures/by-ticker");
if (res.status === 402) {
const { accepts } = await res.json();
// pay one of accepts[] via an x402 client, then retry with the payment header
}Python
import httpx
res = httpx.get("https://api.koreafilings.com/v1/disclosures/by-ticker")
if res.status_code == 402:
accepts = res.json()["accepts"]
# pay one of accepts[] via an x402 client, then retry with the payment headerMachine-readable
Everything on this page is also available as clean JSON at /resources/7922.json, and this resource appears in /discovery/resources and /discovery/search.