curl -X GET "https://api.omophub.com/v1/vocabularies/search?query=SNOMED" \ -H "Authorization: Bearer YOUR_API_KEY"
{ "success": true, "data": [ { "vocabulary_id": "SNOMED", "vocabulary_name": "Systematized Nomenclature of Medicine Clinical Terms", "vocabulary_reference": "SNOMED International", "vocabulary_version": "US Edition 20240301", "vocabulary_concept_id": 45756746 }, { "vocabulary_id": "Nebraska Lexicon", "vocabulary_name": "Nebraska Lexicon", "vocabulary_reference": "University of Nebraska", "vocabulary_version": "2024-01", "vocabulary_concept_id": 32675 } ], "meta": { "request_id": "req_abc123", "vocab_release": "2025.1", "timestamp": "2025-01-05T10:00:00Z", "search": { "query": "SNOMED", "total_results": 2, "filters_applied": { "search_type": "full_text_search", "include_inactive": false } }, "pagination": { "page": 1, "page_size": 20, "total_items": 2, "total_pages": 1, "has_next": false, "has_previous": false } } }
Search across vocabulary names and descriptions
Show Vocabulary Object
Show Metadata Object
GET /v1/vocabularies/search?query=SNOMED
GET /v1/vocabularies/search?query=ICD&page=1&page_size=50
GET /v1/vocabularies/search?query=classification&include_inactive=true
Was this page helpful?