curl -X GET "https://api.omophub.com/v1/domains/Condition/concepts?vocabulary_ids=SNOMED&standard_only=true&page_size=50" \ -H "Authorization: Bearer YOUR_API_KEY"
{ "success": true, "data": { "concepts": [ { "concept_id": 201826, "concept_name": "Type 2 diabetes mellitus", "concept_code": "44054006", "vocabulary_id": "SNOMED", "vocabulary_name": "Systematized Nomenclature of Medicine Clinical Terms", "domain_id": "Condition", "concept_class_id": "Clinical Finding", "standard_concept": "S", "valid_start_date": "1970-01-01", "valid_end_date": "2099-12-31", "invalid_reason": null }, { "concept_id": 46635009, "concept_name": "Type 1 diabetes mellitus", "concept_code": "46635009", "vocabulary_id": "SNOMED", "vocabulary_name": "Systematized Nomenclature of Medicine Clinical Terms", "domain_id": "Condition", "concept_class_id": "Clinical Finding", "standard_concept": "S", "valid_start_date": "1970-01-01", "valid_end_date": "2099-12-31", "invalid_reason": null } ] }, "meta": { "request_id": "req_abc123", "vocab_release": "2025.1", "timestamp": "2025-01-05T10:00:00Z", "pagination": { "page": 1, "page_size": 50, "total_items": 847, "total_pages": 17, "has_next": true, "has_previous": false } } }
Retrieve all concepts within a specific domain
Condition
Drug
Procedure
SNOMED,ICD10CM
Show Data Object
Show Concept Object
Show Metadata Object
GET /v1/domains/Condition/concepts?page_size=100
GET /v1/domains/Drug/concepts?standard_only=true&vocabulary_ids=RxNorm
GET /v1/domains/Procedure/concepts?vocabulary_ids=SNOMED,CPT4,HCPCS
GET /v1/domains/Condition/concepts?include_invalid=true
Was this page helpful?