curl -X POST "https://api.omophub.com/v1/concepts/map/batch" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"mapping_requests": [
{
"request_id": "diabetes_icd10",
"source_concepts": [201826, 443735],
"target_vocabulary": "ICD10CM"
},
{
"request_id": "hypertension_snomed",
"source_concepts": [4182210],
"target_vocabulary": "SNOMED"
}
]
}'
{
"success": true,
"data": [
{
"request_id": "diabetes_icd10",
"source_concepts": [201826, 443735],
"target_vocabulary": "ICD10CM",
"mappings": [
{
"source_concept_id": 201826,
"target_concept_id": 443735,
"target_concept_name": "Type 2 diabetes mellitus without complications",
"target_concept_code": "E11.9",
"relationship_id": "Maps to"
}
],
"success": true,
"error": null,
"request_index": 0
},
{
"request_id": "hypertension_snomed",
"source_concepts": [4182210],
"target_vocabulary": "SNOMED",
"mappings": [
{
"source_concept_id": 4182210,
"target_concept_id": 316866,
"target_concept_name": "Hypertensive disorder",
"target_concept_code": "38341003",
"relationship_id": "Maps to"
}
],
"success": true,
"error": null,
"request_index": 1
}
],
"meta": {
"request_id": "req_batch_abc123",
"timestamp": "2024-12-22T10:00:00Z",
"vocab_release": "2025.2"
}
}
Perform multiple concept mapping operations in a single request
curl -X POST "https://api.omophub.com/v1/concepts/map/batch" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"mapping_requests": [
{
"request_id": "diabetes_icd10",
"source_concepts": [201826, 443735],
"target_vocabulary": "ICD10CM"
},
{
"request_id": "hypertension_snomed",
"source_concepts": [4182210],
"target_vocabulary": "SNOMED"
}
]
}'
{
"success": true,
"data": [
{
"request_id": "diabetes_icd10",
"source_concepts": [201826, 443735],
"target_vocabulary": "ICD10CM",
"mappings": [
{
"source_concept_id": 201826,
"target_concept_id": 443735,
"target_concept_name": "Type 2 diabetes mellitus without complications",
"target_concept_code": "E11.9",
"relationship_id": "Maps to"
}
],
"success": true,
"error": null,
"request_index": 0
},
{
"request_id": "hypertension_snomed",
"source_concepts": [4182210],
"target_vocabulary": "SNOMED",
"mappings": [
{
"source_concept_id": 4182210,
"target_concept_id": 316866,
"target_concept_name": "Hypertensive disorder",
"target_concept_code": "38341003",
"relationship_id": "Maps to"
}
],
"success": true,
"error": null,
"request_index": 1
}
],
"meta": {
"request_id": "req_batch_abc123",
"timestamp": "2024-12-22T10:00:00Z",
"vocab_release": "2025.2"
}
}
Show mapping_requests
Show data
Show mappings
curl -X POST "https://api.omophub.com/v1/concepts/map/batch" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"mapping_requests": [
{
"request_id": "diabetes_icd10",
"source_concepts": [201826, 443735],
"target_vocabulary": "ICD10CM"
},
{
"request_id": "hypertension_snomed",
"source_concepts": [4182210],
"target_vocabulary": "SNOMED"
}
]
}'
{
"success": true,
"data": [
{
"request_id": "diabetes_icd10",
"source_concepts": [201826, 443735],
"target_vocabulary": "ICD10CM",
"mappings": [
{
"source_concept_id": 201826,
"target_concept_id": 443735,
"target_concept_name": "Type 2 diabetes mellitus without complications",
"target_concept_code": "E11.9",
"relationship_id": "Maps to"
}
],
"success": true,
"error": null,
"request_index": 0
},
{
"request_id": "hypertension_snomed",
"source_concepts": [4182210],
"target_vocabulary": "SNOMED",
"mappings": [
{
"source_concept_id": 4182210,
"target_concept_id": 316866,
"target_concept_name": "Hypertensive disorder",
"target_concept_code": "38341003",
"relationship_id": "Maps to"
}
],
"success": true,
"error": null,
"request_index": 1
}
],
"meta": {
"request_id": "req_batch_abc123",
"timestamp": "2024-12-22T10:00:00Z",
"vocab_release": "2025.2"
}
}
request_id values to correlate results with your inputWas this page helpful?