Literature
Bibliographic records and publication detail.
GET /api/v1/literature
Paginated list of literature records in the database.
curl "https://api.ilepbase.com/api/v1/literature?page=1&pageSize=20"Query Parameters
| Name | Type | Required | Default | Description |
|---|---|---|---|---|
page | int | No | 1 | Page number. |
pageSize | int | No | 20 | Items per page. |
Response
{
"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}
Full detail for a single publication.
curl https://api.ilepbase.com/api/v1/literature/12345678Path Parameters
| Name | Type | Description |
|---|---|---|
literatureId | string | Literature record ID. |
For literature linked to a taxonomy node, see GET /api/v1/taxonomy/nodes/{nodeId}/literature in Taxonomy.