{"info":{"_postman_id":"c1c2df4c-0318-41ab-84b7-42f37e0c91d1","name":"Pantry","description":"<html><head></head><body><p>Pantry is a free service that provides perishable data storage for small projects. Data is securely stored for as long as you and your users need it and is deleted after a period of inactivity. Simply use the restful API to post JSON objects and we'll take care of the rest.</p>\n<p>It was built to provide a simple, re-usable storage solution for smaller sized projects. It was created by developers for developers, to be there when you need it and to help you rapidly prototype your next project.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"3281832","collectionId":"c1c2df4c-0318-41ab-84b7-42f37e0c91d1","publishedId":"SzmZeMLC","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"F5BDA4"},"publishDate":"2020-05-04T01:12:08.000Z"},"item":[{"name":"Pantry","item":[{"name":"Get Details","event":[{"listen":"test","script":{"id":"dcddd548-dbd3-4b32-bf60-3787fc733c7b","exec":["pm.test(\"Validate Response\", function(){","    const responseJSON = pm.response.json()","    pm.expect(responseJSON.name).to.eql(pm.environment.get(\"pantry_account_name\"))","    pm.expect(responseJSON.description).to.eql(pm.environment.get(\"pantry_account_description\"))","})","","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});"],"type":"text/javascript"}}],"id":"a239b693-9df6-4757-9291-91cd8b73c714","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{pantry_api_path}}/pantry/{{pantry_uuid}}","description":"<p>Return the details of the requested Pantry, including a list of baskets currently stored inside it.</p>\n<p>Each basket includes its TTL value (lifespan in seconds) which can be used to calculate when the basket will be deleted. Keep in mind that reading &amp; writing (GET/POST/PUT) to a basket refreshes its TTL, allowing you to use your Pantry for as long as you need.</p>\n","urlObject":{"path":["pantry","{{pantry_uuid}}"],"host":["{{pantry_api_path}}"],"query":[],"variable":[]}},"response":[{"id":"8e493fdb-9cfe-4356-b0e1-85e789b9818d","name":"Get Details","originalRequest":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{pantry_api_path}}/pantry/{{pantry_uuid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"163"},{"key":"ETag","value":"W/\"a3-rHBxhokHcnV4af3hGYFqsqL6jSU\""},{"key":"Date","value":"Mon, 20 Sep 2021 12:06:48 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"name\": \"Postman_Account\",\n    \"description\": \"Postman test account\",\n    \"errors\": [],\n    \"notifications\": true,\n    \"percentFull\": 1,\n    \"baskets\": [\n        {\n            \"name\": \"Postman_Basket\",\n            \"ttl\": 258915\n        }\n    ]\n}"}],"_postman_id":"a239b693-9df6-4757-9291-91cd8b73c714"},{"name":"Update Details","event":[{"listen":"test","script":{"id":"93352bfb-19fb-4de9-a01f-34d623b6b5c1","exec":["pm.test(\"Validate Response\", function () {","    var jsonData = pm.response.json();","    pm.expect(jsonData).to.eql({","        \"name\": \"Postman_Account_Updated\",","        \"description\": \"Postman test account updated\",","        \"errors\": [],","        \"notifications\": true,","        \"percentFull\": 0,","        \"baskets\": []","    });","})","","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});"],"type":"text/javascript"}}],"id":"80c50bc3-282d-4547-a937-27dcd83f70f7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Postman_Account_Updated\",\n\t\"description\": \"Postman test account updated\"\n}"},"url":"{{pantry_api_path}}/pantry/{{pantry_uuid}}","description":"<p>Update the name or description of the requested Pantry</p>\n","urlObject":{"path":["pantry","{{pantry_uuid}}"],"host":["{{pantry_api_path}}"],"query":[],"variable":[]}},"response":[{"id":"0c01b505-55be-450f-bf3c-807e9e56b163","name":"Update Details","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Postman_Account_Updated\",\n\t\"description\": \"Postman test account updated\"\n}"},"url":"{{pantry_api_path}}/pantry/{{pantry_uuid}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"179"},{"key":"ETag","value":"W/\"b3-QQU1VCaVH3UuoQ/sT1nUB3ShgQ8\""},{"key":"Date","value":"Thu, 17 Mar 2022 20:34:55 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"name\": \"Postman_Account_Updated\",\n    \"description\": \"Postman test account updated\",\n    \"errors\": [],\n    \"notifications\": true,\n    \"percentFull\": 1,\n    \"baskets\": [\n        {\n            \"name\": \"Postman_Basket\",\n            \"ttl\": 234493\n        }\n    ]\n}"}],"_postman_id":"80c50bc3-282d-4547-a937-27dcd83f70f7"}],"id":"0e9a6449-fd78-49b4-97f9-5c02257f430a","_postman_id":"0e9a6449-fd78-49b4-97f9-5c02257f430a","description":""},{"name":"Basket","item":[{"name":"Create and/or Replace","event":[{"listen":"test","script":{"id":"e2debb36-1a4e-4b64-9ad6-e3bac877597e","exec":["pm.test(\"Validate Response\", function(){","    pm.expect(pm.response.text()).to.include(\"Your Pantry was updated with basket:\")","    pm.expect(pm.response.text()).to.include(pm.environment.get(\"pantry_basket_name\"))","})"],"type":"text/javascript"}}],"id":"98b35ee9-9d11-417e-8739-21a4ac9893ed","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"derp\": \"flerp123\",\n\t\"testPayload\": true,\n\t\"keysLength\": 3\n}"},"url":"{{pantry_api_path}}/pantry/{{pantry_uuid}}/basket/{{pantry_basket_name}}","description":"<p>Create a new basket inside the specified Pantry with the provided data and name. If a basket of the same name already exists, this will replace all of its contents.</p>\n<p>Metadata, such as the createdAt timestamp will be automatically generated and returned under the \"_metadata\" attribute.</p>\n","urlObject":{"path":["pantry","{{pantry_uuid}}","basket","{{pantry_basket_name}}"],"host":["{{pantry_api_path}}"],"query":[],"variable":[]}},"response":[{"id":"caa4f2f5-ea76-401a-bfc6-c1c9be4e1644","name":"Create and/or Replace","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"derp\": \"flerp123\",\n\t\"testPayload\": true,\n\t\"keysLength\": 3\n}"},"url":"{{pantry_api_path}}/pantry/{{pantry_uuid}}/basket/{{pantry_basket_name}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Wed, 04 Mar 2026 15:31:45 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"cloudflare"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Nel","value":"{\"report_to\":\"cf-nel\",\"success_fraction\":0.0,\"max_age\":604800}"},{"key":"ETag","value":"W/\"80-sQ2Vuangq1IYRGbb1/wzyc3u+aI\""},{"key":"Report-To","value":"{\"group\":\"cf-nel\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://a.nel.cloudflare.com/report/v4?s=y4hEPLEPLSKycMAGEEoII4eH4qd30OuM9CRxAHTps1QUtTXmf38SNhHMvK9e58rMYi9YbJwhj8w3DtK0r0QY%2Fdn1gZb%2BIYDOTUugDFDChw%3D%3D\"}]}"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Content-Encoding","value":"br"},{"key":"CF-RAY","value":"9d71ee039eae76ed-YYZ"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"derp\": \"flerp123\",\n    \"testPayload\": true,\n    \"keysLength\": 3,\n    \"_metadata\": {\n        \"createdAt\": \"Wed, 04 Mar 2026 15:31:45 GMT\",\n        \"updatedAt\": null\n    }\n}"}],"_postman_id":"98b35ee9-9d11-417e-8739-21a4ac9893ed"},{"name":"Update Contents","event":[{"listen":"test","script":{"id":"a8b2c7cc-b19b-42b8-b72d-e54bd69b5b6c","exec":["pm.test(\"Validate Response\", function () {","    var jsonData = pm.response.json();","    pm.expect(jsonData).to.eql({","        \"derp\": \"flerp123\",","        \"testPayload\": true,","        \"keysLength\": 3,","        \"newKey\": \"newValue\"","    });","})","","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});"],"type":"text/javascript"}}],"id":"f1c2c2b2-63d3-42f6-b30d-94b08ed68ca9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"newKey\": \"newValue\"\n}"},"url":"{{pantry_api_path}}/pantry/{{pantry_uuid}}/basket/{{pantry_basket_name}}","description":"<p>Update the data of an existing basket. This operation performs a deep merge and will overwrite the values of any existing keys, or append values to nested objects or arrays.</p>\n<p>Metadata, including both the createdAt &amp; updatedAt timestamps will be automatically calculated and returned under the \"_metadata\" attribute.</p>\n","urlObject":{"path":["pantry","{{pantry_uuid}}","basket","{{pantry_basket_name}}"],"host":["{{pantry_api_path}}"],"query":[],"variable":[]}},"response":[{"id":"764049dd-be0a-4815-a913-7129dc65d194","name":"Update Contents of a Basket","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"newKey\": \"newValue\"\n}"},"url":"{{pantry_api_path}}/pantry/{{pantry_uuid}}/basket/{{pantry_basket_name}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 04 Mar 2026 15:33:27 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"cloudflare"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Nel","value":"{\"report_to\":\"cf-nel\",\"success_fraction\":0.0,\"max_age\":604800}"},{"key":"ETag","value":"W/\"af-IgHeABiUMIDDzK2ilTymWhsUXl4\""},{"key":"Report-To","value":"{\"group\":\"cf-nel\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://a.nel.cloudflare.com/report/v4?s=xwhr6cUywWh2sNKyLyQuj1195h5XkEbAX%2F7U2RTmJ9ai0YjmBDZypFqiqFiJjPW5MtzN2JP1ZvRz0E7z%2BxdHWresvidhxLGHsZujFEGFtg%3D%3D\"}]}"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Content-Encoding","value":"br"},{"key":"CF-RAY","value":"9d71f0805de2abfa-YYZ"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"derp\": \"flerp123\",\n    \"testPayload\": true,\n    \"keysLength\": 3,\n    \"newKey\": \"newValue\",\n    \"_metadata\": {\n        \"createdAt\": \"Wed, 04 Mar 2026 15:31:45 GMT\",\n        \"updatedAt\": \"Wed, 04 Mar 2026 15:33:27 GMT\"\n    }\n}"}],"_postman_id":"f1c2c2b2-63d3-42f6-b30d-94b08ed68ca9"},{"name":"Get Contents","event":[{"listen":"test","script":{"id":"e2debb36-1a4e-4b64-9ad6-e3bac877597e","exec":[""],"type":"text/javascript"}}],"id":"2f84263c-bfb7-48c6-bbae-626392d6c112","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{pantry_api_path}}/pantry/{{pantry_uuid}}/basket/{{pantry_basket_name}}","description":"<p>Returns the full contents of the specified basket.</p>\n","urlObject":{"path":["pantry","{{pantry_uuid}}","basket","{{pantry_basket_name}}"],"host":["{{pantry_api_path}}"],"query":[],"variable":[]}},"response":[{"id":"f2e74b2e-110c-4c39-bf45-115c455f3332","name":"Get Contents of a Basket","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{pantry_api_path}}/pantry/{{pantry_uuid}}/basket/{{pantry_basket_name}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 04 Mar 2026 15:33:55 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"cloudflare"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Nel","value":"{\"report_to\":\"cf-nel\",\"success_fraction\":0.0,\"max_age\":604800}"},{"key":"ETag","value":"W/\"af-IgHeABiUMIDDzK2ilTymWhsUXl4\""},{"key":"Cache-Control","value":"s-maxage=10"},{"key":"Report-To","value":"{\"group\":\"cf-nel\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://a.nel.cloudflare.com/report/v4?s=zKBc6POjZ%2FW9vmkj%2F40p8dGl%2BaCgIKD%2FTly%2FvxoALVzBca9azpgJACxU5CE%2FtSnhZs%2BGNDWkyFoqguFRdc8BabRIZkOl%2FKoR3sor2zpCtA%3D%3D\"}]}"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Content-Encoding","value":"br"},{"key":"CF-RAY","value":"9d71f1307934abfa-YYZ"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"derp\": \"flerp123\",\n    \"testPayload\": true,\n    \"keysLength\": 3,\n    \"newKey\": \"newValue\",\n    \"_metadata\": {\n        \"createdAt\": \"Wed, 04 Mar 2026 15:31:45 GMT\",\n        \"updatedAt\": \"Wed, 04 Mar 2026 15:33:27 GMT\"\n    }\n}"}],"_postman_id":"2f84263c-bfb7-48c6-bbae-626392d6c112"},{"name":"Delete","event":[{"listen":"test","script":{"id":"eab89ffa-ba83-41b9-ada8-a9c9749f4d52","exec":["pm.test(\"Validate Response\", function(){","    pm.expect(pm.response.text()).to.include(\"was removed from your Pantry!\")","    pm.expect(pm.response.text()).to.include(pm.environment.get(\"pantry_basket_name\"))","})"],"type":"text/javascript"}}],"id":"e4e33d03-6383-4b70-b446-a18fefd9dfab","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","type":"text","value":"application/json"}],"body":{"mode":"raw","raw":""},"url":"{{pantry_api_path}}/pantry/{{pantry_uuid}}/basket/{{pantry_basket_name}}","description":"<p>Delete the entire basket. Warning, this action cannot be undone.</p>\n","urlObject":{"path":["pantry","{{pantry_uuid}}","basket","{{pantry_basket_name}}"],"host":["{{pantry_api_path}}"],"query":[],"variable":[]}},"response":[{"id":"a6b4ff07-5ab3-464c-ac54-c78f491198a4","name":"Delete a Basket","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{pantry_api_path}}/pantry/{{pantry_uuid}}/basket/{{pantry_basket_name}}"},"status":"OK","code":204,"_postman_previewlanguage":"html","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Content-Type","value":"text/html; charset=utf-8"},{"key":"Content-Length","value":"44"},{"key":"ETag","value":"W/\"2c-wJF58KxADzElY5cT0JVjpgf+op4\""},{"key":"Date","value":"Tue, 19 May 2020 01:47:26 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"e4e33d03-6383-4b70-b446-a18fefd9dfab"},{"name":"Get Public Basket ID","event":[{"listen":"test","script":{"id":"766ab4d6-d479-4e8e-a5d7-d4aaeba5ab07","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});","","pm.environment.set(\"public_basket_name\", pm.response.text());"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"f8ffb326-9fc0-49ac-a50e-2168c9bed4eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{pantry_api_path}}/pantry/{{pantry_uuid}}/basket/{{pantry_basket_name}}/public","description":"<p>Generate a unique public id for the specified basket. The public id can then be used to retrieve the associated baskets contents without exposing the PantryID or Basket name via the public basket endpoint.</p>\n","urlObject":{"path":["pantry","{{pantry_uuid}}","basket","{{pantry_basket_name}}","public"],"host":["{{pantry_api_path}}"],"query":[],"variable":[]}},"response":[{"id":"6c228a8b-9144-4a9a-8d1c-7e152d1304db","name":"Get Public Basket ID","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"url":"{{pantry_api_path}}/pantry/{{pantry_uuid}}/basket/{{pantry_basket_name}}/public"},"status":"OK","code":200,"_postman_previewlanguage":"","header":[{"key":"Date","value":"Sat, 07 Feb 2026 23:08:36 GMT"},{"key":"Content-Type","value":"text/html; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"cloudflare"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Mod-Pagespeed","value":"1.13.35.2-0"},{"key":"Cache-Control","value":"max-age=0, no-cache, s-maxage=10"},{"key":"Nel","value":"{\"report_to\":\"cf-nel\",\"success_fraction\":0.0,\"max_age\":604800}"},{"key":"Report-To","value":"{\"group\":\"cf-nel\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://a.nel.cloudflare.com/report/v4?s=7APm8eFsTMr2rTlV1j4cauFhOX2hJg6LsloWA149ucR3ewJhfxFIcfzJQn0fYSGzs%2FRKUmYmqvwLWGLHrjVo6g2ZC567sGdmsy10NobR2Q%3D%3D\"}]}"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Content-Encoding","value":"br"},{"key":"CF-RAY","value":"9ca68cd6cd1ccbfd-YYZ"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"}],"cookie":[{"expires":"Invalid Date","domain":"","path":""}],"responseTime":null,"body":"4gdf9843ubin354u908gefrhiuew498"}],"_postman_id":"f8ffb326-9fc0-49ac-a50e-2168c9bed4eb"}],"id":"c805ff6a-0d9c-4cf6-99d3-d388afcd3998","_postman_id":"c805ff6a-0d9c-4cf6-99d3-d388afcd3998","description":""},{"name":"Public Basket","item":[{"name":"Get Contents of a Public Basket","event":[{"listen":"test","script":{"id":"4fcdd367-98fe-44e7-b976-e6b4bb5af059","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});"],"type":"text/javascript","packages":{},"requests":{}}}],"id":"533e9fbc-45ef-45a7-9c21-cfae1fba4f65","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{pantry_api_path}}/public/{{public_basket_id}}","description":"<p>Return the contents of the associated basket, excluding all metadata. If the basket nolonger exists, this will return an empty object.</p>\n","urlObject":{"path":["public","{{public_basket_id}}"],"host":["{{pantry_api_path}}"],"query":[],"variable":[]}},"response":[{"id":"17a86014-0f7c-4227-9424-650ba646e5c1","name":"Get Contents of a Public Basket","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":""},"url":"{{pantry_api_path}}/public/{{public_basket_id}}"},"status":"OK","code":200,"_postman_previewlanguage":null,"header":[{"key":"Date","value":"Wed, 04 Mar 2026 15:50:00 GMT"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Transfer-Encoding","value":"chunked"},{"key":"Connection","value":"keep-alive"},{"key":"Server","value":"cloudflare"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-DNS-Prefetch-Control","value":"off"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Download-Options","value":"noopen"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"Nel","value":"{\"report_to\":\"cf-nel\",\"success_fraction\":0.0,\"max_age\":604800}"},{"key":"ETag","value":"W/\"49-5cf2LpaDGFz5QXhnw1TDAU/YfSk\""},{"key":"Cache-Control","value":"s-maxage=10"},{"key":"Report-To","value":"{\"group\":\"cf-nel\",\"max_age\":604800,\"endpoints\":[{\"url\":\"https://a.nel.cloudflare.com/report/v4?s=uPSmvpLR9bswRCOSRbaJNOENVbaiOulNNB%2FCcuW5n46H7B5aRCEQCfcc%2B25W9hpI9IzR7jg4zMdzuOvyNrLtJDK92pjh8mUP%2BnCQEkzWNg%3D%3D\"}]}"},{"key":"cf-cache-status","value":"DYNAMIC"},{"key":"Content-Encoding","value":"br"},{"key":"CF-RAY","value":"9d7208bb3d5e175c-YYZ"},{"key":"alt-svc","value":"h3=\":443\"; ma=86400"}],"cookie":[],"responseTime":null,"body":"{\n    \"derp\": \"flerp123\",\n    \"testPayload\": true,\n    \"keysLength\": 3,\n    \"newKey\": \"newValue\"\n}"}],"_postman_id":"533e9fbc-45ef-45a7-9c21-cfae1fba4f65"}],"id":"d32dcbe6-a469-4477-a5f3-1f4b06c8cfe8","_postman_id":"d32dcbe6-a469-4477-a5f3-1f4b06c8cfe8","description":""}],"event":[{"listen":"prerequest","script":{"id":"a3787f7a-9c7e-4416-8d30-09f99d7b9055","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"44e6938d-e84c-4006-8c46-a555f1e11c32","type":"text/javascript","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});"]}}]}