跳转到主要内容
GET
/
search
/
research
/
papers
搜索论文
curl --request GET \
  --url https://api.firecrawl.dev/v2/search/research/papers \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "abstract": "We show that diffusion models can achieve image sample quality superior to the current state-of-the-art generative models...",
      "ids": {
        "arxiv": [
          "2105.05233"
        ]
      },
      "paperId": "2014215642691656232",
      "primaryId": "arxiv:2105.05233",
      "score": 0.0163934,
      "title": "Diffusion Models Beat GANs on Image Synthesis"
    }
  ],
  "success": true
}
可按主题、方法、基准、作者或类别搜索论文。结果包括规范 paperId、首选 primaryId、来源 ID、标题、摘要、评分,以及可选的排序信号。 有关工作流概览,请参见 Research Index 指南

授权

Authorization
string
header
必填

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

查询参数

query
string
必填

用于搜索论文的自然语言查询。

Minimum string length: 1
k
integer
默认值:40

返回的排序论文的最大数量。

必填范围: 1 <= x <= 500
authors
string

作者子字符串过滤条件。可重复传入,或传入逗号分隔的值;所有过滤条件都必须匹配。

categories
string

论文类别过滤条件。可重复传入,或传入逗号分隔的值;所有过滤条件都必须匹配。

from
string<date>

created/updated 日期的包含下限。

to
string<date>

created/updated 日期的包含上限。

响应

排序后的论文结果。

results
object[]
必填
success
boolean
必填