Mint and rotate API credentials, read your request quota, check the call log, and register signed webhook endpoints — from the API pages in your account.
The MarketplaceHub API lets your own systems read and write your catalog, listings, price, quantity and orders without going through the app. You manage it from the sidebar under API, which has four pages: Logs, Request Throttling, Credentials and Webhooks.
This page covers those screens. For endpoints, request and response shapes, and the interactive explorer, see the API reference.
Open API → Credentials and fill in Create a credential:
OrdersRead — Read ordersOrdersWrite — Confirm, cancel, refund and update ordersInventoryRead — Read products and listingsInventoryWrite — Create and update products, listings, price and quantityMarketplacesRead — Read marketplace connections and their healthWebhooksWrite — Manage webhook subscriptionsCopy the client secret before you close the panel. It is shown once and never again — we store only a hash of it. If you lose it, rotate the credential to get a new one.
Only an account administrator can create, rotate or revoke credentials, and you may be asked to sign in again first. Other team members can see the list, so they can tell whether an integration exists, but cannot change it.
Every credential row has two actions:
Calls are rate limited per account. API → Request Throttling shows one row per endpoint you've called:
The page is empty until your credentials have made some calls. Go over the limit and the API answers 429; back off and retry rather than looping, and the budget restores on its own.
API → Logs records the calls your credentials made — version, URL, content type, status and time. Filter by any column, and expand a row to see the request and the response it got back. This is the first place to look when an integration behaves unexpectedly: it shows what actually arrived, which is often not what the integration meant to send.
Webhooks push events to your systems as they happen, so you don't have to poll. Open API → Webhooks, enter an https:// URL reachable from the internet, tick the events you want, and click Add endpoint. As with credentials, this is administrator-only, and the signing secret is shown once — copy it before closing the panel.
The events available today:
OrdersDownloaded — New orders were pulled from a marketplaceListingPublished — A batch of products finished publishing to a marketplaceFeedOutcome — A marketplace reported problems processing a feedMarketplaceUnhealthy — A marketplace connection stopped workingMarketplaceRestored — A marketplace connection started working againEvery delivery is signed. Check the signature before you trust the body — your endpoint is a public URL, and anyone can post to it. Each request carries:
X-MH-Signature — the signature to verifyX-MH-Timestamp — when it was sentX-MH-Event — which event this isX-MH-Delivery-Id — a stable id for the deliveryX-MH-Attempt — which attempt this is, from 1The signature covers the timestamp and the body, so a captured delivery cannot be replayed later. Reject anything whose timestamp is more than 5 minutes old. The webhook reference has the exact scheme and a worked example.
A failed delivery is retried six times, backing off 1 minute, 5 minutes, 15 minutes, 1 hour, 3 hours, 6 hours — roughly half a day in total. The row shows Failing (n/6) while that plays out, so you can see how close it is to being switched off.
After six consecutive failures the endpoint is Disabled and the row explains why. Fix the endpoint, then delete it and add it again — a disabled endpoint cannot be re-enabled in place. Deliveries on any row opens its recent attempts with the response each one got, which is usually enough to tell a wrong URL from an outage on your side.
Tell us what you were doing and what happened — the notification text or a product SKU helps us find it fast.