Path Parameters
Look for Vendor by ID or their slug
Query Parameters
Specify the fields you would like returned in the response body. More information.
Response
200 Success - Returns the vendor object.
Vendors are Sellers in the marketplace.
curl --request GET \
--url https://demo.spreecommerce.org/api/v2/storefront/vendors/{vendor_slug}{
"data": {
"id": "e1171601-a4ce-47d2-a795-c96fbdf20029",
"type": "vendor",
"attributes": {
"name": "Best Shoes",
"email": "[email protected]",
"slug": "best-shoes",
"about_us": "<p>We are your #1 shoe store.</p>\n<p>Follow us on social media.</p>",
"logo_url": "https://assets.com/images/logo_name",
"cover_photo_url": "https://assets.com/images/wide_tree_wzxgak"
}
}
}Returns the details of a specified Vendor. Only available in Enterprise Edition
curl --request GET \
--url https://demo.spreecommerce.org/api/v2/storefront/vendors/{vendor_slug}{
"data": {
"id": "e1171601-a4ce-47d2-a795-c96fbdf20029",
"type": "vendor",
"attributes": {
"name": "Best Shoes",
"email": "[email protected]",
"slug": "best-shoes",
"about_us": "<p>We are your #1 shoe store.</p>\n<p>Follow us on social media.</p>",
"logo_url": "https://assets.com/images/logo_name",
"cover_photo_url": "https://assets.com/images/wide_tree_wzxgak"
}
}
}Look for Vendor by ID or their slug
Specify the fields you would like returned in the response body. More information.
200 Success - Returns the vendor object.
Vendors are Sellers in the marketplace.
Show child attributes
Was this page helpful?