GET /v1/notifications
Tags: notifications
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
cursor | query | string | ||
limit | query | integer | 1..=100, default 50 | |
status | query | string | unread 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"