# Standard events

As you've seen, you can give your events any name you would like. However you might want to considering mediarithmics standard event names (notice the "$" in front of the event name):

* **$page\_view**: the user has seen a page. This is the default event that you can send using the mics.pushDefault() method instead of mics.push(...). Please note that currently $page\_view events are discarded after a while.
* **$home\_view**: the user has seen the home page
* **$item\_list\_view**: the user has seen a list of products (category page, search page, etc)
* **$item\_view**: the user has seen a product page
* **$basket\_view**: the user has been on the basket page
* **$transaction\_confirmed**: the user has confirmed a transaction on one or several items
* **$conversion**: the user has completed a conversion

Using these events will make for a more user friendly experience in the mediarithmics UI.
