Home kit order endpoints require the
home_kit_orders_view (read) or home_kit_orders_manage
(write) scope.Fields
string
required
UUID auto-generated by Aniva. Use this to add panels and biomarkers, update the delivery address,
cancel the order, and retrieve results.
string
required
The UUID of the profile this home kit order belongs to.
string
required
Current lifecycle status. One of
pending, dispatched, activated, or cancelled. See
Lifecycle below. Lab-result completion granularity (in_progress vs completed) is
derived from Get Results.object
required
The address to mail the kit to — one of two shapes: either
{location_id} referencing a known
test location, or the inline address fields (name, street, house_number, postal_code,
city, country; phone / email optional). Provide exactly one — a location reference or an
inline address, not both.string
required
ISO 8601 timestamp of when the home kit order was created.
string
ISO 8601 timestamp of the most recent update. Null if the home kit order has never been updated.
object
The full profile object for the patient, embedded in every home kit order response.
object[]
Catalog panels currently attached to the home kit order. Each entry is
{ panel_id, added_at }.
Cross-reference each panel_id against List Panels.object[]
À-la-carte biomarkers attached to the home kit order outside any panel. Each entry is
{ biomarker_id, added_at }. Cross-reference each biomarker_id against
List Biomarkers.Lifecycle
Home kit orders expose four lifecycle states:The home kit order status surface is intentionally coarse. Delivery progression to and from the
patient is tracked separately via shipments, and lab result processing via submissions — neither
is part of this status enum. Lab-result completion (
in_progress vs completed) is exposed via
Get Results — the top-level status field is in_progress
until every submission arrives, then completed.Listing home kit orders
Retrieve all home kit orders accessible to your API key:?profile_id={uuid} to filter by a specific profile.
Creating a home kit order
Request a home kit order for a patient profile:profile_id and a delivery_address. The order is created bare, in pending status — attach panels and biomarkers afterward with the sub-endpoints below.
Updating a home kit order
Change the delivery address of a home kit order:delivery_address object to update. Only include the fields you want to change.
Cancelling a home kit order
Cancel a home kit order that is no longer needed:cancelled. The cancelled home kit order is returned in the response.
Adding panels
Attach the catalog panels you want to run by calling:panel_ids field. The call is idempotent — already-attached panels are kept. Panel IDs are provided by Aniva for your partner account. Panels can only be changed while the kit is pending (see Lifecycle).
Removing panels
To remove panels, call:panel_ids field. All specified panels must currently be attached to the home kit order.
Individual biomarkers
You can attach individual biomarkers to a home kit order as à la carte tests, outside any pre-built panel. This is useful when you want a tailored selection rather than a pre-defined bundle. The attached biomarkers surface on the home kit order response as anindividual_biomarkers array (siblings of panels).
Add biomarkers (idempotent — already-attached biomarkers are kept):
404):
biomarker_ids array. Use List Biomarkers to discover biomarker IDs. Biomarkers can only be changed while the kit is pending (see Lifecycle).
Retrieving lab results
Once the lab has processed the returned sample, retrieve clinical and genetic results:planned) alongside received results, so you can track what is still pending. The top-level status field is in_progress until every submission arrives, then completed — use this to derive whether the home kit order’s lab work is done. Lab report PDFs are referenced in the documents array — use GET /api/v1/documents/{id} to download them.