Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.merchantspring.io/llms.txt

Use this file to discover all available pages before exploring further.

Quickstart

This guide walks you through making your first call to the Marketplace Manager API.

Prerequisites

Step 1 — Get your API key

Follow the Authentication guide to generate your key.

Step 2 — Make your first request

Fetch your list of connected marketplaces:
curl -X GET "https://api.marketplacemanager.com/v1/marketplaces" \
  -H "Authorization: Bearer YOUR_API_KEY"

Step 3 — Review the response

A successful response looks like:
{
  "data": [
    {
      "id": "mp_amazon_us",
      "name": "Amazon US",
      "type": "amazon",
      "status": "connected",
      "region": "us-east-1"
    }
  ],
  "meta": {
    "total": 1,
    "page": 1,
    "per_page": 20
  }
}

Next steps

API Reference

Browse the full endpoint reference

Authentication

Learn about API keys and rate limits