{ "opencollection": "1.0.0", "info": { "name": "Nuvemshop / Tiendanube Admin Categories Products API", "version": "2025-03" }, "request": { "auth": { "type": "apikey", "key": "Authentication", "value": "{{Authentication}}", "placement": "header" } }, "items": [ { "info": { "name": "Products", "type": "folder" }, "items": [ { "info": { "name": "List products", "type": "http" }, "http": { "method": "GET", "url": "https://api.tiendanube.com/2025-03/{store_id}/products", "params": [ { "name": "page", "value": "", "type": "query", "description": "Page number for pagination." }, { "name": "per_page", "value": "", "type": "query", "description": "Results per page (max 200)." }, { "name": "q", "value": "", "type": "query", "description": "Filter products by a free-text search term." }, { "name": "fields", "value": "", "type": "query", "description": "Comma-separated list of fields to return." } ] }, "docs": "Receive a paginated list of all products in the store." }, { "info": { "name": "Create a product", "type": "http" }, "http": { "method": "POST", "url": "https://api.tiendanube.com/2025-03/{store_id}/products", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new product in the store." }, { "info": { "name": "Get a product", "type": "http" }, "http": { "method": "GET", "url": "https://api.tiendanube.com/2025-03/{store_id}/products/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The numeric resource id." } ] }, "docs": "Receive a single product by its id." }, { "info": { "name": "Update a product", "type": "http" }, "http": { "method": "PUT", "url": "https://api.tiendanube.com/2025-03/{store_id}/products/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The numeric resource id." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Modify an existing product." }, { "info": { "name": "Delete a product", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.tiendanube.com/2025-03/{store_id}/products/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "The numeric resource id." } ] }, "docs": "Remove a product from the store." }, { "info": { "name": "Get a product by variant SKU", "type": "http" }, "http": { "method": "GET", "url": "https://api.tiendanube.com/2025-03/{store_id}/products/sku/:sku", "params": [ { "name": "sku", "value": "", "type": "path", "description": "The SKU of a product variant." } ] }, "docs": "Receive the product that owns the variant with the given SKU." }, { "info": { "name": "Bulk update stock and price", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.tiendanube.com/2025-03/{store_id}/products/stock-price", "body": { "type": "json", "data": "{}" } }, "docs": "Update stock and/or price for multiple products and variants in one request." } ] } ], "bundled": true }