GET /v1/notifications

Tags: notifications

Parameters

NameInTypeRequiredDescription
cursorquerystring
limitqueryinteger1..=100, default 50
statusquerystringunread to filter

Responses

200

JSON
{
  "$ref": "#/components/schemas/ListNotificationsResponse"
}

401 — UNAUTHENTICATED

Code samples

TypeScript

TypeScript
import { firecase } from "@firecase/sdk";

const result = await firecase.get("/notifications");
console.log(result);

Python

Python
import firecase

result = firecase.get("/notifications")
print(result)

curl

Bash
curl -X GET https://api.firecase.ai/v1/notifications \
  -H "Authorization: Bearer $FIRECASE_API_KEY" \
  -H "Content-Type: application/json"