Gamuts API

Specialty


GET https://api.gamuts.net/specialty[/code]

Lists the specialties and their gamuts.


Examples
GET https://gamuts.net/api/specialty

Without a parameter, the API lists all specialty codes (e.g., "BR") with their name, number of gamuts (differential-diagnosis listings), and number of related diseases. Note that many gamuts and diseases appear in more than one specialty.

[
    {
        code: "BR",
        name: "Breast Imaging",
        gamut_count: 2,
        disease_count: 60,
        href: "https://gamuts.net/api/specialty/BR"
    },
    {
        code: "CA",
        name: "Cardiac Radiology",
        gamut_count: 93,
        disease_count: 1145,
        href: "https://gamuts.net/api/specialty/CA"
    },
    ...
]

GET https://gamuts.net/api/specialty/ca

With the two-letter specialty code (upper- or lowercase), the API lists information about that specialty:

  • code: two-letter specialty code
  • shortName: specialty short name
  • name: full name of specialty
  • isModality: 1 = imaging modality (e.g., CT, MR); 0 = organ system (e.g., GI, GU)
  • isListed: 1 = appears on RadReport.org home page
  • gamut_count: number of gamuts (differential-diagnosis) lists
  • disease_count: number of diseases indexed by this specialty
  • gamuts: list of gamuts terms
{
    code: "CA",
    shortName: "Cardiac",
    name: "Cardiac Radiology",
    isModality: 0,
    isListed: 1,
    gamut_count: 93,
    disease_count: 1145,
    gamuts: [
        {
            id: 2331,
            name: "constrictive pericarditis",
            href: "https://gamuts.net/api/term/2331"
        },
            {
            id: 3695,
            name: "left atrial enlargement",
            href: "https://gamuts.net/api/term/3695"
        },
        ...
    ]
}

Return to General information.