LOCK
Postman with Meridian
Call the Meridian chat completions API from Postman in three steps.
- 1
Create a collection
Open Postman and create a new collection named Meridian. This keeps your requests organized. - 2
Set up the environment
Add an environment with two variables:MERIDIAN_KEY— your API key from the keys dashboardBASE_URL—https://api.meridian.sh
- 3
Create the request
Inside the collection, add a POST request:POST{{BASE_URL}}/chat/completionsAuthorizationBearer {{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.