curl -X GET "https://api.omophub.com/v1/vocabularies/domains?vocabulary_ids=SNOMED,ICD10CM&include_counts=true&include_examples=true" \ -H "Authorization: Bearer YOUR_API_KEY" \ -H "Content-Type: application/json"
{ "success": true, "data": { "domains": [ { "domain_id": "Condition", "domain_name": "Condition", "domain_concept_id": 19, "description": "A condition is a clinical or pathological state or episode that is observable, measurable, and is considered clinically significant for a patient's health status, clinical care or research purposes.", "total_concepts": 125643, "vocabulary_breakdown": [ { "vocabulary_id": "SNOMED", "vocabulary_name": "Systematized Nomenclature of Medicine Clinical Terms", "concept_count": 98765, "percentage": 78.6 }, { "vocabulary_id": "ICD10CM", "vocabulary_name": "International Classification of Diseases, Tenth Revision, Clinical Modification", "concept_count": 26878, "percentage": 21.4 } ], "example_concepts": [ "Type 2 diabetes mellitus", "Essential hypertension", "Acute myocardial infarction", "Pneumonia, unspecified organism", "Chronic obstructive pulmonary disease" ] }, { "domain_id": "Procedure", "domain_name": "Procedure", "domain_concept_id": 10, "description": "A procedure is an activity directed at or performed on a patient with the intention of diagnosing, treating, or preventing a condition.", "total_concepts": 87321, "vocabulary_breakdown": [ { "vocabulary_id": "SNOMED", "vocabulary_name": "Systematized Nomenclature of Medicine Clinical Terms", "concept_count": 65432, "percentage": 74.9 }, { "vocabulary_id": "ICD10PCS", "vocabulary_name": "International Classification of Diseases, Tenth Revision, Procedure Coding System", "concept_count": 21889, "percentage": 25.1 } ], "example_concepts": [ "Coronary artery bypass graft", "Appendectomy", "Chest radiography", "Blood glucose measurement", "Surgical repair of inguinal hernia" ] } ] }, "meta": { "request_id": "req_vocab_domains_123", "timestamp": "2024-01-15T10:30:00Z", "filters_applied": { "vocabulary_ids": ["SNOMED", "ICD10CM"], "min_concept_count": 1000, "include_counts": true, "include_examples": true }, "pagination": { "page": 1, "page_size": 50, "total_items": 18, "total_pages": 1, "has_next": false, "has_previous": false }, "vocab_release": "2025.2" } }
Retrieve all domains that contain concepts across vocabularies, with optional filtering and statistics.
SNOMED
SNOMED,ICD10CM
LOINC,RXNORM
Show Domain Object
Show Vocabulary Breakdown
Show Metadata
Show Pagination Info
curl -X GET "https://api.omophub.com/v1/vocabularies/domains" \ -H "Authorization: Bearer YOUR_API_KEY"
curl -X GET "https://api.omophub.com/v1/vocabularies/domains?vocabulary_ids=SNOMED&include_counts=true" \ -H "Authorization: Bearer YOUR_API_KEY"
curl -X GET "https://api.omophub.com/v1/vocabularies/domains?min_concept_count=10000&include_counts=true&include_examples=true" \ -H "Authorization: Bearer YOUR_API_KEY"
curl -X GET "https://api.omophub.com/v1/vocabularies/domains?vocabulary_ids=SNOMED,ICD10CM,LOINC&include_counts=true" \ -H "Authorization: Bearer YOUR_API_KEY"
Was this page helpful?