{ "opencollection": "1.0.0", "info": { "name": "Fake Store Auth Products API", "version": "1.0.0" }, "items": [ { "info": { "name": "Products", "type": "folder" }, "items": [ { "info": { "name": "List products", "type": "http" }, "http": { "method": "GET", "url": "https://fakestoreapi.com/products", "params": [ { "name": "limit", "value": "", "type": "query", "description": "Maximum number of results to return" }, { "name": "sort", "value": "", "type": "query", "description": "Sort order for results" } ] }, "docs": "List products" }, { "info": { "name": "Create a product", "type": "http" }, "http": { "method": "POST", "url": "https://fakestoreapi.com/products", "body": { "type": "json", "data": "{}" } }, "docs": "Create a product" }, { "info": { "name": "Get a product", "type": "http" }, "http": { "method": "GET", "url": "https://fakestoreapi.com/products/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Product ID" } ] }, "docs": "Get a product" }, { "info": { "name": "Replace a product", "type": "http" }, "http": { "method": "PUT", "url": "https://fakestoreapi.com/products/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Product ID" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Replace a product" }, { "info": { "name": "Partially update a product", "type": "http" }, "http": { "method": "PATCH", "url": "https://fakestoreapi.com/products/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Product ID" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Partially update a product" }, { "info": { "name": "Delete a product", "type": "http" }, "http": { "method": "DELETE", "url": "https://fakestoreapi.com/products/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Product ID" } ] }, "docs": "Delete a product" }, { "info": { "name": "List product categories", "type": "http" }, "http": { "method": "GET", "url": "https://fakestoreapi.com/products/categories" }, "docs": "List product categories" }, { "info": { "name": "List products in a category", "type": "http" }, "http": { "method": "GET", "url": "https://fakestoreapi.com/products/category/:category", "params": [ { "name": "category", "value": "", "type": "path", "description": "Category name" }, { "name": "limit", "value": "", "type": "query", "description": "Maximum number of results to return" }, { "name": "sort", "value": "", "type": "query", "description": "Sort order for results" } ] }, "docs": "List products in a category" } ] } ], "bundled": true }