Meridian API · v2

Everything you need to build with the Meridian API.

RESTful endpoints, predictable JSON schemas, and a live explorer — authenticate in minutes and ship your first request before your coffee cools.

Get oriented

Authentication

Every request is authenticated with a bearer token issued from your dashboard. Send it in the Authorization header. Keys are environment-scoped — test keys never touch live data.

Base URL

All endpoints are rooted at a single HTTPS origin. Requests are rate-limited per key at 600 req/min.

https://api.meridian.dev/v2

Quickstart

Fetch your first user with one command. Swap in your own key and user ID from the dashboard.

curl
curl https://api.meridian.dev/v2/users/usr_123 \
  -H "Authorization: Bearer sk_test_4eC39Hq"

Get started

Core documentation

  • Authentication Bearer keys & environments
  • Rate limits 600 req/min per key
  • Errors Standard error envelope
  • SDKs Node · Python · Go
Reference

Endpoints

Reference

Data Schemas

Live playground

API Explorer

Compose a request against the Meridian sandbox. Responses are sample data — no real records are touched.

1

Choose endpoint

2

Parameters

3

Headers

Authorization
Accept
Sandbox · ~200ms
Awaiting request
Run a request to see the response body.
content-typeapplication/json; charset=utf-8
x-request-id
x-ratelimit-remaining599
cache-controlno-store

Status details will appear here after you send a request.

Copied