What is product analytics?
Data collected from users interacting with our products helps us understand how they use it
Product analytics is the process of analyzing how users of your products interact with the product. This is done by collecting data containing information on how a user interacted with your product. It could be as simple as tracking which pages a user goes to or which buttons a user clicks.
Trckrspace is a tool which can be used for product analytics by providing a simple use-case agnostic API. You save events using the API and you can then view them in realtime using the dashboard builder available at https://api.trckrspace.com.
For example, tracking which pages a user goes to in a React app could be as simple as:
export function RouteChangeListener() {
const pathname = usePathname();
const user = getActiveUser();
useEffect(() => {
console.log(`Route changed to: ${pathname}`);
void axois.post(
'https://api.trckrspace.com/usage',
{
category: 'product-analytics',
event: 'page-change',
page: pathname,
user: user
},
{ headers: { Authorization: your_api_key } }
)
}, [pathname]);
return <></>;
}

How it works

Create API key
Sign up to trckrspace and create your first API key. You can get started in less than 5 clicks (and maybe a little typing).

Store events
Saving events is as simple as making a post request. You can save whatever data in any shape you like!

See insights
Finally, view your insights with custom dashboards.