专利搜索API
按关键词、技术领域或申请人查询全球专利文件。预先成型的JSON,用于先有技术搜索、IP图谱与AI驱动的研发分析。
Integration guide
Copy a snippet, replace your API key, run. Works in any HTTP client — examples below in cURL, JavaScript, and Python.
/api/search/patentshttps://www.apipick.com对全球专利文件的语义搜索。返回标题、摘要和可供下游LLM使用的源URL。
querystringrequiredNatural-language search query
max_num_resultsintegeroptional1–5, default 5
relevance_thresholdnumberoptional0.0–1.0 quality filter
country_codestringoptionalISO country code (e.g. US, GB)
start_datestringoptionalISO date YYYY-MM-DD
end_datestringoptionalISO date YYYY-MM-DD
curl -X POST "https://www.apipick.com/api/search/patents" \
-H "Content-Type: application/json" \
-H "x-api-key: YOUR_API_KEY" \
-d '{
"query": "Find prior art for neural network training optimization techniques",
"max_num_results": 5,
"country_code": "US",
"start_date": "2026-01-01"
}'{
"query": "Find prior art for neural network training optimization techniques",
"results": [
{
"title": "Example result",
"url": "https://example.com/article",
"snippet": "Short excerpt of the page content…",
"source_type": "web",
"published_at": "2026-04-15",
"score": 0.92
}
],
"result_count": 1,
"credits_used": 80,
"remaining_credits": 99
}Rate limits
Throttling is per API key, sliding 60-second window. Hit the limit and you get a clean 429 with a Retry-After header.
30req/min
Per API key, per endpoint. Sliding 60-second window.
3concurrent
Max simultaneous in-flight requests per API key.
X-RateLimit-LimitMaximum requests allowed per minuteX-RateLimit-RemainingRequests remaining in the current windowX-RateLimit-ResetSeconds until the current window resetsRetry-AfterSeconds to wait before retrying (only on 429)HTTP/1.1 429 Too Many Requests
Retry-After: 12
X-RateLimit-Limit: 30
X-RateLimit-Remaining: 0
X-RateLimit-Reset: 12
{
"error": "rate_limit_exceeded",
"message": "Rate limit exceeded: 30 requests/minute per API key. Retry after 12s.",
"retry_after": 12
}常见问题
覆盖哪些专利局?
全球申请 — USPTO、EPO、WIPO PCT、JPO、KIPO、CNIPA以及主要国家局。搜索运行在统一的语义专利索引之上。
可以按申请人或发明人过滤吗?
将其作为自然语言查询的一部分传入(例如 assignee:Tesla 电池热管理)。语义索引可在查询字符串中解析实体式过滤。
可以按日期范围过滤吗?
可以。start_date / end_date(YYYY-MM-DD)按申请或公开日期过滤。
与USPTO直接搜索相比定价如何?
USPTO的公共搜索免费但仅支持关键词,且没有语义排序。本API以每次调用80积分(约 $0.08 用户成本)运行跨司法辖区的语义搜索 — 在需要排序的、面向LLM的结果时非常有用。
工具Schema?
GET /api/search/patents/tool-schema 返回OpenAI函数与Claude工具使用定义。