curl -X POST "https://api.omophub.com/v1/concepts/map" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"source_concepts": [201826, 192671],
"target_vocabulary": "ICD10CM",
"mapping_type": "equivalent",
"include_invalid": false
}'
{
"success": true,
"data": {
"mappings": [
{
"source_concept_id": 201826,
"source_concept_name": "Type 2 diabetes mellitus",
"source_vocabulary_id": "SNOMED",
"target_concept_id": 35208413,
"target_concept_name": "Type 2 diabetes mellitus",
"target_vocabulary_id": "ICD10CM",
"target_concept_code": "E11.9",
"relationship_id": "Maps to",
"relationship_name": "Maps to",
"mapping_confidence": 0.95,
"valid_start_date": "2023-01-01",
"valid_end_date": "2099-12-31"
},
{
"source_concept_id": 192671,
"source_concept_name": "Myocardial infarction",
"source_vocabulary_id": "SNOMED",
"target_concept_id": 35208604,
"target_concept_name": "Acute myocardial infarction, unspecified",
"target_vocabulary_id": "ICD10CM",
"target_concept_code": "I21.9",
"relationship_id": "Maps to",
"relationship_name": "Maps to",
"mapping_confidence": 0.92,
"valid_start_date": "2023-01-01",
"valid_end_date": "2099-12-31"
}
],
"mapping_summary": {
"total_source_concepts": 2,
"successful_mappings": 2,
"failed_mappings": 0,
"target_vocabulary": "ICD10CM",
"mapping_type": "equivalent"
}
}
...
}
Map medical concepts between different vocabularies to find equivalent or related concepts across terminology systems.
curl -X POST "https://api.omophub.com/v1/concepts/map" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"source_concepts": [201826, 192671],
"target_vocabulary": "ICD10CM",
"mapping_type": "equivalent",
"include_invalid": false
}'
{
"success": true,
"data": {
"mappings": [
{
"source_concept_id": 201826,
"source_concept_name": "Type 2 diabetes mellitus",
"source_vocabulary_id": "SNOMED",
"target_concept_id": 35208413,
"target_concept_name": "Type 2 diabetes mellitus",
"target_vocabulary_id": "ICD10CM",
"target_concept_code": "E11.9",
"relationship_id": "Maps to",
"relationship_name": "Maps to",
"mapping_confidence": 0.95,
"valid_start_date": "2023-01-01",
"valid_end_date": "2099-12-31"
},
{
"source_concept_id": 192671,
"source_concept_name": "Myocardial infarction",
"source_vocabulary_id": "SNOMED",
"target_concept_id": 35208604,
"target_concept_name": "Acute myocardial infarction, unspecified",
"target_vocabulary_id": "ICD10CM",
"target_concept_code": "I21.9",
"relationship_id": "Maps to",
"relationship_name": "Maps to",
"mapping_confidence": 0.92,
"valid_start_date": "2023-01-01",
"valid_end_date": "2099-12-31"
}
],
"mapping_summary": {
"total_source_concepts": 2,
"successful_mappings": 2,
"failed_mappings": 0,
"target_vocabulary": "ICD10CM",
"mapping_type": "equivalent"
}
}
...
}
Show error
Show data
Show mappings
Show mapping_summary
curl -X POST "https://api.omophub.com/v1/concepts/map" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"source_concepts": [201826, 192671],
"target_vocabulary": "ICD10CM",
"mapping_type": "equivalent",
"include_invalid": false
}'
{
"success": true,
"data": {
"mappings": [
{
"source_concept_id": 201826,
"source_concept_name": "Type 2 diabetes mellitus",
"source_vocabulary_id": "SNOMED",
"target_concept_id": 35208413,
"target_concept_name": "Type 2 diabetes mellitus",
"target_vocabulary_id": "ICD10CM",
"target_concept_code": "E11.9",
"relationship_id": "Maps to",
"relationship_name": "Maps to",
"mapping_confidence": 0.95,
"valid_start_date": "2023-01-01",
"valid_end_date": "2099-12-31"
},
{
"source_concept_id": 192671,
"source_concept_name": "Myocardial infarction",
"source_vocabulary_id": "SNOMED",
"target_concept_id": 35208604,
"target_concept_name": "Acute myocardial infarction, unspecified",
"target_vocabulary_id": "ICD10CM",
"target_concept_code": "I21.9",
"relationship_id": "Maps to",
"relationship_name": "Maps to",
"mapping_confidence": 0.92,
"valid_start_date": "2023-01-01",
"valid_end_date": "2099-12-31"
}
],
"mapping_summary": {
"total_source_concepts": 2,
"successful_mappings": 2,
"failed_mappings": 0,
"target_vocabulary": "ICD10CM",
"mapping_type": "equivalent"
}
}
...
}
{
"source_concepts": [201826],
"target_vocabulary": "ICD10CM",
"mapping_type": "equivalent"
}
{
"source_concepts": [201826, 192671, 443729],
"target_vocabulary": "ICD10CM",
"mapping_type": "direct",
"include_invalid": false
}
{
"source_concepts": [387517004, 108774000],
"target_vocabulary": "RXNORM",
"mapping_type": "equivalent"
}
Was this page helpful?