A guide in my new Starlight docs site.
There are multiple ways to get begin sending events to SaasHound.
Before you get started!
Make sure to get your API key from https://app.saashound.co/settings/api-keys.
Your API requests must be authenticated with an API key. Any request that does not include an API key will be rejected and return an error.
CopyCopied!
Sending events with SaasHound is as simple as making a POST request to the log-event
endpoint with the necessary data. You can do this directly through the API or by using one of our client libraries.
To publish your first event to SaasHound, you can make a POST request to the event endpoint using your API key. When you do this, the event will appear in the SaasHound App in real-time.
If you set the notify
flag to true
, you will override all other settings and receive a push notification about the event.
Sending metrics is very similar to how we send events to SaasHound.
Before you get started!
Make sure to get your API key from https://app.saashound.co/settings/api-keys.
Your API requests must be authenticated with an API key. Any request that does not include an API key will be rejected and return an error.
Sending metrics with SaasHound is as simple as making a POST request to the send-metric
endpoint with the necessary data. You can do this directly through the API or by using one of our client libraries.
CopyCopied!