Skip to main content

Overview

Retrieve details about a specific vocabulary including its name, reference, version, and concept identifier.

Path Parameters

vocabularyId
string
required
The vocabulary identifier (e.g., “SNOMED”, “ICD10CM”, “LOINC”, “RxNorm”)

Query Parameters

vocab_release
string
Specific vocabulary release version (e.g., “2025.1”)

Response

success
boolean
required
Indicates whether the request was successful
data
object
required
Vocabulary details
meta
object
required
Response metadata
curl -X GET "https://api.omophub.com/v1/vocabularies/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": "2024-07-01",
    "vocabulary_concept_id": 45756746
  },
  "meta": {
    "request_id": "req_vocab_123",
    "timestamp": "2024-12-22T10:00:00Z",
    "vocab_release": "2025.1"
  }
}

Notes