Skip to main content
GET
/
event-counter
Event Counter
curl --request GET \
  --url https://tokens.shakesco.com/event-counter \
  --header 'Authorization: Bearer <token>'
{ "event_count": 3 }

Documentation Index

Fetch the complete documentation index at: https://docs.shakesco.com/llms.txt

Use this file to discover all available pages before exploring further.

For the complete documentation index, see llms.txt. Returns how many events you’ve configured in total. Combine with /event-by-index to list every event name.

Response

event_count
integer
Total events configured
const res = await fetch("https://tokens.shakesco.com/event-counter", {
  headers: { Authorization: `Bearer ${API_KEY}` },
});
const { event_count } = await res.json();
{ "event_count": 3 }