Discover/KITA API
live

KITA APIkita.net

Access Korea's import/export data by product (HSK code) and country, trade summaries, KITA notices, and news via 6 structured API endpoints.

Endpoint health
verified 2d ago
get_trade_by_product
get_total_trade_summary
get_trade_by_country
get_kita_notice_list
get_kita_news_list
6/6 passing latest checkself-healing
Endpoints
6
Updated
26d ago

What is the KITA API?

The KITA API provides 6 endpoints for accessing Korean trade statistics, policy news, and official announcements from the Korea International Trade Association. Endpoints like get_trade_by_product return HSK-coded product-level export and import figures, while get_trade_by_country breaks down trade volumes by partner country with year-over-year comparisons. Annual summaries, dataset freshness status, KITA notices, and news articles are also available.

Try it
Year (YYYY format) up to which data is returned.
Page number for pagination (20 results per page).
api.parse.bot/scraper/8c33e423-ae1e-4ce6-b5cc-cfdc6ac93b18/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/8c33e423-ae1e-4ce6-b5cc-cfdc6ac93b18/get_total_trade_summary?year=2025&page_num=1' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

Typed, relational, agent-ready

A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.

  • Fully typed · autocompletes
  • Objects link to objects
  • Typed errors & pagination

Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:

uv add parse-sdk
uv run parse init
uv run parse add --marketplace kita-net-api

uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.

"""Walkthrough: KITA Trade Statistics — bounded, re-runnable; every call capped."""
from parse_apis.kita_trade_statistics_api import Kita, HskDigit, Month, TradeDataNotFound

client = Kita()

# List Korea's annual trade summaries (most recent years first).
for summary in client.tradesummaries.list(year="2025", limit=3):
    print(summary.period, summary.export_amount, summary.balance)

# Drill into product-level trade using HSK 2-digit classification.
product = client.producttrades.list(year="2025", month=Month._01, hsk_digit=HskDigit.TWO, limit=1).first()
if product:
    print(product.hsk_code, product.product_name, product.cumulative.export)

# Top trading partner countries for a given month.
for country in client.countrytrades.list(year="2025", month=Month._05, limit=3):
    print(country.country_name, country.current_year.export, country.current_year.export_growth)

# Typed error handling: catch when trade data is unavailable.
try:
    for item in client.tradesummaries.list(year="1900", limit=1):
        print(item.period)
except TradeDataNotFound as exc:
    print(f"No data: {exc}")

# Latest KITA news articles.
news = client.newsarticles.list(limit=1).first()
if news:
    print(news.title, news.date)

# Dataset update status — check freshness of statistics.
for status in client.datasetstatuses.list(limit=3):
    print(status.label, status.latest_data_date, status.update_type)

print("exercised: tradesummaries.list / producttrades.list / countrytrades.list / newsarticles.list / datasetstatuses.list")
All endpoints · 6 totalmissing one? ·

Get Korea's total import/export trade summary by year. Returns annual data including export/import amounts (in thousands USD), growth rates, and trade balance. Results are sorted by year descending, paginated at 20 per page.

Input
ParamTypeDescription
yearstringYear (YYYY format) up to which data is returned.
page_numintegerPage number for pagination (20 results per page).
Response
{
  "type": "object",
  "fields": {
    "items": "array of trade summary objects with period, export_amount, export_growth, import_amount, import_growth, balance",
    "total_count": "integer total number of records available"
  },
  "sample": {
    "data": {
      "items": [
        {
          "period": "2025",
          "balance": "-1995308",
          "export_amount": "49176984",
          "export_growth": "-10.1",
          "import_amount": "51172292",
          "import_growth": "-6.1"
        }
      ],
      "total_count": 70
    },
    "status": "success"
  }
}

About the KITA API

Trade Statistics by Product and Country

get_trade_by_product accepts year, month, page_num, and hsk_digit (2, 4, or 6-digit classification) parameters and returns per-product rows containing hsk_code, product_name, cumulative export/import amounts, growth rates, balance, and current-month figures. Results sort by current-month export amount descending, 20 per page. get_trade_by_country takes the same year and month filters and returns per-country rows with country_code, country_name, and side-by-side previous_year and current-year export, import, growth rate, and balance fields — useful for direct year-over-year comparisons without additional transformation.

Annual Trade Summaries and Dataset Status

get_total_trade_summary returns Korea's aggregate annual trade record: period, export_amount, export_growth, import_amount, import_growth, and balance, all denominated in thousands USD. Pass a year parameter to limit results up to a specific year; pagination is available via page_num. To check how current any dataset is before querying, call get_stat_update_status, which returns a list of dataset entries with label (latest data period), latest_data_date, and update_type (frequency notation such as 월간 for monthly).

Notices and News

get_kita_notice_list returns paginated KITA official announcements with category, title, id, and date fields. get_kita_news_list returns trade policy and business news articles in the same shape. Both endpoints accept a page_index parameter for pagination. Neither endpoint currently exposes article body text — only metadata sufficient to identify and date each item.

Reliability & maintenanceVerified

The KITA API is a managed, monitored endpoint for kita.net — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when kita.net changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official kita.net API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
2d ago
Latest check
6/6 endpoints passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Track year-over-year changes in Korea's semiconductor export volumes using get_trade_by_product filtered to the relevant HSK code.
  • Build a dashboard of Korea's top 20 trading partners by current-year export value with get_trade_by_country.
  • Monitor annual trade balance trends over multiple decades using get_total_trade_summary with year-descending pagination.
  • Alert on newly published KITA policy announcements by polling get_kita_notice_list for new id values.
  • Cross-reference trade news publication dates from get_kita_news_list with market data to study announcement effects.
  • Verify data freshness before running batch queries by first calling get_stat_update_status to check latest_data_date per dataset.
  • Analyze Korea's trade deficit or surplus by product category at 2, 4, or 6-digit HSK granularity using the hsk_digit parameter.
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo1005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min

One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does KITA provide an official developer API?+
KITA does not publish a documented public developer API for external programmatic access to its trade statistics and news data.
What does `get_trade_by_product` return and how granular is the product classification?+
It returns rows identified by hsk_code and product_name, each containing cumulative and current-month export amount, export growth, import amount, import growth, and trade balance. The hsk_digit parameter controls whether codes are at 2-digit (broad category), 4-digit (subheading), or 6-digit (detailed item) level. Results are sorted by current-month export amount descending and paginated at 20 per page.
How does `get_trade_by_country` handle year-over-year comparison?+
Each country row includes separate previous_year and current-year blocks, each containing export, import, growth rate, and balance fields. This means the comparison is embedded in the response — no need to fetch two separate requests and join them. Filter by year and month to scope the current-year period.
Does the API return the full text of KITA news articles or notices?+
Not currently. Both get_kita_news_list and get_kita_notice_list return metadata only: category, title, id, and date. Full article body text is not included in the response. You can fork this API on Parse and revise it to add a detail endpoint that fetches article content by ID.
Is trade data available for countries other than Korea, or for sub-national regions within Korea?+
The API covers Korea's national-level trade statistics only — aggregate figures for Korea as an exporter and importer. Data broken down by Korean province, port, or free-trade zone is not currently exposed. You can fork the API on Parse and revise it to add the missing endpoint if regional breakdowns become a requirement.
Page content last updated . Spec covers 6 endpoints from kita.net.
Related APIs in FinanceSee all →
trademap.org API
Access comprehensive global trade statistics including bilateral trade flows, product exports by country, and historical trade indicators to analyze international commerce trends. Monitor trade data availability and retrieve time series information to track how specific products and countries perform in the global market.
wits.worldbank.org API
Access comprehensive trade statistics, tariffs, and development indicators for countries worldwide through the World Bank's WITS platform. Look up country trade profiles, compare bilateral trade relationships between partners, and analyze key metrics including export/import volumes, tariff rates, GDP, and FDI. Ideal for researching international commerce, trade policy, and economic indicators across any country or region.
beta.trademap.org API
Analyze international trade patterns by accessing comprehensive goods and services trade statistics, time series data, and trade indicators across countries and product classifications. Track trade flows using standardized HS and EBOPS product codes to compare performance metrics and coverage across different markets and time periods.
tradingeconomics.com API
Access real-time economic calendars, macroeconomic indicators, and commodity prices across global markets including G20 nations and emerging economies. Monitor historical charts, country-specific economic data, and the latest financial news to track economic trends and make informed investment decisions.
tradestat.commerce.gov.in API
Analyze India's trade patterns by searching export-import data across commodities, countries, and regions using HS codes and historical records. Track bilateral trade flows and commodity-wise statistics to understand market trends and make informed trade decisions.
feed.bithumb.com API
Access real-time cryptocurrency market data from Bithumb Korea, including ticker prices in KRW and BTC, order books, transaction history, and candlestick charts. Stay informed with the latest notices, press releases, and trend reports directly from the exchange.
trademo.com API
Access comprehensive global trade data to search companies, find manufacturers by country, and review detailed trade profiles, sanctions lists, and politically exposed persons (PEP) lists. Monitor global trade indices and build a complete directory of international trading partners and compliance information.
tradeindia.com API
Search and discover products, suppliers, and their contact information on TradeIndia's B2B marketplace. Browse product categories, find supplier profiles, and explore upcoming tradeshows and industry events — including locations, dates, venues, and organizer details.