Back to Docs
Recipe

Insomnia Setup

Configure Insomnia to authenticate and interact with the Meridian API. Follow this guide to import the collection, set environment variables, and make your first authenticated request.

Step 1 — Import the Collection

Download the Meridian Insomnia collection from the API Reference page. In Insomnia, click the arrow next to your workspace name, select Import/ExportImport Data From File, and choose the downloaded JSON.

Step 2 — Configure the Environment

Press Ctrl+E to open Manage Environments. Create a new sub-environment and add these variables:

{
  "base_url": "https://api.getnimbus.net/v1",
  "license_key": "MK-XXXX-XXXX-XXXX",
  "session_token": ""
}

session_token will be populated automatically after you run the Authenticate request.

Step 3 — Authenticate

Open the Auth / Authenticate request in the collection. The body is pre-configured to send your license_key. Send the request — the response handler will store the token in session_token for all subsequent calls.

Step 4 — Verify

Run Status / Health. A 200 response confirms your session is active. You can now use any endpoint in the collection.

Need help? Join the Meridian Discord or open a ticket from the dashboard.