REST Client

Insomnia + Meridian

Use the same OpenAI-compatible collection you already have. Insomnia talks to Meridian with zero config changes — just swap the base URL.

Quick Setup

  1. 1Open Insomnia and import your existing OpenAI collection or create a new request.
  2. 2Set the base URL to https://api.getnimbus.net/v1
  3. 3Add your Meridian API key as a Bearer token in the Auth tab.
  4. 4Send the request — same JSON body, same streaming response.

Example Request

POST https://api.getnimbus.net/v1/chat/completions
Authorization: Bearer mk-...

{
  "model": "meridian-1",
  "messages": [
    {"role": "user", "content": "Hello"}
  ],
  "stream": true
}

Environment Variables

Store your key in an Insomnia environment variable so every request picks it up automatically. Create a base_url and api_key pair, then reference them with template tags.