The goal
A nutrition feature
Show users a friendly profile of their diet-related genetics — no medical claims.
Steps
POST /v1/orders (or reuse a hosted genome)Wait for order.completed, then genome.createdGET /v1/genomes/{genome_id}/interpretations/latest/artifactPOST /v1/genomes/{genome_id}/panels/nutrition_diet_response/buildPOST /v1/genomes/{genome_id}/ask — optional, plain-English explanation
What you get back
A panel with a plain-language summary and sections of findings. Each finding gives a structured result, a plain-English meaning, and an evidence level, with provenance under evidence — plus panel-level citations and limitations.
What your app shows
Render each finding as an insight card: show result_label and meaning first, with an evidence badge. Keep the structured result and evidence block for expandable or expert views; skip raw variant tables unless your product is built for experts.
Real example
{
"panel_result_id": "pan_9y2m1q",
"panel_id": "nutrition_diet_response",
"title": "Nutrition & Diet Response",
"genome_id": "gen_test_nutrition_001",
"summary": "Caffeine, alcohol, and lactose handling for this genome.",
"sections": [
{
"section_id": "food_drink_metabolism",
"title": "Food & Drink Metabolism",
"evidence_level": "high",
"findings": [
{
"id": "rs4988235",
"type": "variant",
"title": "MCM6 rs4988235",
"gene": "MCM6",
"variant_id": "rs4988235",
"result": { "genotype": "GA", "alleles": ["G", "A"] },
"result_label": "One copy of G and one copy of A",
"meaning": "The main lactase-persistence variant in European-ancestry populations; the persistence allele is associated with digesting dairy into adulthood. Other persistence variants in African and Middle Eastern populations are not captured by this SNP.",
"evidence_level": "high",
"evidence": { "basis": "GWAS Catalog", "clinical_review": "Inherited tendency, not a lactose-tolerance test.", "validated_populations": ["European"] }
}
]
}
],
"citations": [{ "source": "GWAS Catalog", "version": "2026.05-sandbox" }],
"limitations": ["DNA does not measure current diet, symptoms, or nutrient status."],
"clinical_boundary": "Use as inherited context for education and clinician review."
}