GET https://api.gamuts.net/specialty[/code]
Lists the specialties and their gamuts.
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: "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.