Unified documentation for integrating with our headless commerce network.
Last Updated: Loading...
Welcome, partner. This unified headless commerce API provides direct programmatic access to our product catalog and ordering system. This documentation covers all partner activities including bulk inventory and dropshipping.
Include your secret API key in the `Authorization` header for all requests. The API is rate-limited to 25 requests per minute.
Authorization: Bearer YOUR_SECRET_API_KEYFetches all products available for the partner network. These are items tagged with `wholesale` in our Shopify system.
Creates a draft order. Supports both local inventory stocking and direct-to-consumer dropshipping.
{
"lineItems": [
{ "variantId": "gid://shopify/ProductVariant/456", "quantity": 1 }
],
"shippingAddress": {
"firstName": "John",
"lastName": "Doe",
"address1": "123 Partner St",
"city": "Los Angeles",
"province": "CA",
"zip": "90001",
"country": "US"
}
}By unifying our Bulk and Wholesale systems into the Partner network, we provide a single integration point for all B2B activities. Please implement ETag caching to avoid rate limiting and ensure a smooth rollout.