curl -X GET "https://api.saludya.com/api/schedules?doctor_id=5&day_of_week=monday" \
-H "Authorization: Bearer YOUR_API_TOKEN"
{
"schedules": [
{
"id": 101,
"doctor_id": 5,
"day_of_week": "monday",
"start_time": "08:00:00",
"end_time": "12:00:00",
"is_available": true,
"created_at": "2026-01-15T10:30:00Z",
"updated_at": "2026-01-15T10:30:00Z"
},
{
"id": 102,
"doctor_id": 5,
"day_of_week": "monday",
"start_time": "14:00:00",
"end_time": "18:00:00",
"is_available": true,
"created_at": "2026-01-15T10:30:00Z",
"updated_at": "2026-01-15T10:30:00Z"
}
],
"pagination": {
"current_page": 1,
"total_pages": 1,
"total_count": 2,
"per_page": 20
}
}
Retrieve a list of all doctor schedules
curl -X GET "https://api.saludya.com/api/schedules?doctor_id=5&day_of_week=monday" \
-H "Authorization: Bearer YOUR_API_TOKEN"
{
"schedules": [
{
"id": 101,
"doctor_id": 5,
"day_of_week": "monday",
"start_time": "08:00:00",
"end_time": "12:00:00",
"is_available": true,
"created_at": "2026-01-15T10:30:00Z",
"updated_at": "2026-01-15T10:30:00Z"
},
{
"id": 102,
"doctor_id": 5,
"day_of_week": "monday",
"start_time": "14:00:00",
"end_time": "18:00:00",
"is_available": true,
"created_at": "2026-01-15T10:30:00Z",
"updated_at": "2026-01-15T10:30:00Z"
}
],
"pagination": {
"current_page": 1,
"total_pages": 1,
"total_count": 2,
"per_page": 20
}
}
Retrieve a paginated list of all doctor schedules in the system. Schedules define when doctors are available for appointments.Documentation Index
Fetch the complete documentation index at: https://mintlify.com/DUVAN100/saludya-api/llms.txt
Use this file to discover all available pages before exploring further.
curl -X GET "https://api.saludya.com/api/schedules?doctor_id=5&day_of_week=monday" \
-H "Authorization: Bearer YOUR_API_TOKEN"
{
"schedules": [
{
"id": 101,
"doctor_id": 5,
"day_of_week": "monday",
"start_time": "08:00:00",
"end_time": "12:00:00",
"is_available": true,
"created_at": "2026-01-15T10:30:00Z",
"updated_at": "2026-01-15T10:30:00Z"
},
{
"id": 102,
"doctor_id": 5,
"day_of_week": "monday",
"start_time": "14:00:00",
"end_time": "18:00:00",
"is_available": true,
"created_at": "2026-01-15T10:30:00Z",
"updated_at": "2026-01-15T10:30:00Z"
}
],
"pagination": {
"current_page": 1,
"total_pages": 1,
"total_count": 2,
"per_page": 20
}
}