Mediloop

Get started

Quickstart

Get up and running with Mediloop APIs in minutes.

01

Create account

02

Get credentials

03

First request

04

Next steps

This quickstart uses the Sandbox environment. No real clinical or financial transactions are processed and test data must never contain real patient information.

Create your account

Create a developer account to access Mediloop's sandbox, developer console and integration tools. Production access remains subject to the onboarding requirements for the capabilities you use.

Sandbox first

Use synthetic identities, test tenants and non-production credentials while you build.

Get credentials

API credentials

Create credentials in the developer console for the integration you are testing.

Minimum scopes

Grant only the scopes needed by your current workflow.

Server-side secrets

Never embed confidential credentials in browser or mobile bundles.

Make your first request

Start with a read-only endpoint so you can verify connectivity, authentication and response handling before implementing writes.

cURL

curl -X GET "https://sandbox.api.mediloop.com/v1/products?limit=10" \
  -H "Authorization: Bearer $MEDILOOP_ACCESS_TOKEN" \
  -H "Accept: application/json"

Understand the response

Example response

{
  "data": [],
  "meta": {
    "request_id": "req_01...",
    "limit": 10
  }
}
Use the request ID for support and audit troubleshooting.
Handle pagination and rate-limit headers where supported.
Treat every response according to the tenant, membership and scope context of the token.

Next steps

Authentication

Choose the correct identity and authorization flow for your integration.

Environments

Understand sandbox, staging and production boundaries.

API Explorer

Inspect schemas and test supported endpoints interactively.