curl --request GET \
--url https://api.example.com/api/especialidades{
"specialties": [
{
"[].id": 123,
"[].nombre": "<string>",
"[].descripcion": "<string>",
"[].created_at": "<string>",
"[].updated_at": "<string>"
}
],
"500 Internal Server Error": {}
}Retrieve a list of all medical specialties
curl --request GET \
--url https://api.example.com/api/especialidades{
"specialties": [
{
"[].id": 123,
"[].nombre": "<string>",
"[].descripcion": "<string>",
"[].created_at": "<string>",
"[].updated_at": "<string>"
}
],
"500 Internal Server Error": {}
}This endpoint returns a list of all available medical specialties in the system, sorted alphabetically by name.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/Bran258/api_centro_medico/llms.txt
Use this file to discover all available pages before exploring further.
{
"message": "Error al listar especialidades"
}
curl https://api.example.com/api/especialidades
[
{
"id": 1,
"nombre": "Cardiología",
"descripcion": "Especialidad médica que se ocupa del diagnóstico y tratamiento de las enfermedades del corazón",
"created_at": "2026-01-15T08:00:00.000Z",
"updated_at": "2026-01-15T08:00:00.000Z"
},
{
"id": 2,
"nombre": "Dermatología",
"descripcion": "Especialidad dedicada al estudio de la piel y sus enfermedades",
"created_at": "2026-01-15T08:00:00.000Z",
"updated_at": "2026-01-15T08:00:00.000Z"
},
{
"id": 3,
"nombre": "Pediatría",
"descripcion": "Especialidad médica que se centra en la salud y las enfermedades de los niños",
"created_at": "2026-01-15T08:00:00.000Z",
"updated_at": "2026-01-15T08:00:00.000Z"
}
]