πŸ‡°πŸ‡· Korea KIPRIS Plus Β· νŠΉν—ˆμ²­ KIPO νŠΉν—ˆ μƒν‘œ λ””μžμΈ avatar

πŸ‡°πŸ‡· Korea KIPRIS Plus Β· νŠΉν—ˆμ²­ KIPO νŠΉν—ˆ μƒν‘œ λ””μžμΈ

Pricing

from $80.00 / 1,000 ip records

Go to Apify Store
πŸ‡°πŸ‡· Korea KIPRIS Plus Β· νŠΉν—ˆμ²­ KIPO νŠΉν—ˆ μƒν‘œ λ””μžμΈ

πŸ‡°πŸ‡· Korea KIPRIS Plus Β· νŠΉν—ˆμ²­ KIPO νŠΉν—ˆ μƒν‘œ λ””μžμΈ

Search Korean KIPO patents, utility models, designs, and trademarks via KIPRIS Plus (KIPO's official open API). Structured JSON: applicant, inventor, IPC class, filing/publication/registration dates, document URLs. Korean IP source-of-record β€” Google Patents has a 4-6 mo lag and zero utility models.

Pricing

from $80.00 / 1,000 ip records

Rating

0.0

(0)

Developer

NexGenData

NexGenData

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

5 hours ago

Last modified

Categories

Share

πŸ“œ Korea KIPRIS Plus β€” KIPO Patents, Trademarks, Designs Search

Korean Intellectual Property Office (KIPO) β€” official open-API access via KIPRIS Plus. Search Korean patents (νŠΉν—ˆ), utility models (μ‹€μš©μ‹ μ•ˆ), industrial designs (λ””μžμΈ), and trademarks (μƒν‘œ) with structured JSON output, IPC / Locarno / Nice classification, applicant + inventor metadata, and direct document URLs.

KIPRIS Plus (plus.kipris.or.kr) is KIPO's official open-data partner endpoint β€” the source-of-record for Korean IP rights, including 4–6 months of recent filings that Google Patents has not yet indexed, plus the utility model corpus that Google Patents does not cover at all.


⚑ What you get

FieldDescription
right_typepatent / utility_model / design / trademark
application_numberKIPO application number (μΆœμ›λ²ˆν˜Έ)
registration_numberKIPO registration number (λ“±λ‘λ²ˆν˜Έ) β€” null if pending
titleKorean title (발λͺ…μ˜ λͺ…μΉ­ / μƒν‘œλͺ… / λ””μžμΈλͺ…)
title_englishEnglish title when KIPO recorded a bilingual filing
abstractKorean abstract (μš”μ•½) for patents / utility models
abstract_englishEnglish summary if available
applicant_namesArray of applicants (μΆœμ›μΈ) β€” Korean company names
inventor_namesArray of inventors (발λͺ…μž / λ””μžμ΄λ„ˆ)
IPC_codesInternational Patent Classification (Locarno for designs, Nice for trademarks)
application_dateFiling date (ISO YYYY-MM-DD)
publication_datePublication / open date (곡개일)
registration_dateGrant date (등둝일) β€” null if pending
statusregistered / pending
document_urlDirect link to KIPRIS document viewer
priority_filingsCross-references to priority applications (Paris Convention)
source_urlhttps://plus.kipris.or.kr/

🎯 Use cases

  1. IP due diligence (M&A, licensing) β€” pull the complete Korean IP footprint of a target company in seconds, including pending utility models that Google Patents misses.
  2. Competitor patent monitoring β€” schedule weekly scans of a competitor's applicant name + IPC class to surface new filings within 24 hours of KIPRIS publication.
  3. Korean IP portfolio analysis β€” export an applicant's full patent + trademark + design portfolio for portfolio-strength scoring or IPC-class heat maps.
  4. Priority filing tracking β€” identify Paris-Convention priorities filed in KIPO that may lead to PCT or US/EP downstream filings.
  5. Trademark clearance (Korean market entry) β€” search Nice-class trademarks before launching a brand in Korea.

πŸ”‘ KIPRIS Plus API token (required)

KIPRIS Plus is a token-gated open API. Per KIPRIS Plus Terms of Service Β§4, each user must register their own free ServiceKey β€” NexGenData does not (and cannot) pool tokens.

Registration is free and takes ~5 minutes:

  1. Sign up at https://plus.kipris.or.kr/portal/main.do
  2. Apply for the ServiceKey under "μ˜€ν”ˆAPI ν™œμš©μ‹ μ²­" (Open API Application)
  3. Approval is typically immediate to 1 business day
  4. Copy the ServiceKey into this actor's kipris_plus_token input

The actor handles missing or invalid tokens gracefully β€” it returns a structured error record and exits cleanly (no crashed run, no charge for the search event).


πŸ“Š Sample output

Korea KIPRIS Plus sample output


πŸš€ How to use

{
"kipris_plus_token": "YOUR_KIPRIS_PLUS_SERVICEKEY",
"search_type": "patent",
"query": "λ¦¬νŠ¬μ΄μ˜¨λ°°ν„°λ¦¬",
"applicant_filter": "LGν™”ν•™",
"date_from": "2025-01-01",
"date_to": "2026-05-31",
"max_records": 200
}

Example input β€” trademark clearance

{
"kipris_plus_token": "YOUR_KIPRIS_PLUS_SERVICEKEY",
"search_type": "trademark",
"query": "NexGenData",
"max_records": 50
}

Apify Python client

from apify_client import ApifyClient
client = ApifyClient("<YOUR_APIFY_TOKEN>")
run = client.actor("nexgendata/korea-kipo-kipris-plus-patents-trademarks").call(
run_input={
"kipris_plus_token": "YOUR_KIPRIS_PLUS_SERVICEKEY",
"search_type": "patent",
"query": "lithium-ion battery",
"applicant_filter": "μ‚Όμ„±SDI",
"max_records": 100,
}
)
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item["application_number"], item["title"], item["status"])

cURL

curl "https://api.apify.com/v2/acts/nexgendata~korea-kipo-kipris-plus-patents-trademarks/run-sync-get-dataset-items?token=$APIFY_TOKEN" \
-H 'Content-Type: application/json' \
-d '{
"kipris_plus_token": "YOUR_KIPRIS_PLUS_SERVICEKEY",
"search_type": "patent",
"query": "λ¦¬νŠ¬μ΄μ˜¨λ°°ν„°λ¦¬",
"max_records": 50
}'

MCP integration

Add this actor to any MCP-compatible AI agent (Claude, GPT-4, custom LLMs) via the Apify MCP Server. The agent can then call:

"Find all KIPO patents filed by Samsung SDI on lithium-ion battery cathode materials in the last 12 months."


ν•œκ΅­μ–΄ μ„€λͺ…

νŠΉν—ˆμ²­(KIPO)의 곡식 μ˜€ν”ˆλ°μ΄ν„° νŒŒνŠΈλ„ˆμΈ KIPRIS Plusλ₯Ό 톡해 ν•œκ΅­ νŠΉν—ˆ, μ‹€μš©μ‹ μ•ˆ, λ””μžμΈ, μƒν‘œ 정보λ₯Ό κ΅¬μ‘°ν™”λœ λ°μ΄ν„°λ‘œ μ œκ³΅ν•©λ‹ˆλ‹€.

μ£Όμš” μš©λ„:

  • IP λ“€λ”œλ¦¬μ „μŠ€ (M&A, 라이선싱)
  • κ²½μŸμ‚¬ νŠΉν—ˆ λͺ¨λ‹ˆν„°λ§
  • ν•œκ΅­ IP 포트폴리였 뢄석
  • μš°μ„ κΆŒ μΆœμ› 좔적

KIPRIS Plus ServiceKey λ°œκΈ‰:

  1. https://plus.kipris.or.kr/portal/main.do μ—μ„œ 무료 κ°€μž…
  2. "μ˜€ν”ˆAPI ν™œμš©μ‹ μ²­"μ—μ„œ ServiceKey μ‹ μ²­ (보톡 μ¦‰μ‹œ~1μ˜μ—…μΌ 승인)
  3. λ°œκΈ‰λ°›μ€ ServiceKeyλ₯Ό μ•‘ν„°μ˜ kipris_plus_token μž…λ ₯λž€μ— μž…λ ₯

KIPRIS Plus μ΄μš©μ•½κ΄€ Β§4에 따라 ServiceKeyλŠ” μ‚¬μš©μžλ³„λ‘œ λ°œκΈ‰λ˜λ©° κ³΅μœ ν•  수 μ—†μŠ΅λ‹ˆλ‹€. 이 μ•‘ν„°λŠ” μ‚¬μš©μžκ°€ 직접 λ°œκΈ‰λ°›μ€ ServiceKeyλ₯Ό μ‚¬μš©ν•˜λ―€λ‘œ KIPRIS Plus 정책에 μ™„μ „νžˆ λΆ€ν•©ν•©λ‹ˆλ‹€.

좜λ ₯ ν•„λ“œ: μΆœμ›λ²ˆν˜Έ, λ“±λ‘λ²ˆν˜Έ, 발λͺ…μ˜ λͺ…μΉ­(ν•œκ΅­μ–΄), μš”μ•½, μΆœμ›μΈ, 발λͺ…μž, IPC λΆ„λ₯˜, μΆœμ›μΌ, 곡개일, 등둝일, 등둝 μƒνƒœ, KIPRIS λ¬Έμ„œ URL, μš°μ„ κΆŒ μΆœμ› μ°Έμ‘° 정보.


  • Source: KIPRIS Plus (https://plus.kipris.or.kr/), the Korean Intellectual Property Office's official open-API partner endpoint
  • Legal basis: Korean Patent Act Β§193, Trademark Act Β§60, Design Protection Act Β§52 β€” public-disclosure mandates for granted/published IP rights
  • License: Public domain (open government data); KIPRIS Plus ToS requires source attribution which is included automatically in the source_url field of every record
  • Token policy: Per KIPRIS Plus ToS Β§4, ServiceKeys are issued per user and may not be pooled. This actor takes the user's own ServiceKey as input β€” no shared tokens.
  • Polite-bot UA: All upstream requests use NexGenDataBot/1.0 + From: header with contact email
  • Routing: All traffic is routed via plus.kipris.or.kr (KIPRIS Plus). The legacy www.kipris.or.kr endpoint rejects datacenter TLS due to Korean-domestic CA expectations and is not used.

❓ FAQ

Q: Why do I need to bring my own KIPRIS Plus token? A: KIPRIS Plus ToS Β§4 explicitly requires per-user ServiceKeys and prohibits pooling. Registration is free and approval is typically immediate to 1 business day.

Q: How does this compare to Google Patents? A: KIPRIS Plus is the source-of-record for Korean IP. Google Patents has a 4–6 month indexing lag on Korean filings and does not cover Korean utility models (μ‹€μš©μ‹ μ•ˆ) at all. For Korean IP due diligence, KIPRIS Plus is the only authoritative source.

Q: What's the difference between a patent and a utility model in Korea? A: Utility models (μ‹€μš©μ‹ μ•ˆ) cover incremental functional improvements; patents (νŠΉν—ˆ) require non-obvious inventive step. Utility models are common in Korean manufacturing and consumer electronics β€” and they're invisible to Google Patents.

Q: How are priority filings handled? A: When KIPRIS Plus exposes a priority application reference (Paris Convention Β§4), it's included in the priority_filings array with the priority number and date. This enables cross-jurisdiction joins to JPO, USPTO, EPO, and WIPO PCT records.

Q: Why is title_english sometimes null? A: KIPO only records bilingual titles when the applicant submitted one (more common for foreign filings under Paris Convention or PCT national-phase entry). Domestic Korean-only filings ship with Korean title only.

Q: What happens if my KIPRIS Plus token is invalid or rate-limited? A: The actor pushes a structured error record (_error: "kipris_plus_api_error", _error_code, _error_message) to the dataset and exits cleanly with no crash. No ip-record charges are applied if no rows are returned.


Use these alongside KIPRIS Plus for cross-jurisdiction IP intelligence:

ActorCoverage
USPTO Patent SearchUS patents β€” claims, prior art
EUIPO Trademark SearchEU trademarks β€” TMview & eSearch
WIPO PATENTSCOPE SearchPCT international applications
Trademark Search (USPTO)US trademark database lookup

🏷️ About NexGenData

NexGenData builds production-grade, source-of-record Apify actors for regulatory, financial, and IP data. Browse the full catalog at apify.com/nexgendata.