文献
书目记录与出版物详情。
GET /api/v1/literature
分页返回数据库中的文献记录。
curl "https://api.ilepbase.com/api/v1/literature?page=1&pageSize=20"查询参数
| 名称 | 类型 | 必填 | 默认值 | 描述 |
|---|---|---|---|---|
page | int | 否 | 1 | 页码。 |
pageSize | int | 否 | 20 | 每页条目数。 |
响应
{
"success": true,
"data": {
"items": [
{
"id": "12345678",
"title": "A comprehensive phylogeny of Lepidoptera...",
"authors": "Kawahara et al.",
"year": 2019,
"journal": "PNAS",
"doi": "10.1073/pnas.1907842116"
}
],
"pagination": {
"page": 1,
"pageSize": 20,
"total": 120,
"totalPages": 6,
"hasNext": true,
"hasPrev": false
}
},
"timestamp": "2026-04-23T12:00:00.000Z"
}GET /api/v1/literature/{literatureId}
返回单篇出版物的完整详情。
curl https://api.ilepbase.com/api/v1/literature/12345678路径参数
| 名称 | 类型 | 描述 |
|---|---|---|
literatureId | string | 文献记录 ID。 |
与分类节点关联的文献见分类页面中的 GET /api/v1/taxonomy/nodes/{nodeId}/literature。