Skip to main content

Documentation Index

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

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

Pre-requisites - Read access to a replicator database
To count the number of signups by day, we can use the chain_events table to query the number of ID_REGISTER events and group by day.
SELECT DATE_TRUNC('day', created_at) AS day, COUNT(*) AS count
FROM chain_events
WHERE type = 3 -- ID_REGISTER (see event types reference page)
GROUP BY day
ORDER BY day desc;
For more information on the schema, see the replicator schema.