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.

API Reference

The Marketplace Manager API follows REST conventions. All endpoints accept and return JSON.

Base URL

https://api.marketplacemanager.com/v1

Request format

  • All request bodies must be JSON with Content-Type: application/json
  • All timestamps are ISO 8601 in UTC (e.g. 2024-01-15T09:30:00Z)
  • IDs are strings

Response format

All responses share a consistent envelope:
{
  "data": { ... },       // The requested resource or array of resources
  "meta": {              // Present on list endpoints
    "total": 100,
    "page": 1,
    "per_page": 20
  },
  "error": {             // Present only on error responses
    "code": "not_found",
    "message": "The requested resource was not found."
  }
}

Pagination

List endpoints support cursor-based pagination via query parameters:
ParameterTypeDefaultDescription
pageinteger1Page number
per_pageinteger20Results per page (max 100)

Available endpoints

Orders

Manage and fulfil orders across all connected marketplaces

Inventory

Query and update stock levels per SKU and marketplace

Listings

Create and manage product listings

Marketplaces

List and configure connected marketplace accounts
Full endpoint pages will be added here as the API is built out. Each section will include interactive request examples.