Base URL
The OMOPHub API is built on REST principles. We enforce HTTPS in every request to improve data security, integrity, and privacy. The API does not support HTTP. All requests contain the following base URL:Authentication
To authenticate you need to add an Authorization header with the contents of the header beingBearer oh_xxxxxxxxx
where oh_xxxxxxxxx
is your API Key.
Get your API key from the OMOPHub Dashboard
Core Capabilities
Search & Discovery- Search across 90+ medical vocabularies (SNOMED CT, ICD-10-CM, RxNorm, LOINC and more)
- Fuzzy, semantic, and phonetic search algorithms
- Autocomplete and suggestions endpoints
- Navigate concept hierarchies and relationships
- Get ancestors, descendants, and related concepts
- Explore “Is a”, “Maps to”, and custom relationships
- Map concepts between different vocabulary systems
- Cross-reference codes across standards
- Validate and check mapping coverage
- Full OMOP CDM vocabulary support (license-free)
- Standardized concept classifications
- Version-controlled vocabulary releases
API Structure
RESTful Design- Resource-based endpoints (
/concepts
,/vocabularies
,/search
) - Standard HTTP methods (GET, POST)
- Consistent response formats
snake_case
for all API fields (concept_id
,vocabulary_id
)- Consistent parameter naming across endpoints
- Page-based pagination (
page
,page_size
) - Metadata includes total counts and navigation flags
API Categories
Concepts
Look up medical concepts and their detailed information
Search
Advanced search across vocabularies and concepts
Hierarchy
Navigate concept hierarchies and relationships
Relationships
Explore concept relationships and connections
Domains & Classifications
Work with concept domains and classifications
Mappings
Cross-vocabulary mappings and interoperability
Vocabularies
Manage and explore medical vocabularies and their metadata
Quick Start Examples
Search for Medical Concepts
Get Concept Details
Map Between Vocabularies
Response Format
All API responses follow a consistent structure:Response codes
Resend uses standard HTTP codes to indicate the success or failure of your requests. In general,2xx
HTTP codes correspond to success, 4xx
codes are for user-related failures, and 5xx
codes are for infrastructure issues.
Status | Description |
---|---|
200 | Successful request. |
400 | Check that the parameters were correct. |
401 | The API key used was missing. |
403 | The API key used was invalid. |
404 | The resource was not found. |
429 | The rate limit was exceeded. |
5xx | Indicates an error with Resend servers. |
Check Error Codes for a comprehensive breakdown of
all possible API errors.
Rate limit
The default maximum rate limit is 2 requests per second. This number can be increased by request. After that, you’ll hit the rate limit and receive a429
response error code.
Learn more about our rate limits.