Authentication
There are two credentials you need to configure before going live: an API key for authenticating outbound requests, and a webhook secret for verifying inbound events. Both are available in your dashboard under Settings.
API Key
Every request to the Mono-Parser API must include your API key in the x-api-key header. Your key is prefixed with mp_live_.
Request Header
x-api-key: mp_live_your_secret_key_here
Webhook Secret
Every event we send to your webhook URL includes an x-mono-signature header — an HMAC-SHA256 signature of the raw request body, signed with your webhook secret. Verify this signature on every inbound event before processing it.
Your webhook secret is available in your dashboard under Settings. It is shown once on generation — store it as an environment variable. If you lose it, rotate from the dashboard to get a new one.