论文搜索API接口查询
按论文标题检索公开学术论文。返回论文 ID、标题、DOI、第一作者、被引档位、期刊/会议名、年份。分页对齐统一查询:条数用 top_k(最大 20),翻页用 filters.offset。
已开放
调用入口:POST /v1/data/query。
请求体字段
| 字段 | 类型 | 说明 | 示例 |
|---|---|---|---|
| domain | string | 数据域(必填) | research |
| type | string | 数据类型(必填) | paper_search |
| query | string | 自然语言检索词 | Looking at CTR Prediction Again: Is Attention All You Need |
| filters | object | 结构化过滤条件,见下方「常用 filters」 | — |
| top_k | integer | 分页参数:每页条数,取值范围 1–100,本能力默认 10 | 10 |
常用 filters
| 字段 | 类型 | 说明 | 示例 |
|---|---|---|---|
| title | string | 论文标题(也可用 query) | Attention Is All You Need |
| offset | integer | 分页参数:偏移量(默认 0;配合顶层 top_k 翻页,建议为 top_k 的整数倍) | 0 |
返回字段(hits[])
| 字段 | 类型 | 说明 |
|---|---|---|
| id | string | 论文 ID |
| title | string | 论文标题(英) |
| title_zh | string | 论文标题(中) |
| doi | string | DOI |
| first_author | string | 第一作者 |
| n_citation_bucket | string | 被引档位 |
| venue_name | string | 期刊/会议名 |
| year | number | 年份 |
| source | string | 数据来源标识 |
| disclaimer | string | 来源说明 |
curl 请求示例
curl -sS -X POST https://data.devnors.com/v1/data/query \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{ "domain":"research", "type":"paper_search", "query":"Looking at CTR Prediction Again: Is Attention All You Need", "filters":{ "title":"Attention Is All You Need", "offset":0 }, "top_k":10 }'将 YOUR_API_KEY 替换为控制台签发的密钥。完整字段与响应约定见 统一查询。