Korean government procurement award results (who won which contract, at what amount), curs
Korean government procurement award results (who won which contract, at what amount), cursor-based delta.
5000 (raw units)
price
1
calls / 30d
1
unique payers
2026-09-01
updated
Provider
dartapi.ljaysk.com · discovered, not yet claimed by its owner
Payment (x402 accepts[])
[
{
"scheme": "exact",
"network": "base",
"payTo": "0x3b20d22540deb3CF1162B195CD15756adb5ceB5D",
"asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
"amount": "5000",
"maxTimeoutSeconds": 300
},
{
"scheme": "exact",
"network": "solana",
"payTo": "5xrtB5SFAb214aC2EmLiyMJGop2EVef1zWBdDpLF7s9y",
"asset": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
"amount": "5000",
"maxTimeoutSeconds": 300
}
]Output schema
{
"bazaar": {
"info": {
"input": {
"method": "GET",
"queryParams": {
"limit": "100",
"since_cursor": "9000"
},
"type": "http"
},
"output": {
"example": {
"awards": [
{
"award_amount_krw": 210000000,
"award_dt": "2026-07-21 14:00",
"bid_ntce_no": "20260701000456",
"title": "청사 경비용역",
"winner": "OO시큐리티(주)"
}
],
"count": 1,
"cursor": 9012
},
"type": "object"
}
},
"schema": {
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"properties": {
"method": {
"enum": [
"GET"
],
"type": "string"
},
"queryParams": {
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method"
],
"type": "object"
},
"output": {
"properties": {
"example": {},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}
}
}Use it
curl
curl "https://dartapi.ljaysk.com/v1/awards" # -> 402 Payment Required, accepts[] lists how to pay # retry with a PAYMENT-SIGNATURE (or PAYMENT header) once paid
JavaScript
const res = await fetch("https://dartapi.ljaysk.com/v1/awards");
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://dartapi.ljaysk.com/v1/awards")
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/4993.json, and this resource appears in /discovery/resources and /discovery/search.