api.ilepbase.com

Transcriptome

Transcriptome dataset listings and expression summaries.

GET /api/v1/omics/transcriptomes

Paginated list of transcriptome datasets with species, tissue, developmental stage, platform, source, and download metadata.

curl "https://api.ilepbase.com/api/v1/omics/transcriptomes?species=&page=1&pageSize=10&sortBy=&sortDirection=asc"

Query Parameters

NameTypeRequiredDefaultDescription
speciesstringNoFilter by species slug or scientific name.
pageintNo1Page number.
pageSizeintNo10Items per page.
sortBystringNoSort field name.
sortDirectionstringNoascasc or desc.
include_facetsboolNofalseInclude aggregation options for the frontend filter panel.

Response

{
  "success": true,
  "data": {
    "items": [
      {
        "id": "tx-001",
        "speciesSlug": "papilio-xuthus",
        "scientificName": "Papilio xuthus",
        "datasetName": "Larval midgut RNA-seq",
        "condition": "larva",
        "platform": "Illumina NovaSeq",
        "source": "SRA",
        "download": "/downloads/tx-pxut-larval-midgut.fq.gz"
      }
    ],
    "pagination": {
      "page": 1,
      "pageSize": 10,
      "total": 24,
      "totalPages": 3,
      "hasNext": true,
      "hasPrev": false
    }
  },
  "timestamp": "2026-04-23T12:00:00.000Z"
}

GET /api/v1/omics/transcriptomes/insights

Returns expression matrix, sample overview, and gene overview data used by the transcriptome page.

curl "https://api.ilepbase.com/api/v1/omics/transcriptomes/insights?species=Papilio%20xuthus"

On this page