Market vendors resource
https://www.swcombine.com/ws/v2.0/documentation/market/vendors/ SW Combine API Documentation
Get a specific vendor by UID.
Returns the Vendor object directly — not wrapped in a Page.
Vendor
Page
The Vendor entity.
const vendor = await client.market.vendors.get({ uid: 'vendor-uid' });console.log(vendor.name); // access properties directly, not vendor.data Copy
const vendor = await client.market.vendors.get({ uid: 'vendor-uid' });console.log(vendor.name); // access properties directly, not vendor.data
List all public vendors (paginated)
Optional
Optional pagination parameters
const vendors = await client.market.vendors.list();const moreVendors = await client.market.vendors.list({ start_index: 51, item_count: 50 }); Copy
const vendors = await client.market.vendors.list();const moreVendors = await client.market.vendors.list({ start_index: 51, item_count: 50 });
Market vendors resource
See
https://www.swcombine.com/ws/v2.0/documentation/market/vendors/ SW Combine API Documentation