Skip to main content

Overview

Retrieve all mappings from a concept to equivalent or related concepts in other vocabulary systems.

Path Parameters

concept_id
integer
required
The OMOP concept ID to get mappings for

Query Parameters

target_vocabulary
string
Filter mappings to a specific target vocabulary (e.g., “ICD10CM”, “SNOMED”)
include_invalid
boolean
default:"false"
Include invalid/deprecated mappings in results
vocab_release
string
Specific vocabulary release version to use (e.g., “2025.1”, “2024.4”). When not specified, uses the default/latest vocabulary version.

Response

success
boolean
Indicates if the request was successful
data
object
Contains the mapping results
meta
object
Response metadata

Examples

curl -X GET "https://api.omophub.com/v1/concepts/320128/mappings?target_vocabulary=ICD10CM" \
  -H "Authorization: Bearer YOUR_API_KEY"
{
  "success": true,
  "data": {
    "mappings": [
      {
        "source_concept_id": 320128,
        "source_concept_name": "Essential hypertension",
        "target_concept_id": 319826,
        "target_concept_name": "Essential hypertension",
        "relationship_id": "Maps to",
        "confidence": 1.0
      }
    ]
  },
  "meta": {
    "request_id": "req_abc123",
    "timestamp": "2025-01-05T12:00:00.000Z",
    "vocab_release": "2025.1"
  }
}