Get started
Quickstart
Get up and running with Mediloop APIs in minutes.
Create account
Get credentials
First request
Next steps
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
}
}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.