Skip to main content
The in-app notification feed. Powers the bell icon in console.bytespike.ai — the same five event types you can subscribe to via webhooks (/me/webhooks) also accrue here for in-app display unless you’ve muted them. Free. For push-style consumption, prefer webhooks — this endpoint is a polling fallback (e.g. for an IDE extension or a status bar where running a webhook receiver isn’t practical).

Endpoint family

All require a logged-in key. Mark-read operations are free.

List

Query parameters

Response

Response fields

Unread count

Cheaper than the list endpoint — use this for a badge that polls every minute or so.

Mark single read

Idempotent — calling it on an already-read row is a no-op (read_at unchanged).

Mark all read

Returns the count flipped. Idempotent — calling again returns {"marked_read": 0}.

Event catalog

The notification feed only surfaces user-visible events — a curated subset of the webhook event catalog. Five types: If you need the full set (every admin write, every org member change, etc.), use webhooks — those receive the wider catalog.

Errors

Example — polling status bar

Switch to a webhook subscription if you have an HTTPS endpoint — push beats polling on freshness and load.