Database Queries¶
The Database endpoints allow you to list your uploaded variant data tables, retrieve table data, and delete tables.
List Tables¶
Retrieve a list of all data tables associated with your account.
Request¶
Examples¶
Response¶
[
{
"table_name": "patient_001_variants",
"sample_name": "Patient-001",
"row_count": 45230,
"created_at": "2026-03-09T10:00:00Z"
},
{
"table_name": "patient_002_variants",
"sample_name": "Patient-002",
"row_count": 38100,
"created_at": "2026-03-08T14:30:00Z"
}
]
Get Table Data¶
Retrieve all data from a specific table.
Request¶
Examples¶
Response¶
{
"table_name": "patient_001_variants",
"columns": ["chrom", "pos", "ref", "alt", "qual", "filter", "gene", "consequence"],
"rows": [
{
"chrom": "17",
"pos": 41245466,
"ref": "G",
"alt": "A",
"qual": 99.0,
"filter": "PASS",
"gene": "BRCA1",
"consequence": "missense_variant"
}
],
"total_rows": 45230
}
Delete a Table¶
Delete a data table and all its associated data.
Request¶
Examples¶
Response¶
Irreversible operation
Deleting a table permanently removes all variant data associated with it. This action cannot be undone.