curl -X GET "https://api.omophub.com/v1/vocabularies/releases?vocabulary_id=SNOMED&status=active" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"
{
"success": true,
"data": [
{
"release_id": "snomed_2024_03",
"vocabulary_id": "SNOMED",
"vocabulary_name": "Systematized Nomenclature of Medicine Clinical Terms",
"release_version": "2024.2",
"release_date": "2024-03-01T00:00:00Z",
"status": "active",
"total_concepts": 354652,
"schema_name": "vocabs_2024_1",
"is_latest": true,
"description": "March 2024 International Release"
},
{
"release_id": "snomed_2024_01",
"vocabulary_id": "SNOMED",
"vocabulary_name": "Systematized Nomenclature of Medicine Clinical Terms",
"release_version": "2024-01",
"release_date": "2024-01-01T00:00:00Z",
"status": "active",
"total_concepts": 352890,
"schema_name": "vocabs_2024_1",
"is_latest": false,
"description": "January 2024 International Release"
}
],
"meta": {
"request_id": "req_releases123",
"timestamp": "2024-03-15T10:30:00Z",
"pagination": {
"page": 1,
"page_size": 20,
"total_items": 2,
"total_pages": 1,
"has_next": false,
"has_previous": false
}
}
}
Retrieve a list of all available vocabulary release versions with their release dates and status information.
curl -X GET "https://api.omophub.com/v1/vocabularies/releases?vocabulary_id=SNOMED&status=active" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"
{
"success": true,
"data": [
{
"release_id": "snomed_2024_03",
"vocabulary_id": "SNOMED",
"vocabulary_name": "Systematized Nomenclature of Medicine Clinical Terms",
"release_version": "2024.2",
"release_date": "2024-03-01T00:00:00Z",
"status": "active",
"total_concepts": 354652,
"schema_name": "vocabs_2024_1",
"is_latest": true,
"description": "March 2024 International Release"
},
{
"release_id": "snomed_2024_01",
"vocabulary_id": "SNOMED",
"vocabulary_name": "Systematized Nomenclature of Medicine Clinical Terms",
"release_version": "2024-01",
"release_date": "2024-01-01T00:00:00Z",
"status": "active",
"total_concepts": 352890,
"schema_name": "vocabs_2024_1",
"is_latest": false,
"description": "January 2024 International Release"
}
],
"meta": {
"request_id": "req_releases123",
"timestamp": "2024-03-15T10:30:00Z",
"pagination": {
"page": 1,
"page_size": 20,
"total_items": 2,
"total_pages": 1,
"has_next": false,
"has_previous": false
}
}
}
active, deprecated, betaShow Release Object
Show Metadata
curl -X GET "https://api.omophub.com/v1/vocabularies/releases?vocabulary_id=SNOMED&status=active" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"
{
"success": true,
"data": [
{
"release_id": "snomed_2024_03",
"vocabulary_id": "SNOMED",
"vocabulary_name": "Systematized Nomenclature of Medicine Clinical Terms",
"release_version": "2024.2",
"release_date": "2024-03-01T00:00:00Z",
"status": "active",
"total_concepts": 354652,
"schema_name": "vocabs_2024_1",
"is_latest": true,
"description": "March 2024 International Release"
},
{
"release_id": "snomed_2024_01",
"vocabulary_id": "SNOMED",
"vocabulary_name": "Systematized Nomenclature of Medicine Clinical Terms",
"release_version": "2024-01",
"release_date": "2024-01-01T00:00:00Z",
"status": "active",
"total_concepts": 352890,
"schema_name": "vocabs_2024_1",
"is_latest": false,
"description": "January 2024 International Release"
}
],
"meta": {
"request_id": "req_releases123",
"timestamp": "2024-03-15T10:30:00Z",
"pagination": {
"page": 1,
"page_size": 20,
"total_items": 2,
"total_pages": 1,
"has_next": false,
"has_previous": false
}
}
}
curl -X GET "https://api.omophub.com/v1/vocabularies/releases" \
-H "Authorization: Bearer YOUR_API_KEY"
curl -X GET "https://api.omophub.com/v1/vocabularies/releases?vocabulary_id=SNOMED" \
-H "Authorization: Bearer YOUR_API_KEY"
curl -X GET "https://api.omophub.com/v1/vocabularies/releases?status=active" \
-H "Authorization: Bearer YOUR_API_KEY"
Was this page helpful?