Introduction for developers
This section covers everything you need to integrate with Solvimon: authentication, error handling, idempotency, webhooks, and HTTP conventions.
The four APIs
Solvimon exposes four separate APIs. Most integrations use all four.
Full endpoint reference is in the API Docs tab.
Environments
Test and production are fully isolated. Test keys will not work against the production endpoint and vice versa. Data created in one environment never appears in the other.
Request conventions
Every request requires:
Content-Type: application/jsonX-API-KEY: <your_key>— see Authentication- HTTPS — plain HTTP requests are rejected
Every response includes an X-REQUEST-ID header. Save this value when debugging; it’s required when contacting support about a specific request.
Recommended reading order
- Authentication — how to get and use your API key
- Errors — error codes and what they mean
- Idempotency — safely retrying requests
- Webhooks — receiving real-time event notifications