cURL
curl --request GET \ --url https://api.example.com/notifications
{ "data": [ { "id": "notif_abc123", "title": "Pago recibido", "message": "Se ha recibido un pago de 50.00 USD.", "read": false, "createdAt": "2026-03-30T14:25:00Z" }, { "id": "notif_def456", "title": "KYC aprobado", "message": "Tu verificación de identidad ha sido aprobada.", "read": true, "createdAt": "2026-03-29T09:10:00Z" } ], "page": 1, "limit": 20, "total": 2 }
Obtiene la lista paginada de notificaciones del usuario autenticado.
1
20