接口说明

查询美国专利诉讼案件数据
本 API 提供实时、全量的美国专利诉讼案件详情及历史时间线数据。
PACER API 支持输入专利号(Patent Number)、起诉/被告公司名称(Company Name)或法院案件号(Case Number)作为检索条件,一键结构化输出匹配的诉讼案件档案及完整的诉讼事件时间线日志(Timeline Records)。
核心亮点: 完美兼容现有的 WIPO 接口。开发者可将其与 WIPO API 串联调用,通过 WIPO 查询存在侵权风险的专利号,再通过本接口查询该专利在美国的相关案件,实现端到端数据闭环。

🤖 这些数据是为了喂给 AI Agent 吗? 相比于自行解析原始 API,接入 MCP 服务 可以让 AI Agent(如 Claude Desktop)原生、无缝地调用 Amazon、SERP、WIPO 和 PACER 数据,自动化跨境电商合规与知识产权(IP)风险预警。

请求URL

POST https://scrapeapi.pangolinfo.com/api/v3/pacer

请求头

参数名参数值类型说明
Content-Typeapplication/jsonstring数据格式
AuthorizationBearer xxxstring认证凭证

请求参数

参数必填类型说明
patentNumber三选一string专利号(精确匹配)
companyName三选一string起诉/被告公司名称(前缀匹配)
caseNumber三选一string法院案件号,如 3:90-cv-00003
fromNoint案件分页起始位置,默认 0
sizeNoint案件分页每页数量,默认 10
entrySizeNoint每个案件内联返回的时间线条数,默认 50
patentNumber、companyName、caseNumber 三个检索条件至少传一个;同时传多个时按 AND 取交集。

响应值

返回值类型说明
codeint状态码,0 表示成功
messagestring提示信息
dataobject返回数据,见下方字段
data.totalint匹配的案件总数
data.hitsarray案件档案列表,每个元素为一个案件对象,字段见下表

data.hits[] 案件对象字段

字段类型说明
docketIdlong案件唯一 ID(docket id)
docketNumberstring法院案件号,如 1:13-cv-00116
pacerCaseIdstringPACER 案件 ID
caseNamestring案件名称
courtstring法院全称
courtIdstring法院标识,如 txwd
assignedTostring主审法官
suitNaturestring案由,如 830 Patent
jurisdictionstring管辖类型
statusstring案件状态:active 进行中 / terminated 已结案
dateFiledstring立案日期
dateTerminatedstring结案日期,未结案为 null
partiesarray当事人(原告/被告)名称列表
patentNumbersarray该案涉及的专利号列表
entryTotalint该案诉讼事件时间线总条数
entriesarray诉讼事件时间线(按时间顺序),最多返回 entrySize 条,字段见下表

entries[] 诉讼事件字段

字段类型说明
documentNumberstring文档编号,部分事件无编号时为 null
dateFiledstring事件日期,如 Feb 8, 2013
descriptionstring事件描述全文
documentHrefstring文档链接,可能为 null
pdfUrlstringPDF 链接,可能为空
patentNumbersarray该事件关联的专利号列表

请求示例

curl https://scrapeapi.pangolinfo.com/api/v3/pacer \
  --request POST \
  --header 'Authorization: ' \
  --header 'Content-Type: application/json' \
  --data '{
  "patentNumber": "6424636",
  "from": 0,
  "size": 10,
  "entrySize": 50
}'

返回示例

{
  "code": 0,
  "message": "ok",
  "data": {
    "total": 1,
    "hits": [
      {
        "docketId": 4400908,
        "docketNumber": "1:13-cv-00116",
        "pacerCaseId": "605756",
        "caseName": "Intellectual Ventures II LLC v. AT&T Corp.",
        "court": "District Court, W.D. Texas",
        "courtId": "txwd",
        "assignedTo": "Lee Yeakel",
        "suitNature": "830 Patent",
        "jurisdiction": "Federal question",
        "status": "terminated",
        "dateFiled": "2013-02-08",
        "dateTerminated": "2017-12-15",
        "parties": [
          "Intellectual Ventures II LLC",
          "AT&T Corp.",
          "AT&T Inc."
        ],
        "patentNumbers": [
          "6424636",
          "6246695",
          "5790548",
          "7817532"
        ],
        "entryTotal": 289,
        "entries": [
          {
            "documentNumber": "1",
            "dateFiled": "Feb 8, 2013",
            "description": "COMPLAINT ( Filing fee $ 350 receipt number 0542-5257884), filed by Intellectual Ventures.",
            "documentHref": "/docket/4400908/1/intellectual-ventures-ii-llc-v-att-corp/",
            "pdfUrl": "https://storage.courtlistener.com/recap/gov.uscourts.txwd.605756.1.0.pdf",
            "patentNumbers": [
              "6424636",
              "6246695",
              "5790548"
            ]
          },
          {
            "documentNumber": "20",
            "dateFiled": "Apr 29, 2013",
            "description": "ANSWER to 1 Complaint, with Jury Demand, COUNTERCLAIM against Intellectual Ventures II LLC.",
            "documentHref": null,
            "pdfUrl": "",
            "patentNumbers": []
          }
        ]
      }
    ]
  }
}

积点消耗说明

  • 平均响应时间:3s
  • 积点消耗:5个/次