get
https://sandbox.pismolabs.io/sellers/v3/marketplaces
Retrieve a paginated list of marketplaces with optional filtering and sorting capabilities.
Filtering
Filters are provided as individual query parameters. Multiple filters can be combined — each additional parameter further restricts the result set (AND logic).
| Parameter | Field Filtered | Match Type | Case Sensitive |
|---|---|---|---|
documentNumber | document_number | Exact | Yes |
externalId | external_id | Exact | Yes |
brandName | brand_name | Partial (LIKE) | No |
marketplaceName | marketplace_name | Partial (LIKE) | No |
Examples:
?documentNumber=12345678901234— exact document number match?brandName=Acme— brand name containing "Acme"?brandName=Acme&marketplaceName=Store— brand name containing "Acme" AND marketplace name containing "Store"
Sorting
Use order and orderBy to control result ordering.
Supported orderBy values: marketplace_id, document_number, brand_name, marketplace_name, external_id.
Default sort: marketplace_id ASC.
Empty Results
Empty result sets return HTTP 200 with an empty items array (not 404).