Gamuts API

Term


GET https://gamuts.net/api/term/ID

Lists a term's properties and relationships to other terms.


Example
GET https://gamuts.net/api/term/13463
{
    id: 13463,
    name: "ventricular septal defect",
    ascii_name: "ventricular septal defect",
    specialty: [
        {
            code: "CA",
            name: "Cardiac Radiology",
            href: "https://gamuts.net/api/specialty/CA"
        },
        ...
    ],
    has_synonym: [
        {
            id: "13324",
            name: "VSD",
            href: "https://gamuts.net/api/term/13324"
        }
    ],
    is_a: [
        ...
    ],
    has_subtype: [
        ...
    ],
    may_cause: [
        {
            id: "3695",
            name: "left atrial enlargement",
            href: "https://gamuts.net/api/term/3695"
        },
        ...
    ]
    may_be_caused_by: [
        ...
    ]
}

Return to General information.