Skip to main content
GET
/
notifications
Listar notificaciones
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
}
Requiere autenticación con Bearer token.
page
integer
Número de página. Por defecto 1.
limit
integer
Cantidad de resultados por página. Por defecto 20.

Respuesta

La respuesta es un array de objetos con la siguiente estructura:
id
string
Identificador único de la notificación.
title
string
Título de la notificación.
message
string
Contenido del mensaje de la notificación.
read
boolean
Indica si la notificación ha sido leída.
createdAt
string
Fecha de creación en formato ISO 8601.
{
  "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
}