api.ilepbase.com

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

NameTypeRequiredDefaultDescription
pageintNo1Page number.
pageSizeintNo20Items 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/12345678

Path Parameters

NameTypeDescription
literatureIdstringLiterature record ID.

For literature linked to a taxonomy node, see GET /api/v1/taxonomy/nodes/{nodeId}/literature in Taxonomy.

On this page