Documentation Index
Fetch the complete documentation index at: https://docs.omophub.com/llms.txt
Use this file to discover all available pages before exploring further.
Overview
Send multiple FHIR terminology operations in a single HTTP request using a FHIR Batch Bundle. Each entry is processed independently, and results are returned in a batch-response Bundle preserving entry order. This is how ETL pipelines perform bulk terminology lookups and translations efficiently via FHIR.Request
Response
Supported Operations
The following GET operations can be included in batch entries:| Operation | Example URL |
|---|---|
$lookup | CodeSystem/$lookup?system=http://snomed.info/sct&code=44054006 |
$validate-code | CodeSystem/$validate-code?url=http://snomed.info/sct&code=44054006 |
$translate | ConceptMap/$translate?sourceCode=E11.9&system=http://hl7.org/fhir/sid/icd-10-cm&targetSystem=https://fhir-terminology.ohdsi.org |
$expand | ValueSet/$expand?url=http://snomed.info/sct?fhir_vs=isa/73211009&count=5 |
$subsumes | CodeSystem/$subsumes?codeA=73211009&codeB=44054006&system=http://snomed.info/sct |
ValueSet $validate-code | ValueSet/$validate-code?url=http://snomed.info/sct?fhir_vs&system=http://snomed.info/sct&code=44054006 |
Not supported in batch. CodeSystem search, CodeSystem instance read, ValueSet search, closure, and [find-matches
and$closure` are POST-only operations and batch only supports GET entries; the search-type and instance-read endpoints are omitted by design because they’re single-shot discovery calls that don’t benefit from batching.Limits
- Maximum 100 entries per batch. Exceeding this returns a 400 error.
- GET only for MVP. POST-with-body entries are not supported.
- No transaction bundles - only
type: "batch"is accepted. - Metering: Each entry counts as 1 API call toward your quota.
Partial Failure
Individual entry errors do not fail the entire batch. Each entry receives its own HTTP status in the response:Errors
| HTTP | Cause |
|---|---|
| 400 | Request body is not a FHIR Bundle, type is not “batch”, missing entry array, or more than 100 entries |