LOCK

Postman with Meridian

Call the Meridian chat completions API from Postman in three steps.

  1. 1

    Create a collection

    Open Postman and create a new collection named Meridian. This keeps your requests organized.
  2. 2

    Set up the environment

    Add an environment with two variables:
    • MERIDIAN_KEY — your API key from the keys dashboard
    • BASE_URL https://api.meridian.sh
  3. 3

    Create the request

    Inside the collection, add a POST request:
    POST
    {{BASE_URL}}/chat/completions
    Authorization
    Bearer {{MERIDIAN_KEY}}

    Set the body to raw JSON with your model and messages payload. Send the request — Meridian responds with a streaming or non-streaming completion.