{"info":{"_postman_id":"77d296e2-5fff-5a5a-ad02-6e1a8660e7d4","name":"Phobio API V2","description":"<html><head></head><body><h1 id=\"authentication\">Authentication</h1>\n<p>The Phobio API uses the <code>Bearer</code> type authorization header with a custom authentication token. The token is a base-64 encoded string, consisting of your company's API token and the the username of a Phobio user.</p>\n<p>To construct the token, combine the username and token, separated by a colon:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>john.doe:948343ujidsofh89p1832uj\n\n</code></pre><p>And base-64 encode the resulting string with the language/library of your choice:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>am9obi5kb2U6OTQ4MzQzdWppZHNvZmg4OXAxODMydWo=\n\n</code></pre><p>The authorization header should contain this token and the <code>Bearer</code> scheme. The final header will resemble the following:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Authorization: Bearer am9obi5kb2U6OTQ4MzQzdWppZHNvZmg4OXAxODMydWo=\n\n</code></pre><p>Include this header with all requests to the Phobio API. Pay special attention to the <code>username</code> used to construct your token, as <strong>any trades created through requests using your token will be attributed to this user</strong>. It is recommended that you programmatically generate your authentication tokens so the Phobio user may be changed readily in your application.</p>\n<h1 id=\"requests\">Requests</h1>\n<p>The Phobio API supports the JSON content type only. The content type should always be set using HTTP headers in the following way:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Accept: application/json\nContent-Type: application/json\n\n</code></pre><p>The Phobio API supports several different languages for requests and responses. To request a language other than English, set the Accept-Language header like so:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Accept-Language: en\n\n</code></pre><p>The API supports the following locales:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Code</th>\n<th>Locale</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>en</td>\n<td>English (Default)</td>\n</tr>\n<tr>\n<td>fr-ca</td>\n<td>Canadian French</td>\n</tr>\n<tr>\n<td>es</td>\n<td>Spanish</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"pagination\">Pagination</h1>\n<p>Nearly all GET resources that return a list of objects are paginated. Pagination in the Phobio API follows a predictable pattern, and has a maximum limit of 50 items per page. The following is an example of pagination in the Phobio API:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"count\": 3,\n    \"next\": null,\n    \"previous\": null,\n    \"results\": [\n        ...\n    ]\n}\n\n</code></pre><p>In paginated requests, the following parameters are available:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>count</td>\n<td>Number of total items returned by the resource.</td>\n</tr>\n<tr>\n<td>next</td>\n<td>If present, indicates the URL of the next page of resources. Will be null if there are no more pages after the current page.</td>\n</tr>\n<tr>\n<td>previous</td>\n<td>If present, indicates the URL of the previous page of resources. Will be null if there are no more pages prior to the current page.</td>\n</tr>\n<tr>\n<td>results</td>\n<td>A list of objects on the current page, or the actual results of the request.</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"errors\">Errors</h1>\n<p>Phobio's API uses standard HTTP error codes, and supplements them with additional detail when required, such as during input validation.</p>\n<p>Additional detail will be represented as <code>detail</code>:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"detail\": \"Not found.\"\n}\n\n</code></pre><p>Or as the field's name, in the case of a validation-related error:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"products\": [\n        {\n            \"uid\": [\n                \"Product with UID 123 could not be found\"\n            ]\n        }\n    ]\n}\n\n</code></pre></body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Authentication","slug":"authentication"},{"content":"Requests","slug":"requests"},{"content":"Pagination","slug":"pagination"},{"content":"Errors","slug":"errors"}],"owner":"919644","collectionId":"77d296e2-5fff-5a5a-ad02-6e1a8660e7d4","publishedId":"7Lrdgji","public":true,"customColor":{"top-bar":"170A34","right-sidebar":"170A34","highlight":"007CF8"},"publishDate":"2020-11-17T20:41:45.000Z"},"item":[{"name":"Products","item":[{"name":"List Products","id":"d2f0198a-134e-d0cf-2095-4f2ecebb2e3a","request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"url":"https://phobio.com/api/v2/products/","description":"<p>List all available products, optionally filtered by Product Attributes, Manufacturers, Categories, and Product Families.</p>\n<p>Filters are applied through the use of GET parameters. Please use the following rules when applying filters to Products:</p>\n<ul>\n<li><em>Categories</em> use the <code>category</code> parameter. Category can be any category slug returned by the List Categories resource.</li>\n<li><em>Manufacturers</em> use the <code>manufacturer</code> parameter. Manufacturer can be any manufacturer slug returned by the List Manufacturers resource.</li>\n<li><em>Product Attributes</em> can represent any number of possible product features on which to filter products. Because the possible permutations of product attributes can change, a resource has been supplied to return different product attribute types.<ul>\n<li>List Attribute Types returns all possible types of Product Attributes. The <code>slug</code> returned by this resource is the GET parameter used to filter by the given attribute type.</li>\n<li>List Product Attributes returns all possible values for a given type of Product Attribute. These values may be used to filter Products by attribute.</li>\n<li>As an example, a call to <em>List Attribute Types</em> returns a list of attribute types, where one possible attribute is <code>network</code>. A subsequent call to <em>List Product Attributes</em> returns a list of possible values for <code>network</code>, including <code>gsm</code> and <code>cdma</code>. With this information, you could now filter Products by network type using the parameter <code>?network=cdma</code></li>\n</ul>\n</li>\n</ul>\n<p>Finally, it should be noted that while different GET parameters can be chained together to filter the resulting set of Products down, it is possible to filter down to the point where no Products are returned, because no Products match all of the supplied filters.</p>\n<h5 id=\"get-parameters\">GET Parameters</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>family</code></td>\n<td>Product Family Slug</td>\n</tr>\n<tr>\n<td><code>category</code></td>\n<td>Product Category Slug</td>\n</tr>\n<tr>\n<td><code>manufacturer</code></td>\n<td>Product Manufacturer Slug</td>\n</tr>\n<tr>\n<td><code>screen-size</code></td>\n<td>Product Screen Size Slug</td>\n</tr>\n<tr>\n<td><code>capacity</code></td>\n<td>Product Storage Capacity Slug</td>\n</tr>\n<tr>\n<td><code>processor</code></td>\n<td>Product Processor Slug</td>\n</tr>\n<tr>\n<td><code>carrier</code></td>\n<td>Product Carrier Slug</td>\n</tr>\n<tr>\n<td><code>network</code></td>\n<td>Product Network Slug</td>\n</tr>\n<tr>\n<td><code>year</code></td>\n<td>Four-Digit Year</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["products",""],"host":["https://phobio.com/api/v2"],"query":[{"disabled":true,"description":{"content":"<p>Product Family Slug</p>\n","type":"text/plain"},"key":"family","value":""},{"disabled":true,"description":{"content":"<p>Product Category Slug</p>\n","type":"text/plain"},"key":"category","value":""},{"disabled":true,"description":{"content":"<p>Product Manufacturer Slug</p>\n","type":"text/plain"},"key":"manufacturer","value":""},{"disabled":true,"description":{"content":"<p>Product Screen Size Slug</p>\n","type":"text/plain"},"key":"screen-size","value":""},{"disabled":true,"description":{"content":"<p>Product Storage Capacity Slug</p>\n","type":"text/plain"},"key":"capacity","value":""},{"disabled":true,"description":{"content":"<p>Product Processor Slug</p>\n","type":"text/plain"},"key":"processor","value":""},{"disabled":true,"description":{"content":"<p>Product Carrier Slug</p>\n","type":"text/plain"},"key":"carrier","value":""},{"disabled":true,"description":{"content":"<p>Product Network Slug</p>\n","type":"text/plain"},"key":"network","value":""}],"variable":[]}},"response":[{"id":"028411ca-781c-affb-c6f8-661b6e4e9c40","name":"List Products","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"http://localhost:8000/api/v2/products/","protocol":"http","host":["localhost"],"port":"8000","path":["api","v2","products",""],"query":[{"key":"family","value":"macbook-pro","description":"Product Family Slug","disabled":true},{"key":"category","value":"laptop","description":"Product Category Slug","disabled":true},{"key":"manufacturer","value":"apple","description":"Product Manufacturer Slug","disabled":true},{"key":"screen-size","value":"13","description":"Product Screen Size Slug","disabled":true},{"key":"capacity","value":"","description":"Product Storage Capacity Slug","disabled":true},{"key":"processor","value":"","description":"Product Processor Slug","disabled":true},{"key":"carrier","value":null,"description":"Product Carrier Slug","disabled":true},{"key":"network","value":null,"description":"Product Network Slug","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, HEAD, OPTIONS","name":"Allow","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Language","value":"en","name":"Content-Language","description":""},{"key":"Content-Length","value":"73517","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Feb 2018 16:34:24 GMT","name":"Date","description":""},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":""},{"key":"Strict-Transport-Security","value":"max-age=15768000","name":"Strict-Transport-Security","description":""},{"key":"Vary","value":"Accept-Language, Cookie","name":"Vary","description":""},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":""}],"cookie":[],"responseTime":"1017","body":"{\n  \"count\": 3640,\n  \"next\": \"http://staging.phob.io/api/v2/products/?page=2\",\n  \"previous\": null,\n  \"results\": [\n    {\n      \"uid\": \"15757837784\",\n      \"title\": \"IPAQ 510\",\n      \"manufacturer\": { \"slug\": \"hp\", \"title\": \"HP\" },\n      \"aliases\": null,\n      \"attributes\": { \"family\": [{ \"slug\": \"hp-phone\", \"title\": \"HP Phone\" }] },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-hp-ipaq-510.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-hp-ipaq-510.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-hp-ipaq-510.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15739985586\",\n      \"title\": \"IPAQ 910\",\n      \"manufacturer\": { \"slug\": \"hp\", \"title\": \"HP\" },\n      \"aliases\": null,\n      \"attributes\": { \"family\": [{ \"slug\": \"hp-phone\", \"title\": \"HP Phone\" }] },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-hp-ipaq-910.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-hp-ipaq-910.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-hp-ipaq-910.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15913005540\",\n      \"title\": \"IPAQ H6320\",\n      \"manufacturer\": { \"slug\": \"hp\", \"title\": \"HP\" },\n      \"aliases\": null,\n      \"attributes\": { \"family\": [{ \"slug\": \"hp-phone\", \"title\": \"HP Phone\" }] },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-hp-ipaq-h6320.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-hp-ipaq-h6320.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-hp-ipaq-h6320.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15615394143\",\n      \"title\": \"IPAQ H6325\",\n      \"manufacturer\": { \"slug\": \"hp\", \"title\": \"HP\" },\n      \"aliases\": null,\n      \"attributes\": { \"family\": [{ \"slug\": \"hp-phone\", \"title\": \"HP Phone\" }] },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-hp-ipaq-h6325.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-hp-ipaq-h6325.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-hp-ipaq-h6325.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15859835074\",\n      \"title\": \"U8150 IDEOS\",\n      \"manufacturer\": { \"slug\": \"huawei\", \"title\": \"Huawei\" },\n      \"aliases\": [\"IDEOS\"],\n      \"attributes\": {\n        \"family\": [{ \"slug\": \"huawei-phone\", \"title\": \"Huawei Phone\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-huawei-u8150-ideos.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-huawei-u8150-ideos.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-huawei-u8150-ideos.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15923278467\",\n      \"title\": \"PCD U7519\",\n      \"manufacturer\": { \"slug\": \"huawei\", \"title\": \"Huawei\" },\n      \"aliases\": [\"Tap\"],\n      \"attributes\": {\n        \"family\": [{ \"slug\": \"huawei-phone\", \"title\": \"Huawei Phone\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-huawei-pcd-u7519.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-huawei-pcd-u7519.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-huawei-pcd-u7519.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15211277577\",\n      \"title\": \"Ascend\",\n      \"manufacturer\": { \"slug\": \"huawei\", \"title\": \"Huawei\" },\n      \"aliases\": [\"M860\"],\n      \"attributes\": {\n        \"family\": [{ \"slug\": \"huawei-phone\", \"title\": \"Huawei Phone\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-huawei-ascend.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-huawei-ascend.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-huawei-ascend.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15524012331\",\n      \"title\": \"M318\",\n      \"manufacturer\": { \"slug\": \"huawei\", \"title\": \"Huawei\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"family\": [{ \"slug\": \"huawei-phone\", \"title\": \"Huawei Phone\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-huawei-m318.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-huawei-m318.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-huawei-m318.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15873669194\",\n      \"title\": \"U7510\",\n      \"manufacturer\": { \"slug\": \"huawei\", \"title\": \"Huawei\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"family\": [{ \"slug\": \"huawei-phone\", \"title\": \"Huawei Phone\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-huawei-u7510.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-huawei-u7510.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-huawei-u7510.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15127689527\",\n      \"title\": \"U8110\",\n      \"manufacturer\": { \"slug\": \"huawei\", \"title\": \"Huawei\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"family\": [{ \"slug\": \"huawei-phone\", \"title\": \"Huawei Phone\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-huawei-u8110.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-huawei-u8110.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-huawei-u8110.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15677544445\",\n      \"title\": \"iPad 16GB WiFi\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": [\"A1219\", \"MB292LL/A\"],\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"16gb\", \"title\": \"16GB\" }],\n        \"carrier\": [{ \"slug\": \"wifi\", \"title\": \"WiFi\" }],\n        \"family\": [{ \"slug\": \"ipad-1\", \"title\": \"iPad 1\" }],\n        \"year\": [{ \"slug\": \"2010\", \"title\": \"2010\" }]\n      },\n      \"category\": { \"slug\": \"tablet\", \"title\": \"Tablet\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-apple-ipad-16gb-wifi.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-apple-ipad-16gb-wifi.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-apple-ipad-16gb-wifi.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": false\n    },\n    {\n      \"uid\": \"15297585711\",\n      \"title\": \"iPad 16GB WiFi + 3G\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": [\"A1337\", \"MC349LL/A\"],\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"16gb\", \"title\": \"16GB\" }],\n        \"carrier\": [{ \"slug\": \"att\", \"title\": \"AT&T\" }],\n        \"family\": [{ \"slug\": \"ipad-1\", \"title\": \"iPad 1\" }],\n        \"year\": [{ \"slug\": \"2010\", \"title\": \"2010\" }]\n      },\n      \"category\": { \"slug\": \"tablet\", \"title\": \"Tablet\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-apple-ipad-16gb-wifi-3g.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-apple-ipad-16gb-wifi-3g.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-apple-ipad-16gb-wifi-3g.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15811629045\",\n      \"title\": \"iPad 32GB WiFi\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": [\"A1219\", \"MB292LL/A\"],\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"32gb\", \"title\": \"32GB\" }],\n        \"carrier\": [{ \"slug\": \"wifi\", \"title\": \"WiFi\" }],\n        \"family\": [{ \"slug\": \"ipad-1\", \"title\": \"iPad 1\" }],\n        \"year\": [{ \"slug\": \"2010\", \"title\": \"2010\" }]\n      },\n      \"category\": { \"slug\": \"tablet\", \"title\": \"Tablet\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-apple-ipad-32gb-wifi.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-apple-ipad-32gb-wifi.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-apple-ipad-32gb-wifi.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": false\n    },\n    {\n      \"uid\": \"15456954575\",\n      \"title\": \"iPad 32GB WiFi + 3G\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": [\"A1337\", \"MC349LL/A\"],\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"32gb\", \"title\": \"32GB\" }],\n        \"carrier\": [{ \"slug\": \"att\", \"title\": \"AT&T\" }],\n        \"family\": [{ \"slug\": \"ipad-1\", \"title\": \"iPad 1\" }],\n        \"year\": [{ \"slug\": \"2010\", \"title\": \"2010\" }]\n      },\n      \"category\": { \"slug\": \"tablet\", \"title\": \"Tablet\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-apple-ipad-32gb-wifi-3g.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-apple-ipad-32gb-wifi-3g.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-apple-ipad-32gb-wifi-3g.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15898434475\",\n      \"title\": \"iPad 64GB WiFi\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": [\"A1219\", \"MB292LL/A\"],\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"64gb\", \"title\": \"64GB\" }],\n        \"carrier\": [{ \"slug\": \"wifi\", \"title\": \"WiFi\" }],\n        \"family\": [{ \"slug\": \"ipad-1\", \"title\": \"iPad 1\" }],\n        \"year\": [{ \"slug\": \"2010\", \"title\": \"2010\" }]\n      },\n      \"category\": { \"slug\": \"tablet\", \"title\": \"Tablet\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-apple-ipad-64gb-wifi.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-apple-ipad-64gb-wifi.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-apple-ipad-64gb-wifi.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": false\n    },\n    {\n      \"uid\": \"15326737143\",\n      \"title\": \"iPad 64GB WiFi + 3G\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": [\"A1337\", \"MC349LL/A\"],\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"64gb\", \"title\": \"64GB\" }],\n        \"carrier\": [{ \"slug\": \"att\", \"title\": \"AT&T\" }],\n        \"family\": [{ \"slug\": \"ipad-1\", \"title\": \"iPad 1\" }],\n        \"year\": [{ \"slug\": \"2010\", \"title\": \"2010\" }]\n      },\n      \"category\": { \"slug\": \"tablet\", \"title\": \"Tablet\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-apple-ipad-64gb-wifi-3g.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-apple-ipad-64gb-wifi-3g.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-apple-ipad-64gb-wifi-3g.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15897168074\",\n      \"title\": \"G7010\",\n      \"manufacturer\": { \"slug\": \"huawei\", \"title\": \"Huawei\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"family\": [{ \"slug\": \"huawei-phone\", \"title\": \"Huawei Phone\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-huawei-g7010.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-huawei-g7010.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-huawei-g7010.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15624185789\",\n      \"title\": \"iPad 2 16GB WiFi\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": [\n        \"A1395\",\n        \"MC769LL/A\",\n        \"MC979LL/A\",\n        \"MF954LL/A\",\n        \"MF989LL/A\",\n        \"MC960LL/A\"\n      ],\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"16gb\", \"title\": \"16GB\" }],\n        \"carrier\": [{ \"slug\": \"wifi\", \"title\": \"WiFi\" }],\n        \"family\": [{ \"slug\": \"ipad-2\", \"title\": \"iPad 2\" }],\n        \"year\": [{ \"slug\": \"2011\", \"title\": \"2011\" }]\n      },\n      \"category\": { \"slug\": \"tablet\", \"title\": \"Tablet\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-apple-ipad-2-16gb-wifi.jpeg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-apple-ipad-2-16gb-wifi.jpeg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-apple-ipad-2-16gb-wifi.jpeg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": false\n    },\n    {\n      \"uid\": \"15265733566\",\n      \"title\": \"iPad 2 16GB WiFi + 3G\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": [\"A1396\", \"MC773LL/A\"],\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"16gb\", \"title\": \"16GB\" }],\n        \"carrier\": [\n          { \"slug\": \"t-mobile\", \"title\": \"T-Mobile\" },\n          { \"slug\": \"verizon\", \"title\": \"Verizon\" },\n          { \"slug\": \"att\", \"title\": \"AT&T\" },\n          { \"slug\": \"sprint\", \"title\": \"Sprint\" },\n          { \"slug\": \"us-cellular\", \"title\": \"US Cellular\" },\n          { \"slug\": \"rogers\", \"title\": \"Rogers\" },\n          { \"slug\": \"telus\", \"title\": \"TELUS\" },\n          { \"slug\": \"optus\", \"title\": \"Optus\" },\n          { \"slug\": \"telstra\", \"title\": \"Telstra\" },\n          { \"slug\": \"vodafone\", \"title\": \"Vodafone\" },\n          { \"slug\": \"bell\", \"title\": \"Bell\" },\n          { \"slug\": \"metro-pcs\", \"title\": \"Metro PCS\" },\n          { \"slug\": \"cricket\", \"title\": \"Cricket\" },\n          { \"slug\": \"virgin\", \"title\": \"Virgin\" },\n          { \"slug\": \"mts\", \"title\": \"MTS\" },\n          { \"slug\": \"sasktel\", \"title\": \"SaskTel\" },\n          { \"slug\": \"aio\", \"title\": \"AIO\" },\n          { \"slug\": \"fido\", \"title\": \"FiDo\" },\n          { \"slug\": \"koodo\", \"title\": \"Koodo\" },\n          { \"slug\": \"straight-talk\", \"title\": \"Straight Talk\" },\n          { \"slug\": \"videotron\", \"title\": \"Videotron\" },\n          { \"slug\": \"bluegrass\", \"title\": \"Bluegrass\" }\n        ],\n        \"family\": [{ \"slug\": \"ipad-2\", \"title\": \"iPad 2\" }],\n        \"year\": [{ \"slug\": \"2011\", \"title\": \"2011\" }]\n      },\n      \"category\": { \"slug\": \"tablet\", \"title\": \"Tablet\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-apple-ipad-2-16gb-wifi-3g.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-apple-ipad-2-16gb-wifi-3g.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-apple-ipad-2-16gb-wifi-3g.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15272309459\",\n      \"title\": \"iPad 2 16GB WiFi + 3G (Verizon)\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": [\"A1397\", \"MC755LL/A\"],\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"16gb\", \"title\": \"16GB\" }],\n        \"carrier\": [{ \"slug\": \"verizon\", \"title\": \"Verizon\" }],\n        \"family\": [{ \"slug\": \"ipad-2\", \"title\": \"iPad 2\" }],\n        \"year\": [{ \"slug\": \"2011\", \"title\": \"2011\" }]\n      },\n      \"category\": { \"slug\": \"tablet\", \"title\": \"Tablet\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-apple-ipad-2-16gb-wifi-3g-verizon.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-apple-ipad-2-16gb-wifi-3g-verizon.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-apple-ipad-2-16gb-wifi-3g-verizon.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15526072721\",\n      \"title\": \"iPad 2 32GB WiFi\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": [\"A1395\", \"MC769LL/A\"],\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"32gb\", \"title\": \"32GB\" }],\n        \"carrier\": [{ \"slug\": \"wifi\", \"title\": \"WiFi\" }],\n        \"family\": [{ \"slug\": \"ipad-2\", \"title\": \"iPad 2\" }],\n        \"year\": [{ \"slug\": \"2011\", \"title\": \"2011\" }]\n      },\n      \"category\": { \"slug\": \"tablet\", \"title\": \"Tablet\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-apple-ipad-2-32gb-wifi.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-apple-ipad-2-32gb-wifi.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-apple-ipad-2-32gb-wifi.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": false\n    },\n    {\n      \"uid\": \"15523768297\",\n      \"title\": \"iPad 2 32GB WiFi + 3G\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": [\"A1396\", \"MC773LL/A\"],\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"32gb\", \"title\": \"32GB\" }],\n        \"carrier\": [\n          { \"slug\": \"t-mobile\", \"title\": \"T-Mobile\" },\n          { \"slug\": \"verizon\", \"title\": \"Verizon\" },\n          { \"slug\": \"att\", \"title\": \"AT&T\" },\n          { \"slug\": \"sprint\", \"title\": \"Sprint\" },\n          { \"slug\": \"us-cellular\", \"title\": \"US Cellular\" },\n          { \"slug\": \"rogers\", \"title\": \"Rogers\" },\n          { \"slug\": \"telus\", \"title\": \"TELUS\" },\n          { \"slug\": \"optus\", \"title\": \"Optus\" },\n          { \"slug\": \"telstra\", \"title\": \"Telstra\" },\n          { \"slug\": \"vodafone\", \"title\": \"Vodafone\" },\n          { \"slug\": \"bell\", \"title\": \"Bell\" },\n          { \"slug\": \"metro-pcs\", \"title\": \"Metro PCS\" },\n          { \"slug\": \"cricket\", \"title\": \"Cricket\" },\n          { \"slug\": \"virgin\", \"title\": \"Virgin\" },\n          { \"slug\": \"mts\", \"title\": \"MTS\" },\n          { \"slug\": \"sasktel\", \"title\": \"SaskTel\" },\n          { \"slug\": \"aio\", \"title\": \"AIO\" },\n          { \"slug\": \"fido\", \"title\": \"FiDo\" },\n          { \"slug\": \"koodo\", \"title\": \"Koodo\" },\n          { \"slug\": \"straight-talk\", \"title\": \"Straight Talk\" },\n          { \"slug\": \"videotron\", \"title\": \"Videotron\" },\n          { \"slug\": \"bluegrass\", \"title\": \"Bluegrass\" }\n        ],\n        \"family\": [{ \"slug\": \"ipad-2\", \"title\": \"iPad 2\" }],\n        \"year\": [{ \"slug\": \"2011\", \"title\": \"2011\" }]\n      },\n      \"category\": { \"slug\": \"tablet\", \"title\": \"Tablet\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-apple-ipad-2-32gb-wifi-3g.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-apple-ipad-2-32gb-wifi-3g.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-apple-ipad-2-32gb-wifi-3g.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15559261076\",\n      \"title\": \"iPad 2 32GB WiFi + 3G (Verizon)\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": [\"A1397\", \"MC755LL/A\"],\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"32gb\", \"title\": \"32GB\" }],\n        \"carrier\": [{ \"slug\": \"verizon\", \"title\": \"Verizon\" }],\n        \"family\": [{ \"slug\": \"ipad-2\", \"title\": \"iPad 2\" }],\n        \"year\": [{ \"slug\": \"2011\", \"title\": \"2011\" }]\n      },\n      \"category\": { \"slug\": \"tablet\", \"title\": \"Tablet\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-apple-ipad-2-32gb-wifi-3g-verizon.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-apple-ipad-2-32gb-wifi-3g-verizon.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-apple-ipad-2-32gb-wifi-3g-verizon.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15769304849\",\n      \"title\": \"iPad 2 64GB WiFi\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": [\"A1395\", \"MC769LL/A\"],\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"64gb\", \"title\": \"64GB\" }],\n        \"carrier\": [{ \"slug\": \"wifi\", \"title\": \"WiFi\" }],\n        \"family\": [{ \"slug\": \"ipad-2\", \"title\": \"iPad 2\" }],\n        \"year\": [{ \"slug\": \"2011\", \"title\": \"2011\" }]\n      },\n      \"category\": { \"slug\": \"tablet\", \"title\": \"Tablet\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-apple-ipad-2-64gb-wifi.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-apple-ipad-2-64gb-wifi.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-apple-ipad-2-64gb-wifi.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": false\n    },\n    {\n      \"uid\": \"15553524404\",\n      \"title\": \"iPad 2 64GB WiFi + 3G\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": [\"A1396\", \"MC773LL/A\"],\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"64gb\", \"title\": \"64GB\" }],\n        \"carrier\": [\n          { \"slug\": \"t-mobile\", \"title\": \"T-Mobile\" },\n          { \"slug\": \"verizon\", \"title\": \"Verizon\" },\n          { \"slug\": \"att\", \"title\": \"AT&T\" },\n          { \"slug\": \"sprint\", \"title\": \"Sprint\" },\n          { \"slug\": \"us-cellular\", \"title\": \"US Cellular\" },\n          { \"slug\": \"rogers\", \"title\": \"Rogers\" },\n          { \"slug\": \"telus\", \"title\": \"TELUS\" },\n          { \"slug\": \"optus\", \"title\": \"Optus\" },\n          { \"slug\": \"telstra\", \"title\": \"Telstra\" },\n          { \"slug\": \"vodafone\", \"title\": \"Vodafone\" },\n          { \"slug\": \"bell\", \"title\": \"Bell\" },\n          { \"slug\": \"metro-pcs\", \"title\": \"Metro PCS\" },\n          { \"slug\": \"cricket\", \"title\": \"Cricket\" },\n          { \"slug\": \"virgin\", \"title\": \"Virgin\" },\n          { \"slug\": \"mts\", \"title\": \"MTS\" },\n          { \"slug\": \"sasktel\", \"title\": \"SaskTel\" },\n          { \"slug\": \"aio\", \"title\": \"AIO\" },\n          { \"slug\": \"fido\", \"title\": \"FiDo\" },\n          { \"slug\": \"koodo\", \"title\": \"Koodo\" },\n          { \"slug\": \"straight-talk\", \"title\": \"Straight Talk\" },\n          { \"slug\": \"videotron\", \"title\": \"Videotron\" },\n          { \"slug\": \"bluegrass\", \"title\": \"Bluegrass\" }\n        ],\n        \"family\": [{ \"slug\": \"ipad-2\", \"title\": \"iPad 2\" }],\n        \"year\": [{ \"slug\": \"2011\", \"title\": \"2011\" }]\n      },\n      \"category\": { \"slug\": \"tablet\", \"title\": \"Tablet\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-apple-ipad-2-64gb-wifi-3g.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-apple-ipad-2-64gb-wifi-3g.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-apple-ipad-2-64gb-wifi-3g.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15893690410\",\n      \"title\": \"iPad 2 64GB WiFi + 3G (Verizon)\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": [\"A1397\", \"MC755LL/A\"],\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"64gb\", \"title\": \"64GB\" }],\n        \"carrier\": [{ \"slug\": \"verizon\", \"title\": \"Verizon\" }],\n        \"family\": [{ \"slug\": \"ipad-2\", \"title\": \"iPad 2\" }],\n        \"year\": [{ \"slug\": \"2011\", \"title\": \"2011\" }]\n      },\n      \"category\": { \"slug\": \"tablet\", \"title\": \"Tablet\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-apple-ipad-2-64gb-wifi-3g-verizon.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-apple-ipad-2-64gb-wifi-3g-verizon.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-apple-ipad-2-64gb-wifi-3g-verizon.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15658104425\",\n      \"title\": \"Veer\",\n      \"manufacturer\": { \"slug\": \"hp\", \"title\": \"HP\" },\n      \"aliases\": null,\n      \"attributes\": { \"family\": [{ \"slug\": \"hp-phone\", \"title\": \"HP Phone\" }] },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-hp-veer.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-hp-veer.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-hp-veer.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15118959475\",\n      \"title\": \"M835\",\n      \"manufacturer\": { \"slug\": \"huawei\", \"title\": \"Huawei\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"family\": [{ \"slug\": \"huawei-phone\", \"title\": \"Huawei Phone\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-huawei-m835.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-huawei-m835.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-huawei-m835.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15351676448\",\n      \"title\": \"Ascend II\",\n      \"manufacturer\": { \"slug\": \"huawei\", \"title\": \"Huawei\" },\n      \"aliases\": [\"M865\"],\n      \"attributes\": {\n        \"family\": [{ \"slug\": \"huawei-phone\", \"title\": \"Huawei Phone\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-huawei-ascend-ii.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-huawei-ascend-ii.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-huawei-ascend-ii.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15533110654\",\n      \"title\": \"Impulse 4G\",\n      \"manufacturer\": { \"slug\": \"huawei\", \"title\": \"Huawei\" },\n      \"aliases\": [\"U8800\"],\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512mb\", \"title\": \"512MB\" }],\n        \"carrier\": [\n          { \"slug\": \"t-mobile\", \"title\": \"T-Mobile\" },\n          { \"slug\": \"att\", \"title\": \"AT&T\" },\n          { \"slug\": \"rogers\", \"title\": \"Rogers\" },\n          { \"slug\": \"telus\", \"title\": \"TELUS\" },\n          { \"slug\": \"optus\", \"title\": \"Optus\" },\n          { \"slug\": \"telstra\", \"title\": \"Telstra\" },\n          { \"slug\": \"vodafone\", \"title\": \"Vodafone\" },\n          { \"slug\": \"bell\", \"title\": \"Bell\" },\n          { \"slug\": \"metro-pcs\", \"title\": \"Metro PCS\" },\n          { \"slug\": \"cricket\", \"title\": \"Cricket\" },\n          { \"slug\": \"virgin\", \"title\": \"Virgin\" },\n          { \"slug\": \"mts\", \"title\": \"MTS\" },\n          { \"slug\": \"sasktel\", \"title\": \"SaskTel\" },\n          { \"slug\": \"aio\", \"title\": \"AIO\" },\n          { \"slug\": \"fido\", \"title\": \"FiDo\" },\n          { \"slug\": \"koodo\", \"title\": \"Koodo\" },\n          { \"slug\": \"videotron\", \"title\": \"Videotron\" }\n        ],\n        \"family\": [{ \"slug\": \"huawei-phone\", \"title\": \"Huawei Phone\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-huawei-impulse-4g.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-huawei-impulse-4g.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-huawei-impulse-4g.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15582582852\",\n      \"title\": \"Pinnacle\",\n      \"manufacturer\": { \"slug\": \"huawei\", \"title\": \"Huawei\" },\n      \"aliases\": [\"m635\"],\n      \"attributes\": {\n        \"family\": [{ \"slug\": \"huawei-phone\", \"title\": \"Huawei Phone\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-huawei-pinnacle.gif\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-huawei-pinnacle.gif\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-huawei-pinnacle.gif\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15746567245\",\n      \"title\": \"Express\",\n      \"manufacturer\": { \"slug\": \"huawei\", \"title\": \"Huawei\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"family\": [{ \"slug\": \"huawei-phone\", \"title\": \"Huawei Phone\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-huawei-express.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-huawei-express.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-huawei-express.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15373286648\",\n      \"title\": \"Pre 3\",\n      \"manufacturer\": { \"slug\": \"hp\", \"title\": \"HP\" },\n      \"aliases\": [\"Palm 3\", \"HP Palm\", \"FB389AA#ABA\"],\n      \"attributes\": { \"family\": [{ \"slug\": \"hp-phone\", \"title\": \"HP Phone\" }] },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-hp-pre-3.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-hp-pre-3.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-hp-pre-3.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15496520014\",\n      \"title\": \"iPad 3 16GB WiFi\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": [\"A1416\", \"MC705LL/A\", \"MD382LL/A\", \"MD333LL/A\", \"MD336LL/A\"],\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"16gb\", \"title\": \"16GB\" }],\n        \"carrier\": [{ \"slug\": \"wifi\", \"title\": \"WiFi\" }],\n        \"family\": [{ \"slug\": \"ipad-3\", \"title\": \"iPad 3\" }],\n        \"year\": [{ \"slug\": \"2012\", \"title\": \"2012\" }]\n      },\n      \"category\": { \"slug\": \"tablet\", \"title\": \"Tablet\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-apple-ipad-3-16gb-wifi.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-apple-ipad-3-16gb-wifi.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-apple-ipad-3-16gb-wifi.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": false\n    },\n    {\n      \"uid\": \"15282244118\",\n      \"title\": \"iPad 3 16GB WiFi + 3G\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": [\"A1430\", \"MD366LL/A\", \"MD369LL/A\", \"MD404LL/A\", \"MD407LL/A\"],\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"16gb\", \"title\": \"16GB\" }],\n        \"carrier\": [\n          { \"slug\": \"t-mobile\", \"title\": \"T-Mobile\" },\n          { \"slug\": \"verizon\", \"title\": \"Verizon\" },\n          { \"slug\": \"att\", \"title\": \"AT&T\" },\n          { \"slug\": \"sprint\", \"title\": \"Sprint\" },\n          { \"slug\": \"us-cellular\", \"title\": \"US Cellular\" },\n          { \"slug\": \"rogers\", \"title\": \"Rogers\" },\n          { \"slug\": \"telus\", \"title\": \"TELUS\" },\n          { \"slug\": \"optus\", \"title\": \"Optus\" },\n          { \"slug\": \"telstra\", \"title\": \"Telstra\" },\n          { \"slug\": \"vodafone\", \"title\": \"Vodafone\" },\n          { \"slug\": \"bell\", \"title\": \"Bell\" },\n          { \"slug\": \"metro-pcs\", \"title\": \"Metro PCS\" },\n          { \"slug\": \"cricket\", \"title\": \"Cricket\" },\n          { \"slug\": \"virgin\", \"title\": \"Virgin\" },\n          { \"slug\": \"mts\", \"title\": \"MTS\" },\n          { \"slug\": \"sasktel\", \"title\": \"SaskTel\" },\n          { \"slug\": \"aio\", \"title\": \"AIO\" },\n          { \"slug\": \"fido\", \"title\": \"FiDo\" },\n          { \"slug\": \"koodo\", \"title\": \"Koodo\" },\n          { \"slug\": \"straight-talk\", \"title\": \"Straight Talk\" },\n          { \"slug\": \"videotron\", \"title\": \"Videotron\" },\n          { \"slug\": \"bluegrass\", \"title\": \"Bluegrass\" }\n        ],\n        \"family\": [{ \"slug\": \"ipad-3\", \"title\": \"iPad 3\" }],\n        \"year\": [{ \"slug\": \"2012\", \"title\": \"2012\" }]\n      },\n      \"category\": { \"slug\": \"tablet\", \"title\": \"Tablet\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-apple-ipad-3-16gb-wifi-3g.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-apple-ipad-3-16gb-wifi-3g.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-apple-ipad-3-16gb-wifi-3g.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15387192402\",\n      \"title\": \"iPad 3 16GB WiFi + 3G (Verizon)\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": [\"A1403\", \"MC733LL/A\", \"MD363LL/A\"],\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"16gb\", \"title\": \"16GB\" }],\n        \"carrier\": [{ \"slug\": \"verizon\", \"title\": \"Verizon\" }],\n        \"family\": [{ \"slug\": \"ipad-3\", \"title\": \"iPad 3\" }],\n        \"year\": [{ \"slug\": \"2012\", \"title\": \"2012\" }]\n      },\n      \"category\": { \"slug\": \"tablet\", \"title\": \"Tablet\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-apple-ipad-3-16gb-wifi-3g-verizon.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-apple-ipad-3-16gb-wifi-3g-verizon.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-apple-ipad-3-16gb-wifi-3g-verizon.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15661301521\",\n      \"title\": \"iPad 3 32GB WiFi\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": [\"A1416\", \"MC706LL/A\", \"MD329LL/A\", \"MD334LL/A\", \"MD337LL/A\"],\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"32gb\", \"title\": \"32GB\" }],\n        \"carrier\": [{ \"slug\": \"wifi\", \"title\": \"WiFi\" }],\n        \"family\": [{ \"slug\": \"ipad-3\", \"title\": \"iPad 3\" }],\n        \"year\": [{ \"slug\": \"2012\", \"title\": \"2012\" }]\n      },\n      \"category\": { \"slug\": \"tablet\", \"title\": \"Tablet\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-apple-ipad-3-32gb-wifi.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-apple-ipad-3-32gb-wifi.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-apple-ipad-3-32gb-wifi.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": false\n    },\n    {\n      \"uid\": \"15160071344\",\n      \"title\": \"iPad 3 32GB WiFi + 3G\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": [\"A1430\", \"MD367LL/A\", \"MD370LL/A\", \"MD405LL/A\", \"MD408LL/A\"],\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"32gb\", \"title\": \"32GB\" }],\n        \"carrier\": [\n          { \"slug\": \"t-mobile\", \"title\": \"T-Mobile\" },\n          { \"slug\": \"verizon\", \"title\": \"Verizon\" },\n          { \"slug\": \"att\", \"title\": \"AT&T\" },\n          { \"slug\": \"sprint\", \"title\": \"Sprint\" },\n          { \"slug\": \"us-cellular\", \"title\": \"US Cellular\" },\n          { \"slug\": \"rogers\", \"title\": \"Rogers\" },\n          { \"slug\": \"telus\", \"title\": \"TELUS\" },\n          { \"slug\": \"optus\", \"title\": \"Optus\" },\n          { \"slug\": \"telstra\", \"title\": \"Telstra\" },\n          { \"slug\": \"vodafone\", \"title\": \"Vodafone\" },\n          { \"slug\": \"bell\", \"title\": \"Bell\" },\n          { \"slug\": \"metro-pcs\", \"title\": \"Metro PCS\" },\n          { \"slug\": \"cricket\", \"title\": \"Cricket\" },\n          { \"slug\": \"virgin\", \"title\": \"Virgin\" },\n          { \"slug\": \"mts\", \"title\": \"MTS\" },\n          { \"slug\": \"sasktel\", \"title\": \"SaskTel\" },\n          { \"slug\": \"aio\", \"title\": \"AIO\" },\n          { \"slug\": \"fido\", \"title\": \"FiDo\" },\n          { \"slug\": \"koodo\", \"title\": \"Koodo\" },\n          { \"slug\": \"straight-talk\", \"title\": \"Straight Talk\" },\n          { \"slug\": \"videotron\", \"title\": \"Videotron\" },\n          { \"slug\": \"bluegrass\", \"title\": \"Bluegrass\" }\n        ],\n        \"family\": [{ \"slug\": \"ipad-3\", \"title\": \"iPad 3\" }],\n        \"year\": [{ \"slug\": \"2012\", \"title\": \"2012\" }]\n      },\n      \"category\": { \"slug\": \"tablet\", \"title\": \"Tablet\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-apple-ipad-3-32gb-wifi-3g.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-apple-ipad-3-32gb-wifi-3g.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-apple-ipad-3-32gb-wifi-3g.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15314080803\",\n      \"title\": \"iPad 3 32GB WiFi + 3G (Verizon)\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": [\"A1403\", \"MC744LL/A\", \"MD364LL/A\"],\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"32gb\", \"title\": \"32GB\" }],\n        \"carrier\": [{ \"slug\": \"verizon\", \"title\": \"Verizon\" }],\n        \"family\": [{ \"slug\": \"ipad-3\", \"title\": \"iPad 3\" }],\n        \"year\": [{ \"slug\": \"2012\", \"title\": \"2012\" }]\n      },\n      \"category\": { \"slug\": \"tablet\", \"title\": \"Tablet\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-apple-ipad-3-32gb-wifi-3g-verizon.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-apple-ipad-3-32gb-wifi-3g-verizon.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-apple-ipad-3-32gb-wifi-3g-verizon.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15262888298\",\n      \"title\": \"iPad 3 64GB WiFi\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": [\"A1416\", \"MC707LL/A\", \"MD330LL/A\", \"MD335LL/A\", \"MD338LL/A\"],\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"64gb\", \"title\": \"64GB\" }],\n        \"carrier\": [{ \"slug\": \"wifi\", \"title\": \"WiFi\" }],\n        \"family\": [{ \"slug\": \"ipad-3\", \"title\": \"iPad 3\" }],\n        \"year\": [{ \"slug\": \"2012\", \"title\": \"2012\" }]\n      },\n      \"category\": { \"slug\": \"tablet\", \"title\": \"Tablet\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-apple-ipad-3-64gb-wifi.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-apple-ipad-3-64gb-wifi.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-apple-ipad-3-64gb-wifi.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": false\n    },\n    {\n      \"uid\": \"15193694997\",\n      \"title\": \"iPad 3 64GB WiFi + 3G\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": [\"A1430\", \"MD368LL/A\", \"MD371LL/A\", \"MD406LL/A\", \"MD409LL/A\"],\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"64gb\", \"title\": \"64GB\" }],\n        \"carrier\": [\n          { \"slug\": \"t-mobile\", \"title\": \"T-Mobile\" },\n          { \"slug\": \"verizon\", \"title\": \"Verizon\" },\n          { \"slug\": \"att\", \"title\": \"AT&T\" },\n          { \"slug\": \"sprint\", \"title\": \"Sprint\" },\n          { \"slug\": \"us-cellular\", \"title\": \"US Cellular\" },\n          { \"slug\": \"rogers\", \"title\": \"Rogers\" },\n          { \"slug\": \"telus\", \"title\": \"TELUS\" },\n          { \"slug\": \"optus\", \"title\": \"Optus\" },\n          { \"slug\": \"telstra\", \"title\": \"Telstra\" },\n          { \"slug\": \"vodafone\", \"title\": \"Vodafone\" },\n          { \"slug\": \"bell\", \"title\": \"Bell\" },\n          { \"slug\": \"metro-pcs\", \"title\": \"Metro PCS\" },\n          { \"slug\": \"cricket\", \"title\": \"Cricket\" },\n          { \"slug\": \"virgin\", \"title\": \"Virgin\" },\n          { \"slug\": \"mts\", \"title\": \"MTS\" },\n          { \"slug\": \"sasktel\", \"title\": \"SaskTel\" },\n          { \"slug\": \"aio\", \"title\": \"AIO\" },\n          { \"slug\": \"fido\", \"title\": \"FiDo\" },\n          { \"slug\": \"koodo\", \"title\": \"Koodo\" },\n          { \"slug\": \"straight-talk\", \"title\": \"Straight Talk\" },\n          { \"slug\": \"videotron\", \"title\": \"Videotron\" },\n          { \"slug\": \"bluegrass\", \"title\": \"Bluegrass\" }\n        ],\n        \"family\": [{ \"slug\": \"ipad-3\", \"title\": \"iPad 3\" }],\n        \"year\": [{ \"slug\": \"2012\", \"title\": \"2012\" }]\n      },\n      \"category\": { \"slug\": \"tablet\", \"title\": \"Tablet\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-apple-ipad-3-64gb-wifi-3g.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-apple-ipad-3-64gb-wifi-3g.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-apple-ipad-3-64gb-wifi-3g.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15204305203\",\n      \"title\": \"iPad 3 64GB WiFi + 3G (Verizon)\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": [\"A1403\", \"MC756LL/A\", \"MD365LL/A\"],\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"64gb\", \"title\": \"64GB\" }],\n        \"carrier\": [{ \"slug\": \"verizon\", \"title\": \"Verizon\" }],\n        \"family\": [{ \"slug\": \"ipad-3\", \"title\": \"iPad 3\" }],\n        \"year\": [{ \"slug\": \"2012\", \"title\": \"2012\" }]\n      },\n      \"category\": { \"slug\": \"tablet\", \"title\": \"Tablet\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-apple-ipad-3-64gb-wifi-3g-verizon.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-apple-ipad-3-64gb-wifi-3g-verizon.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-apple-ipad-3-64gb-wifi-3g-verizon.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15891407197\",\n      \"title\": \"G7002\",\n      \"manufacturer\": { \"slug\": \"huawei\", \"title\": \"Huawei\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"family\": [{ \"slug\": \"huawei-phone\", \"title\": \"Huawei Phone\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-huawei-g7002.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-huawei-g7002.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-huawei-g7002.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15238842924\",\n      \"title\": \"IDEOS S7\",\n      \"manufacturer\": { \"slug\": \"huawei\", \"title\": \"Huawei\" },\n      \"aliases\": [\"s7-201w\", \"s7-104\"],\n      \"attributes\": {\n        \"family\": [{ \"slug\": \"huawei-phone\", \"title\": \"Huawei Phone\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-huawei-ideos-s7.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-huawei-ideos-s7.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-huawei-ideos-s7.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15872091879\",\n      \"title\": \"Mini 3G\",\n      \"manufacturer\": { \"slug\": \"huawei\", \"title\": \"Huawei\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"family\": [{ \"slug\": \"huawei-phone\", \"title\": \"Huawei Phone\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-huawei-mini-3g.png\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-huawei-mini-3g.png\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-huawei-mini-3g.png\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15725883126\",\n      \"title\": \"U8220\",\n      \"manufacturer\": { \"slug\": \"huawei\", \"title\": \"Huawei\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"family\": [{ \"slug\": \"huawei-phone\", \"title\": \"Huawei Phone\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-huawei-u8220.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-huawei-u8220.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-huawei-u8220.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15938117494\",\n      \"title\": \"U8800\",\n      \"manufacturer\": { \"slug\": \"huawei\", \"title\": \"Huawei\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"family\": [{ \"slug\": \"huawei-phone\", \"title\": \"Huawei Phone\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-huawei-u8800.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-huawei-u8800.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-huawei-u8800.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15982842476\",\n      \"title\": \"Mercury\",\n      \"manufacturer\": { \"slug\": \"huawei\", \"title\": \"Huawei\" },\n      \"aliases\": [\"M886\"],\n      \"attributes\": {\n        \"family\": [{ \"slug\": \"huawei-phone\", \"title\": \"Huawei Phone\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-huawei-mercury.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-huawei-mercury.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-huawei-mercury.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15198700716\",\n      \"title\": \"Fusion U8652\",\n      \"manufacturer\": { \"slug\": \"huawei\", \"title\": \"Huawei\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"family\": [{ \"slug\": \"huawei-phone\", \"title\": \"Huawei Phone\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-huawei-fusion-u8652.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-huawei-fusion-u8652.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-huawei-fusion-u8652.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15211697485\",\n      \"title\": \"Galaxy Nexus GSM\",\n      \"manufacturer\": { \"slug\": \"samsung\", \"title\": \"Samsung\" },\n      \"aliases\": [\"gt-i9250\", \"shw-m420k\", \"i9250\", \"nexus\", \"i9250m\"],\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"16gb\", \"title\": \"16GB\" }],\n        \"carrier\": [\n          { \"slug\": \"t-mobile\", \"title\": \"T-Mobile\" },\n          { \"slug\": \"verizon\", \"title\": \"Verizon\" },\n          { \"slug\": \"att\", \"title\": \"AT&T\" },\n          { \"slug\": \"sprint\", \"title\": \"Sprint\" },\n          { \"slug\": \"us-cellular\", \"title\": \"US Cellular\" },\n          { \"slug\": \"rogers\", \"title\": \"Rogers\" },\n          { \"slug\": \"telus\", \"title\": \"TELUS\" },\n          { \"slug\": \"optus\", \"title\": \"Optus\" },\n          { \"slug\": \"telstra\", \"title\": \"Telstra\" },\n          { \"slug\": \"vodafone\", \"title\": \"Vodafone\" },\n          { \"slug\": \"bell\", \"title\": \"Bell\" },\n          { \"slug\": \"metro-pcs\", \"title\": \"Metro PCS\" },\n          { \"slug\": \"cricket\", \"title\": \"Cricket\" },\n          { \"slug\": \"virgin\", \"title\": \"Virgin\" },\n          { \"slug\": \"mts\", \"title\": \"MTS\" },\n          { \"slug\": \"sasktel\", \"title\": \"SaskTel\" },\n          { \"slug\": \"aio\", \"title\": \"AIO\" },\n          { \"slug\": \"fido\", \"title\": \"FiDo\" },\n          { \"slug\": \"koodo\", \"title\": \"Koodo\" },\n          { \"slug\": \"straight-talk\", \"title\": \"Straight Talk\" },\n          { \"slug\": \"videotron\", \"title\": \"Videotron\" },\n          { \"slug\": \"bluegrass\", \"title\": \"Bluegrass\" }\n        ],\n        \"family\": [{ \"slug\": \"samsung-phone\", \"title\": \"Samsung Phone\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-samsung-galaxy-nexus-gsm.jpeg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-samsung-galaxy-nexus-gsm.jpeg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-samsung-galaxy-nexus-gsm.jpeg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    }\n  ],\n  \"available_attributes\": {\n    \"carrier\": [\n      \"aio\",\n      \"att\",\n      \"bell\",\n      \"bluegrass\",\n      \"boost\",\n      \"boost-mobile\",\n      \"c-spire\",\n      \"canada-other\",\n      \"cellular\",\n      \"cellular-point\",\n      \"chatr\",\n      \"cricket\",\n      \"fido\",\n      \"international\",\n      \"koodo\",\n      \"metro-pcs\",\n      \"mts\",\n      \"ntelos\",\n      \"optus\",\n      \"other\",\n      \"public-mobile\",\n      \"rogers\",\n      \"sasktel\",\n      \"sprint\",\n      \"straight-talk\",\n      \"t-mobile\",\n      \"telstra\",\n      \"telus\",\n      \"tracfone\",\n      \"us-cellular\",\n      \"value-mobile\",\n      \"verizon\",\n      \"videotron\",\n      \"virgin\",\n      \"vodafone\",\n      \"wifi\",\n      \"wind\"\n    ],\n    \"capacity\": [\n      \"128gb\",\n      \"128gb-ssd\",\n      \"15tb-ssd\",\n      \"160mb\",\n      \"16gb\",\n      \"180gb-ssd\",\n      \"1tb\",\n      \"1tb-fusion\",\n      \"1tb-ssd\",\n      \"1tb-x2\",\n      \"250gb\",\n      \"256gb\",\n      \"256gb-ssd\",\n      \"256gb-ssd-x2\",\n      \"258gb\",\n      \"2tb\",\n      \"2tb-fusion\",\n      \"2tb-ssd\",\n      \"32gb\",\n      \"3tb\",\n      \"3tb-fusion\",\n      \"4gb\",\n      \"4tb\",\n      \"4tb-ssd\",\n      \"500gb\",\n      \"500gb-hdd\",\n      \"500gb-x2\",\n      \"512gb\",\n      \"512gb-fusion\",\n      \"512gb-ssd\",\n      \"512mb\",\n      \"5tb\",\n      \"64gb\",\n      \"64gb-ssd\",\n      \"6tb\",\n      \"750gb\",\n      \"750gb-plus-256ssd\",\n      \"750gb-x2\",\n      \"768gb-ssd\",\n      \"7tb\",\n      \"8gb\",\n      \"8tb\",\n      \"8tb-ssd\"\n    ]\n  }\n}\n"}],"_postman_id":"d2f0198a-134e-d0cf-2095-4f2ecebb2e3a"},{"name":"Search Products","id":"2bae6264-63e7-4da7-8d34-225785f7e937","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"url":"https://phobio.com/api/v2/products/search/","description":"<p>Serarch for a product by IMEI, Serial, or Keyword.</p>\n<p>Searches are performed through the use of GET parameters. One of the following parameters should be supplied, but not more than one of the following parameters: <code>imei</code>, <code>serial</code>, <code>keyword</code></p>\n<p>All of the filters available on List Products are also available as GET parameters on this endpoint. These filters will narrow down any search results that would be returned by this endpoint.</p>\n<h5 id=\"get-parameters\">GET Parameters</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>serial</code></td>\n<td>Serial Number</td>\n</tr>\n<tr>\n<td><code>imei</code></td>\n<td>IMEI Number</td>\n</tr>\n<tr>\n<td><code>keyword</code></td>\n<td>Search Keyword</td>\n</tr>\n<tr>\n<td><code>family</code></td>\n<td>Product Family Slug</td>\n</tr>\n<tr>\n<td><code>category</code></td>\n<td>Product Category Slug</td>\n</tr>\n<tr>\n<td><code>manufacturer</code></td>\n<td>Product Manufacturer Slug</td>\n</tr>\n<tr>\n<td><code>screen-size</code></td>\n<td>Product Screen Size Slug</td>\n</tr>\n<tr>\n<td><code>capacity</code></td>\n<td>Product Storage Capacity Slug</td>\n</tr>\n<tr>\n<td><code>processor</code></td>\n<td>Product Processor Slug</td>\n</tr>\n<tr>\n<td><code>carrier</code></td>\n<td>Product Carrier Slug</td>\n</tr>\n<tr>\n<td><code>network</code></td>\n<td>Product Network Slug</td>\n</tr>\n<tr>\n<td><code>year</code></td>\n<td>Four-Digit Year</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["products","search",""],"host":["https://phobio.com/api/v2"],"query":[{"disabled":true,"description":{"content":"<p>Serial number (Apple products only)</p>\n","type":"text/plain"},"key":"serial","value":""},{"disabled":true,"description":{"content":"<p>IMEI or ESN</p>\n","type":"text/plain"},"key":"imei","value":""},{"disabled":true,"description":{"content":"<p>Search Keyword</p>\n","type":"text/plain"},"key":"keyword","value":""},{"disabled":true,"description":{"content":"<p>Category Slug</p>\n","type":"text/plain"},"key":"category","value":""},{"disabled":true,"description":{"content":"<p>Manufacturer Slug</p>\n","type":"text/plain"},"key":"manufacturer","value":""},{"disabled":true,"description":{"content":"<p>Screen Size Slug</p>\n","type":"text/plain"},"key":"screen-size","value":""},{"disabled":true,"description":{"content":"<p>Capacity Slug</p>\n","type":"text/plain"},"key":"capacity","value":""},{"disabled":true,"description":{"content":"<p>Processor Slug</p>\n","type":"text/plain"},"key":"processor","value":""},{"disabled":true,"description":{"content":"<p>Carrier Slug</p>\n","type":"text/plain"},"key":"carrier","value":""},{"disabled":true,"description":{"content":"<p>Network Slug</p>\n","type":"text/plain"},"key":"network","value":""}],"variable":[]}},"response":[{"id":"9d502c44-ed99-46b8-84b6-cc5f777f382a","name":"Search Products","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"url":{"raw":"http://localhost:8000/api/v2/products/search/?keyword=iphone 15&year=2023","protocol":"http","host":["localhost"],"port":"8000","path":["api","v2","products","search",""],"query":[{"key":"serial","value":"","disabled":true},{"key":"imei","value":"","disabled":true},{"key":"family","value":"","disabled":true},{"key":"category","value":null,"disabled":true},{"key":"manufacturer","value":null,"disabled":true},{"key":"screen-size","value":"","disabled":true},{"key":"processor","value":null,"disabled":true},{"key":"carrier","value":null,"disabled":true},{"key":"network","value":null,"disabled":true},{"key":"keyword","value":"iphone 15"},{"key":"year","value":"2023"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 13 Mar 2020 18:56:30 GMT"},{"key":"Server","value":"WSGIServer/0.1 Python/2.7.14"},{"key":"Content-Length","value":"19487"},{"key":"Content-Language","value":"en"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Allow","value":"GET, HEAD, OPTIONS"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Type","value":"application/json"},{"key":"Set-Cookie","value":"sessionid=4bk1o1p09gahdzlz1tcogi76q198evpu; httponly; Path=/"}],"cookie":[],"responseTime":null,"body":"{\n  \"count\": 182,\n  \"available_attributes\": {\n    \"carrier\": [\n      \"att\",\n      \"bell\",\n      \"boost\",\n      \"c-spire\",\n      \"cellular-point\",\n      \"chatr\",\n      \"cricket\",\n      \"fido\",\n      \"koodo\",\n      \"metro-pcs\",\n      \"ntelos\",\n      \"public-mobile\",\n      \"rogers\",\n      \"sasktel\",\n      \"sprint\",\n      \"straight-talk\",\n      \"t-mobile\",\n      \"telus\",\n      \"tracfone\",\n      \"us-cellular\",\n      \"value-mobile\",\n      \"verizon\",\n      \"videotron\",\n      \"virgin\"\n    ],\n    \"capacity\": [\"128gb\", \"1tb\", \"256gb\", \"512gb\"]\n  },\n  \"results\": [\n    {\n      \"uid\": \"15579279785\",\n      \"title\": \"iPhone 15 128GB International\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$400.00\",\n          \"local_customer_price_in_cents\": 40000,\n          \"local_typical_customer_price_in_cents\": 40000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15978370698\",\n      \"title\": \"iPhone 15 256GB International\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$400.00\",\n          \"local_customer_price_in_cents\": 40000,\n          \"local_typical_customer_price_in_cents\": 40000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15417383534\",\n      \"title\": \"iPhone 15 512GB International\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$400.00\",\n          \"local_customer_price_in_cents\": 40000,\n          \"local_typical_customer_price_in_cents\": 40000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15140112291\",\n      \"title\": \"iPhone 15 Plus 128GB International\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$400.00\",\n          \"local_customer_price_in_cents\": 40000,\n          \"local_typical_customer_price_in_cents\": 40000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15237388036\",\n      \"title\": \"iPhone 15 Plus 256GB International\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$440.00\",\n          \"local_customer_price_in_cents\": 44000,\n          \"local_typical_customer_price_in_cents\": 44000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15202138945\",\n      \"title\": \"iPhone 15 Plus 512GB International\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$455.00\",\n          \"local_customer_price_in_cents\": 45500,\n          \"local_typical_customer_price_in_cents\": 45500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15348653922\",\n      \"title\": \"iPhone 15 Pro 128GB International\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$560.00\",\n          \"local_customer_price_in_cents\": 56000,\n          \"local_typical_customer_price_in_cents\": 56000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15800052712\",\n      \"title\": \"iPhone 15 Pro 1TB International\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"1tb\", \"title\": \"1TB\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$560.00\",\n          \"local_customer_price_in_cents\": 56000,\n          \"local_typical_customer_price_in_cents\": 56000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15370098525\",\n      \"title\": \"iPhone 15 Pro 256GB International\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$560.00\",\n          \"local_customer_price_in_cents\": 56000,\n          \"local_typical_customer_price_in_cents\": 56000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15337194490\",\n      \"title\": \"iPhone 15 Pro 512GB International\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$560.00\",\n          \"local_customer_price_in_cents\": 56000,\n          \"local_typical_customer_price_in_cents\": 56000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15879561288\",\n      \"title\": \"iPhone 15 Pro Max 1TB International\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"1tb\", \"title\": \"1TB\" }],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$650.00\",\n          \"local_customer_price_in_cents\": 65000,\n          \"local_typical_customer_price_in_cents\": 65000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15963029861\",\n      \"title\": \"iPhone 15 Pro Max 256GB International\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$650.00\",\n          \"local_customer_price_in_cents\": 65000,\n          \"local_typical_customer_price_in_cents\": 65000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15206682955\",\n      \"title\": \"iPhone 15 Pro Max 512GB International\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$650.00\",\n          \"local_customer_price_in_cents\": 65000,\n          \"local_typical_customer_price_in_cents\": 65000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15578747659\",\n      \"title\": \"iPhone 15 128GB AT&T\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [{ \"slug\": \"att\", \"title\": \"AT&T\" }],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$300.00\",\n          \"local_customer_price_in_cents\": 30000,\n          \"local_typical_customer_price_in_cents\": 30000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15436747313\",\n      \"title\": \"iPhone 15 128GB Bell\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [{ \"slug\": \"bell\", \"title\": \"Bell\" }],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$400.00\",\n          \"local_customer_price_in_cents\": 40000,\n          \"local_typical_customer_price_in_cents\": 40000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15134550100\",\n      \"title\": \"iPhone 15 128GB Rogers\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [{ \"slug\": \"rogers\", \"title\": \"Rogers\" }],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$400.00\",\n          \"local_customer_price_in_cents\": 40000,\n          \"local_typical_customer_price_in_cents\": 40000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15862376686\",\n      \"title\": \"iPhone 15 128GB Sasktel\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [{ \"slug\": \"sasktel\", \"title\": \"SaskTel\" }],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$400.00\",\n          \"local_customer_price_in_cents\": 40000,\n          \"local_typical_customer_price_in_cents\": 40000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15269394977\",\n      \"title\": \"iPhone 15 128GB Sprint\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [{ \"slug\": \"sprint\", \"title\": \"Sprint\" }],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$300.00\",\n          \"local_customer_price_in_cents\": 30000,\n          \"local_typical_customer_price_in_cents\": 30000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15925191791\",\n      \"title\": \"iPhone 15 128GB T-Mobile\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [{ \"slug\": \"t-mobile\", \"title\": \"T-Mobile\" }],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$300.00\",\n          \"local_customer_price_in_cents\": 30000,\n          \"local_typical_customer_price_in_cents\": 30000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15290053758\",\n      \"title\": \"iPhone 15 128GB Telus\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [{ \"slug\": \"telus\", \"title\": \"TELUS\" }],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$400.00\",\n          \"local_customer_price_in_cents\": 40000,\n          \"local_typical_customer_price_in_cents\": 40000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15974589903\",\n      \"title\": \"iPhone 15 128GB US Cellular\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [{ \"slug\": \"us-cellular\", \"title\": \"US Cellular\" }],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$300.00\",\n          \"local_customer_price_in_cents\": 30000,\n          \"local_typical_customer_price_in_cents\": 30000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15567013105\",\n      \"title\": \"iPhone 15 128GB Verizon\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [{ \"slug\": \"verizon\", \"title\": \"Verizon\" }],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$300.00\",\n          \"local_customer_price_in_cents\": 30000,\n          \"local_typical_customer_price_in_cents\": 30000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15329282345\",\n      \"title\": \"iPhone 15 128GB Videotron\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [{ \"slug\": \"videotron\", \"title\": \"Videotron\" }],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$400.00\",\n          \"local_customer_price_in_cents\": 40000,\n          \"local_typical_customer_price_in_cents\": 40000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15394027203\",\n      \"title\": \"iPhone 15 256GB AT&T\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"att\", \"title\": \"AT&T\" }],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$300.00\",\n          \"local_customer_price_in_cents\": 30000,\n          \"local_typical_customer_price_in_cents\": 30000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15921081418\",\n      \"title\": \"iPhone 15 256GB Bell\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"bell\", \"title\": \"Bell\" }],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$400.00\",\n          \"local_customer_price_in_cents\": 40000,\n          \"local_typical_customer_price_in_cents\": 40000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15965940768\",\n      \"title\": \"iPhone 15 256GB Rogers\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"rogers\", \"title\": \"Rogers\" }],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$400.00\",\n          \"local_customer_price_in_cents\": 40000,\n          \"local_typical_customer_price_in_cents\": 40000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15743961458\",\n      \"title\": \"iPhone 15 256GB Sasktel\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"sasktel\", \"title\": \"SaskTel\" }],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$400.00\",\n          \"local_customer_price_in_cents\": 40000,\n          \"local_typical_customer_price_in_cents\": 40000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15840551962\",\n      \"title\": \"iPhone 15 256GB Sprint\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"sprint\", \"title\": \"Sprint\" }],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$300.00\",\n          \"local_customer_price_in_cents\": 30000,\n          \"local_typical_customer_price_in_cents\": 30000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15905609093\",\n      \"title\": \"iPhone 15 256GB T-Mobile\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"t-mobile\", \"title\": \"T-Mobile\" }],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$300.00\",\n          \"local_customer_price_in_cents\": 30000,\n          \"local_typical_customer_price_in_cents\": 30000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15808813123\",\n      \"title\": \"iPhone 15 256GB Telus\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"telus\", \"title\": \"TELUS\" }],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$400.00\",\n          \"local_customer_price_in_cents\": 40000,\n          \"local_typical_customer_price_in_cents\": 40000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15931050320\",\n      \"title\": \"iPhone 15 256GB US Cellular\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"us-cellular\", \"title\": \"US Cellular\" }],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$300.00\",\n          \"local_customer_price_in_cents\": 30000,\n          \"local_typical_customer_price_in_cents\": 30000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15106390105\",\n      \"title\": \"iPhone 15 256GB Verizon\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"verizon\", \"title\": \"Verizon\" }],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$300.00\",\n          \"local_customer_price_in_cents\": 30000,\n          \"local_typical_customer_price_in_cents\": 30000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15213955899\",\n      \"title\": \"iPhone 15 256GB Videotron\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"videotron\", \"title\": \"Videotron\" }],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$400.00\",\n          \"local_customer_price_in_cents\": 40000,\n          \"local_typical_customer_price_in_cents\": 40000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15262663915\",\n      \"title\": \"iPhone 15 512GB AT&T\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"att\", \"title\": \"AT&T\" }],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$300.00\",\n          \"local_customer_price_in_cents\": 30000,\n          \"local_typical_customer_price_in_cents\": 30000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15974017392\",\n      \"title\": \"iPhone 15 512GB Bell\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"bell\", \"title\": \"Bell\" }],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$400.00\",\n          \"local_customer_price_in_cents\": 40000,\n          \"local_typical_customer_price_in_cents\": 40000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15578444851\",\n      \"title\": \"iPhone 15 512GB Rogers\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"rogers\", \"title\": \"Rogers\" }],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$400.00\",\n          \"local_customer_price_in_cents\": 40000,\n          \"local_typical_customer_price_in_cents\": 40000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15942252493\",\n      \"title\": \"iPhone 15 512GB Sasktel\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"sasktel\", \"title\": \"SaskTel\" }],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$400.00\",\n          \"local_customer_price_in_cents\": 40000,\n          \"local_typical_customer_price_in_cents\": 40000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15697268165\",\n      \"title\": \"iPhone 15 512GB Sprint\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"sprint\", \"title\": \"Sprint\" }],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$300.00\",\n          \"local_customer_price_in_cents\": 30000,\n          \"local_typical_customer_price_in_cents\": 30000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15343799803\",\n      \"title\": \"iPhone 15 512GB T-Mobile\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"t-mobile\", \"title\": \"T-Mobile\" }],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$300.00\",\n          \"local_customer_price_in_cents\": 30000,\n          \"local_typical_customer_price_in_cents\": 30000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15149578567\",\n      \"title\": \"iPhone 15 512GB Telus\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"telus\", \"title\": \"TELUS\" }],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$400.00\",\n          \"local_customer_price_in_cents\": 40000,\n          \"local_typical_customer_price_in_cents\": 40000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15489331536\",\n      \"title\": \"iPhone 15 512GB US Cellular\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"us-cellular\", \"title\": \"US Cellular\" }],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$300.00\",\n          \"local_customer_price_in_cents\": 30000,\n          \"local_typical_customer_price_in_cents\": 30000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15640363527\",\n      \"title\": \"iPhone 15 512GB Verizon\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"verizon\", \"title\": \"Verizon\" }],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$300.00\",\n          \"local_customer_price_in_cents\": 30000,\n          \"local_typical_customer_price_in_cents\": 30000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15268436167\",\n      \"title\": \"iPhone 15 512GB Videotron\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"videotron\", \"title\": \"Videotron\" }],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$400.00\",\n          \"local_customer_price_in_cents\": 40000,\n          \"local_typical_customer_price_in_cents\": 40000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15670905882\",\n      \"title\": \"iPhone 15 Plus 128GB AT&T\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [{ \"slug\": \"att\", \"title\": \"AT&T\" }],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$340.00\",\n          \"local_customer_price_in_cents\": 34000,\n          \"local_typical_customer_price_in_cents\": 34000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15862835061\",\n      \"title\": \"iPhone 15 Plus 128GB Bell\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [{ \"slug\": \"bell\", \"title\": \"Bell\" }],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$455.00\",\n          \"local_customer_price_in_cents\": 45500,\n          \"local_typical_customer_price_in_cents\": 45500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15457671160\",\n      \"title\": \"iPhone 15 Plus 128GB Rogers\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [{ \"slug\": \"rogers\", \"title\": \"Rogers\" }],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$400.00\",\n          \"local_customer_price_in_cents\": 40000,\n          \"local_typical_customer_price_in_cents\": 40000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15132398023\",\n      \"title\": \"iPhone 15 Plus 128GB Sasktel\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [{ \"slug\": \"sasktel\", \"title\": \"SaskTel\" }],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$455.00\",\n          \"local_customer_price_in_cents\": 45500,\n          \"local_typical_customer_price_in_cents\": 45500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15585458894\",\n      \"title\": \"iPhone 15 Plus 128GB Sprint\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [{ \"slug\": \"sprint\", \"title\": \"Sprint\" }],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$340.00\",\n          \"local_customer_price_in_cents\": 34000,\n          \"local_typical_customer_price_in_cents\": 34000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15408601407\",\n      \"title\": \"iPhone 15 Plus 128GB T-Mobile\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [{ \"slug\": \"t-mobile\", \"title\": \"T-Mobile\" }],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$340.00\",\n          \"local_customer_price_in_cents\": 34000,\n          \"local_typical_customer_price_in_cents\": 34000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15480029519\",\n      \"title\": \"iPhone 15 Plus 128GB Telus\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [{ \"slug\": \"telus\", \"title\": \"TELUS\" }],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$455.00\",\n          \"local_customer_price_in_cents\": 45500,\n          \"local_typical_customer_price_in_cents\": 45500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15571640695\",\n      \"title\": \"iPhone 15 Plus 128GB US Cellular\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [{ \"slug\": \"us-cellular\", \"title\": \"US Cellular\" }],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$340.00\",\n          \"local_customer_price_in_cents\": 34000,\n          \"local_typical_customer_price_in_cents\": 34000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15855234207\",\n      \"title\": \"iPhone 15 Plus 128GB Verizon\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [{ \"slug\": \"verizon\", \"title\": \"Verizon\" }],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$340.00\",\n          \"local_customer_price_in_cents\": 34000,\n          \"local_typical_customer_price_in_cents\": 34000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15883550038\",\n      \"title\": \"iPhone 15 Plus 128GB Videotron\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [{ \"slug\": \"videotron\", \"title\": \"Videotron\" }],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$455.00\",\n          \"local_customer_price_in_cents\": 45500,\n          \"local_typical_customer_price_in_cents\": 45500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15693544833\",\n      \"title\": \"iPhone 15 Plus 256GB AT&T\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"att\", \"title\": \"AT&T\" }],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$350.00\",\n          \"local_customer_price_in_cents\": 35000,\n          \"local_typical_customer_price_in_cents\": 35000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15416315818\",\n      \"title\": \"iPhone 15 Plus 256GB Bell\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"bell\", \"title\": \"Bell\" }],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$455.00\",\n          \"local_customer_price_in_cents\": 45500,\n          \"local_typical_customer_price_in_cents\": 45500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15880741366\",\n      \"title\": \"iPhone 15 Plus 256GB Rogers\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"rogers\", \"title\": \"Rogers\" }],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$455.00\",\n          \"local_customer_price_in_cents\": 45500,\n          \"local_typical_customer_price_in_cents\": 45500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15382958609\",\n      \"title\": \"iPhone 15 Plus 256GB Sasktel\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"sasktel\", \"title\": \"SaskTel\" }],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$455.00\",\n          \"local_customer_price_in_cents\": 45500,\n          \"local_typical_customer_price_in_cents\": 45500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15181670058\",\n      \"title\": \"iPhone 15 Plus 256GB Sprint\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"sprint\", \"title\": \"Sprint\" }],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$340.00\",\n          \"local_customer_price_in_cents\": 34000,\n          \"local_typical_customer_price_in_cents\": 34000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15620960300\",\n      \"title\": \"iPhone 15 Plus 256GB T-Mobile\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"t-mobile\", \"title\": \"T-Mobile\" }],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$350.00\",\n          \"local_customer_price_in_cents\": 35000,\n          \"local_typical_customer_price_in_cents\": 35000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15939069959\",\n      \"title\": \"iPhone 15 Plus 256GB Telus\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"telus\", \"title\": \"TELUS\" }],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$455.00\",\n          \"local_customer_price_in_cents\": 45500,\n          \"local_typical_customer_price_in_cents\": 45500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15119253571\",\n      \"title\": \"iPhone 15 Plus 256GB US Cellular\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"us-cellular\", \"title\": \"US Cellular\" }],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$350.00\",\n          \"local_customer_price_in_cents\": 35000,\n          \"local_typical_customer_price_in_cents\": 35000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15778275352\",\n      \"title\": \"iPhone 15 Plus 256GB Verizon\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"verizon\", \"title\": \"Verizon\" }],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$350.00\",\n          \"local_customer_price_in_cents\": 35000,\n          \"local_typical_customer_price_in_cents\": 35000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15554822047\",\n      \"title\": \"iPhone 15 Plus 256GB Videotron\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"videotron\", \"title\": \"Videotron\" }],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$455.00\",\n          \"local_customer_price_in_cents\": 45500,\n          \"local_typical_customer_price_in_cents\": 45500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15882072992\",\n      \"title\": \"iPhone 15 Plus 512GB AT&T\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"att\", \"title\": \"AT&T\" }],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$350.00\",\n          \"local_customer_price_in_cents\": 35000,\n          \"local_typical_customer_price_in_cents\": 35000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15734294331\",\n      \"title\": \"iPhone 15 Plus 512GB Bell\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"bell\", \"title\": \"Bell\" }],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$455.00\",\n          \"local_customer_price_in_cents\": 45500,\n          \"local_typical_customer_price_in_cents\": 45500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15569939224\",\n      \"title\": \"iPhone 15 Plus 512GB Rogers\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"rogers\", \"title\": \"Rogers\" }],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$455.00\",\n          \"local_customer_price_in_cents\": 45500,\n          \"local_typical_customer_price_in_cents\": 45500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15154233025\",\n      \"title\": \"iPhone 15 Plus 512GB Sasktel\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"sasktel\", \"title\": \"SaskTel\" }],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$455.00\",\n          \"local_customer_price_in_cents\": 45500,\n          \"local_typical_customer_price_in_cents\": 45500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15687768836\",\n      \"title\": \"iPhone 15 Plus 512GB Sprint\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"sprint\", \"title\": \"Sprint\" }],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$350.00\",\n          \"local_customer_price_in_cents\": 35000,\n          \"local_typical_customer_price_in_cents\": 35000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15181129394\",\n      \"title\": \"iPhone 15 Plus 512GB T-Mobile\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"t-mobile\", \"title\": \"T-Mobile\" }],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$350.00\",\n          \"local_customer_price_in_cents\": 35000,\n          \"local_typical_customer_price_in_cents\": 35000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15429690124\",\n      \"title\": \"iPhone 15 Plus 512GB Telus\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"telus\", \"title\": \"TELUS\" }],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$455.00\",\n          \"local_customer_price_in_cents\": 45500,\n          \"local_typical_customer_price_in_cents\": 45500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15765788763\",\n      \"title\": \"iPhone 15 Plus 512GB US Cellular\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"us-cellular\", \"title\": \"US Cellular\" }],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$350.00\",\n          \"local_customer_price_in_cents\": 35000,\n          \"local_typical_customer_price_in_cents\": 35000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15397928605\",\n      \"title\": \"iPhone 15 Plus 512GB Verizon\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"verizon\", \"title\": \"Verizon\" }],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$350.00\",\n          \"local_customer_price_in_cents\": 35000,\n          \"local_typical_customer_price_in_cents\": 35000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15811818689\",\n      \"title\": \"iPhone 15 Plus 512GB Videotron\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"videotron\", \"title\": \"Videotron\" }],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$455.00\",\n          \"local_customer_price_in_cents\": 45500,\n          \"local_typical_customer_price_in_cents\": 45500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15520630508\",\n      \"title\": \"iPhone 15 Pro 128GB AT&T\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [{ \"slug\": \"att\", \"title\": \"AT&T\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$515.00\",\n          \"local_customer_price_in_cents\": 51500,\n          \"local_typical_customer_price_in_cents\": 51500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15939221840\",\n      \"title\": \"iPhone 15 Pro 128GB Bell\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [{ \"slug\": \"bell\", \"title\": \"Bell\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$570.00\",\n          \"local_customer_price_in_cents\": 57000,\n          \"local_typical_customer_price_in_cents\": 57000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15590077127\",\n      \"title\": \"iPhone 15 Pro 128GB Rogers\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [{ \"slug\": \"rogers\", \"title\": \"Rogers\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$560.00\",\n          \"local_customer_price_in_cents\": 56000,\n          \"local_typical_customer_price_in_cents\": 56000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15192439238\",\n      \"title\": \"iPhone 15 Pro 128GB Sasktel\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [{ \"slug\": \"sasktel\", \"title\": \"SaskTel\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$560.00\",\n          \"local_customer_price_in_cents\": 56000,\n          \"local_typical_customer_price_in_cents\": 56000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15193872692\",\n      \"title\": \"iPhone 15 Pro 128GB Sprint\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [{ \"slug\": \"sprint\", \"title\": \"Sprint\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$515.00\",\n          \"local_customer_price_in_cents\": 51500,\n          \"local_typical_customer_price_in_cents\": 51500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15296298126\",\n      \"title\": \"iPhone 15 Pro 128GB T-Mobile\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [{ \"slug\": \"t-mobile\", \"title\": \"T-Mobile\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$515.00\",\n          \"local_customer_price_in_cents\": 51500,\n          \"local_typical_customer_price_in_cents\": 51500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15894531357\",\n      \"title\": \"iPhone 15 Pro 128GB Telus\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [{ \"slug\": \"telus\", \"title\": \"TELUS\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$560.00\",\n          \"local_customer_price_in_cents\": 56000,\n          \"local_typical_customer_price_in_cents\": 56000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15306188218\",\n      \"title\": \"iPhone 15 Pro 128GB US Cellular\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [{ \"slug\": \"us-cellular\", \"title\": \"US Cellular\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$515.00\",\n          \"local_customer_price_in_cents\": 51500,\n          \"local_typical_customer_price_in_cents\": 51500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15389713460\",\n      \"title\": \"iPhone 15 Pro 128GB Verizon\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [{ \"slug\": \"verizon\", \"title\": \"Verizon\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$515.00\",\n          \"local_customer_price_in_cents\": 51500,\n          \"local_typical_customer_price_in_cents\": 51500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15699142434\",\n      \"title\": \"iPhone 15 Pro 128GB Videotron\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [{ \"slug\": \"videotron\", \"title\": \"Videotron\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$560.00\",\n          \"local_customer_price_in_cents\": 56000,\n          \"local_typical_customer_price_in_cents\": 56000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15532454160\",\n      \"title\": \"iPhone 15 Pro 1TB AT&T\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"1tb\", \"title\": \"1TB\" }],\n        \"carrier\": [{ \"slug\": \"att\", \"title\": \"AT&T\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$515.00\",\n          \"local_customer_price_in_cents\": 51500,\n          \"local_typical_customer_price_in_cents\": 51500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15291430344\",\n      \"title\": \"iPhone 15 Pro 1TB Bell\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"1tb\", \"title\": \"1TB\" }],\n        \"carrier\": [{ \"slug\": \"bell\", \"title\": \"Bell\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$560.00\",\n          \"local_customer_price_in_cents\": 56000,\n          \"local_typical_customer_price_in_cents\": 56000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15317607792\",\n      \"title\": \"iPhone 15 Pro 1TB Rogers\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"1tb\", \"title\": \"1TB\" }],\n        \"carrier\": [{ \"slug\": \"rogers\", \"title\": \"Rogers\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$560.00\",\n          \"local_customer_price_in_cents\": 56000,\n          \"local_typical_customer_price_in_cents\": 56000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15952380994\",\n      \"title\": \"iPhone 15 Pro 1TB Sasktel\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"1tb\", \"title\": \"1TB\" }],\n        \"carrier\": [{ \"slug\": \"sasktel\", \"title\": \"SaskTel\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$560.00\",\n          \"local_customer_price_in_cents\": 56000,\n          \"local_typical_customer_price_in_cents\": 56000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15235252960\",\n      \"title\": \"iPhone 15 Pro 1TB Sprint\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"1tb\", \"title\": \"1TB\" }],\n        \"carrier\": [{ \"slug\": \"sprint\", \"title\": \"Sprint\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$515.00\",\n          \"local_customer_price_in_cents\": 51500,\n          \"local_typical_customer_price_in_cents\": 51500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15681626915\",\n      \"title\": \"iPhone 15 Pro 1TB T-Mobile\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"1tb\", \"title\": \"1TB\" }],\n        \"carrier\": [{ \"slug\": \"t-mobile\", \"title\": \"T-Mobile\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$515.00\",\n          \"local_customer_price_in_cents\": 51500,\n          \"local_typical_customer_price_in_cents\": 51500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15110786561\",\n      \"title\": \"iPhone 15 Pro 1TB Telus\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"1tb\", \"title\": \"1TB\" }],\n        \"carrier\": [{ \"slug\": \"telus\", \"title\": \"TELUS\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$560.00\",\n          \"local_customer_price_in_cents\": 56000,\n          \"local_typical_customer_price_in_cents\": 56000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15218561361\",\n      \"title\": \"iPhone 15 Pro 1TB US Cellular\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"1tb\", \"title\": \"1TB\" }],\n        \"carrier\": [{ \"slug\": \"us-cellular\", \"title\": \"US Cellular\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$515.00\",\n          \"local_customer_price_in_cents\": 51500,\n          \"local_typical_customer_price_in_cents\": 51500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15770765632\",\n      \"title\": \"iPhone 15 Pro 1TB Verizon\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"1tb\", \"title\": \"1TB\" }],\n        \"carrier\": [{ \"slug\": \"verizon\", \"title\": \"Verizon\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$515.00\",\n          \"local_customer_price_in_cents\": 51500,\n          \"local_typical_customer_price_in_cents\": 51500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15742007949\",\n      \"title\": \"iPhone 15 Pro 1TB Videotron\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"1tb\", \"title\": \"1TB\" }],\n        \"carrier\": [{ \"slug\": \"videotron\", \"title\": \"Videotron\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$560.00\",\n          \"local_customer_price_in_cents\": 56000,\n          \"local_typical_customer_price_in_cents\": 56000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15459837389\",\n      \"title\": \"iPhone 15 Pro 256GB AT&T\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"att\", \"title\": \"AT&T\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$515.00\",\n          \"local_customer_price_in_cents\": 51500,\n          \"local_typical_customer_price_in_cents\": 51500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15990208272\",\n      \"title\": \"iPhone 15 Pro 256GB Bell\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"bell\", \"title\": \"Bell\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$560.00\",\n          \"local_customer_price_in_cents\": 56000,\n          \"local_typical_customer_price_in_cents\": 56000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15583113871\",\n      \"title\": \"iPhone 15 Pro 256GB Rogers\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"rogers\", \"title\": \"Rogers\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$560.00\",\n          \"local_customer_price_in_cents\": 56000,\n          \"local_typical_customer_price_in_cents\": 56000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15321267039\",\n      \"title\": \"iPhone 15 Pro 256GB Sasktel\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"sasktel\", \"title\": \"SaskTel\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$560.00\",\n          \"local_customer_price_in_cents\": 56000,\n          \"local_typical_customer_price_in_cents\": 56000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15508125497\",\n      \"title\": \"iPhone 15 Pro 256GB Sprint\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"sprint\", \"title\": \"Sprint\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$515.00\",\n          \"local_customer_price_in_cents\": 51500,\n          \"local_typical_customer_price_in_cents\": 51500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15772541213\",\n      \"title\": \"iPhone 15 Pro 256GB T-Mobile\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"t-mobile\", \"title\": \"T-Mobile\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$515.00\",\n          \"local_customer_price_in_cents\": 51500,\n          \"local_typical_customer_price_in_cents\": 51500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15960650644\",\n      \"title\": \"iPhone 15 Pro 256GB Telus\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"telus\", \"title\": \"TELUS\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$560.00\",\n          \"local_customer_price_in_cents\": 56000,\n          \"local_typical_customer_price_in_cents\": 56000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15264638105\",\n      \"title\": \"iPhone 15 Pro 256GB US Cellular\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"us-cellular\", \"title\": \"US Cellular\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$515.00\",\n          \"local_customer_price_in_cents\": 51500,\n          \"local_typical_customer_price_in_cents\": 51500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15142659646\",\n      \"title\": \"iPhone 15 Pro 256GB Verizon\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"verizon\", \"title\": \"Verizon\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$515.00\",\n          \"local_customer_price_in_cents\": 51500,\n          \"local_typical_customer_price_in_cents\": 51500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15676185877\",\n      \"title\": \"iPhone 15 Pro 256GB Videotron\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"videotron\", \"title\": \"Videotron\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$560.00\",\n          \"local_customer_price_in_cents\": 56000,\n          \"local_typical_customer_price_in_cents\": 56000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15584068066\",\n      \"title\": \"iPhone 15 Pro 512GB AT&T\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"att\", \"title\": \"AT&T\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$515.00\",\n          \"local_customer_price_in_cents\": 51500,\n          \"local_typical_customer_price_in_cents\": 51500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15280970490\",\n      \"title\": \"iPhone 15 Pro 512GB Bell\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"bell\", \"title\": \"Bell\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$560.00\",\n          \"local_customer_price_in_cents\": 56000,\n          \"local_typical_customer_price_in_cents\": 56000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15785065515\",\n      \"title\": \"iPhone 15 Pro 512GB Rogers\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"rogers\", \"title\": \"Rogers\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$560.00\",\n          \"local_customer_price_in_cents\": 56000,\n          \"local_typical_customer_price_in_cents\": 56000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15918715416\",\n      \"title\": \"iPhone 15 Pro 512GB Sasktel\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"sasktel\", \"title\": \"SaskTel\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$560.00\",\n          \"local_customer_price_in_cents\": 56000,\n          \"local_typical_customer_price_in_cents\": 56000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15295318123\",\n      \"title\": \"iPhone 15 Pro 512GB Sprint\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"sprint\", \"title\": \"Sprint\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$515.00\",\n          \"local_customer_price_in_cents\": 51500,\n          \"local_typical_customer_price_in_cents\": 51500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15747166419\",\n      \"title\": \"iPhone 15 Pro 512GB T-Mobile\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"t-mobile\", \"title\": \"T-Mobile\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$515.00\",\n          \"local_customer_price_in_cents\": 51500,\n          \"local_typical_customer_price_in_cents\": 51500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15126614542\",\n      \"title\": \"iPhone 15 Pro 512GB Telus\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"telus\", \"title\": \"TELUS\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$560.00\",\n          \"local_customer_price_in_cents\": 56000,\n          \"local_typical_customer_price_in_cents\": 56000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15126283777\",\n      \"title\": \"iPhone 15 Pro 512GB US Cellular\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"us-cellular\", \"title\": \"US Cellular\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$515.00\",\n          \"local_customer_price_in_cents\": 51500,\n          \"local_typical_customer_price_in_cents\": 51500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15344614506\",\n      \"title\": \"iPhone 15 Pro 512GB Verizon\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"verizon\", \"title\": \"Verizon\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$515.00\",\n          \"local_customer_price_in_cents\": 51500,\n          \"local_typical_customer_price_in_cents\": 51500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15893269512\",\n      \"title\": \"iPhone 15 Pro 512GB Videotron\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"videotron\", \"title\": \"Videotron\" }],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$560.00\",\n          \"local_customer_price_in_cents\": 56000,\n          \"local_typical_customer_price_in_cents\": 56000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15145296172\",\n      \"title\": \"iPhone 15 Pro Max 1TB AT&T\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"1tb\", \"title\": \"1TB\" }],\n        \"carrier\": [{ \"slug\": \"att\", \"title\": \"AT&T\" }],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$575.00\",\n          \"local_customer_price_in_cents\": 57500,\n          \"local_typical_customer_price_in_cents\": 57500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15989806771\",\n      \"title\": \"iPhone 15 Pro Max 1TB Bell\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"1tb\", \"title\": \"1TB\" }],\n        \"carrier\": [{ \"slug\": \"bell\", \"title\": \"Bell\" }],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$650.00\",\n          \"local_customer_price_in_cents\": 65000,\n          \"local_typical_customer_price_in_cents\": 65000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15178916233\",\n      \"title\": \"iPhone 15 Pro Max 1TB Rogers\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"1tb\", \"title\": \"1TB\" }],\n        \"carrier\": [{ \"slug\": \"rogers\", \"title\": \"Rogers\" }],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$650.00\",\n          \"local_customer_price_in_cents\": 65000,\n          \"local_typical_customer_price_in_cents\": 65000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15145472302\",\n      \"title\": \"iPhone 15 Pro Max 1TB Sasktel\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"1tb\", \"title\": \"1TB\" }],\n        \"carrier\": [{ \"slug\": \"sasktel\", \"title\": \"SaskTel\" }],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$650.00\",\n          \"local_customer_price_in_cents\": 65000,\n          \"local_typical_customer_price_in_cents\": 65000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15583393390\",\n      \"title\": \"iPhone 15 Pro Max 1TB Sprint\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"1tb\", \"title\": \"1TB\" }],\n        \"carrier\": [{ \"slug\": \"sprint\", \"title\": \"Sprint\" }],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$575.00\",\n          \"local_customer_price_in_cents\": 57500,\n          \"local_typical_customer_price_in_cents\": 57500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15207442375\",\n      \"title\": \"iPhone 15 Pro Max 1TB T-Mobile\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"1tb\", \"title\": \"1TB\" }],\n        \"carrier\": [{ \"slug\": \"t-mobile\", \"title\": \"T-Mobile\" }],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$575.00\",\n          \"local_customer_price_in_cents\": 57500,\n          \"local_typical_customer_price_in_cents\": 57500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15983237981\",\n      \"title\": \"iPhone 15 Pro Max 1TB Telus\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"1tb\", \"title\": \"1TB\" }],\n        \"carrier\": [{ \"slug\": \"telus\", \"title\": \"TELUS\" }],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$650.00\",\n          \"local_customer_price_in_cents\": 65000,\n          \"local_typical_customer_price_in_cents\": 65000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15938069786\",\n      \"title\": \"iPhone 15 Pro Max 1TB US Cellular\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"1tb\", \"title\": \"1TB\" }],\n        \"carrier\": [{ \"slug\": \"us-cellular\", \"title\": \"US Cellular\" }],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$575.00\",\n          \"local_customer_price_in_cents\": 57500,\n          \"local_typical_customer_price_in_cents\": 57500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15352309569\",\n      \"title\": \"iPhone 15 Pro Max 1TB Verizon\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"1tb\", \"title\": \"1TB\" }],\n        \"carrier\": [{ \"slug\": \"verizon\", \"title\": \"Verizon\" }],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$575.00\",\n          \"local_customer_price_in_cents\": 57500,\n          \"local_typical_customer_price_in_cents\": 57500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15407604113\",\n      \"title\": \"iPhone 15 Pro Max 1TB Videotron\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"1tb\", \"title\": \"1TB\" }],\n        \"carrier\": [{ \"slug\": \"videotron\", \"title\": \"Videotron\" }],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$650.00\",\n          \"local_customer_price_in_cents\": 65000,\n          \"local_typical_customer_price_in_cents\": 65000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15867572149\",\n      \"title\": \"iPhone 15 Pro Max 256GB AT&T\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"att\", \"title\": \"AT&T\" }],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$575.00\",\n          \"local_customer_price_in_cents\": 57500,\n          \"local_typical_customer_price_in_cents\": 57500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15529652040\",\n      \"title\": \"iPhone 15 Pro Max 256GB Bell\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"bell\", \"title\": \"Bell\" }],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$650.00\",\n          \"local_customer_price_in_cents\": 65000,\n          \"local_typical_customer_price_in_cents\": 65000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15556386835\",\n      \"title\": \"iPhone 15 Pro Max 256GB Rogers\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"rogers\", \"title\": \"Rogers\" }],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$650.00\",\n          \"local_customer_price_in_cents\": 65000,\n          \"local_typical_customer_price_in_cents\": 65000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15826043844\",\n      \"title\": \"iPhone 15 Pro Max 256GB Sasktel\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"sasktel\", \"title\": \"SaskTel\" }],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$650.00\",\n          \"local_customer_price_in_cents\": 65000,\n          \"local_typical_customer_price_in_cents\": 65000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15153079106\",\n      \"title\": \"iPhone 15 Pro Max 256GB Sprint\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"sprint\", \"title\": \"Sprint\" }],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$575.00\",\n          \"local_customer_price_in_cents\": 57500,\n          \"local_typical_customer_price_in_cents\": 57500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15946116090\",\n      \"title\": \"iPhone 15 Pro Max 256GB T-Mobile\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"t-mobile\", \"title\": \"T-Mobile\" }],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$575.00\",\n          \"local_customer_price_in_cents\": 57500,\n          \"local_typical_customer_price_in_cents\": 57500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15919549541\",\n      \"title\": \"iPhone 15 Pro Max 256GB Telus\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"telus\", \"title\": \"TELUS\" }],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$650.00\",\n          \"local_customer_price_in_cents\": 65000,\n          \"local_typical_customer_price_in_cents\": 65000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15251857957\",\n      \"title\": \"iPhone 15 Pro Max 256GB US Cellular\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"us-cellular\", \"title\": \"US Cellular\" }],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$575.00\",\n          \"local_customer_price_in_cents\": 57500,\n          \"local_typical_customer_price_in_cents\": 57500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15297023317\",\n      \"title\": \"iPhone 15 Pro Max 256GB Verizon\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"verizon\", \"title\": \"Verizon\" }],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$575.00\",\n          \"local_customer_price_in_cents\": 57500,\n          \"local_typical_customer_price_in_cents\": 57500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15780103683\",\n      \"title\": \"iPhone 15 Pro Max 256GB Videotron\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [{ \"slug\": \"videotron\", \"title\": \"Videotron\" }],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$650.00\",\n          \"local_customer_price_in_cents\": 65000,\n          \"local_typical_customer_price_in_cents\": 65000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15216668598\",\n      \"title\": \"iPhone 15 Pro Max 512GB AT&T\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"att\", \"title\": \"AT&T\" }],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$575.00\",\n          \"local_customer_price_in_cents\": 57500,\n          \"local_typical_customer_price_in_cents\": 57500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15904373840\",\n      \"title\": \"iPhone 15 Pro Max 512GB Bell\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"bell\", \"title\": \"Bell\" }],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$650.00\",\n          \"local_customer_price_in_cents\": 65000,\n          \"local_typical_customer_price_in_cents\": 65000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15230918862\",\n      \"title\": \"iPhone 15 Pro Max 512GB Rogers\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"rogers\", \"title\": \"Rogers\" }],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$650.00\",\n          \"local_customer_price_in_cents\": 65000,\n          \"local_typical_customer_price_in_cents\": 65000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15607039011\",\n      \"title\": \"iPhone 15 Pro Max 512GB Sasktel\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"sasktel\", \"title\": \"SaskTel\" }],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$650.00\",\n          \"local_customer_price_in_cents\": 65000,\n          \"local_typical_customer_price_in_cents\": 65000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15132439306\",\n      \"title\": \"iPhone 15 Pro Max 512GB Sprint\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"sprint\", \"title\": \"Sprint\" }],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$575.00\",\n          \"local_customer_price_in_cents\": 57500,\n          \"local_typical_customer_price_in_cents\": 57500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15741191223\",\n      \"title\": \"iPhone 15 Pro Max 512GB T-Mobile\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"t-mobile\", \"title\": \"T-Mobile\" }],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$575.00\",\n          \"local_customer_price_in_cents\": 57500,\n          \"local_typical_customer_price_in_cents\": 57500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15537234161\",\n      \"title\": \"iPhone 15 Pro Max 512GB Telus\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"telus\", \"title\": \"TELUS\" }],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$650.00\",\n          \"local_customer_price_in_cents\": 65000,\n          \"local_typical_customer_price_in_cents\": 65000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15572966743\",\n      \"title\": \"iPhone 15 Pro Max 512GB US Cellular\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"us-cellular\", \"title\": \"US Cellular\" }],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$575.00\",\n          \"local_customer_price_in_cents\": 57500,\n          \"local_typical_customer_price_in_cents\": 57500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15148727967\",\n      \"title\": \"iPhone 15 Pro Max 512GB Verizon\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"verizon\", \"title\": \"Verizon\" }],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$575.00\",\n          \"local_customer_price_in_cents\": 57500,\n          \"local_typical_customer_price_in_cents\": 57500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15801019066\",\n      \"title\": \"iPhone 15 Pro Max 512GB Videotron\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [{ \"slug\": \"videotron\", \"title\": \"Videotron\" }],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$650.00\",\n          \"local_customer_price_in_cents\": 65000,\n          \"local_typical_customer_price_in_cents\": 65000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15702062629\",\n      \"title\": \"iPhone 15 128GB Canada Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [\n          { \"slug\": \"virgin\", \"title\": \"Virgin\" },\n          { \"slug\": \"fido\", \"title\": \"FiDo\" },\n          { \"slug\": \"koodo\", \"title\": \"Koodo\" },\n          { \"slug\": \"chatr\", \"title\": \"Chatr\" },\n          { \"slug\": \"public-mobile\", \"title\": \"Public Mobile\" },\n          { \"slug\": \"value-mobile\", \"title\": \"Value Mobile\" },\n          { \"slug\": \"cellular-point\", \"title\": \"Cellular Point\" }\n        ],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$400.00\",\n          \"local_customer_price_in_cents\": 40000,\n          \"local_typical_customer_price_in_cents\": 40000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15990859553\",\n      \"title\": \"iPhone 15 128GB Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [\n          { \"slug\": \"c-spire\", \"title\": \"C-Spire\" },\n          { \"slug\": \"metro-pcs\", \"title\": \"Metro PCS\" },\n          { \"slug\": \"cricket\", \"title\": \"Cricket\" },\n          { \"slug\": \"boost\", \"title\": \"Boost\" },\n          { \"slug\": \"tracfone\", \"title\": \"Tracfone\" },\n          { \"slug\": \"ntelos\", \"title\": \"nTelos\" },\n          { \"slug\": \"straight-talk\", \"title\": \"Straight Talk\" }\n        ],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$300.00\",\n          \"local_customer_price_in_cents\": 30000,\n          \"local_typical_customer_price_in_cents\": 30000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15995586953\",\n      \"title\": \"iPhone 15 128GB US Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [\n          { \"slug\": \"c-spire\", \"title\": \"C-Spire\" },\n          { \"slug\": \"metro-pcs\", \"title\": \"Metro PCS\" },\n          { \"slug\": \"cricket\", \"title\": \"Cricket\" },\n          { \"slug\": \"boost\", \"title\": \"Boost\" },\n          { \"slug\": \"tracfone\", \"title\": \"Tracfone\" },\n          { \"slug\": \"ntelos\", \"title\": \"nTelos\" },\n          { \"slug\": \"straight-talk\", \"title\": \"Straight Talk\" }\n        ],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$280.00\",\n          \"local_customer_price_in_cents\": 28000,\n          \"local_typical_customer_price_in_cents\": 28000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15613984853\",\n      \"title\": \"iPhone 15 256GB Canada Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [\n          { \"slug\": \"virgin\", \"title\": \"Virgin\" },\n          { \"slug\": \"fido\", \"title\": \"FiDo\" },\n          { \"slug\": \"koodo\", \"title\": \"Koodo\" },\n          { \"slug\": \"chatr\", \"title\": \"Chatr\" },\n          { \"slug\": \"public-mobile\", \"title\": \"Public Mobile\" },\n          { \"slug\": \"value-mobile\", \"title\": \"Value Mobile\" },\n          { \"slug\": \"cellular-point\", \"title\": \"Cellular Point\" }\n        ],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$400.00\",\n          \"local_customer_price_in_cents\": 40000,\n          \"local_typical_customer_price_in_cents\": 40000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15675330318\",\n      \"title\": \"iPhone 15 256GB Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [\n          { \"slug\": \"c-spire\", \"title\": \"C-Spire\" },\n          { \"slug\": \"metro-pcs\", \"title\": \"Metro PCS\" },\n          { \"slug\": \"cricket\", \"title\": \"Cricket\" },\n          { \"slug\": \"boost\", \"title\": \"Boost\" },\n          { \"slug\": \"tracfone\", \"title\": \"Tracfone\" },\n          { \"slug\": \"ntelos\", \"title\": \"nTelos\" },\n          { \"slug\": \"straight-talk\", \"title\": \"Straight Talk\" }\n        ],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$300.00\",\n          \"local_customer_price_in_cents\": 30000,\n          \"local_typical_customer_price_in_cents\": 30000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15873093387\",\n      \"title\": \"iPhone 15 256GB US Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [\n          { \"slug\": \"c-spire\", \"title\": \"C-Spire\" },\n          { \"slug\": \"metro-pcs\", \"title\": \"Metro PCS\" },\n          { \"slug\": \"cricket\", \"title\": \"Cricket\" },\n          { \"slug\": \"boost\", \"title\": \"Boost\" },\n          { \"slug\": \"tracfone\", \"title\": \"Tracfone\" },\n          { \"slug\": \"ntelos\", \"title\": \"nTelos\" },\n          { \"slug\": \"straight-talk\", \"title\": \"Straight Talk\" }\n        ],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$300.00\",\n          \"local_customer_price_in_cents\": 30000,\n          \"local_typical_customer_price_in_cents\": 30000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15115658005\",\n      \"title\": \"iPhone 15 512GB Canada Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [\n          { \"slug\": \"virgin\", \"title\": \"Virgin\" },\n          { \"slug\": \"fido\", \"title\": \"FiDo\" },\n          { \"slug\": \"koodo\", \"title\": \"Koodo\" },\n          { \"slug\": \"chatr\", \"title\": \"Chatr\" },\n          { \"slug\": \"public-mobile\", \"title\": \"Public Mobile\" },\n          { \"slug\": \"value-mobile\", \"title\": \"Value Mobile\" },\n          { \"slug\": \"cellular-point\", \"title\": \"Cellular Point\" }\n        ],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$400.00\",\n          \"local_customer_price_in_cents\": 40000,\n          \"local_typical_customer_price_in_cents\": 40000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15134878287\",\n      \"title\": \"iPhone 15 512GB Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [\n          { \"slug\": \"c-spire\", \"title\": \"C-Spire\" },\n          { \"slug\": \"metro-pcs\", \"title\": \"Metro PCS\" },\n          { \"slug\": \"cricket\", \"title\": \"Cricket\" },\n          { \"slug\": \"boost\", \"title\": \"Boost\" },\n          { \"slug\": \"tracfone\", \"title\": \"Tracfone\" },\n          { \"slug\": \"ntelos\", \"title\": \"nTelos\" },\n          { \"slug\": \"straight-talk\", \"title\": \"Straight Talk\" }\n        ],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$300.00\",\n          \"local_customer_price_in_cents\": 30000,\n          \"local_typical_customer_price_in_cents\": 30000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15646518082\",\n      \"title\": \"iPhone 15 512GB US Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [\n          { \"slug\": \"c-spire\", \"title\": \"C-Spire\" },\n          { \"slug\": \"metro-pcs\", \"title\": \"Metro PCS\" },\n          { \"slug\": \"cricket\", \"title\": \"Cricket\" },\n          { \"slug\": \"boost\", \"title\": \"Boost\" },\n          { \"slug\": \"tracfone\", \"title\": \"Tracfone\" },\n          { \"slug\": \"ntelos\", \"title\": \"nTelos\" },\n          { \"slug\": \"straight-talk\", \"title\": \"Straight Talk\" }\n        ],\n        \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$280.00\",\n          \"local_customer_price_in_cents\": 28000,\n          \"local_typical_customer_price_in_cents\": 28000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$100.00\",\n          \"local_customer_price_in_cents\": 10000,\n          \"local_typical_customer_price_in_cents\": 10000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15384200315\",\n      \"title\": \"iPhone 15 Plus 128GB Canada Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [\n          { \"slug\": \"virgin\", \"title\": \"Virgin\" },\n          { \"slug\": \"fido\", \"title\": \"FiDo\" },\n          { \"slug\": \"koodo\", \"title\": \"Koodo\" },\n          { \"slug\": \"chatr\", \"title\": \"Chatr\" },\n          { \"slug\": \"public-mobile\", \"title\": \"Public Mobile\" },\n          { \"slug\": \"value-mobile\", \"title\": \"Value Mobile\" },\n          { \"slug\": \"cellular-point\", \"title\": \"Cellular Point\" }\n        ],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$455.00\",\n          \"local_customer_price_in_cents\": 45500,\n          \"local_typical_customer_price_in_cents\": 45500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15849480007\",\n      \"title\": \"iPhone 15 Plus 128GB Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [\n          { \"slug\": \"c-spire\", \"title\": \"C-Spire\" },\n          { \"slug\": \"metro-pcs\", \"title\": \"Metro PCS\" },\n          { \"slug\": \"cricket\", \"title\": \"Cricket\" },\n          { \"slug\": \"boost\", \"title\": \"Boost\" },\n          { \"slug\": \"tracfone\", \"title\": \"Tracfone\" },\n          { \"slug\": \"ntelos\", \"title\": \"nTelos\" },\n          { \"slug\": \"straight-talk\", \"title\": \"Straight Talk\" }\n        ],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$330.00\",\n          \"local_customer_price_in_cents\": 33000,\n          \"local_typical_customer_price_in_cents\": 33000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15994937017\",\n      \"title\": \"iPhone 15 Plus 128GB US Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [\n          { \"slug\": \"c-spire\", \"title\": \"C-Spire\" },\n          { \"slug\": \"metro-pcs\", \"title\": \"Metro PCS\" },\n          { \"slug\": \"cricket\", \"title\": \"Cricket\" },\n          { \"slug\": \"boost\", \"title\": \"Boost\" },\n          { \"slug\": \"tracfone\", \"title\": \"Tracfone\" },\n          { \"slug\": \"ntelos\", \"title\": \"nTelos\" },\n          { \"slug\": \"straight-talk\", \"title\": \"Straight Talk\" }\n        ],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$340.00\",\n          \"local_customer_price_in_cents\": 34000,\n          \"local_typical_customer_price_in_cents\": 34000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15923920563\",\n      \"title\": \"iPhone 15 Plus 256GB Canada Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [\n          { \"slug\": \"virgin\", \"title\": \"Virgin\" },\n          { \"slug\": \"fido\", \"title\": \"FiDo\" },\n          { \"slug\": \"koodo\", \"title\": \"Koodo\" },\n          { \"slug\": \"chatr\", \"title\": \"Chatr\" },\n          { \"slug\": \"public-mobile\", \"title\": \"Public Mobile\" },\n          { \"slug\": \"value-mobile\", \"title\": \"Value Mobile\" },\n          { \"slug\": \"cellular-point\", \"title\": \"Cellular Point\" }\n        ],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$455.00\",\n          \"local_customer_price_in_cents\": 45500,\n          \"local_typical_customer_price_in_cents\": 45500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15356424216\",\n      \"title\": \"iPhone 15 Plus 256GB Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [\n          { \"slug\": \"c-spire\", \"title\": \"C-Spire\" },\n          { \"slug\": \"metro-pcs\", \"title\": \"Metro PCS\" },\n          { \"slug\": \"cricket\", \"title\": \"Cricket\" },\n          { \"slug\": \"boost\", \"title\": \"Boost\" },\n          { \"slug\": \"tracfone\", \"title\": \"Tracfone\" },\n          { \"slug\": \"ntelos\", \"title\": \"nTelos\" },\n          { \"slug\": \"straight-talk\", \"title\": \"Straight Talk\" }\n        ],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$330.00\",\n          \"local_customer_price_in_cents\": 33000,\n          \"local_typical_customer_price_in_cents\": 33000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15349134872\",\n      \"title\": \"iPhone 15 Plus 256GB US Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [\n          { \"slug\": \"c-spire\", \"title\": \"C-Spire\" },\n          { \"slug\": \"metro-pcs\", \"title\": \"Metro PCS\" },\n          { \"slug\": \"cricket\", \"title\": \"Cricket\" },\n          { \"slug\": \"boost\", \"title\": \"Boost\" },\n          { \"slug\": \"tracfone\", \"title\": \"Tracfone\" },\n          { \"slug\": \"ntelos\", \"title\": \"nTelos\" },\n          { \"slug\": \"straight-talk\", \"title\": \"Straight Talk\" }\n        ],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$330.00\",\n          \"local_customer_price_in_cents\": 33000,\n          \"local_typical_customer_price_in_cents\": 33000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15189232950\",\n      \"title\": \"iPhone 15 Plus 512GB Canada Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [\n          { \"slug\": \"virgin\", \"title\": \"Virgin\" },\n          { \"slug\": \"fido\", \"title\": \"FiDo\" },\n          { \"slug\": \"koodo\", \"title\": \"Koodo\" },\n          { \"slug\": \"chatr\", \"title\": \"Chatr\" },\n          { \"slug\": \"public-mobile\", \"title\": \"Public Mobile\" },\n          { \"slug\": \"value-mobile\", \"title\": \"Value Mobile\" },\n          { \"slug\": \"cellular-point\", \"title\": \"Cellular Point\" }\n        ],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$455.00\",\n          \"local_customer_price_in_cents\": 45500,\n          \"local_typical_customer_price_in_cents\": 45500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15189871237\",\n      \"title\": \"iPhone 15 Plus 512GB Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [\n          { \"slug\": \"c-spire\", \"title\": \"C-Spire\" },\n          { \"slug\": \"metro-pcs\", \"title\": \"Metro PCS\" },\n          { \"slug\": \"cricket\", \"title\": \"Cricket\" },\n          { \"slug\": \"boost\", \"title\": \"Boost\" },\n          { \"slug\": \"tracfone\", \"title\": \"Tracfone\" },\n          { \"slug\": \"ntelos\", \"title\": \"nTelos\" },\n          { \"slug\": \"straight-talk\", \"title\": \"Straight Talk\" }\n        ],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$330.00\",\n          \"local_customer_price_in_cents\": 33000,\n          \"local_typical_customer_price_in_cents\": 33000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15523688099\",\n      \"title\": \"iPhone 15 Plus 512GB US Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [\n          { \"slug\": \"c-spire\", \"title\": \"C-Spire\" },\n          { \"slug\": \"metro-pcs\", \"title\": \"Metro PCS\" },\n          { \"slug\": \"cricket\", \"title\": \"Cricket\" },\n          { \"slug\": \"boost\", \"title\": \"Boost\" },\n          { \"slug\": \"tracfone\", \"title\": \"Tracfone\" },\n          { \"slug\": \"ntelos\", \"title\": \"nTelos\" },\n          { \"slug\": \"straight-talk\", \"title\": \"Straight Talk\" }\n        ],\n        \"family\": [{ \"slug\": \"iphone-15-plus\", \"title\": \"iPhone 15 Plus\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$330.00\",\n          \"local_customer_price_in_cents\": 33000,\n          \"local_typical_customer_price_in_cents\": 33000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$140.00\",\n          \"local_customer_price_in_cents\": 14000,\n          \"local_typical_customer_price_in_cents\": 14000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15636256297\",\n      \"title\": \"iPhone 15 Pro 128GB Canada Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [\n          { \"slug\": \"virgin\", \"title\": \"Virgin\" },\n          { \"slug\": \"fido\", \"title\": \"FiDo\" },\n          { \"slug\": \"koodo\", \"title\": \"Koodo\" },\n          { \"slug\": \"chatr\", \"title\": \"Chatr\" },\n          { \"slug\": \"public-mobile\", \"title\": \"Public Mobile\" },\n          { \"slug\": \"value-mobile\", \"title\": \"Value Mobile\" },\n          { \"slug\": \"cellular-point\", \"title\": \"Cellular Point\" }\n        ],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$560.00\",\n          \"local_customer_price_in_cents\": 56000,\n          \"local_typical_customer_price_in_cents\": 56000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15329600231\",\n      \"title\": \"iPhone 15 Pro 128GB Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [\n          { \"slug\": \"c-spire\", \"title\": \"C-Spire\" },\n          { \"slug\": \"metro-pcs\", \"title\": \"Metro PCS\" },\n          { \"slug\": \"cricket\", \"title\": \"Cricket\" },\n          { \"slug\": \"boost\", \"title\": \"Boost\" },\n          { \"slug\": \"tracfone\", \"title\": \"Tracfone\" },\n          { \"slug\": \"ntelos\", \"title\": \"nTelos\" },\n          { \"slug\": \"straight-talk\", \"title\": \"Straight Talk\" }\n        ],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$570.00\",\n          \"local_customer_price_in_cents\": 57000,\n          \"local_typical_customer_price_in_cents\": 57000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15709457673\",\n      \"title\": \"iPhone 15 Pro 128GB US Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"128gb\", \"title\": \"128GB\" }],\n        \"carrier\": [\n          { \"slug\": \"c-spire\", \"title\": \"C-Spire\" },\n          { \"slug\": \"metro-pcs\", \"title\": \"Metro PCS\" },\n          { \"slug\": \"cricket\", \"title\": \"Cricket\" },\n          { \"slug\": \"boost\", \"title\": \"Boost\" },\n          { \"slug\": \"tracfone\", \"title\": \"Tracfone\" },\n          { \"slug\": \"ntelos\", \"title\": \"nTelos\" },\n          { \"slug\": \"straight-talk\", \"title\": \"Straight Talk\" }\n        ],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$515.00\",\n          \"local_customer_price_in_cents\": 51500,\n          \"local_typical_customer_price_in_cents\": 51500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15219805510\",\n      \"title\": \"iPhone 15 Pro 1TB Canada Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"1tb\", \"title\": \"1TB\" }],\n        \"carrier\": [\n          { \"slug\": \"virgin\", \"title\": \"Virgin\" },\n          { \"slug\": \"fido\", \"title\": \"FiDo\" },\n          { \"slug\": \"koodo\", \"title\": \"Koodo\" },\n          { \"slug\": \"chatr\", \"title\": \"Chatr\" },\n          { \"slug\": \"public-mobile\", \"title\": \"Public Mobile\" },\n          { \"slug\": \"value-mobile\", \"title\": \"Value Mobile\" },\n          { \"slug\": \"cellular-point\", \"title\": \"Cellular Point\" }\n        ],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$560.00\",\n          \"local_customer_price_in_cents\": 56000,\n          \"local_typical_customer_price_in_cents\": 56000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15929381331\",\n      \"title\": \"iPhone 15 Pro 1TB Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"1tb\", \"title\": \"1TB\" }],\n        \"carrier\": [\n          { \"slug\": \"c-spire\", \"title\": \"C-Spire\" },\n          { \"slug\": \"metro-pcs\", \"title\": \"Metro PCS\" },\n          { \"slug\": \"cricket\", \"title\": \"Cricket\" },\n          { \"slug\": \"boost\", \"title\": \"Boost\" },\n          { \"slug\": \"tracfone\", \"title\": \"Tracfone\" },\n          { \"slug\": \"ntelos\", \"title\": \"nTelos\" },\n          { \"slug\": \"straight-talk\", \"title\": \"Straight Talk\" }\n        ],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$570.00\",\n          \"local_customer_price_in_cents\": 57000,\n          \"local_typical_customer_price_in_cents\": 57000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15455964989\",\n      \"title\": \"iPhone 15 Pro 1TB US Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"1tb\", \"title\": \"1TB\" }],\n        \"carrier\": [\n          { \"slug\": \"c-spire\", \"title\": \"C-Spire\" },\n          { \"slug\": \"metro-pcs\", \"title\": \"Metro PCS\" },\n          { \"slug\": \"cricket\", \"title\": \"Cricket\" },\n          { \"slug\": \"boost\", \"title\": \"Boost\" },\n          { \"slug\": \"tracfone\", \"title\": \"Tracfone\" },\n          { \"slug\": \"ntelos\", \"title\": \"nTelos\" },\n          { \"slug\": \"straight-talk\", \"title\": \"Straight Talk\" }\n        ],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$515.00\",\n          \"local_customer_price_in_cents\": 51500,\n          \"local_typical_customer_price_in_cents\": 51500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15207986041\",\n      \"title\": \"iPhone 15 Pro 256GB Canada Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [\n          { \"slug\": \"virgin\", \"title\": \"Virgin\" },\n          { \"slug\": \"fido\", \"title\": \"FiDo\" },\n          { \"slug\": \"koodo\", \"title\": \"Koodo\" },\n          { \"slug\": \"chatr\", \"title\": \"Chatr\" },\n          { \"slug\": \"public-mobile\", \"title\": \"Public Mobile\" },\n          { \"slug\": \"value-mobile\", \"title\": \"Value Mobile\" },\n          { \"slug\": \"cellular-point\", \"title\": \"Cellular Point\" }\n        ],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$560.00\",\n          \"local_customer_price_in_cents\": 56000,\n          \"local_typical_customer_price_in_cents\": 56000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15701549097\",\n      \"title\": \"iPhone 15 Pro 256GB Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [\n          { \"slug\": \"c-spire\", \"title\": \"C-Spire\" },\n          { \"slug\": \"metro-pcs\", \"title\": \"Metro PCS\" },\n          { \"slug\": \"cricket\", \"title\": \"Cricket\" },\n          { \"slug\": \"boost\", \"title\": \"Boost\" },\n          { \"slug\": \"tracfone\", \"title\": \"Tracfone\" },\n          { \"slug\": \"ntelos\", \"title\": \"nTelos\" },\n          { \"slug\": \"straight-talk\", \"title\": \"Straight Talk\" }\n        ],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$570.00\",\n          \"local_customer_price_in_cents\": 57000,\n          \"local_typical_customer_price_in_cents\": 57000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15691288177\",\n      \"title\": \"iPhone 15 Pro 256GB US Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [\n          { \"slug\": \"c-spire\", \"title\": \"C-Spire\" },\n          { \"slug\": \"metro-pcs\", \"title\": \"Metro PCS\" },\n          { \"slug\": \"cricket\", \"title\": \"Cricket\" },\n          { \"slug\": \"boost\", \"title\": \"Boost\" },\n          { \"slug\": \"tracfone\", \"title\": \"Tracfone\" },\n          { \"slug\": \"ntelos\", \"title\": \"nTelos\" },\n          { \"slug\": \"straight-talk\", \"title\": \"Straight Talk\" }\n        ],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$515.00\",\n          \"local_customer_price_in_cents\": 51500,\n          \"local_typical_customer_price_in_cents\": 51500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15367634027\",\n      \"title\": \"iPhone 15 Pro 512GB Canada Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [\n          { \"slug\": \"virgin\", \"title\": \"Virgin\" },\n          { \"slug\": \"fido\", \"title\": \"FiDo\" },\n          { \"slug\": \"koodo\", \"title\": \"Koodo\" },\n          { \"slug\": \"chatr\", \"title\": \"Chatr\" },\n          { \"slug\": \"public-mobile\", \"title\": \"Public Mobile\" },\n          { \"slug\": \"value-mobile\", \"title\": \"Value Mobile\" },\n          { \"slug\": \"cellular-point\", \"title\": \"Cellular Point\" }\n        ],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$560.00\",\n          \"local_customer_price_in_cents\": 56000,\n          \"local_typical_customer_price_in_cents\": 56000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15611503465\",\n      \"title\": \"iPhone 15 Pro 512GB Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [\n          { \"slug\": \"c-spire\", \"title\": \"C-Spire\" },\n          { \"slug\": \"metro-pcs\", \"title\": \"Metro PCS\" },\n          { \"slug\": \"cricket\", \"title\": \"Cricket\" },\n          { \"slug\": \"boost\", \"title\": \"Boost\" },\n          { \"slug\": \"tracfone\", \"title\": \"Tracfone\" },\n          { \"slug\": \"ntelos\", \"title\": \"nTelos\" },\n          { \"slug\": \"straight-talk\", \"title\": \"Straight Talk\" }\n        ],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$570.00\",\n          \"local_customer_price_in_cents\": 57000,\n          \"local_typical_customer_price_in_cents\": 57000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15995034970\",\n      \"title\": \"iPhone 15 Pro 512GB US Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [\n          { \"slug\": \"c-spire\", \"title\": \"C-Spire\" },\n          { \"slug\": \"metro-pcs\", \"title\": \"Metro PCS\" },\n          { \"slug\": \"cricket\", \"title\": \"Cricket\" },\n          { \"slug\": \"boost\", \"title\": \"Boost\" },\n          { \"slug\": \"tracfone\", \"title\": \"Tracfone\" },\n          { \"slug\": \"ntelos\", \"title\": \"nTelos\" },\n          { \"slug\": \"straight-talk\", \"title\": \"Straight Talk\" }\n        ],\n        \"family\": [{ \"slug\": \"iphone-15-pro\", \"title\": \"iPhone 15 Pro\" }],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$515.00\",\n          \"local_customer_price_in_cents\": 51500,\n          \"local_typical_customer_price_in_cents\": 51500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$225.00\",\n          \"local_customer_price_in_cents\": 22500,\n          \"local_typical_customer_price_in_cents\": 22500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15395670001\",\n      \"title\": \"iPhone 15 Pro Max 1TB Canada Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"1tb\", \"title\": \"1TB\" }],\n        \"carrier\": [\n          { \"slug\": \"virgin\", \"title\": \"Virgin\" },\n          { \"slug\": \"fido\", \"title\": \"FiDo\" },\n          { \"slug\": \"koodo\", \"title\": \"Koodo\" },\n          { \"slug\": \"chatr\", \"title\": \"Chatr\" },\n          { \"slug\": \"public-mobile\", \"title\": \"Public Mobile\" },\n          { \"slug\": \"value-mobile\", \"title\": \"Value Mobile\" },\n          { \"slug\": \"cellular-point\", \"title\": \"Cellular Point\" }\n        ],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$650.00\",\n          \"local_customer_price_in_cents\": 65000,\n          \"local_typical_customer_price_in_cents\": 65000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15559867179\",\n      \"title\": \"iPhone 15 Pro Max 1TB Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"1tb\", \"title\": \"1TB\" }],\n        \"carrier\": [\n          { \"slug\": \"c-spire\", \"title\": \"C-Spire\" },\n          { \"slug\": \"metro-pcs\", \"title\": \"Metro PCS\" },\n          { \"slug\": \"cricket\", \"title\": \"Cricket\" },\n          { \"slug\": \"boost\", \"title\": \"Boost\" },\n          { \"slug\": \"tracfone\", \"title\": \"Tracfone\" },\n          { \"slug\": \"ntelos\", \"title\": \"nTelos\" },\n          { \"slug\": \"straight-talk\", \"title\": \"Straight Talk\" }\n        ],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$575.00\",\n          \"local_customer_price_in_cents\": 57500,\n          \"local_typical_customer_price_in_cents\": 57500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15785098029\",\n      \"title\": \"iPhone 15 Pro Max 1TB US Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"1tb\", \"title\": \"1TB\" }],\n        \"carrier\": [\n          { \"slug\": \"c-spire\", \"title\": \"C-Spire\" },\n          { \"slug\": \"metro-pcs\", \"title\": \"Metro PCS\" },\n          { \"slug\": \"cricket\", \"title\": \"Cricket\" },\n          { \"slug\": \"boost\", \"title\": \"Boost\" },\n          { \"slug\": \"tracfone\", \"title\": \"Tracfone\" },\n          { \"slug\": \"ntelos\", \"title\": \"nTelos\" },\n          { \"slug\": \"straight-talk\", \"title\": \"Straight Talk\" }\n        ],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$575.00\",\n          \"local_customer_price_in_cents\": 57500,\n          \"local_typical_customer_price_in_cents\": 57500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15212203416\",\n      \"title\": \"iPhone 15 Pro Max 256GB Canada Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [\n          { \"slug\": \"virgin\", \"title\": \"Virgin\" },\n          { \"slug\": \"fido\", \"title\": \"FiDo\" },\n          { \"slug\": \"koodo\", \"title\": \"Koodo\" },\n          { \"slug\": \"chatr\", \"title\": \"Chatr\" },\n          { \"slug\": \"public-mobile\", \"title\": \"Public Mobile\" },\n          { \"slug\": \"value-mobile\", \"title\": \"Value Mobile\" },\n          { \"slug\": \"cellular-point\", \"title\": \"Cellular Point\" }\n        ],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$650.00\",\n          \"local_customer_price_in_cents\": 65000,\n          \"local_typical_customer_price_in_cents\": 65000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15928687738\",\n      \"title\": \"iPhone 15 Pro Max 256GB Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [\n          { \"slug\": \"c-spire\", \"title\": \"C-Spire\" },\n          { \"slug\": \"metro-pcs\", \"title\": \"Metro PCS\" },\n          { \"slug\": \"cricket\", \"title\": \"Cricket\" },\n          { \"slug\": \"boost\", \"title\": \"Boost\" },\n          { \"slug\": \"tracfone\", \"title\": \"Tracfone\" },\n          { \"slug\": \"ntelos\", \"title\": \"nTelos\" },\n          { \"slug\": \"straight-talk\", \"title\": \"Straight Talk\" }\n        ],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$575.00\",\n          \"local_customer_price_in_cents\": 57500,\n          \"local_typical_customer_price_in_cents\": 57500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15766795999\",\n      \"title\": \"iPhone 15 Pro Max 256GB US Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n        \"carrier\": [\n          { \"slug\": \"c-spire\", \"title\": \"C-Spire\" },\n          { \"slug\": \"metro-pcs\", \"title\": \"Metro PCS\" },\n          { \"slug\": \"cricket\", \"title\": \"Cricket\" },\n          { \"slug\": \"boost\", \"title\": \"Boost\" },\n          { \"slug\": \"tracfone\", \"title\": \"Tracfone\" },\n          { \"slug\": \"ntelos\", \"title\": \"nTelos\" },\n          { \"slug\": \"straight-talk\", \"title\": \"Straight Talk\" }\n        ],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$575.00\",\n          \"local_customer_price_in_cents\": 57500,\n          \"local_typical_customer_price_in_cents\": 57500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15907233801\",\n      \"title\": \"iPhone 15 Pro Max 512GB Canada Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [\n          { \"slug\": \"virgin\", \"title\": \"Virgin\" },\n          { \"slug\": \"fido\", \"title\": \"FiDo\" },\n          { \"slug\": \"koodo\", \"title\": \"Koodo\" },\n          { \"slug\": \"chatr\", \"title\": \"Chatr\" },\n          { \"slug\": \"public-mobile\", \"title\": \"Public Mobile\" },\n          { \"slug\": \"value-mobile\", \"title\": \"Value Mobile\" },\n          { \"slug\": \"cellular-point\", \"title\": \"Cellular Point\" }\n        ],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$650.00\",\n          \"local_customer_price_in_cents\": 65000,\n          \"local_typical_customer_price_in_cents\": 65000,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15683165177\",\n      \"title\": \"iPhone 15 Pro Max 512GB Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [\n          { \"slug\": \"c-spire\", \"title\": \"C-Spire\" },\n          { \"slug\": \"metro-pcs\", \"title\": \"Metro PCS\" },\n          { \"slug\": \"cricket\", \"title\": \"Cricket\" },\n          { \"slug\": \"boost\", \"title\": \"Boost\" },\n          { \"slug\": \"tracfone\", \"title\": \"Tracfone\" },\n          { \"slug\": \"ntelos\", \"title\": \"nTelos\" },\n          { \"slug\": \"straight-talk\", \"title\": \"Straight Talk\" }\n        ],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$575.00\",\n          \"local_customer_price_in_cents\": 57500,\n          \"local_typical_customer_price_in_cents\": 57500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    },\n    {\n      \"uid\": \"15145219737\",\n      \"title\": \"iPhone 15 Pro Max 512GB US Other\",\n      \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n      \"aliases\": null,\n      \"attributes\": {\n        \"capacity\": [{ \"slug\": \"512gb\", \"title\": \"512GB\" }],\n        \"carrier\": [\n          { \"slug\": \"c-spire\", \"title\": \"C-Spire\" },\n          { \"slug\": \"metro-pcs\", \"title\": \"Metro PCS\" },\n          { \"slug\": \"cricket\", \"title\": \"Cricket\" },\n          { \"slug\": \"boost\", \"title\": \"Boost\" },\n          { \"slug\": \"tracfone\", \"title\": \"Tracfone\" },\n          { \"slug\": \"ntelos\", \"title\": \"nTelos\" },\n          { \"slug\": \"straight-talk\", \"title\": \"Straight Talk\" }\n        ],\n        \"family\": [\n          { \"slug\": \"iphone-15-pro-max\", \"title\": \"iPhone 15 Pro Max\" }\n        ],\n        \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n      },\n      \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n      \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n      \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n      \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n      \"prices\": [\n        {\n          \"condition\": \"working\",\n          \"name\": \"Working\",\n          \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n          \"local_customer_display_price\": \"$575.00\",\n          \"local_customer_price_in_cents\": 57500,\n          \"local_typical_customer_price_in_cents\": 57500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"damaged\",\n          \"name\": \"Damaged\",\n          \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n          \"local_customer_display_price\": \"$235.00\",\n          \"local_customer_price_in_cents\": 23500,\n          \"local_typical_customer_price_in_cents\": 23500,\n          \"local_currency_symbol\": \"USD\"\n        },\n        {\n          \"condition\": \"dead\",\n          \"name\": \"Dead\",\n          \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n          \"local_customer_display_price\": \"$0.00\",\n          \"local_customer_price_in_cents\": 0,\n          \"local_typical_customer_price_in_cents\": 0,\n          \"local_currency_symbol\": \"USD\"\n        }\n      ],\n      \"requires_imei\": true\n    }\n  ]\n}\n"}],"_postman_id":"2bae6264-63e7-4da7-8d34-225785f7e937"},{"name":"Get Product","id":"9ceca6f1-9cda-4397-618c-ddbe574a1de0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"url":"https://phobio.com/api/v2/products/:uid/","description":"<p>Get a Product by Product UID</p>\n","urlObject":{"path":["products",":uid",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[{"description":{"content":"<p>Product UID</p>\n","type":"text/plain"},"type":"string","value":"","key":"uid"}]}},"response":[{"id":"11f23772-ec52-1a8c-d498-9fb4bf301831","name":"Get Product","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"http://localhost:8000/api/v2/products/:uid/","protocol":"http","host":["localhost"],"port":"8000","path":["api","v2","products",":uid",""],"variable":[{"key":"uid","value":"15394027203"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, HEAD, OPTIONS","name":"Allow","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Language","value":"en","name":"Content-Language","description":""},{"key":"Content-Length","value":"2355","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Feb 2018 16:34:57 GMT","name":"Date","description":""},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":""},{"key":"Strict-Transport-Security","value":"max-age=15768000","name":"Strict-Transport-Security","description":""},{"key":"Vary","value":"Accept-Language, Cookie","name":"Vary","description":""},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":""}],"cookie":[],"responseTime":"85","body":"{\n  \"uid\": \"15394027203\",\n  \"title\": \"iPhone 15 256GB AT&T\",\n  \"manufacturer\": { \"slug\": \"apple\", \"title\": \"Apple\" },\n  \"aliases\": null,\n  \"attributes\": {\n    \"capacity\": [{ \"slug\": \"256gb\", \"title\": \"256GB\" }],\n    \"carrier\": [{ \"slug\": \"att\", \"title\": \"AT&T\" }],\n    \"family\": [{ \"slug\": \"iphone-15\", \"title\": \"iPhone 15\" }],\n    \"year\": [{ \"slug\": \"2023\", \"title\": \"2023\" }]\n  },\n  \"category\": { \"slug\": \"phone\", \"title\": \"Phone\" },\n  \"icon_full_url\": \"https://media.phobio.com/product_images/icon-default.jpg\",\n  \"small_image_full_url\": \"https://media.phobio.com/product_images/small-default.jpg\",\n  \"large_image_full_url\": \"https://media.phobio.com/product_images/large-default.jpg\",\n  \"prices\": [\n    {\n      \"condition\": \"working\",\n      \"name\": \"Working\",\n      \"description\": \"Functional and original device free of physical damage, software problems, and water damage.\",\n      \"local_customer_display_price\": \"$300.00\",\n      \"local_customer_price_in_cents\": 30000,\n      \"local_typical_customer_price_in_cents\": 30000,\n      \"local_currency_symbol\": \"USD\"\n    },\n    {\n      \"condition\": \"damaged\",\n      \"name\": \"Damaged\",\n      \"description\": \"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\",\n      \"local_customer_display_price\": \"$100.00\",\n      \"local_customer_price_in_cents\": 10000,\n      \"local_typical_customer_price_in_cents\": 10000,\n      \"local_currency_symbol\": \"USD\"\n    },\n    {\n      \"condition\": \"dead\",\n      \"name\": \"Dead\",\n      \"description\": \"Device does not power on, or there is damage to the device that interferes with data erasure.\",\n      \"local_customer_display_price\": \"$0.00\",\n      \"local_customer_price_in_cents\": 0,\n      \"local_typical_customer_price_in_cents\": 0,\n      \"local_currency_symbol\": \"USD\"\n    }\n  ],\n  \"questions\": [\n    {\n      \"uid\": \"17873016814\",\n      \"title\": \"Power On\",\n      \"question\": \"Does your device power on?\",\n      \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Issues powering on and off\\r\\n- <a href=\\\"https://www.phobio.com/qr/inspectiontips/\\\" target=\\\"_blank\\\">Signs of battery swelling</a>\",\n      \"responses\": [\n        { \"uid\": \"18000000001\", \"title\": \"True\", \"description\": \"True\" },\n        { \"uid\": \"18000000002\", \"title\": \"False\", \"description\": \"False\" }\n      ]\n    },\n    {\n      \"uid\": \"17181139258\",\n      \"title\": \"Physical Damage\",\n      \"question\": \"Is the device in good physical condition?\",\n      \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Broken or cracked screen\\r\\n- Malfunctioning screen (flickers, pixel loss, non-functioning backlight, lines in the screen)\\r\\n- Cracks, dents or severe scratches to the housing\\r\\n- Malfunctioning or missing buttons\\r\\n- <a href=\\\"https://www.phobio.com/qr/inspectiontips/\\\" target=\\\"_blank\\\">Delamination or worn display coating</a>\\r\\n- <a href=\\\"https://www.phobio.com/qr/inspectiontips/\\\" target=\\\"_blank\\\">Visual Inspection Tips</a>\",\n      \"responses\": [\n        { \"uid\": \"18000000001\", \"title\": \"True\", \"description\": \"True\" },\n        { \"uid\": \"18000000002\", \"title\": \"False\", \"description\": \"False\" }\n      ]\n    },\n    {\n      \"uid\": \"17403066842\",\n      \"title\": \"Water Damage\",\n      \"question\": \"The device has no signs of water damage?\",\n      \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- LCD distortion\\r\\n- Tripped and/or missing liquid exposure indicators\\r\\n- <a href=\\\"https://www.phobio.com/qr/inspectiontips/\\\" target=\\\"_blank\\\">Visual Inspection Tips</a>\",\n      \"responses\": [\n        { \"uid\": \"18000000001\", \"title\": \"True\", \"description\": \"True\" },\n        { \"uid\": \"18000000002\", \"title\": \"False\", \"description\": \"False\" }\n      ]\n    },\n    {\n      \"uid\": \"17717193902\",\n      \"title\": \"LCD Burn in\",\n      \"question\": \"Is the LCD in good condition with no signs of burn-in or discoloration?\",\n      \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Light or severe shadow of icons/apps or any image burned into the background of the screen\\r\\n- Dark spots on screen\\r\\n- <a href=\\\"https://www.phobio.com/qr/inspectiontips/\\\" target=\\\"_blank\\\">Visual Inspection Tips</a>\",\n      \"responses\": [\n        { \"uid\": \"18000000001\", \"title\": \"True\", \"description\": \"True\" },\n        { \"uid\": \"18000000002\", \"title\": \"False\", \"description\": \"False\" }\n      ]\n    },\n    {\n      \"uid\": \"17347796595\",\n      \"title\": \"Camera Lens Cracked\",\n      \"question\": \"Is the Camera Lens intact and in good condition?\",\n      \"body\": \"Select \\\"No\\\" if the device has: \\r\\n\\r\\n- Crack in the camera lens\\r\\n- Missing camera lens\",\n      \"responses\": [\n        { \"uid\": \"18000000001\", \"title\": \"True\", \"description\": \"True\" },\n        { \"uid\": \"18000000002\", \"title\": \"False\", \"description\": \"False\" }\n      ]\n    }\n  ],\n  \"description_html\": \"\",\n  \"requires_imei\": true\n}\n"}],"_postman_id":"9ceca6f1-9cda-4397-618c-ddbe574a1de0"}],"id":"57066ffd-5956-9e6a-aab6-769620a68cc1","description":"<p>Products are individual items, such as a unique model of a phone or a laptop. Products typically represent a single unique SKU, but can also represent multiple SKUs in certain circumstances.</p>\n<p>Products can be searched for (see \"Search Products\"), or filtered in drill-down style (see \"List Products\").</p>\n<p>With drill-down product selection, certain product attributes can be combined (see \"Product Attributes\") to narrow the selection. These may include attributes such as capacity or carrier.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"eacb3050-e174-47df-8442-abd3991d6b7f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f06cb1a9-5e1c-4c80-ac85-11632d05e901","type":"text/javascript","exec":[""]}}],"_postman_id":"57066ffd-5956-9e6a-aab6-769620a68cc1"},{"name":"Product Attributes","item":[{"name":"List Attribute Types","id":"d937e4e6-2e34-bdd1-cb63-f10cae60f75d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"url":"https://phobio.com/api/v2/attributes/","description":"<p>List all available Product Attribute types</p>\n","urlObject":{"path":["attributes",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[]}},"response":[{"id":"dc8c11f4-baec-cf82-062c-a57aad2b6ef9","name":"List Attribute Types","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"formdata","formdata":[]},"url":"https://phobio.com/api/v2/attributes/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Connection","value":"keep-alive","name":"Connection","description":"Options that are desired for the connection"},{"key":"Content-Language","value":"en","name":"Content-Language","description":"The language the content is in"},{"key":"Content-Length","value":"307","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 06 Feb 2018 16:33:13 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":"A name for the server"},{"key":"Strict-Transport-Security","value":"max-age=15768000","name":"Strict-Transport-Security","description":"A HSTS Policy informing the HTTP client how long to cache the HTTPS only policy and whether this applies to subdomains."},{"key":"Vary","value":"Accept-Language, Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"}],"cookie":[],"responseTime":"54","body":"{\n    \"count\": 7,\n    \"results\": [\n        {\n            \"slug\": \"network\",\n            \"title\": \"Product Network\"\n        },\n        {\n            \"slug\": \"carriers\",\n            \"title\": \"Product Carriers\"\n        },\n        {\n            \"slug\": \"family\",\n            \"title\": \"Product Family\"\n        },\n        {\n            \"slug\": \"year\",\n            \"title\": \"Year\"\n        },\n        {\n            \"slug\": \"capacity\",\n            \"title\": \"Capacity\"\n        },\n        {\n            \"slug\": \"processor\",\n            \"title\": \"Processor\"\n        },\n        {\n            \"slug\": \"screen\",\n            \"title\": \"Screen Size\"\n        }\n    ]\n}"}],"_postman_id":"d937e4e6-2e34-bdd1-cb63-f10cae60f75d"},{"name":"List Product Attributes","id":"8bbc94c6-8126-bba5-26ba-fdb71639d318","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"url":"https://phobio.com/api/v2/attributes/:slug/","description":"<p>List all available Product Attributes for any Product Attribute type slug</p>\n","urlObject":{"path":["attributes",":slug",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[{"description":{"content":"<p>Product Attribute Type Slug</p>\n","type":"text/plain"},"type":"string","value":"series","key":"slug"}]}},"response":[{"id":"1e7e78e6-0631-2f60-37e0-97c775a66762","name":"List Product Attributes","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"https://phobio.com/api/v2/attributes/:slug/","host":["https://phobio.com/api/v2"],"path":["attributes",":slug",""],"variable":[{"key":"slug","value":"network","description":"Product Attribute Type Slug"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, HEAD, OPTIONS","name":"Allow","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Language","value":"en","name":"Content-Language","description":""},{"key":"Content-Length","value":"245","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Feb 2018 16:33:29 GMT","name":"Date","description":""},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":""},{"key":"Strict-Transport-Security","value":"max-age=15768000","name":"Strict-Transport-Security","description":""},{"key":"Vary","value":"Accept-Language, Cookie","name":"Vary","description":""},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":""}],"cookie":[],"responseTime":"67","body":"{\n    \"count\": 5,\n    \"next\": null,\n    \"previous\": null,\n    \"results\": [\n        {\n            \"slug\": \"cdma\",\n            \"title\": \"cdma\"\n        },\n        {\n            \"slug\": \"gsm\",\n            \"title\": \"gsm\"\n        },\n        {\n            \"slug\": \"iden\",\n            \"title\": \"iden\"\n        },\n        {\n            \"slug\": \"wifi\",\n            \"title\": \"wifi\"\n        },\n        {\n            \"slug\": \"worldphone\",\n            \"title\": \"worldphone\"\n        }\n    ]\n}"}],"_postman_id":"8bbc94c6-8126-bba5-26ba-fdb71639d318"}],"id":"e60e3f61-1166-5bb4-4f8e-c24d891acae1","description":"<p>Product Attributes are used to describe product features, such as capacity, screen size, or carrier. Product Attributes can be used for filtering and drill-down of Products.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"a50824bd-e583-4cf3-9cac-5f83a0ab9341","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"b5ee9f8c-afd3-44fc-972c-602178917f7a","type":"text/javascript","exec":[""]}}],"_postman_id":"e60e3f61-1166-5bb4-4f8e-c24d891acae1"},{"name":"Manufacturers","item":[{"name":"List Manufacturers","id":"7a67d3bc-05c9-714a-5164-c8e8b18eb739","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"url":"https://phobio.com/api/v2/manufacturers/","description":"<p>List all available Product Manufacturers</p>\n","urlObject":{"path":["manufacturers",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[]}},"response":[{"id":"63936727-133e-b0ff-d0c2-a066dd1b61c7","name":"List Manufacturers","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://phobio.com/api/v2/manufacturers"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, HEAD, OPTIONS","name":"Allow","description":""},{"key":"Content-Language","value":"en","name":"Content-Language","description":""},{"key":"Content-Length","value":"1909","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 04 Jan 2018 21:15:11 GMT","name":"Date","description":""},{"key":"Server","value":"WSGIServer/0.1 Python/2.7.12","name":"Server","description":""},{"key":"Vary","value":"Accept-Language, Cookie","name":"Vary","description":""},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":""}],"cookie":[],"responseTime":"144","body":"{\n    \"count\": 139,\n    \"next\": \"https://phobio.com/api/v2/api/v2/manufacturers/?page=2\",\n    \"previous\": null,\n    \"results\": [\n        {\n            \"slug\": \"accelerated-concepts\",\n            \"title\": \"Accelerated Concepts\"\n        },\n        {\n            \"slug\": \"acer\",\n            \"title\": \"Acer\"\n        },\n        {\n            \"slug\": \"ainol\",\n            \"title\": \"Ainol\"\n        },\n        {\n            \"slug\": \"airo\",\n            \"title\": \"Airo\"\n        },\n        {\n            \"slug\": \"alcatel\",\n            \"title\": \"Alcatel\"\n        },\n        {\n            \"slug\": \"amazon\",\n            \"title\": \"Amazon\"\n        },\n        {\n            \"slug\": \"amoi\",\n            \"title\": \"Amoi\"\n        },\n        {\n            \"slug\": \"ampe\",\n            \"title\": \"Ampe\"\n        },\n        {\n            \"slug\": \"anycool\",\n            \"title\": \"Anycool\"\n        },\n        {\n            \"slug\": \"apple\",\n            \"title\": \"Apple\"\n        },\n        {\n            \"slug\": \"archos\",\n            \"title\": \"Archos\"\n        },\n        {\n            \"slug\": \"asus\",\n            \"title\": \"Asus\"\n        },\n        {\n            \"slug\": \"audiovox\",\n            \"title\": \"Audiovox\"\n        },\n        {\n            \"slug\": \"barnes-noble\",\n            \"title\": \"Barnes & Noble\"\n        },\n        {\n            \"slug\": \"benq\",\n            \"title\": \"BenQ\"\n        },\n        {\n            \"slug\": \"benq-siemens\",\n            \"title\": \"BenQ-Siemens\"\n        },\n        {\n            \"slug\": \"blackberry\",\n            \"title\": \"BlackBerry\"\n        },\n        {\n            \"slug\": \"blu\",\n            \"title\": \"Blu\"\n        },\n        {\n            \"slug\": \"brondi\",\n            \"title\": \"Brondi\"\n        },\n        {\n            \"slug\": \"casio\",\n            \"title\": \"Casio\"\n        },\n        {\n            \"slug\": \"cat\",\n            \"title\": \"CAT\"\n        },\n        {\n            \"slug\": \"caterpillar\",\n            \"title\": \"Caterpillar\"\n        },\n        {\n            \"slug\": \"chuwi\",\n            \"title\": \"Chuwi\"\n        },\n        {\n            \"slug\": \"cloud-d-link\",\n            \"title\": \"Cloud (D-Link)\"\n        },\n        {\n            \"slug\": \"cradlepoint\",\n            \"title\": \"Cradlepoint\"\n        },\n        {\n            \"slug\": \"creative\",\n            \"title\": \"Creative\"\n        },\n        {\n            \"slug\": \"cricket\",\n            \"title\": \"Cricket\"\n        },\n        {\n            \"slug\": \"cube\",\n            \"title\": \"Cube\"\n        },\n        {\n            \"slug\": \"cubot\",\n            \"title\": \"Cubot\"\n        },\n        {\n            \"slug\": \"danger\",\n            \"title\": \"Danger\"\n        },\n        {\n            \"slug\": \"dell\",\n            \"title\": \"Dell\"\n        },\n        {\n            \"slug\": \"digi\",\n            \"title\": \"Digi\"\n        },\n        {\n            \"slug\": \"digital\",\n            \"title\": \"Digital\"\n        },\n        {\n            \"slug\": \"doro\",\n            \"title\": \"Doro\"\n        },\n        {\n            \"slug\": \"emporia\",\n            \"title\": \"Emporia\"\n        },\n        {\n            \"slug\": \"ericsson\",\n            \"title\": \"Ericsson\"\n        },\n        {\n            \"slug\": \"eten\",\n            \"title\": \"ETEN\"\n        },\n        {\n            \"slug\": \"fossil\",\n            \"title\": \"Fossil\"\n        },\n        {\n            \"slug\": \"garmin\",\n            \"title\": \"Garmin\"\n        },\n        {\n            \"slug\": \"garmin-asus\",\n            \"title\": \"Garmin-Asus\"\n        },\n        {\n            \"slug\": \"gateway\",\n            \"title\": \"Gateway\"\n        },\n        {\n            \"slug\": \"glamour\",\n            \"title\": \"Glamour\"\n        },\n        {\n            \"slug\": \"google\",\n            \"title\": \"Google\"\n        },\n        {\n            \"slug\": \"gosmart\",\n            \"title\": \"GoSmart\"\n        },\n        {\n            \"slug\": \"hitachi\",\n            \"title\": \"Hitachi\"\n        },\n        {\n            \"slug\": \"hp\",\n            \"title\": \"HP\"\n        },\n        {\n            \"slug\": \"htc\",\n            \"title\": \"HTC\"\n        },\n        {\n            \"slug\": \"huawei\",\n            \"title\": \"Huawei\"\n        },\n        {\n            \"slug\": \"hyundai\",\n            \"title\": \"Hyundai\"\n        },\n        {\n            \"slug\": \"i-mate\",\n            \"title\": \"i-mate\"\n        }\n    ]\n}"}],"_postman_id":"7a67d3bc-05c9-714a-5164-c8e8b18eb739"},{"name":"Get Manufacturer","id":"06916cc9-5c71-6b81-b8a7-51c83f9c327a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"url":"https://phobio.com/api/v2/manufacturers/:slug/","description":"<p>Get Product Manufacturer by Product Manufacturer slug</p>\n","urlObject":{"path":["manufacturers",":slug",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[{"description":{"content":"<p>Manufacturer Slug</p>\n","type":"text/plain"},"type":"string","value":"apple","key":"slug"}]}},"response":[{"id":"d6a7cce2-3a75-808b-bf2a-83df20f841f9","name":"Get Manufacturer","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://phobio.com/api/v2/manufacturers/apple"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, HEAD, OPTIONS","name":"Allow","description":""},{"key":"Content-Language","value":"en","name":"Content-Language","description":""},{"key":"Content-Length","value":"32","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 04 Jan 2018 21:16:20 GMT","name":"Date","description":""},{"key":"Server","value":"WSGIServer/0.1 Python/2.7.12","name":"Server","description":""},{"key":"Vary","value":"Accept-Language, Cookie","name":"Vary","description":""},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":""}],"cookie":[],"responseTime":"128","body":"{\"slug\":\"apple\",\"title\":\"Apple\"}"}],"_postman_id":"06916cc9-5c71-6b81-b8a7-51c83f9c327a"}],"id":"a83d5ef7-c8a9-ea7a-66ec-7f8695e4ab51","description":"<p>Product Manufacturers group Products by the company that produced them, such as <code>apple</code>, or <code>samsung</code>. Product Manufacturers can be used for filtering drill-down of Products.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"77c22a7e-3f25-4d51-aeba-766021b87fe9","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"bff1c95a-8e9c-4730-8bc0-7791568df38b","type":"text/javascript","exec":[""]}}],"_postman_id":"a83d5ef7-c8a9-ea7a-66ec-7f8695e4ab51"},{"name":"Categories","item":[{"name":"List Categories","id":"2892596a-fa16-a042-bf1f-3255e6f88832","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"url":"https://phobio.com/api/v2/categories/","description":"<p>List all available Product Categories</p>\n","urlObject":{"path":["categories",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[]}},"response":[{"id":"f3842ced-e573-e68a-c230-4afbade5f89d","name":"List Categories","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"formdata","formdata":[]},"url":"https://phobio.com/api/v2/categories/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, HEAD, OPTIONS","name":"Allow","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Language","value":"en","name":"Content-Language","description":""},{"key":"Content-Length","value":"1082","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Feb 2018 16:32:09 GMT","name":"Date","description":""},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":""},{"key":"Strict-Transport-Security","value":"max-age=15768000","name":"Strict-Transport-Security","description":""},{"key":"Vary","value":"Accept-Language, Cookie","name":"Vary","description":""},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":""}],"cookie":[],"responseTime":"62","body":"{\"count\":16,\"next\":null,\"previous\":null,\"results\":[{\"slug\":\"camera\",\"title\":\"Camera\",\"category_type\":\"mobile\"},{\"slug\":\"console\",\"title\":\"Console\",\"category_type\":\"mobile\"},{\"slug\":\"console-accessory\",\"title\":\"Console Accessory\",\"category_type\":\"mobile\"},{\"slug\":\"console-controller\",\"title\":\"Console Controller\",\"category_type\":\"mobile\"},{\"slug\":\"display\",\"title\":\"Display\",\"category_type\":\"computing\"},{\"slug\":\"gps\",\"title\":\"GPS\",\"category_type\":\"mobile\"},{\"slug\":\"laptop\",\"title\":\"Laptop\",\"category_type\":\"computing\"},{\"slug\":\"media_player\",\"title\":\"Media Player\",\"category_type\":\"computing\"},{\"slug\":\"mp3-player\",\"title\":\"MP3 Player\",\"category_type\":\"mobile\"},{\"slug\":\"netbook\",\"title\":\"Netbook\",\"category_type\":\"mobile\"},{\"slug\":\"netcard\",\"title\":\"Netcard\",\"category_type\":\"mobile\"},{\"slug\":\"pc\",\"title\":\"PC\",\"category_type\":\"computing\"},{\"slug\":\"phone\",\"title\":\"Phone\",\"category_type\":\"mobile\"},{\"slug\":\"smartwatch\",\"title\":\"Smartwatch\",\"category_type\":\"mobile\"},{\"slug\":\"tablet\",\"title\":\"Tablet\",\"category_type\":\"mobile\"},{\"slug\":\"vr\",\"title\":\"VR\",\"category_type\":\"mobile\"}]}"}],"_postman_id":"2892596a-fa16-a042-bf1f-3255e6f88832"},{"name":"Get Category","id":"7b82dce5-e418-e2d4-99b4-c8fb011ac947","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"url":"https://phobio.com/api/v2/categories/:slug/","description":"<p>Get a Product Category by slug</p>\n","urlObject":{"path":["categories",":slug",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[{"description":{"content":"<p>Category Slug</p>\n","type":"text/plain"},"type":"string","value":"phone","key":"slug"}]}},"response":[{"id":"1720fe9f-6f2f-3573-b986-69787f6dd6ac","name":"Get Category","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"https://phobio.com/api/v2/categories/:slug/","host":["https://phobio.com/api/v2"],"path":["categories",":slug",""],"variable":[{"key":"slug","value":"phone","description":"Category Slug"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, HEAD, OPTIONS","name":"Allow","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Language","value":"en","name":"Content-Language","description":""},{"key":"Content-Length","value":"57","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Feb 2018 16:32:39 GMT","name":"Date","description":""},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":""},{"key":"Strict-Transport-Security","value":"max-age=15768000","name":"Strict-Transport-Security","description":""},{"key":"Vary","value":"Accept-Language, Cookie","name":"Vary","description":""},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":""}],"cookie":[],"responseTime":"64","body":"{\"slug\":\"phone\",\"title\":\"Phone\",\"category_type\":\"mobile\"}"}],"_postman_id":"7b82dce5-e418-e2d4-99b4-c8fb011ac947"}],"id":"19da241d-ea59-a43d-aedc-61cadb545768","description":"<p>Product Categories are one of the top-level organization methods for Products, and include things like <code>phone</code>, or <code>laptop</code>. Product Categories can be used for filtering and drill-down of Products.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"e7701afd-ee66-4af0-950a-33775e5b48a9","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"198aade5-aaf7-45e1-ab2c-4ecd6e8843e5","type":"text/javascript","exec":[""]}}],"_postman_id":"19da241d-ea59-a43d-aedc-61cadb545768"},{"name":"Quotes","item":[{"name":"Create Quote","id":"a3a8309c-22c1-8302-da7c-4e6f3086581c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"raw","raw":"{\n  \"products\": [\n    {\n      \"uid\": \"15848028971\",\n        \"serial\": \"11111167265\",\n        \"question_responses\": [\n          {\n            \"question_uid\": \"17896982281\",\n            \"response_uid\": \"18000000001\"\n          },\n          {\n            \"question_uid\": \"17446012415\",\n            \"response_uid\": \"18000000002\"\n          }\n        ]\n    },\n    {\n      \"uid\": \"15848028971\",\n        \"condition\": \"damaged\",\n        \"serial\": \"11118487236\"\n    }\n  ],\n  \"sales_items\": [\n    {\n      \"sku\": \"9018728932\",\n      \"description\": \"iPhone 6s AT&T\"\n    }  \n  ]\n}"},"url":"https://phobio.com/api/v2/quotes/","description":"<p>This method creates a Quote that can be displayed to the customer. This method requires a JSON object described below with the products being traded.</p>\n<h5 id=\"json-body-parameters\">JSON Body Parameters</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>company_location_uid</code></td>\n<td>integer</td>\n<td>False</td>\n<td>Providing a company location UID allows for Phobio to show the correct location to the user for certain tools</td>\n</tr>\n<tr>\n<td><code>promo_code</code></td>\n<td>string</td>\n<td>False</td>\n<td>A valid, current promo code to apply to the Trade</td>\n</tr>\n<tr>\n<td><code>payment_option_slug</code></td>\n<td>string</td>\n<td>False</td>\n<td>The slug of the payment_option to apply to the Invoice. payment_options are included with the response of Create Quote.</td>\n</tr>\n<tr>\n<td><code>products</code></td>\n<td>JSON object list</td>\n<td>True</td>\n<td>See the 'products object' below</td>\n</tr>\n<tr>\n<td><code>sales_items</code></td>\n<td>JSON object list</td>\n<td>False</td>\n<td>A list of sales included on the customer's transaction. See the 'sales item object' below</td>\n</tr>\n<tr>\n<td><code>customer</code></td>\n<td>string</td>\n<td>False</td>\n<td>The customer object may either be supplied here, with quote creation, or when the quote is confirmed in a following step. See the 'customer object' below.</td>\n</tr>\n<tr>\n<td><code>reference_1</code></td>\n<td>string</td>\n<td>False</td>\n<td>Company specific reference metadata</td>\n</tr>\n<tr>\n<td><code>reference_2</code></td>\n<td>string</td>\n<td>False</td>\n<td>Company specific reference metadata</td>\n</tr>\n</tbody>\n</table>\n</div><h5 id=\"products-object-parameters\">Products Object Parameters</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>uid</code></td>\n<td>integer</td>\n<td>True</td>\n<td>The UID of a Product object associated with the device to trade in</td>\n</tr>\n<tr>\n<td><code>condition</code></td>\n<td>string</td>\n<td>True**</td>\n<td>The condition of the device to be traded in, choices are slugs returned by <a href=\"#list-conditions\">List Conditions</a>. Required if <code>question_responses</code> is not passed</td>\n</tr>\n<tr>\n<td><code>imei</code></td>\n<td>integer</td>\n<td>True*</td>\n<td>The IMEI of the device to be traded in. Required if the device is a mobile phone, and if IMEI is required by the Company settings</td>\n</tr>\n<tr>\n<td><code>serial</code></td>\n<td>string</td>\n<td>True*</td>\n<td>The serial number of the device to be traded in. Required if the device is a computer, and if the serial number is required by the Company settings</td>\n</tr>\n<tr>\n<td><code>question_responses</code></td>\n<td>JSON object list</td>\n<td>True*</td>\n<td>See the 'question reponses object' below. Required if <code>condition</code> is not passed</td>\n</tr>\n<tr>\n<td><code>partner_expected_price_in_cents</code></td>\n<td>integer</td>\n<td>False</td>\n<td>An \"expected price\" may be passed for each product indicating what the partner expects the final paid value of a trade will be. This field is for informational use only, and has no functional purpose.</td>\n</tr>\n<tr>\n<td><code>partner_lock_status</code></td>\n<td>string</td>\n<td>False</td>\n<td>A device lock status may be passed for each product indicated what the partner has determined the activation lock status to be. Acceptable statuses are <code>locked</code>, <code>unlocked</code>,</td>\n</tr>\n<tr>\n<td><code>qty</code></td>\n<td>integer</td>\n<td>False</td>\n<td>The number of Trades to create for this Product. Defaults to <code>1</code>. Permission is needed to set this parameter to more than one.</td>\n</tr>\n<tr>\n<td><code>reference_1</code></td>\n<td>string</td>\n<td>False</td>\n<td>Company specific reference metadata</td>\n</tr>\n<tr>\n<td><code>reference_2</code></td>\n<td>string</td>\n<td>False</td>\n<td>Company specific reference metadata</td>\n</tr>\n</tbody>\n</table>\n</div><p><code>verified_locked</code>, <code>verified_unlocked</code>, and <code>freed</code>. This field is for informational use only, and has no functional purpose.</p>\n<h5 id=\"sales-item-object-parameters\">Sales Item Object Parameters</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>sku</code></td>\n<td>string</td>\n<td>True</td>\n<td>SKU of the product sold</td>\n</tr>\n<tr>\n<td><code>description</code></td>\n<td>string</td>\n<td>False</td>\n<td>Optional human-readable description of the sales item</td>\n</tr>\n</tbody>\n</table>\n</div><h5 id=\"question-responses-object-parameters\">Question Responses Object Parameters</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>question_uid</code></td>\n<td>integer</td>\n<td>True</td>\n<td>UID of the Question, as returned by the Quote object</td>\n</tr>\n<tr>\n<td><code>response_uid</code></td>\n<td>integer</td>\n<td>True</td>\n<td>UID of the Question Response matching the customer's response, as returned by the Quote object</td>\n</tr>\n</tbody>\n</table>\n</div><h6 id=\"customer-object-parameters\">Customer Object Parameters</h6>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>first_name</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer first name</td>\n</tr>\n<tr>\n<td><code>last_name</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer last name</td>\n</tr>\n<tr>\n<td><code>phone</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer phone number</td>\n</tr>\n<tr>\n<td><code>email</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer email address</td>\n</tr>\n<tr>\n<td><code>address_1</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer address line 1</td>\n</tr>\n<tr>\n<td><code>address_2</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer address line 2</td>\n</tr>\n<tr>\n<td><code>city</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer city</td>\n</tr>\n<tr>\n<td><code>state</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer state</td>\n</tr>\n<tr>\n<td><code>postal_code</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer postal code</td>\n</tr>\n<tr>\n<td><code>country_code</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer two-letter country code</td>\n</tr>\n<tr>\n<td><code>id_type</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer identification type (driver's license, passport, etc)</td>\n</tr>\n<tr>\n<td><code>id_number</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer identification number (driver's license number, etc.)</td>\n</tr>\n<tr>\n<td><code>id_type_alternate</code></td>\n<td>string</td>\n<td>False</td>\n<td>Alternate customer identification type (driver's license, passport, etc)</td>\n</tr>\n<tr>\n<td><code>id_number_alternate</code></td>\n<td>string</td>\n<td>False</td>\n<td>Alternate customer identification number (driver's license number, etc.)</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["quotes",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[]}},"response":[{"id":"f2938a53-f2d1-43dd-9720-1c86c67231e9","name":"Create Quote","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"raw","raw":"{\n    \"products\": [\n        {\n            \"uid\": \"15848028971\",\n            \"serial\": \"11111167265\",\n            \"question_responses\": [\n                {\n                    \"question_uid\": \"17896982281\",\n                    \"response_uid\": \"18000000001\"\n                },\n                {\n                    \"question_uid\": \"17446012415\",\n                    \"response_uid\": \"18000000002\"\n                }\n            ]\n        },\n        {\n            \"uid\": \"15848028971\",\n            \"condition\": \"damaged\",\n            \"serial\": \"11118487236\"\n        }\n    ],\n    \"sales_items\": [\n        {\n            \"sku\": \"9018728932\",\n            \"description\": \"iPhone 6s AT&T\"\n        }\n    ]\n}","options":{"raw":{"language":"json"}}},"url":"https://phobio.com/api/v2/quotes/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, POST, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Content-Language","value":"en","name":"Content-Language","description":"The language the content is in"},{"key":"Content-Length","value":"8948","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 05 Jun 2018 18:57:18 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"WSGIServer/0.1 Python/2.7.12","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Accept-Language, Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"}],"cookie":[],"responseTime":null,"body":"{\n    \"uid\": \"29918275719\",\n    \"promo\": null,\n    \"payment_options\": [\n        {\n            \"local_total_in_cents\": 5000,\n            \"name\": \"Cash\",\n            \"original_local_total_in_cents\": 5000,\n            \"original_local_typical_total_in_cents\": 5000,\n            \"original_local_typical_customer_total_in_cents\": 5000,\n            \"local_customer_total_in_cents\": 5000,\n            \"local_typical_total_in_cents\": 5000,\n            \"original_local_customer_total_in_cents\": 5000,\n            \"local_currency_symbol\": \"USD\",\n            \"local_typical_customer_total_in_cents\": 5000,\n            \"slug\": \"cash\"\n        },\n        {\n            \"local_total_in_cents\": 5000,\n            \"name\": \"Apple Store Gift Card\",\n            \"original_local_total_in_cents\": 5000,\n            \"original_local_typical_total_in_cents\": 5000,\n            \"original_local_typical_customer_total_in_cents\": 5000,\n            \"local_customer_total_in_cents\": 5000,\n            \"local_typical_total_in_cents\": 5000,\n            \"original_local_customer_total_in_cents\": 5000,\n            \"local_currency_symbol\": \"USD\",\n            \"local_typical_customer_total_in_cents\": 5000,\n            \"slug\": \"consumer_apple_gift_card\"\n        },\n        {\n            \"local_total_in_cents\": 5000,\n            \"name\": \"PayPal\",\n            \"original_local_total_in_cents\": 5000,\n            \"original_local_typical_total_in_cents\": 5000,\n            \"original_local_typical_customer_total_in_cents\": 5000,\n            \"local_customer_total_in_cents\": 5000,\n            \"local_typical_total_in_cents\": 5000,\n            \"original_local_customer_total_in_cents\": 5000,\n            \"local_currency_symbol\": \"USD\",\n            \"local_typical_customer_total_in_cents\": 5000,\n            \"slug\": \"consumer_paypal\"\n        },\n        {\n            \"local_total_in_cents\": 5000,\n            \"name\": \"Virtual Visa&reg; Reward\",\n            \"original_local_total_in_cents\": 5000,\n            \"original_local_typical_total_in_cents\": 5000,\n            \"original_local_typical_customer_total_in_cents\": 5000,\n            \"local_customer_total_in_cents\": 5000,\n            \"local_typical_total_in_cents\": 5000,\n            \"original_local_customer_total_in_cents\": 5000,\n            \"local_currency_symbol\": \"USD\",\n            \"local_typical_customer_total_in_cents\": 5000,\n            \"slug\": \"consumer_virtual_visa_reward\"\n        }\n    ],\n    \"trades\": [\n        {\n            \"uid\": \"20270100272\",\n            \"condition\": \"working\",\n            \"local_price_in_cents\": 5000,\n            \"local_typical_price_in_cents\": 5000,\n            \"local_customer_price_in_cents\": 5000,\n            \"local_typical_customer_price_in_cents\": 5000,\n            \"original_local_price_in_cents\": 5000,\n            \"original_local_typical_price_in_cents\": 5000,\n            \"original_local_customer_price_in_cents\": 5000,\n            \"original_local_typical_customer_price_in_cents\": 5000,\n            \"local_currency_symbol\": \"USD\",\n            \"status\": \"unconfirmed\",\n            \"imei\": \"11111167265\",\n            \"serial\": \"11111167265\",\n            \"product\": {\n                \"uid\": \"15848028971\",\n                \"title\": \"MacBook Pro Core 2 Duo 2.26 GHz 13\\\" (Mid 2009) 128GB SSD\",\n                \"manufacturer\": {\n                    \"slug\": \"apple\",\n                    \"title\": \"Apple\"\n                },\n                \"attributes\": {\n                    \"screen\": [\n                        {\n                            \"slug\": \"13\",\n                            \"title\": \"13\"\n                        }\n                    ],\n                    \"capacity\": [\n                        {\n                            \"slug\": \"128gb-ssd\",\n                            \"title\": \"128GB SSD\"\n                        }\n                    ],\n                    \"processor\": [\n                        {\n                            \"slug\": \"core-2-duo-226ghz\",\n                            \"title\": \"Core 2 Duo 2.26GHz\"\n                        }\n                    ],\n                    \"family\": [\n                        {\n                            \"slug\": \"macbook-pro\",\n                            \"title\": \"MacBook Pro\"\n                        }\n                    ],\n                    \"year\": [\n                        {\n                            \"slug\": \"2009\",\n                            \"title\": \"2009\"\n                        }\n                    ]\n                },\n                \"category\": {\n                    \"slug\": \"laptop\",\n                    \"title\": \"Laptop\"\n                },\n                \"icon_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/icon-apple-macbook-pro-core-2-duo-226-ghz-13-mid-2009-128gb-ssd.png\",\n                \"small_image_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/small-apple-macbook-pro-core-2-duo-226-ghz-13-mid-2009-128gb-ssd.png\",\n                \"large_image_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/large-apple-macbook-pro-core-2-duo-226-ghz-13-mid-2009-128gb-ssd.png\",\n                \"questions\": [\n                    {\n                        \"uid\": \"17873016814\",\n                        \"title\": \"Power On\",\n                        \"question\": \"Is your device eligible for trade-in?\",\n                        \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Issues powering on and off\\r\\n- <a href=\\\"http://phobiosupport.com/hrf_faq/how-do-signs-of-battery-swelling-affect-my-trade-value/\\\" target=\\\"_blank\\\">Signs of battery swelling</a>\",\n                        \"responses\": [\n                            {\n                                \"uid\": \"18000000001\",\n                                \"title\": \"True\",\n                                \"description\": \"True\"\n                            },\n                            {\n                                \"uid\": \"18000000002\",\n                                \"title\": \"False\",\n                                \"description\": \"False\"\n                            }\n                        ]\n                    },\n                    {\n                        \"uid\": \"17163645876\",\n                        \"title\": \"Operating System\",\n                        \"question\": \"Does the operating system load properly?\",\n                        \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Software boot-up errors\\r\\n- Software can't be installed\\r\\n- A blinking folder with a “?” displayed\\r\\n- <a href=\\\"http://phobiosupport.com/hrf_faq/what-are-the-accepted-screens-for-my-mac\\\" target=\\\"_blank\\\">View Accepted Mac Screens</a>\",\n                        \"responses\": [\n                            {\n                                \"uid\": \"18000000001\",\n                                \"title\": \"True\",\n                                \"description\": \"True\"\n                            },\n                            {\n                                \"uid\": \"18000000002\",\n                                \"title\": \"False\",\n                                \"description\": \"False\"\n                            }\n                        ]\n                    },\n                    {\n                        \"uid\": \"17181139258\",\n                        \"title\": \"Physical Damage\",\n                        \"question\": \"Is the device free of any physical damage?\",\n                        \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Broken or cracked screen\\r\\n- Malfunctioning screen (flickers, pixel loss, non-functioning backlight, lines in the screen)\\r\\n- Cracks, dents or severe scratches to the housing\\r\\n- Malfunctioning or missing buttons\",\n                        \"responses\": [\n                            {\n                                \"uid\": \"18000000001\",\n                                \"title\": \"True\",\n                                \"description\": \"True\"\n                            },\n                            {\n                                \"uid\": \"18000000002\",\n                                \"title\": \"False\",\n                                \"description\": \"False\"\n                            }\n                        ]\n                    },\n                    {\n                        \"uid\": \"17680791435\",\n                        \"title\": \"Power Adapter Included\",\n                        \"question\": \"Will the working power adapter be included?\",\n                        \"body\": \"\",\n                        \"responses\": [\n                            {\n                                \"uid\": \"18000000001\",\n                                \"title\": \"True\",\n                                \"description\": \"True\"\n                            },\n                            {\n                                \"uid\": \"18000000002\",\n                                \"title\": \"False\",\n                                \"description\": \"False\"\n                            }\n                        ]\n                    }\n                ]\n            },\n            \"created\": \"2018-06-05T18:57:18\",\n            \"modified\": \"2018-06-05T18:57:18\",\n            \"inspected\": null,\n            \"received\": null,\n            \"paid\": null,\n            \"shipments\": [],\n            \"adjustment_reasons\": [],\n            \"partner_expected_price_in_cents\": 0,\n            \"quarantine\": {\n                \"offer_accepted_type\": null,\n                \"quarantine_expiry\": null,\n                \"offer_accepted\": null,\n                \"offer_rejected\": null,\n                \"offer_rejected_type\": null\n            },\n            \"reference_1\": null,\n            \"reference_2\": null\n        },\n        {\n            \"uid\": \"20547941151\",\n            \"condition\": \"damaged\",\n            \"local_price_in_cents\": 0,\n            \"local_typical_price_in_cents\": 0,\n            \"local_customer_price_in_cents\": 0,\n            \"local_typical_customer_price_in_cents\": 0,\n            \"original_local_price_in_cents\": 0,\n            \"original_local_typical_price_in_cents\": 0,\n            \"original_local_customer_price_in_cents\": 0,\n            \"original_local_typical_customer_price_in_cents\": 0,\n            \"local_currency_symbol\": \"USD\",\n            \"status\": \"unconfirmed\",\n            \"imei\": \"11118487236\",\n            \"serial\": \"11118487236\",\n            \"product\": {\n                \"uid\": \"15848028971\",\n                \"title\": \"MacBook Pro Core 2 Duo 2.26 GHz 13\\\" (Mid 2009) 128GB SSD\",\n                \"manufacturer\": {\n                    \"slug\": \"apple\",\n                    \"title\": \"Apple\"\n                },\n                \"attributes\": {\n                    \"screen\": [\n                        {\n                            \"slug\": \"13\",\n                            \"title\": \"13\"\n                        }\n                    ],\n                    \"capacity\": [\n                        {\n                            \"slug\": \"128gb-ssd\",\n                            \"title\": \"128GB SSD\"\n                        }\n                    ],\n                    \"processor\": [\n                        {\n                            \"slug\": \"core-2-duo-226ghz\",\n                            \"title\": \"Core 2 Duo 2.26GHz\"\n                        }\n                    ],\n                    \"family\": [\n                        {\n                            \"slug\": \"macbook-pro\",\n                            \"title\": \"MacBook Pro\"\n                        }\n                    ],\n                    \"year\": [\n                        {\n                            \"slug\": \"2009\",\n                            \"title\": \"2009\"\n                        }\n                    ]\n                },\n                \"category\": {\n                    \"slug\": \"laptop\",\n                    \"title\": \"Laptop\"\n                },\n                \"icon_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/icon-apple-macbook-pro-core-2-duo-226-ghz-13-mid-2009-128gb-ssd.png\",\n                \"small_image_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/small-apple-macbook-pro-core-2-duo-226-ghz-13-mid-2009-128gb-ssd.png\",\n                \"large_image_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/large-apple-macbook-pro-core-2-duo-226-ghz-13-mid-2009-128gb-ssd.png\",\n                \"questions\": [\n                    {\n                        \"uid\": \"17873016814\",\n                        \"title\": \"Power On\",\n                        \"question\": \"Is your device eligible for trade-in?\",\n                        \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Issues powering on and off\\r\\n- <a href=\\\"http://phobiosupport.com/hrf_faq/how-do-signs-of-battery-swelling-affect-my-trade-value/\\\" target=\\\"_blank\\\">Signs of battery swelling</a>\",\n                        \"responses\": [\n                            {\n                                \"uid\": \"18000000001\",\n                                \"title\": \"True\",\n                                \"description\": \"True\"\n                            },\n                            {\n                                \"uid\": \"18000000002\",\n                                \"title\": \"False\",\n                                \"description\": \"False\"\n                            }\n                        ]\n                    },\n                    {\n                        \"uid\": \"17163645876\",\n                        \"title\": \"Operating System\",\n                        \"question\": \"Does the operating system load properly?\",\n                        \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Software boot-up errors\\r\\n- Software can't be installed\\r\\n- A blinking folder with a “?” displayed\\r\\n- <a href=\\\"http://phobiosupport.com/hrf_faq/what-are-the-accepted-screens-for-my-mac\\\" target=\\\"_blank\\\">View Accepted Mac Screens</a>\",\n                        \"responses\": [\n                            {\n                                \"uid\": \"18000000001\",\n                                \"title\": \"True\",\n                                \"description\": \"True\"\n                            },\n                            {\n                                \"uid\": \"18000000002\",\n                                \"title\": \"False\",\n                                \"description\": \"False\"\n                            }\n                        ]\n                    },\n                    {\n                        \"uid\": \"17181139258\",\n                        \"title\": \"Physical Damage\",\n                        \"question\": \"Is the device free of any physical damage?\",\n                        \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Broken or cracked screen\\r\\n- Malfunctioning screen (flickers, pixel loss, non-functioning backlight, lines in the screen)\\r\\n- Cracks, dents or severe scratches to the housing\\r\\n- Malfunctioning or missing buttons\",\n                        \"responses\": [\n                            {\n                                \"uid\": \"18000000001\",\n                                \"title\": \"True\",\n                                \"description\": \"True\"\n                            },\n                            {\n                                \"uid\": \"18000000002\",\n                                \"title\": \"False\",\n                                \"description\": \"False\"\n                            }\n                        ]\n                    },\n                    {\n                        \"uid\": \"17680791435\",\n                        \"title\": \"Power Adapter Included\",\n                        \"question\": \"Will the working power adapter be included?\",\n                        \"body\": \"\",\n                        \"responses\": [\n                            {\n                                \"uid\": \"18000000001\",\n                                \"title\": \"True\",\n                                \"description\": \"True\"\n                            },\n                            {\n                                \"uid\": \"18000000002\",\n                                \"title\": \"False\",\n                                \"description\": \"False\"\n                            }\n                        ]\n                    }\n                ]\n            },\n            \"created\": \"2018-06-05T18:57:18\",\n            \"modified\": \"2018-06-05T18:57:18\",\n            \"inspected\": null,\n            \"received\": null,\n            \"paid\": null,\n            \"shipments\": [],\n            \"adjustment_reasons\": [],\n            \"partner_expected_price_in_cents\": 0,\n            \"quarantine\": {\n                \"offer_accepted_type\": null,\n                \"quarantine_expiry\": null,\n                \"offer_accepted\": null,\n                \"offer_rejected\": null,\n                \"offer_rejected_type\": null\n            },\n            \"ready_for_partner_payment\": null,\n            \"reference_1\": null,\n            \"reference_2\": null\n        }\n    ],\n    \"customer\": {\n        \"first_name\": null,\n        \"last_name\": null,\n        \"phone\": null,\n        \"email\": null,\n        \"id_type\": null,\n        \"id_number\": null,\n        \"id_type_alternate\": null,\n        \"id_number_alternate\": null,\n        \"address_1\": null,\n        \"address_2\": null,\n        \"city\": null,\n        \"state\": null,\n        \"postal_code\": null,\n        \"country_code\": null\n    },\n    \"created\": \"2018-06-05T18:57:17.866531\",\n    \"modified\": \"2018-06-05T18:57:17.866559\",\n    \"reference_1\": null,\n    \"reference_2\": null\n}"}],"_postman_id":"a3a8309c-22c1-8302-da7c-4e6f3086581c"},{"name":"Get Quote","id":"aee1926d-0eae-cce4-c052-cd989a582817","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"url":"https://phobio.com/api/v2/quotes/:uid/","description":"<p>Get Quote by Quote UID</p>\n","urlObject":{"path":["quotes",":uid",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[{"description":{"content":"<p>Quote UID</p>\n","type":"text/plain"},"type":"string","value":"29918275719","key":"uid"}]}},"response":[{"id":"bdf61a2c-0945-4332-bcff-664ece96419e","name":"Get Quote","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","disabled":false},{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Accept-Language","value":"en-US","disabled":false}],"url":{"raw":"https://phobio.com/api/v2/quotes/:uid/","host":["https://phobio.com/api/v2"],"path":["quotes",":uid",""],"variable":[{"key":"uid","value":"29918275719","description":"Quote UID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Content-Language","value":"en","name":"Content-Language","description":"The language the content is in"},{"key":"Content-Length","value":"8916","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Tue, 05 Jun 2018 18:57:33 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"WSGIServer/0.1 Python/2.7.12","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Accept-Language, Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"}],"cookie":[],"responseTime":null,"body":"{\n    \"uid\": \"29918275719\",\n    \"promo\": null,\n    \"payment_options\": [\n        {\n            \"local_total_in_cents\": 5000,\n            \"name\": \"Cash\",\n            \"original_local_total_in_cents\": 5000,\n            \"original_local_typical_total_in_cents\": 5000,\n            \"original_local_typical_customer_total_in_cents\": 5000,\n            \"local_customer_total_in_cents\": 5000,\n            \"local_typical_total_in_cents\": 5000,\n            \"original_local_customer_total_in_cents\": 5000,\n            \"local_currency_symbol\": \"USD\",\n            \"local_typical_customer_total_in_cents\": 5000,\n            \"slug\": \"cash\"\n        },\n        {\n            \"local_total_in_cents\": 5000,\n            \"name\": \"Apple Store Gift Card\",\n            \"original_local_total_in_cents\": 5000,\n            \"original_local_typical_total_in_cents\": 5000,\n            \"original_local_typical_customer_total_in_cents\": 5000,\n            \"local_customer_total_in_cents\": 5000,\n            \"local_typical_total_in_cents\": 5000,\n            \"original_local_customer_total_in_cents\": 5000,\n            \"local_currency_symbol\": \"USD\",\n            \"local_typical_customer_total_in_cents\": 5000,\n            \"slug\": \"consumer_apple_gift_card\"\n        },\n        {\n            \"local_total_in_cents\": 5000,\n            \"name\": \"PayPal\",\n            \"original_local_total_in_cents\": 5000,\n            \"original_local_typical_total_in_cents\": 5000,\n            \"original_local_typical_customer_total_in_cents\": 5000,\n            \"local_customer_total_in_cents\": 5000,\n            \"local_typical_total_in_cents\": 5000,\n            \"original_local_customer_total_in_cents\": 5000,\n            \"local_currency_symbol\": \"USD\",\n            \"local_typical_customer_total_in_cents\": 5000,\n            \"slug\": \"consumer_paypal\"\n        },\n        {\n            \"local_total_in_cents\": 5000,\n            \"name\": \"Virtual Visa&reg; Reward\",\n            \"original_local_total_in_cents\": 5000,\n            \"original_local_typical_total_in_cents\": 5000,\n            \"original_local_typical_customer_total_in_cents\": 5000,\n            \"local_customer_total_in_cents\": 5000,\n            \"local_typical_total_in_cents\": 5000,\n            \"original_local_customer_total_in_cents\": 5000,\n            \"local_currency_symbol\": \"USD\",\n            \"local_typical_customer_total_in_cents\": 5000,\n            \"slug\": \"consumer_virtual_visa_reward\"\n        }\n    ],\n    \"trades\": [\n        {\n            \"uid\": \"20270100272\",\n            \"condition\": \"working\",\n            \"local_price_in_cents\": 5000,\n            \"local_typical_price_in_cents\": 5000,\n            \"local_customer_price_in_cents\": 5000,\n            \"local_typical_customer_price_in_cents\": 5000,\n            \"original_local_price_in_cents\": 5000,\n            \"original_local_typical_price_in_cents\": 5000,\n            \"original_local_customer_price_in_cents\": 5000,\n            \"original_local_typical_customer_price_in_cents\": 5000,\n            \"local_currency_symbol\": \"USD\",\n            \"status\": \"unconfirmed\",\n            \"imei\": null,\n            \"serial\": \"11111167265\",\n            \"product\": {\n                \"uid\": \"15848028971\",\n                \"title\": \"MacBook Pro Core 2 Duo 2.26 GHz 13\\\" (Mid 2009) 128GB SSD\",\n                \"manufacturer\": {\n                    \"slug\": \"apple\",\n                    \"title\": \"Apple\"\n                },\n                \"attributes\": {\n                    \"screen\": [\n                        {\n                            \"slug\": \"13\",\n                            \"title\": \"13\"\n                        }\n                    ],\n                    \"capacity\": [\n                        {\n                            \"slug\": \"128gb-ssd\",\n                            \"title\": \"128GB SSD\"\n                        }\n                    ],\n                    \"processor\": [\n                        {\n                            \"slug\": \"core-2-duo-226ghz\",\n                            \"title\": \"Core 2 Duo 2.26GHz\"\n                        }\n                    ],\n                    \"family\": [\n                        {\n                            \"slug\": \"macbook-pro\",\n                            \"title\": \"MacBook Pro\"\n                        }\n                    ],\n                    \"year\": [\n                        {\n                            \"slug\": \"2009\",\n                            \"title\": \"2009\"\n                        }\n                    ]\n                },\n                \"category\": {\n                    \"slug\": \"laptop\",\n                    \"title\": \"Laptop\"\n                },\n                \"icon_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/icon-apple-macbook-pro-core-2-duo-226-ghz-13-mid-2009-128gb-ssd.png\",\n                \"small_image_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/small-apple-macbook-pro-core-2-duo-226-ghz-13-mid-2009-128gb-ssd.png\",\n                \"large_image_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/large-apple-macbook-pro-core-2-duo-226-ghz-13-mid-2009-128gb-ssd.png\",\n                \"questions\": [\n                    {\n                        \"uid\": \"17873016814\",\n                        \"title\": \"Power On\",\n                        \"question\": \"Is your device eligible for trade-in?\",\n                        \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Issues powering on and off\\r\\n- <a href=\\\"http://phobiosupport.com/hrf_faq/how-do-signs-of-battery-swelling-affect-my-trade-value/\\\" target=\\\"_blank\\\">Signs of battery swelling</a>\",\n                        \"responses\": [\n                            {\n                                \"uid\": \"18000000001\",\n                                \"title\": \"True\",\n                                \"description\": \"True\"\n                            },\n                            {\n                                \"uid\": \"18000000002\",\n                                \"title\": \"False\",\n                                \"description\": \"False\"\n                            }\n                        ]\n                    },\n                    {\n                        \"uid\": \"17163645876\",\n                        \"title\": \"Operating System\",\n                        \"question\": \"Does the operating system load properly?\",\n                        \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Software boot-up errors\\r\\n- Software can't be installed\\r\\n- A blinking folder with a “?” displayed\\r\\n- <a href=\\\"http://phobiosupport.com/hrf_faq/what-are-the-accepted-screens-for-my-mac\\\" target=\\\"_blank\\\">View Accepted Mac Screens</a>\",\n                        \"responses\": [\n                            {\n                                \"uid\": \"18000000001\",\n                                \"title\": \"True\",\n                                \"description\": \"True\"\n                            },\n                            {\n                                \"uid\": \"18000000002\",\n                                \"title\": \"False\",\n                                \"description\": \"False\"\n                            }\n                        ]\n                    },\n                    {\n                        \"uid\": \"17181139258\",\n                        \"title\": \"Physical Damage\",\n                        \"question\": \"Is the device free of any physical damage?\",\n                        \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Broken or cracked screen\\r\\n- Malfunctioning screen (flickers, pixel loss, non-functioning backlight, lines in the screen)\\r\\n- Cracks, dents or severe scratches to the housing\\r\\n- Malfunctioning or missing buttons\",\n                        \"responses\": [\n                            {\n                                \"uid\": \"18000000001\",\n                                \"title\": \"True\",\n                                \"description\": \"True\"\n                            },\n                            {\n                                \"uid\": \"18000000002\",\n                                \"title\": \"False\",\n                                \"description\": \"False\"\n                            }\n                        ]\n                    },\n                    {\n                        \"uid\": \"17680791435\",\n                        \"title\": \"Power Adapter Included\",\n                        \"question\": \"Will the working power adapter be included?\",\n                        \"body\": \"\",\n                        \"responses\": [\n                            {\n                                \"uid\": \"18000000001\",\n                                \"title\": \"True\",\n                                \"description\": \"True\"\n                            },\n                            {\n                                \"uid\": \"18000000002\",\n                                \"title\": \"False\",\n                                \"description\": \"False\"\n                            }\n                        ]\n                    }\n                ]\n            },\n            \"created\": \"2018-06-05T18:57:18\",\n            \"modified\": \"2018-06-05T18:57:18\",\n            \"inspected\": null,\n            \"received\": null,\n            \"paid\": null,\n            \"shipments\": [],\n            \"adjustment_reasons\": [],\n            \"partner_expected_price_in_cents\": 0,\n            \"quarantine\": {\n                \"offer_accepted_type\": null,\n                \"quarantine_expiry\": null,\n                \"offer_accepted\": null,\n                \"offer_rejected\": null,\n                \"offer_rejected_type\": null\n            },\n            \"reference_1\": null,\n            \"reference_2\": null,\n            \"invoice_uid\": null\n        },\n        {\n            \"uid\": \"20547941151\",\n            \"condition\": \"damaged\",\n            \"local_price_in_cents\": 0,\n            \"local_typical_price_in_cents\": 0,\n            \"local_customer_price_in_cents\": 0,\n            \"local_typical_customer_price_in_cents\": 0,\n            \"original_local_price_in_cents\": 0,\n            \"original_local_typical_price_in_cents\": 0,\n            \"original_local_customer_price_in_cents\": 0,\n            \"original_local_typical_customer_price_in_cents\": 0,\n            \"local_currency_symbol\": \"USD\",\n            \"status\": \"unconfirmed\",\n            \"imei\": null,\n            \"serial\": \"11118487236\",\n            \"product\": {\n                \"uid\": \"15848028971\",\n                \"title\": \"MacBook Pro Core 2 Duo 2.26 GHz 13\\\" (Mid 2009) 128GB SSD\",\n                \"manufacturer\": {\n                    \"slug\": \"apple\",\n                    \"title\": \"Apple\"\n                },\n                \"attributes\": {\n                    \"screen\": [\n                        {\n                            \"slug\": \"13\",\n                            \"title\": \"13\"\n                        }\n                    ],\n                    \"capacity\": [\n                        {\n                            \"slug\": \"128gb-ssd\",\n                            \"title\": \"128GB SSD\"\n                        }\n                    ],\n                    \"processor\": [\n                        {\n                            \"slug\": \"core-2-duo-226ghz\",\n                            \"title\": \"Core 2 Duo 2.26GHz\"\n                        }\n                    ],\n                    \"family\": [\n                        {\n                            \"slug\": \"macbook-pro\",\n                            \"title\": \"MacBook Pro\"\n                        }\n                    ],\n                    \"year\": [\n                        {\n                            \"slug\": \"2009\",\n                            \"title\": \"2009\"\n                        }\n                    ]\n                },\n                \"category\": {\n                    \"slug\": \"laptop\",\n                    \"title\": \"Laptop\"\n                },\n                \"icon_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/icon-apple-macbook-pro-core-2-duo-226-ghz-13-mid-2009-128gb-ssd.png\",\n                \"small_image_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/small-apple-macbook-pro-core-2-duo-226-ghz-13-mid-2009-128gb-ssd.png\",\n                \"large_image_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/large-apple-macbook-pro-core-2-duo-226-ghz-13-mid-2009-128gb-ssd.png\",\n                \"questions\": [\n                    {\n                        \"uid\": \"17873016814\",\n                        \"title\": \"Power On\",\n                        \"question\": \"Is your device eligible for trade-in?\",\n                        \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Issues powering on and off\\r\\n- <a href=\\\"http://phobiosupport.com/hrf_faq/how-do-signs-of-battery-swelling-affect-my-trade-value/\\\" target=\\\"_blank\\\">Signs of battery swelling</a>\",\n                        \"responses\": [\n                            {\n                                \"uid\": \"18000000001\",\n                                \"title\": \"True\",\n                                \"description\": \"True\"\n                            },\n                            {\n                                \"uid\": \"18000000002\",\n                                \"title\": \"False\",\n                                \"description\": \"False\"\n                            }\n                        ]\n                    },\n                    {\n                        \"uid\": \"17163645876\",\n                        \"title\": \"Operating System\",\n                        \"question\": \"Does the operating system load properly?\",\n                        \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Software boot-up errors\\r\\n- Software can't be installed\\r\\n- A blinking folder with a “?” displayed\\r\\n- <a href=\\\"http://phobiosupport.com/hrf_faq/what-are-the-accepted-screens-for-my-mac\\\" target=\\\"_blank\\\">View Accepted Mac Screens</a>\",\n                        \"responses\": [\n                            {\n                                \"uid\": \"18000000001\",\n                                \"title\": \"True\",\n                                \"description\": \"True\"\n                            },\n                            {\n                                \"uid\": \"18000000002\",\n                                \"title\": \"False\",\n                                \"description\": \"False\"\n                            }\n                        ]\n                    },\n                    {\n                        \"uid\": \"17181139258\",\n                        \"title\": \"Physical Damage\",\n                        \"question\": \"Is the device free of any physical damage?\",\n                        \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Broken or cracked screen\\r\\n- Malfunctioning screen (flickers, pixel loss, non-functioning backlight, lines in the screen)\\r\\n- Cracks, dents or severe scratches to the housing\\r\\n- Malfunctioning or missing buttons\",\n                        \"responses\": [\n                            {\n                                \"uid\": \"18000000001\",\n                                \"title\": \"True\",\n                                \"description\": \"True\"\n                            },\n                            {\n                                \"uid\": \"18000000002\",\n                                \"title\": \"False\",\n                                \"description\": \"False\"\n                            }\n                        ]\n                    },\n                    {\n                        \"uid\": \"17680791435\",\n                        \"title\": \"Power Adapter Included\",\n                        \"question\": \"Will the working power adapter be included?\",\n                        \"body\": \"\",\n                        \"responses\": [\n                            {\n                                \"uid\": \"18000000001\",\n                                \"title\": \"True\",\n                                \"description\": \"True\"\n                            },\n                            {\n                                \"uid\": \"18000000002\",\n                                \"title\": \"False\",\n                                \"description\": \"False\"\n                            }\n                        ]\n                    }\n                ]\n            },\n            \"created\": \"2018-06-05T18:57:18\",\n            \"modified\": \"2018-06-05T18:57:18\",\n            \"inspected\": null,\n            \"received\": null,\n            \"paid\": null,\n            \"shipments\": [],\n            \"adjustment_reasons\": [],\n            \"partner_expected_price_in_cents\": 0,\n            \"quarantine\": {\n                \"offer_accepted_type\": null,\n                \"quarantine_expiry\": null,\n                \"offer_accepted\": null,\n                \"offer_rejected\": null,\n                \"offer_rejected_type\": null\n            },\n            \"ready_for_partner_payment\": null,\n            \"reference_1\": null,\n            \"reference_2\": null,\n            \"invoice_uid\": null\n        }\n    ],\n    \"customer\": {\n        \"first_name\": null,\n        \"last_name\": null,\n        \"phone\": null,\n        \"email\": null,\n        \"id_type\": null,\n        \"id_number\": null,\n        \"id_type_alternate\": null,\n        \"id_number_alternate\": null,\n        \"address_1\": null,\n        \"address_2\": null,\n        \"city\": null,\n        \"state\": null,\n        \"postal_code\": null,\n        \"country_code\": null\n    },\n    \"created\": \"2018-06-05T18:57:18\",\n    \"modified\": \"2018-06-05T18:57:18\",\n    \"reference_1\": null,\n    \"reference_2\": null\n}"}],"_postman_id":"aee1926d-0eae-cce4-c052-cd989a582817"},{"name":"List Quotes","id":"2b194bef-f7c6-97e2-0e1b-98cfe7ab77c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"url":"https://phobio.com/api/v2/quotes/","description":"<p>List all active Quotes for the current API User</p>\n","urlObject":{"path":["quotes",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[]}},"response":[],"_postman_id":"2b194bef-f7c6-97e2-0e1b-98cfe7ab77c5"},{"name":"Update Customer Details","id":"737231d6-8ab6-4617-bbed-5e5690be173f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"raw","raw":"{\n  \"first_name\": \"John\",\n  \"last_name\": \"Alexander\",\n  \"postal_code\": \"30339\"\n}"},"url":"https://phobio.com/api/v2/quotes/:uid/customer/","description":"<p>Customer information may be updated after Quote confirmation through this PUT request. Partial updates are accepted, provide only that information which requires replacement.</p>\n<h6 id=\"json-body-parameters\">JSON Body Parameters</h6>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>first_name</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer first name</td>\n</tr>\n<tr>\n<td><code>last_name</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer last name</td>\n</tr>\n<tr>\n<td><code>phone</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer phone number</td>\n</tr>\n<tr>\n<td><code>email</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer email address</td>\n</tr>\n<tr>\n<td><code>address_1</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer address line 1</td>\n</tr>\n<tr>\n<td><code>address_2</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer address line 2</td>\n</tr>\n<tr>\n<td><code>city</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer city</td>\n</tr>\n<tr>\n<td><code>state</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer state</td>\n</tr>\n<tr>\n<td><code>postal_code</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer postal code</td>\n</tr>\n<tr>\n<td><code>country_code</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer two-letter country code</td>\n</tr>\n<tr>\n<td><code>id_type</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer identification type (driver's license, passport, etc)</td>\n</tr>\n<tr>\n<td><code>id_number</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer identification number (driver's license number, etc.)</td>\n</tr>\n<tr>\n<td><code>id_type_alternate</code></td>\n<td>string</td>\n<td>False</td>\n<td>Alternate customer identification type (driver's license, passport, etc)</td>\n</tr>\n<tr>\n<td><code>id_number_alternate</code></td>\n<td>string</td>\n<td>False</td>\n<td>Alternate customer identification number (driver's license number, etc.)</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["quotes",":uid","customer",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[{"description":{"content":"<p>Quote UID</p>\n","type":"text/plain"},"type":"string","value":"29918275719","key":"uid"}]}},"response":[{"id":"a4c025c1-05eb-45ea-93ff-1b352889f016","name":"Update Customer Details","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","disabled":false},{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Accept-Language","value":"en-US","disabled":false}],"body":{"mode":"raw","raw":"{\n  \"first_name\": \"John\",\n  \"last_name\": \"Alexander\",\n  \"postal_code\": \"30339\"\n}"},"url":{"raw":"https://phobio.com/api/v2/invoices/:uid/customer/","host":["https://phobio.com/api/v2"],"path":["invoices",":uid","customer",""],"variable":[{"key":"uid","value":"30134288775","description":"Invoice UID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"PUT, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Content-Language","value":"en","name":"Content-Language","description":"The language the content is in"},{"key":"Content-Length","value":"287","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 04 Jun 2018 14:59:48 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"WSGIServer/0.1 Python/2.7.12","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Accept-Language, Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"}],"cookie":[],"responseTime":null,"body":"{\"first_name\":\"John\",\"last_name\":\"Alexander\",\"phone\":null,\"email\":\"arnold42@cellularstorenetwork.org\",\"id_type\":null,\"id_number\":null,\"id_type_alternate\":null,\"id_number_alternate\":null,\"address_1\":null,\"address_2\":null,\"city\":null,\"state\":null,\"postal_code\":\"30339\",\"country_code\":null}"}],"_postman_id":"737231d6-8ab6-4617-bbed-5e5690be173f"},{"name":"Add Trade","id":"4ebb70f3-36c4-45de-80e2-67739d8ee6f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"raw","raw":"{\n\t\"uid\": \"15848028971\",\n    \"condition\": \"working\",\n    \"serial\": \"11111167265\"\n}"},"url":"https://phobio.com/api/v2/quotes/:uid/trades/","description":"<p>This method creates a Trade and adds it to a Quote. This method requires a JSON object described below.</p>\n<h5 id=\"json-body-parameters\">JSON BODY PARAMETERS</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>uid</code></td>\n<td>integer</td>\n<td>True</td>\n<td>The UID of a Product object associated with the device to trade in</td>\n</tr>\n<tr>\n<td><code>condition</code></td>\n<td>string</td>\n<td>True**</td>\n<td>The condition of the device to be traded in, choices are slugs returned by <a href=\"#list-conditions\">List Conditions</a>. Required if <code>question_responses</code> is not passed</td>\n</tr>\n<tr>\n<td><code>imei</code></td>\n<td>integer</td>\n<td>True*</td>\n<td>The IMEI of the device to be traded in. Required if the device is a mobile phone, and if IMEI is required by the Company settings</td>\n</tr>\n<tr>\n<td><code>serial</code></td>\n<td>integer</td>\n<td>True*</td>\n<td>The serial number of the device to be traded in. Required if the device is a computer, and if the serial number is required by the Company settings</td>\n</tr>\n<tr>\n<td><code>question_responses</code></td>\n<td>JSON object list</td>\n<td>True*</td>\n<td>See the 'question reponses object' below. Required if <code>condition</code> is not passed</td>\n</tr>\n<tr>\n<td><code>partner_expected_price_in_cents</code></td>\n<td>integer</td>\n<td>False</td>\n<td>An \"expected price\" may be passed for each product indicating what the partner expects the final paid value of a trade will be. This field is for informational use only, and has no functional purpose.</td>\n</tr>\n<tr>\n<td><code>partner_lock_status</code></td>\n<td>string</td>\n<td>False</td>\n<td>A device lock status may be passed for each product indicated what the partner has determined the activation lock status to be. Acceptable statuses are <code>locked</code>, <code>unlocked</code>,</td>\n</tr>\n<tr>\n<td><code>qty</code></td>\n<td>integer</td>\n<td>False</td>\n<td>The number of Trades to create for this Product. Defaults to <code>1</code>. Permission is needed to set this parameter to more than one.</td>\n</tr>\n<tr>\n<td><code>reference_1</code></td>\n<td>string</td>\n<td>False</td>\n<td>Company specific reference metadata</td>\n</tr>\n<tr>\n<td><code>reference_2</code></td>\n<td>string</td>\n<td>False</td>\n<td>Company specific reference metadata</td>\n</tr>\n</tbody>\n</table>\n</div><h5 id=\"question-responses-object-parameters\">Question Responses Object Parameters</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>question_uid</code></td>\n<td>integer</td>\n<td>True</td>\n<td>UID of the Question, as returned by the Quote object</td>\n</tr>\n<tr>\n<td><code>response_uid</code></td>\n<td>integer</td>\n<td>True</td>\n<td>UID of the Question Response matching the customer's response, as returned by the Quote object</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["quotes",":uid","trades",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[{"type":"string","value":"","key":"uid"}]}},"response":[{"id":"b07aa697-13fb-4b6a-9981-1e66c61341c3","name":"Add Trade","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"raw","raw":"{\n\t\"uid\": \"15848028971\",\n    \"condition\": \"working\",\n    \"serial\": \"11111167265\"\n}"},"url":{"raw":"https://phobio.com/api/v2/quotes/:uid/trades/","host":["https://phobio.com/api/v2"],"path":["quotes",":uid","trades",""],"variable":[{"key":"uid","value":""}]}},"status":"Created","code":201,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"uid\": \"29918275719\",\n  \"promo\": null,\n  \"payment_options\": [\n    {\n      \"local_total_in_cents\": 5000,\n      \"name\": \"Cash\",\n      \"original_local_total_in_cents\": 5000,\n      \"original_local_typical_total_in_cents\": 5000,\n      \"original_local_typical_customer_total_in_cents\": 5000,\n      \"local_customer_total_in_cents\": 5000,\n      \"local_typical_total_in_cents\": 5000,\n      \"original_local_customer_total_in_cents\": 5000,\n      \"local_currency_symbol\": \"USD\",\n      \"local_typical_customer_total_in_cents\": 5000,\n      \"slug\": \"cash\"\n    },\n    {\n      \"local_total_in_cents\": 5000,\n      \"name\": \"Apple Store Gift Card\",\n      \"original_local_total_in_cents\": 5000,\n      \"original_local_typical_total_in_cents\": 5000,\n      \"original_local_typical_customer_total_in_cents\": 5000,\n      \"local_customer_total_in_cents\": 5000,\n      \"local_typical_total_in_cents\": 5000,\n      \"original_local_customer_total_in_cents\": 5000,\n      \"local_currency_symbol\": \"USD\",\n      \"local_typical_customer_total_in_cents\": 5000,\n      \"slug\": \"consumer_apple_gift_card\"\n    },\n    {\n      \"local_total_in_cents\": 5000,\n      \"name\": \"PayPal\",\n      \"original_local_total_in_cents\": 5000,\n      \"original_local_typical_total_in_cents\": 5000,\n      \"original_local_typical_customer_total_in_cents\": 5000,\n      \"local_customer_total_in_cents\": 5000,\n      \"local_typical_total_in_cents\": 5000,\n      \"original_local_customer_total_in_cents\": 5000,\n      \"local_currency_symbol\": \"USD\",\n      \"local_typical_customer_total_in_cents\": 5000,\n      \"slug\": \"consumer_paypal\"\n    },\n    {\n      \"local_total_in_cents\": 5000,\n      \"name\": \"Virtual Visa&reg; Reward\",\n      \"original_local_total_in_cents\": 5000,\n      \"original_local_typical_total_in_cents\": 5000,\n      \"original_local_typical_customer_total_in_cents\": 5000,\n      \"local_customer_total_in_cents\": 5000,\n      \"local_typical_total_in_cents\": 5000,\n      \"original_local_customer_total_in_cents\": 5000,\n      \"local_currency_symbol\": \"USD\",\n      \"local_typical_customer_total_in_cents\": 5000,\n      \"slug\": \"consumer_virtual_visa_reward\"\n    }\n  ],\n  \"trades\": [\n    {\n      \"uid\": \"20270100272\",\n      \"condition\": \"working\",\n      \"local_price_in_cents\": 5000,\n      \"local_typical_price_in_cents\": 5000,\n      \"local_customer_price_in_cents\": 5000,\n      \"local_typical_customer_price_in_cents\": 5000,\n      \"original_local_price_in_cents\": 5000,\n      \"original_local_typical_price_in_cents\": 5000,\n      \"original_local_customer_price_in_cents\": 5000,\n      \"original_local_typical_customer_price_in_cents\": 5000,\n      \"local_currency_symbol\": \"USD\",\n      \"status\": \"unconfirmed\",\n      \"imei\": \"11111167265\",\n      \"serial\": \"11111167265\",\n      \"product\": {\n        \"uid\": \"15848028971\",\n        \"title\": \"MacBook Pro Core 2 Duo 2.26 GHz 13\\\" (Mid 2009) 128GB SSD\",\n        \"manufacturer\": {\n          \"slug\": \"apple\",\n          \"title\": \"Apple\"\n        },\n        \"attributes\": {\n          \"screen\": [\n            {\n              \"slug\": \"13\",\n              \"title\": \"13\"\n            }\n          ],\n          \"capacity\": [\n            {\n              \"slug\": \"128gb-ssd\",\n              \"title\": \"128GB SSD\"\n            }\n          ],\n          \"processor\": [\n            {\n              \"slug\": \"core-2-duo-226ghz\",\n              \"title\": \"Core 2 Duo 2.26GHz\"\n            }\n          ],\n          \"family\": [\n            {\n              \"slug\": \"macbook-pro\",\n              \"title\": \"MacBook Pro\"\n            }\n          ],\n          \"year\": [\n            {\n              \"slug\": \"2009\",\n              \"title\": \"2009\"\n            }\n          ]\n        },\n        \"category\": {\n          \"slug\": \"laptop\",\n          \"title\": \"Laptop\"\n        },\n        \"icon_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/icon-apple-macbook-pro-core-2-duo-226-ghz-13-mid-2009-128gb-ssd.png\",\n        \"small_image_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/small-apple-macbook-pro-core-2-duo-226-ghz-13-mid-2009-128gb-ssd.png\",\n        \"large_image_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/large-apple-macbook-pro-core-2-duo-226-ghz-13-mid-2009-128gb-ssd.png\",\n        \"questions\": [\n          {\n            \"uid\": \"17873016814\",\n            \"title\": \"Power On\",\n            \"question\": \"Is your device eligible for trade-in?\",\n            \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Issues powering on and off\\r\\n- <a href=\\\"http://phobiosupport.com/hrf_faq/how-do-signs-of-battery-swelling-affect-my-trade-value/\\\" target=\\\"_blank\\\">Signs of battery swelling</a>\",\n            \"responses\": [\n              {\n                \"uid\": \"18000000001\",\n                \"title\": \"True\",\n                \"description\": \"True\"\n              },\n              {\n                \"uid\": \"18000000002\",\n                \"title\": \"False\",\n                \"description\": \"False\"\n              }\n            ]\n          },\n          {\n            \"uid\": \"17163645876\",\n            \"title\": \"Operating System\",\n            \"question\": \"Does the operating system load properly?\",\n            \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Software boot-up errors\\r\\n- Software can't be installed\\r\\n- A blinking folder with a “?” displayed\\r\\n- <a href=\\\"http://phobiosupport.com/hrf_faq/what-are-the-accepted-screens-for-my-mac\\\" target=\\\"_blank\\\">View Accepted Mac Screens</a>\",\n            \"responses\": [\n              {\n                \"uid\": \"18000000001\",\n                \"title\": \"True\",\n                \"description\": \"True\"\n              },\n              {\n                \"uid\": \"18000000002\",\n                \"title\": \"False\",\n                \"description\": \"False\"\n              }\n            ]\n          },\n          {\n            \"uid\": \"17181139258\",\n            \"title\": \"Physical Damage\",\n            \"question\": \"Is the device free of any physical damage?\",\n            \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Broken or cracked screen\\r\\n- Malfunctioning screen (flickers, pixel loss, non-functioning backlight, lines in the screen)\\r\\n- Cracks, dents or severe scratches to the housing\\r\\n- Malfunctioning or missing buttons\",\n            \"responses\": [\n              {\n                \"uid\": \"18000000001\",\n                \"title\": \"True\",\n                \"description\": \"True\"\n              },\n              {\n                \"uid\": \"18000000002\",\n                \"title\": \"False\",\n                \"description\": \"False\"\n              }\n            ]\n          },\n          {\n            \"uid\": \"17680791435\",\n            \"title\": \"Power Adapter Included\",\n            \"question\": \"Will the working power adapter be included?\",\n            \"body\": \"\",\n            \"responses\": [\n              {\n                \"uid\": \"18000000001\",\n                \"title\": \"True\",\n                \"description\": \"True\"\n              },\n              {\n                \"uid\": \"18000000002\",\n                \"title\": \"False\",\n                \"description\": \"False\"\n              }\n            ]\n          }\n        ]\n      },\n      \"created\": \"2018-06-05T18:57:18\",\n      \"modified\": \"2018-06-05T18:57:18\",\n      \"inspected\": null,\n      \"received\": null,\n      \"paid\": null,\n      \"shipments\": [],\n      \"adjustment_reasons\": [],\n      \"partner_expected_price_in_cents\": 0,\n      \"quarantine\": {\n        \"offer_accepted_type\": null,\n        \"quarantine_expiry\": null,\n        \"offer_accepted\": null,\n        \"offer_rejected\": null,\n        \"offer_rejected_type\": null\n      },\n      \"reference_1\": null,\n      \"reference_2\": null\n    },\n    {\n      \"uid\": \"20547941151\",\n      \"condition\": \"damaged\",\n      \"local_price_in_cents\": 0,\n      \"local_typical_price_in_cents\": 0,\n      \"local_customer_price_in_cents\": 0,\n      \"local_typical_customer_price_in_cents\": 0,\n      \"original_local_price_in_cents\": 0,\n      \"original_local_typical_price_in_cents\": 0,\n      \"original_local_customer_price_in_cents\": 0,\n      \"original_local_typical_customer_price_in_cents\": 0,\n      \"local_currency_symbol\": \"USD\",\n      \"status\": \"unconfirmed\",\n      \"imei\": \"11118487236\",\n      \"serial\": \"11118487236\",\n      \"product\": {\n        \"uid\": \"15848028971\",\n        \"title\": \"MacBook Pro Core 2 Duo 2.26 GHz 13\\\" (Mid 2009) 128GB SSD\",\n        \"manufacturer\": {\n          \"slug\": \"apple\",\n          \"title\": \"Apple\"\n        },\n        \"attributes\": {\n          \"screen\": [\n            {\n              \"slug\": \"13\",\n              \"title\": \"13\"\n            }\n          ],\n          \"capacity\": [\n            {\n              \"slug\": \"128gb-ssd\",\n              \"title\": \"128GB SSD\"\n            }\n          ],\n          \"processor\": [\n            {\n              \"slug\": \"core-2-duo-226ghz\",\n              \"title\": \"Core 2 Duo 2.26GHz\"\n            }\n          ],\n          \"family\": [\n            {\n              \"slug\": \"macbook-pro\",\n              \"title\": \"MacBook Pro\"\n            }\n          ],\n          \"year\": [\n            {\n              \"slug\": \"2009\",\n              \"title\": \"2009\"\n            }\n          ]\n        },\n        \"category\": {\n          \"slug\": \"laptop\",\n          \"title\": \"Laptop\"\n        },\n        \"icon_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/icon-apple-macbook-pro-core-2-duo-226-ghz-13-mid-2009-128gb-ssd.png\",\n        \"small_image_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/small-apple-macbook-pro-core-2-duo-226-ghz-13-mid-2009-128gb-ssd.png\",\n        \"large_image_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/large-apple-macbook-pro-core-2-duo-226-ghz-13-mid-2009-128gb-ssd.png\",\n        \"questions\": [\n          {\n            \"uid\": \"17873016814\",\n            \"title\": \"Power On\",\n            \"question\": \"Is your device eligible for trade-in?\",\n            \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Issues powering on and off\\r\\n- <a href=\\\"http://phobiosupport.com/hrf_faq/how-do-signs-of-battery-swelling-affect-my-trade-value/\\\" target=\\\"_blank\\\">Signs of battery swelling</a>\",\n            \"responses\": [\n              {\n                \"uid\": \"18000000001\",\n                \"title\": \"True\",\n                \"description\": \"True\"\n              },\n              {\n                \"uid\": \"18000000002\",\n                \"title\": \"False\",\n                \"description\": \"False\"\n              }\n            ]\n          },\n          {\n            \"uid\": \"17163645876\",\n            \"title\": \"Operating System\",\n            \"question\": \"Does the operating system load properly?\",\n            \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Software boot-up errors\\r\\n- Software can't be installed\\r\\n- A blinking folder with a “?” displayed\\r\\n- <a href=\\\"http://phobiosupport.com/hrf_faq/what-are-the-accepted-screens-for-my-mac\\\" target=\\\"_blank\\\">View Accepted Mac Screens</a>\",\n            \"responses\": [\n              {\n                \"uid\": \"18000000001\",\n                \"title\": \"True\",\n                \"description\": \"True\"\n              },\n              {\n                \"uid\": \"18000000002\",\n                \"title\": \"False\",\n                \"description\": \"False\"\n              }\n            ]\n          },\n          {\n            \"uid\": \"17181139258\",\n            \"title\": \"Physical Damage\",\n            \"question\": \"Is the device free of any physical damage?\",\n            \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Broken or cracked screen\\r\\n- Malfunctioning screen (flickers, pixel loss, non-functioning backlight, lines in the screen)\\r\\n- Cracks, dents or severe scratches to the housing\\r\\n- Malfunctioning or missing buttons\",\n            \"responses\": [\n              {\n                \"uid\": \"18000000001\",\n                \"title\": \"True\",\n                \"description\": \"True\"\n              },\n              {\n                \"uid\": \"18000000002\",\n                \"title\": \"False\",\n                \"description\": \"False\"\n              }\n            ]\n          },\n          {\n            \"uid\": \"17680791435\",\n            \"title\": \"Power Adapter Included\",\n            \"question\": \"Will the working power adapter be included?\",\n            \"body\": \"\",\n            \"responses\": [\n              {\n                \"uid\": \"18000000001\",\n                \"title\": \"True\",\n                \"description\": \"True\"\n              },\n              {\n                \"uid\": \"18000000002\",\n                \"title\": \"False\",\n                \"description\": \"False\"\n              }\n            ]\n          }\n        ]\n      },\n      \"created\": \"2018-06-05T18:57:18\",\n      \"modified\": \"2018-06-05T18:57:18\",\n      \"inspected\": null,\n      \"received\": null,\n      \"paid\": null,\n      \"shipments\": [],\n      \"adjustment_reasons\": [],\n      \"partner_expected_price_in_cents\": 0,\n      \"quarantine\": {\n        \"offer_accepted_type\": null,\n        \"quarantine_expiry\": null,\n        \"offer_accepted\": null,\n        \"offer_rejected\": null,\n        \"offer_rejected_type\": null\n      },\n      \"ready_for_partner_payment\": null,\n      \"reference_1\": null,\n      \"reference_2\": null\n    }\n  ],\n  \"customer\": {\n    \"first_name\": null,\n    \"last_name\": null,\n    \"phone\": null,\n    \"email\": null,\n    \"id_type\": null,\n    \"id_number\": null,\n    \"id_type_alternate\": null,\n    \"id_number_alternate\": null,\n    \"address_1\": null,\n    \"address_2\": null,\n    \"city\": null,\n    \"state\": null,\n    \"postal_code\": null,\n    \"country_code\": null\n  },\n  \"created\": \"2018-06-05T18:57:17.866531\",\n  \"modified\": \"2018-06-05T18:57:17.866559\",\n  \"reference_1\": null,\n  \"reference_2\": null\n}"}],"_postman_id":"4ebb70f3-36c4-45de-80e2-67739d8ee6f5"},{"name":"Remove Trade","id":"fffc8816-6360-45c0-abfe-5b592a16148b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"raw","raw":"{\n\t\"uid\": \"20270100272\",\n}"},"url":"https://phobio.com/api/v2/quotes/:uid/trades/","description":"<p>This method removes a Trade from a Quote. This method requires a JSON object described below.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>uid</code></td>\n<td>integer</td>\n<td>True</td>\n<td>The UID of a Trade that is being removed from the Quote.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["quotes",":uid","trades",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[{"type":"string","value":"","key":"uid"}]}},"response":[{"id":"54f2519c-1876-4ef6-91bd-65e0eedc9706","name":"Remove Trade","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"raw","raw":"{\n\t\"uid\": \"20270100272\",\n}"},"url":{"raw":"https://phobio.com/api/v2/quotes/:uid/trades/","host":["https://phobio.com/api/v2"],"path":["quotes",":uid","trades",""],"variable":[{"key":"uid","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"","header":[],"cookie":[],"responseTime":null,"body":"{\n  \"uid\": \"29918275719\",\n  \"promo\": null,\n  \"payment_options\": [\n    {\n      \"local_total_in_cents\": 5000,\n      \"name\": \"Cash\",\n      \"original_local_total_in_cents\": 5000,\n      \"original_local_typical_total_in_cents\": 5000,\n      \"original_local_typical_customer_total_in_cents\": 5000,\n      \"local_customer_total_in_cents\": 5000,\n      \"local_typical_total_in_cents\": 5000,\n      \"original_local_customer_total_in_cents\": 5000,\n      \"local_currency_symbol\": \"USD\",\n      \"local_typical_customer_total_in_cents\": 5000,\n      \"slug\": \"cash\"\n    },\n    {\n      \"local_total_in_cents\": 5000,\n      \"name\": \"Apple Store Gift Card\",\n      \"original_local_total_in_cents\": 5000,\n      \"original_local_typical_total_in_cents\": 5000,\n      \"original_local_typical_customer_total_in_cents\": 5000,\n      \"local_customer_total_in_cents\": 5000,\n      \"local_typical_total_in_cents\": 5000,\n      \"original_local_customer_total_in_cents\": 5000,\n      \"local_currency_symbol\": \"USD\",\n      \"local_typical_customer_total_in_cents\": 5000,\n      \"slug\": \"consumer_apple_gift_card\"\n    },\n    {\n      \"local_total_in_cents\": 5000,\n      \"name\": \"PayPal\",\n      \"original_local_total_in_cents\": 5000,\n      \"original_local_typical_total_in_cents\": 5000,\n      \"original_local_typical_customer_total_in_cents\": 5000,\n      \"local_customer_total_in_cents\": 5000,\n      \"local_typical_total_in_cents\": 5000,\n      \"original_local_customer_total_in_cents\": 5000,\n      \"local_currency_symbol\": \"USD\",\n      \"local_typical_customer_total_in_cents\": 5000,\n      \"slug\": \"consumer_paypal\"\n    },\n    {\n      \"local_total_in_cents\": 5000,\n      \"name\": \"Virtual Visa&reg; Reward\",\n      \"original_local_total_in_cents\": 5000,\n      \"original_local_typical_total_in_cents\": 5000,\n      \"original_local_typical_customer_total_in_cents\": 5000,\n      \"local_customer_total_in_cents\": 5000,\n      \"local_typical_total_in_cents\": 5000,\n      \"original_local_customer_total_in_cents\": 5000,\n      \"local_currency_symbol\": \"USD\",\n      \"local_typical_customer_total_in_cents\": 5000,\n      \"slug\": \"consumer_virtual_visa_reward\"\n    }\n  ],\n  \"trades\": [\n    {\n      \"uid\": \"20547941151\",\n      \"condition\": \"damaged\",\n      \"local_price_in_cents\": 0,\n      \"local_typical_price_in_cents\": 0,\n      \"local_customer_price_in_cents\": 0,\n      \"local_typical_customer_price_in_cents\": 0,\n      \"original_local_price_in_cents\": 0,\n      \"original_local_typical_price_in_cents\": 0,\n      \"original_local_customer_price_in_cents\": 0,\n      \"original_local_typical_customer_price_in_cents\": 0,\n      \"local_currency_symbol\": \"USD\",\n      \"status\": \"unconfirmed\",\n      \"imei\": \"11118487236\",\n      \"serial\": \"11118487236\",\n      \"product\": {\n        \"uid\": \"15848028971\",\n        \"title\": \"MacBook Pro Core 2 Duo 2.26 GHz 13\\\" (Mid 2009) 128GB SSD\",\n        \"manufacturer\": {\n          \"slug\": \"apple\",\n          \"title\": \"Apple\"\n        },\n        \"attributes\": {\n          \"screen\": [\n            {\n              \"slug\": \"13\",\n              \"title\": \"13\"\n            }\n          ],\n          \"capacity\": [\n            {\n              \"slug\": \"128gb-ssd\",\n              \"title\": \"128GB SSD\"\n            }\n          ],\n          \"processor\": [\n            {\n              \"slug\": \"core-2-duo-226ghz\",\n              \"title\": \"Core 2 Duo 2.26GHz\"\n            }\n          ],\n          \"family\": [\n            {\n              \"slug\": \"macbook-pro\",\n              \"title\": \"MacBook Pro\"\n            }\n          ],\n          \"year\": [\n            {\n              \"slug\": \"2009\",\n              \"title\": \"2009\"\n            }\n          ]\n        },\n        \"category\": {\n          \"slug\": \"laptop\",\n          \"title\": \"Laptop\"\n        },\n        \"icon_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/icon-apple-macbook-pro-core-2-duo-226-ghz-13-mid-2009-128gb-ssd.png\",\n        \"small_image_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/small-apple-macbook-pro-core-2-duo-226-ghz-13-mid-2009-128gb-ssd.png\",\n        \"large_image_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/large-apple-macbook-pro-core-2-duo-226-ghz-13-mid-2009-128gb-ssd.png\",\n        \"questions\": [\n          {\n            \"uid\": \"17873016814\",\n            \"title\": \"Power On\",\n            \"question\": \"Is your device eligible for trade-in?\",\n            \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Issues powering on and off\\r\\n- <a href=\\\"http://phobiosupport.com/hrf_faq/how-do-signs-of-battery-swelling-affect-my-trade-value/\\\" target=\\\"_blank\\\">Signs of battery swelling</a>\",\n            \"responses\": [\n              {\n                \"uid\": \"18000000001\",\n                \"title\": \"True\",\n                \"description\": \"True\"\n              },\n              {\n                \"uid\": \"18000000002\",\n                \"title\": \"False\",\n                \"description\": \"False\"\n              }\n            ]\n          },\n          {\n            \"uid\": \"17163645876\",\n            \"title\": \"Operating System\",\n            \"question\": \"Does the operating system load properly?\",\n            \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Software boot-up errors\\r\\n- Software can't be installed\\r\\n- A blinking folder with a “?” displayed\\r\\n- <a href=\\\"http://phobiosupport.com/hrf_faq/what-are-the-accepted-screens-for-my-mac\\\" target=\\\"_blank\\\">View Accepted Mac Screens</a>\",\n            \"responses\": [\n              {\n                \"uid\": \"18000000001\",\n                \"title\": \"True\",\n                \"description\": \"True\"\n              },\n              {\n                \"uid\": \"18000000002\",\n                \"title\": \"False\",\n                \"description\": \"False\"\n              }\n            ]\n          },\n          {\n            \"uid\": \"17181139258\",\n            \"title\": \"Physical Damage\",\n            \"question\": \"Is the device free of any physical damage?\",\n            \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Broken or cracked screen\\r\\n- Malfunctioning screen (flickers, pixel loss, non-functioning backlight, lines in the screen)\\r\\n- Cracks, dents or severe scratches to the housing\\r\\n- Malfunctioning or missing buttons\",\n            \"responses\": [\n              {\n                \"uid\": \"18000000001\",\n                \"title\": \"True\",\n                \"description\": \"True\"\n              },\n              {\n                \"uid\": \"18000000002\",\n                \"title\": \"False\",\n                \"description\": \"False\"\n              }\n            ]\n          },\n          {\n            \"uid\": \"17680791435\",\n            \"title\": \"Power Adapter Included\",\n            \"question\": \"Will the working power adapter be included?\",\n            \"body\": \"\",\n            \"responses\": [\n              {\n                \"uid\": \"18000000001\",\n                \"title\": \"True\",\n                \"description\": \"True\"\n              },\n              {\n                \"uid\": \"18000000002\",\n                \"title\": \"False\",\n                \"description\": \"False\"\n              }\n            ]\n          }\n        ]\n      },\n      \"created\": \"2018-06-05T18:57:18\",\n      \"modified\": \"2018-06-05T18:57:18\",\n      \"inspected\": null,\n      \"received\": null,\n      \"paid\": null,\n      \"shipments\": [],\n      \"adjustment_reasons\": [],\n      \"partner_expected_price_in_cents\": 0,\n      \"quarantine\": {\n        \"offer_accepted_type\": null,\n        \"quarantine_expiry\": null,\n        \"offer_accepted\": null,\n        \"offer_rejected\": null,\n        \"offer_rejected_type\": null\n      }\n    }\n  ],\n  \"customer\": {\n    \"first_name\": null,\n    \"last_name\": null,\n    \"phone\": null,\n    \"email\": null,\n    \"id_type\": null,\n    \"id_number\": null,\n    \"id_type_alternate\": null,\n    \"id_number_alternate\": null,\n    \"address_1\": null,\n    \"address_2\": null,\n    \"city\": null,\n    \"state\": null,\n    \"postal_code\": null,\n    \"country_code\": null\n  },\n  \"created\": \"2018-06-05T18:57:17.866531\",\n  \"modified\": \"2018-06-05T18:57:17.866559\"\n}"}],"_postman_id":"fffc8816-6360-45c0-abfe-5b592a16148b"}],"id":"605342a4-d4f2-b539-d212-7a41aaac711b","description":"<p>Creating a Quote is the first step in trading in a device to Phobio. Quotes contain information that can be displayed to the customer, such as price, payment options, and other details pertinent to the trade.</p>\n<p>A Quote is a temporary indication of the trade total. Quote records will only be accessible for 12 hours after creation. They should be treated in much the same way as a \"shopping cart\".</p>\n<p>When the user accepts this quote, you must create an Invoice with the UID of this Quote object. See <a href=\"#confirm-quote-create-invoice\">Confirm Quote (Create Invoice)</a> for more information.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"d1f70d30-c91e-4645-930d-98208b94c059","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"33193af3-a9ad-4139-ad03-50437cc5bd11","type":"text/javascript","exec":[""]}}],"_postman_id":"605342a4-d4f2-b539-d212-7a41aaac711b"},{"name":"Invoices","item":[{"name":"Confirm Quote (Create Invoice)","id":"d5048012-6c55-633e-13c9-5702f88aed4d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"raw","raw":"{\n  \"quote_uid\": \"29918275719\",\n  \"agree_to_terms\": true,\n  \"payment_option_slug\": \"consumer_paypal\",\n  \"customer\": {\n    \"first_name\": \"Arnold\",\n    \"last_name\": \"Fitzpatrick\",\n    \"email\": \"arnold42@cellularstorenetwork.org\"\n  },\n  \"reference_number\": \"182767663\"\n}"},"url":"https://phobio.com/api/v2/invoices/","description":"<p>In order to accept a Quote, you must create an Invoice object. This confirms the trade and returns a unique invoice number. To confirm a trade, perform a POST request with the UID of the Quote object to the invoice resource.</p>\n<h6 id=\"json-body-parameters\">JSON Body Parameters</h6>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>quote_uid</code></td>\n<td>integer</td>\n<td>True</td>\n<td>UID of Quote to confirm</td>\n</tr>\n<tr>\n<td><code>company_location_uid</code></td>\n<td>integer</td>\n<td>False</td>\n<td>If provided, will specify the Company Location to attribute the Invoice to. Default's to the API user's Location.</td>\n</tr>\n<tr>\n<td><code>payment_option_slug</code></td>\n<td>string</td>\n<td>True</td>\n<td>The slug of the <code>payment_option</code> to apply to the Invoice. <code>payment_options</code> are included with the response of <a href=\"#create-quote\">Create Quote</a>.</td>\n</tr>\n<tr>\n<td><code>agree_to_terms</code></td>\n<td>boolean</td>\n<td>True</td>\n<td>Indicates that the user has agreed to the trade-in terms and conditions.</td>\n</tr>\n<tr>\n<td><code>customer</code></td>\n<td>JSON object</td>\n<td>False</td>\n<td>The customer object is required if it was not included with the <a href=\"#create-quote\">Create Quote</a> request. See the 'customer object' below.</td>\n</tr>\n<tr>\n<td><code>reference_number</code></td>\n<td>integer</td>\n<td>False</td>\n<td>Company-specific reference used to track the POS user account or salesperson</td>\n</tr>\n<tr>\n<td><code>sales_sku</code></td>\n<td>integer</td>\n<td>False</td>\n<td>Company-specific sales SKUs on the product invoice. Accepts multiple values as a comma-separated list.</td>\n</tr>\n<tr>\n<td><code>pricing_date</code></td>\n<td>string</td>\n<td>False</td>\n<td><strong>This option is only available with special permission from Phobio</strong>. If provided, will use the prices as of <code>pricing_date</code> for each trade on the Quote. ISO-8601 formatted.</td>\n</tr>\n<tr>\n<td><code>reference_1</code></td>\n<td>string</td>\n<td>False</td>\n<td>Company specific reference metadata</td>\n</tr>\n<tr>\n<td><code>reference_2</code></td>\n<td>string</td>\n<td>False</td>\n<td>Company specific reference metadata</td>\n</tr>\n<tr>\n<td><code>disable_fulfillment</code></td>\n<td>boolean</td>\n<td>False</td>\n<td>When True, a trade-in kit will not be shipped for this trade as part of a consumer trade-in program.</td>\n</tr>\n</tbody>\n</table>\n</div><h6 id=\"customer-object-parameters\">Customer Object Parameters</h6>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>first_name</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer first name</td>\n</tr>\n<tr>\n<td><code>last_name</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer last name</td>\n</tr>\n<tr>\n<td><code>phone</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer phone number</td>\n</tr>\n<tr>\n<td><code>email</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer email address</td>\n</tr>\n<tr>\n<td><code>address_1</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer address line 1</td>\n</tr>\n<tr>\n<td><code>address_2</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer address line 2</td>\n</tr>\n<tr>\n<td><code>city</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer city</td>\n</tr>\n<tr>\n<td><code>state</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer state</td>\n</tr>\n<tr>\n<td><code>postal_code</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer postal code</td>\n</tr>\n<tr>\n<td><code>country_code</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer two-letter country code</td>\n</tr>\n<tr>\n<td><code>id_type</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer identification type (driver's license, passport, etc)</td>\n</tr>\n<tr>\n<td><code>id_number</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer identification number (driver's license number, etc.)</td>\n</tr>\n<tr>\n<td><code>id_type_alternate</code></td>\n<td>string</td>\n<td>False</td>\n<td>Alternate customer identification type (driver's license, passport, etc)</td>\n</tr>\n<tr>\n<td><code>id_number_alternate</code></td>\n<td>string</td>\n<td>False</td>\n<td>Alternate customer identification number (driver's license number, etc.)</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["invoices",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[]}},"response":[{"id":"b84246ed-e459-498a-8a6c-edc4655e7607","name":"Confirm Quote (Create Invoice)","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json","disabled":false},{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Accept-Language","value":"en-US","disabled":false}],"body":{"mode":"raw","raw":"{\n  \"quote_uid\": \"29918275719\",\n  \"agree_to_terms\": true,\n  \"payment_option_slug\": \"consumer_paypal\",\n  \"customer\": {\n    \"first_name\": \"Arnold\",\n    \"last_name\": \"Fitzpatrick\",\n    \"email\": \"arnold42@cellularstorenetwork.org\"\n  },\n  \"reference_number\": \"182767663\"\n}"},"url":"https://phobio.com/api/v2/invoices/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, POST, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Content-Language","value":"en","name":"Content-Language","description":"The language the content is in"},{"key":"Content-Length","value":"7871","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 11 Jun 2018 13:56:58 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"WSGIServer/0.1 Python/2.7.12","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Accept-Language, Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"}],"cookie":[],"responseTime":null,"body":"{\n    \"uid\": \"30727651850\",\n    \"promo\": null,\n    \"local_total_in_cents\": 5000,\n    \"local_typical_total_in_cents\": 5000,\n    \"local_customer_total_in_cents\": 5000,\n    \"local_typical_customer_total_in_cents\": 5000,\n    \"original_local_total_in_cents\": 5000,\n    \"original_local_typical_total_in_cents\": 5000,\n    \"original_local_customer_total_in_cents\": 5000,\n    \"original_local_typical_customer_total_in_cents\": 5000,\n    \"payment_details\": {\n        \"confirmation_number\": null,\n        \"paid\": null,\n        \"payment_option_slug\": \"consumer_paypal\"\n    },\n    \"local_currency_symbol\": \"USD\",\n    \"customer\": {\n        \"first_name\": \"Arnold\",\n        \"last_name\": \"Fitzpatrick\",\n        \"phone\": null,\n        \"email\": \"arnold42@cellularstorenetwork.org\",\n        \"id_type\": null,\n        \"id_number\": null,\n        \"id_type_alternate\": null,\n        \"id_number_alternate\": null,\n        \"address_1\": null,\n        \"address_2\": null,\n        \"city\": null,\n        \"state\": null,\n        \"postal_code\": null,\n        \"country_code\": null\n    },\n    \"barcode_full_url\": \"http://localhost:8000/inventory/barcode/30727651850/\",\n    \"trades\": [\n        {\n            \"uid\": \"20270100272\",\n            \"condition\": \"working\",\n            \"local_price_in_cents\": 5000,\n            \"local_typical_price_in_cents\": 5000,\n            \"local_customer_price_in_cents\": 5000,\n            \"local_typical_customer_price_in_cents\": 5000,\n            \"original_local_price_in_cents\": 5000,\n            \"original_local_typical_price_in_cents\": 5000,\n            \"original_local_customer_price_in_cents\": 5000,\n            \"original_local_typical_customer_price_in_cents\": 5000,\n            \"local_currency_symbol\": \"USD\",\n            \"status\": \"quoted\",\n            \"imei\": \"11111167265\",\n            \"serial\": \"11111167265\",\n            \"product\": {\n                \"uid\": \"15848028971\",\n                \"title\": \"MacBook Pro Core 2 Duo 2.26 GHz 13\\\" (Mid 2009) 128GB SSD\",\n                \"manufacturer\": {\n                    \"slug\": \"apple\",\n                    \"title\": \"Apple\"\n                },\n                \"attributes\": {\n                    \"screen\": [\n                        {\n                            \"slug\": \"13\",\n                            \"title\": \"13\"\n                        }\n                    ],\n                    \"capacity\": [\n                        {\n                            \"slug\": \"128gb-ssd\",\n                            \"title\": \"128GB SSD\"\n                        }\n                    ],\n                    \"processor\": [\n                        {\n                            \"slug\": \"core-2-duo-226ghz\",\n                            \"title\": \"Core 2 Duo 2.26GHz\"\n                        }\n                    ],\n                    \"family\": [\n                        {\n                            \"slug\": \"macbook-pro\",\n                            \"title\": \"MacBook Pro\"\n                        }\n                    ],\n                    \"year\": [\n                        {\n                            \"slug\": \"2009\",\n                            \"title\": \"2009\"\n                        }\n                    ]\n                },\n                \"category\": {\n                    \"slug\": \"laptop\",\n                    \"title\": \"Laptop\"\n                },\n                \"icon_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/icon-apple-macbook-pro-core-2-duo-226-ghz-13-mid-2009-128gb-ssd.png\",\n                \"small_image_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/small-apple-macbook-pro-core-2-duo-226-ghz-13-mid-2009-128gb-ssd.png\",\n                \"large_image_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/large-apple-macbook-pro-core-2-duo-226-ghz-13-mid-2009-128gb-ssd.png\",\n                \"questions\": [\n                    {\n                        \"uid\": \"17873016814\",\n                        \"title\": \"Power On\",\n                        \"question\": \"Is your device eligible for trade-in?\",\n                        \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Issues powering on and off\\r\\n- <a href=\\\"http://phobiosupport.com/hrf_faq/how-do-signs-of-battery-swelling-affect-my-trade-value/\\\" target=\\\"_blank\\\">Signs of battery swelling</a>\",\n                        \"responses\": [\n                            {\n                                \"uid\": \"18000000001\",\n                                \"title\": \"True\",\n                                \"description\": \"True\"\n                            },\n                            {\n                                \"uid\": \"18000000002\",\n                                \"title\": \"False\",\n                                \"description\": \"False\"\n                            }\n                        ]\n                    },\n                    {\n                        \"uid\": \"17163645876\",\n                        \"title\": \"Operating System\",\n                        \"question\": \"Does the operating system load properly?\",\n                        \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Software boot-up errors\\r\\n- Software can't be installed\\r\\n- A blinking folder with a “?” displayed\\r\\n- <a href=\\\"http://phobiosupport.com/hrf_faq/what-are-the-accepted-screens-for-my-mac\\\" target=\\\"_blank\\\">View Accepted Mac Screens</a>\",\n                        \"responses\": [\n                            {\n                                \"uid\": \"18000000001\",\n                                \"title\": \"True\",\n                                \"description\": \"True\"\n                            },\n                            {\n                                \"uid\": \"18000000002\",\n                                \"title\": \"False\",\n                                \"description\": \"False\"\n                            }\n                        ]\n                    },\n                    {\n                        \"uid\": \"17181139258\",\n                        \"title\": \"Physical Damage\",\n                        \"question\": \"Is the device free of any physical damage?\",\n                        \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Broken or cracked screen\\r\\n- Malfunctioning screen (flickers, pixel loss, non-functioning backlight, lines in the screen)\\r\\n- Cracks, dents or severe scratches to the housing\\r\\n- Malfunctioning or missing buttons\",\n                        \"responses\": [\n                            {\n                                \"uid\": \"18000000001\",\n                                \"title\": \"True\",\n                                \"description\": \"True\"\n                            },\n                            {\n                                \"uid\": \"18000000002\",\n                                \"title\": \"False\",\n                                \"description\": \"False\"\n                            }\n                        ]\n                    },\n                    {\n                        \"uid\": \"17680791435\",\n                        \"title\": \"Power Adapter Included\",\n                        \"question\": \"Will the working power adapter be included?\",\n                        \"body\": \"\",\n                        \"responses\": [\n                            {\n                                \"uid\": \"18000000001\",\n                                \"title\": \"True\",\n                                \"description\": \"True\"\n                            },\n                            {\n                                \"uid\": \"18000000002\",\n                                \"title\": \"False\",\n                                \"description\": \"False\"\n                            }\n                        ]\n                    }\n                ]\n            },\n            \"created\": \"2018-06-05T18:57:18\",\n            \"modified\": \"2018-06-05T18:58:07\",\n            \"inspected\": null,\n            \"received\": null,\n            \"paid\": null,\n            \"shipments\": [],\n            \"adjustment_reasons\": [],\n            \"hold_expiry\": null,\n            \"partner_expected_price_in_cents\": 0,\n            \"quarantine\": {\n                \"offer_accepted_type\": null,\n                \"quarantine_expiry\": null,\n                \"offer_accepted\": null,\n                \"offer_rejected\": null,\n                \"offer_rejected_type\": null\n            },\n            \"reference_1\": null,\n            \"reference_2\": null\n        },\n        {\n            \"uid\": \"20547941151\",\n            \"condition\": \"damaged\",\n            \"local_price_in_cents\": 0,\n            \"local_typical_price_in_cents\": 0,\n            \"local_customer_price_in_cents\": 0,\n            \"local_typical_customer_price_in_cents\": 0,\n            \"original_local_price_in_cents\": 0,\n            \"original_local_typical_price_in_cents\": 0,\n            \"original_local_customer_price_in_cents\": 0,\n            \"original_local_typical_customer_price_in_cents\": 0,\n            \"local_currency_symbol\": \"USD\",\n            \"status\": \"quoted\",\n            \"imei\": \"11118487236\",\n            \"serial\": \"11118487236\",\n            \"product\": {\n                \"uid\": \"15848028971\",\n                \"title\": \"MacBook Pro Core 2 Duo 2.26 GHz 13\\\" (Mid 2009) 128GB SSD\",\n                \"manufacturer\": {\n                    \"slug\": \"apple\",\n                    \"title\": \"Apple\"\n                },\n                \"attributes\": {\n                    \"screen\": [\n                        {\n                            \"slug\": \"13\",\n                            \"title\": \"13\"\n                        }\n                    ],\n                    \"capacity\": [\n                        {\n                            \"slug\": \"128gb-ssd\",\n                            \"title\": \"128GB SSD\"\n                        }\n                    ],\n                    \"processor\": [\n                        {\n                            \"slug\": \"core-2-duo-226ghz\",\n                            \"title\": \"Core 2 Duo 2.26GHz\"\n                        }\n                    ],\n                    \"family\": [\n                        {\n                            \"slug\": \"macbook-pro\",\n                            \"title\": \"MacBook Pro\"\n                        }\n                    ],\n                    \"year\": [\n                        {\n                            \"slug\": \"2009\",\n                            \"title\": \"2009\"\n                        }\n                    ]\n                },\n                \"category\": {\n                    \"slug\": \"laptop\",\n                    \"title\": \"Laptop\"\n                },\n                \"icon_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/icon-apple-macbook-pro-core-2-duo-226-ghz-13-mid-2009-128gb-ssd.png\",\n                \"small_image_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/small-apple-macbook-pro-core-2-duo-226-ghz-13-mid-2009-128gb-ssd.png\",\n                \"large_image_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/large-apple-macbook-pro-core-2-duo-226-ghz-13-mid-2009-128gb-ssd.png\",\n                \"questions\": [\n                    {\n                        \"uid\": \"17873016814\",\n                        \"title\": \"Power On\",\n                        \"question\": \"Is your device eligible for trade-in?\",\n                        \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Issues powering on and off\\r\\n- <a href=\\\"http://phobiosupport.com/hrf_faq/how-do-signs-of-battery-swelling-affect-my-trade-value/\\\" target=\\\"_blank\\\">Signs of battery swelling</a>\",\n                        \"responses\": [\n                            {\n                                \"uid\": \"18000000001\",\n                                \"title\": \"True\",\n                                \"description\": \"True\"\n                            },\n                            {\n                                \"uid\": \"18000000002\",\n                                \"title\": \"False\",\n                                \"description\": \"False\"\n                            }\n                        ]\n                    },\n                    {\n                        \"uid\": \"17163645876\",\n                        \"title\": \"Operating System\",\n                        \"question\": \"Does the operating system load properly?\",\n                        \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Software boot-up errors\\r\\n- Software can't be installed\\r\\n- A blinking folder with a “?” displayed\\r\\n- <a href=\\\"http://phobiosupport.com/hrf_faq/what-are-the-accepted-screens-for-my-mac\\\" target=\\\"_blank\\\">View Accepted Mac Screens</a>\",\n                        \"responses\": [\n                            {\n                                \"uid\": \"18000000001\",\n                                \"title\": \"True\",\n                                \"description\": \"True\"\n                            },\n                            {\n                                \"uid\": \"18000000002\",\n                                \"title\": \"False\",\n                                \"description\": \"False\"\n                            }\n                        ]\n                    },\n                    {\n                        \"uid\": \"17181139258\",\n                        \"title\": \"Physical Damage\",\n                        \"question\": \"Is the device free of any physical damage?\",\n                        \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Broken or cracked screen\\r\\n- Malfunctioning screen (flickers, pixel loss, non-functioning backlight, lines in the screen)\\r\\n- Cracks, dents or severe scratches to the housing\\r\\n- Malfunctioning or missing buttons\",\n                        \"responses\": [\n                            {\n                                \"uid\": \"18000000001\",\n                                \"title\": \"True\",\n                                \"description\": \"True\"\n                            },\n                            {\n                                \"uid\": \"18000000002\",\n                                \"title\": \"False\",\n                                \"description\": \"False\"\n                            }\n                        ]\n                    },\n                    {\n                        \"uid\": \"17680791435\",\n                        \"title\": \"Power Adapter Included\",\n                        \"question\": \"Will the working power adapter be included?\",\n                        \"body\": \"\",\n                        \"responses\": [\n                            {\n                                \"uid\": \"18000000001\",\n                                \"title\": \"True\",\n                                \"description\": \"True\"\n                            },\n                            {\n                                \"uid\": \"18000000002\",\n                                \"title\": \"False\",\n                                \"description\": \"False\"\n                            }\n                        ]\n                    }\n                ]\n            },\n            \"created\": \"2018-06-05T18:57:18\",\n            \"modified\": \"2018-06-05T18:58:07\",\n            \"inspected\": null,\n            \"received\": null,\n            \"paid\": null,\n            \"shipments\": [],\n            \"adjustment_reasons\": [],\n            \"hold_expiry\": null,\n            \"partner_expected_price_in_cents\": 0,\n            \"quarantine\": {\n                \"offer_accepted_type\": null,\n                \"quarantine_expiry\": null,\n                \"offer_accepted\": null,\n                \"offer_rejected\": null,\n                \"offer_rejected_type\": null\n            },\n            \"reference_1\": null,\n            \"reference_2\": null\n        }\n    ],\n    \"created\": \"2018-06-05T18:58:07\",\n    \"modified\": \"2018-06-05T18:58:07\",\n    \"reference_1\": null,\n    \"reference_2\": null\n}"}],"_postman_id":"d5048012-6c55-633e-13c9-5702f88aed4d"},{"name":"Get Invoice","id":"c2948adc-c9c9-91c3-9967-ef84292eeacd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"url":"https://phobio.com/api/v2/invoices/:uid/","description":"<p>Get Invoice by Invoice UID</p>\n","urlObject":{"path":["invoices",":uid",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[{"description":{"content":"<p>Invoice UID</p>\n","type":"text/plain"},"type":"string","value":"30727651850","key":"uid"}]}},"response":[{"id":"004a325c-0b52-4117-9dcd-9c1ea69f0d64","name":"Get Invoice","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","disabled":false},{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Accept-Language","value":"en-US","disabled":false}],"url":{"raw":"https://phobio.com/api/v2/invoices/:uid/","host":["https://phobio.com/api/v2"],"path":["invoices",":uid",""],"variable":[{"key":"uid","value":"30727651850","description":"Invoice UID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, PUT, PATCH, DELETE, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Content-Language","value":"en","name":"Content-Language","description":"The language the content is in"},{"key":"Content-Length","value":"7853","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 11 Jun 2018 13:56:33 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"WSGIServer/0.1 Python/2.7.12","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Accept-Language, Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"}],"cookie":[],"responseTime":null,"body":"{\n    \"uid\": \"30727651850\",\n    \"promo\": null,\n    \"local_total_in_cents\": 5000,\n    \"local_typical_total_in_cents\": 5000,\n    \"local_customer_total_in_cents\": 5000,\n    \"local_typical_customer_total_in_cents\": 5000,\n    \"original_local_total_in_cents\": 5000,\n    \"original_local_typical_total_in_cents\": 5000,\n    \"original_local_customer_total_in_cents\": 5000,\n    \"original_local_typical_customer_total_in_cents\": 5000,\n    \"payment_details\": {\n        \"confirmation_number\": null,\n        \"paid\": null,\n        \"payment_option_slug\": \"consumer_paypal\"\n    },\n    \"local_currency_symbol\": \"USD\",\n    \"customer\": {\n        \"first_name\": \"Arnold\",\n        \"last_name\": \"Fitzpatrick\",\n        \"phone\": null,\n        \"email\": \"arnold42@cellularstorenetwork.org\",\n        \"id_type\": null,\n        \"id_number\": null,\n        \"id_type_alternate\": null,\n        \"id_number_alternate\": null,\n        \"address_1\": null,\n        \"address_2\": null,\n        \"city\": null,\n        \"state\": null,\n        \"postal_code\": null,\n        \"country_code\": null\n    },\n    \"barcode_full_url\": \"http://localhost:8000/inventory/barcode/30727651850/\",\n    \"trades\": [\n        {\n            \"uid\": \"20270100272\",\n            \"condition\": \"working\",\n            \"local_price_in_cents\": 5000,\n            \"local_typical_price_in_cents\": 5000,\n            \"local_customer_price_in_cents\": 5000,\n            \"local_typical_customer_price_in_cents\": 5000,\n            \"original_local_price_in_cents\": 5000,\n            \"original_local_typical_price_in_cents\": 5000,\n            \"original_local_customer_price_in_cents\": 5000,\n            \"original_local_typical_customer_price_in_cents\": 5000,\n            \"local_currency_symbol\": \"USD\",\n            \"status\": \"quoted\",\n            \"imei\": null,\n            \"serial\": \"11111167265\",\n            \"product\": {\n                \"uid\": \"15848028971\",\n                \"title\": \"MacBook Pro Core 2 Duo 2.26 GHz 13\\\" (Mid 2009) 128GB SSD\",\n                \"manufacturer\": {\n                    \"slug\": \"apple\",\n                    \"title\": \"Apple\"\n                },\n                \"attributes\": {\n                    \"screen\": [\n                        {\n                            \"slug\": \"13\",\n                            \"title\": \"13\"\n                        }\n                    ],\n                    \"capacity\": [\n                        {\n                            \"slug\": \"128gb-ssd\",\n                            \"title\": \"128GB SSD\"\n                        }\n                    ],\n                    \"processor\": [\n                        {\n                            \"slug\": \"core-2-duo-226ghz\",\n                            \"title\": \"Core 2 Duo 2.26GHz\"\n                        }\n                    ],\n                    \"family\": [\n                        {\n                            \"slug\": \"macbook-pro\",\n                            \"title\": \"MacBook Pro\"\n                        }\n                    ],\n                    \"year\": [\n                        {\n                            \"slug\": \"2009\",\n                            \"title\": \"2009\"\n                        }\n                    ]\n                },\n                \"category\": {\n                    \"slug\": \"laptop\",\n                    \"title\": \"Laptop\"\n                },\n                \"icon_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/icon-apple-macbook-pro-core-2-duo-226-ghz-13-mid-2009-128gb-ssd.png\",\n                \"small_image_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/small-apple-macbook-pro-core-2-duo-226-ghz-13-mid-2009-128gb-ssd.png\",\n                \"large_image_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/large-apple-macbook-pro-core-2-duo-226-ghz-13-mid-2009-128gb-ssd.png\",\n                \"questions\": [\n                    {\n                        \"uid\": \"17873016814\",\n                        \"title\": \"Power On\",\n                        \"question\": \"Is your device eligible for trade-in?\",\n                        \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Issues powering on and off\\r\\n- <a href=\\\"http://phobiosupport.com/hrf_faq/how-do-signs-of-battery-swelling-affect-my-trade-value/\\\" target=\\\"_blank\\\">Signs of battery swelling</a>\",\n                        \"responses\": [\n                            {\n                                \"uid\": \"18000000001\",\n                                \"title\": \"True\",\n                                \"description\": \"True\"\n                            },\n                            {\n                                \"uid\": \"18000000002\",\n                                \"title\": \"False\",\n                                \"description\": \"False\"\n                            }\n                        ]\n                    },\n                    {\n                        \"uid\": \"17163645876\",\n                        \"title\": \"Operating System\",\n                        \"question\": \"Does the operating system load properly?\",\n                        \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Software boot-up errors\\r\\n- Software can't be installed\\r\\n- A blinking folder with a “?” displayed\\r\\n- <a href=\\\"http://phobiosupport.com/hrf_faq/what-are-the-accepted-screens-for-my-mac\\\" target=\\\"_blank\\\">View Accepted Mac Screens</a>\",\n                        \"responses\": [\n                            {\n                                \"uid\": \"18000000001\",\n                                \"title\": \"True\",\n                                \"description\": \"True\"\n                            },\n                            {\n                                \"uid\": \"18000000002\",\n                                \"title\": \"False\",\n                                \"description\": \"False\"\n                            }\n                        ]\n                    },\n                    {\n                        \"uid\": \"17181139258\",\n                        \"title\": \"Physical Damage\",\n                        \"question\": \"Is the device free of any physical damage?\",\n                        \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Broken or cracked screen\\r\\n- Malfunctioning screen (flickers, pixel loss, non-functioning backlight, lines in the screen)\\r\\n- Cracks, dents or severe scratches to the housing\\r\\n- Malfunctioning or missing buttons\",\n                        \"responses\": [\n                            {\n                                \"uid\": \"18000000001\",\n                                \"title\": \"True\",\n                                \"description\": \"True\"\n                            },\n                            {\n                                \"uid\": \"18000000002\",\n                                \"title\": \"False\",\n                                \"description\": \"False\"\n                            }\n                        ]\n                    },\n                    {\n                        \"uid\": \"17680791435\",\n                        \"title\": \"Power Adapter Included\",\n                        \"question\": \"Will the working power adapter be included?\",\n                        \"body\": \"\",\n                        \"responses\": [\n                            {\n                                \"uid\": \"18000000001\",\n                                \"title\": \"True\",\n                                \"description\": \"True\"\n                            },\n                            {\n                                \"uid\": \"18000000002\",\n                                \"title\": \"False\",\n                                \"description\": \"False\"\n                            }\n                        ]\n                    }\n                ]\n            },\n            \"created\": \"2018-06-05T18:57:18\",\n            \"modified\": \"2018-06-05T18:58:07\",\n            \"inspected\": null,\n            \"received\": null,\n            \"paid\": null,\n            \"shipments\": [],\n            \"adjustment_reasons\": [],\n            \"hold_expiry\": null,\n            \"partner_expected_price_in_cents\": 0,\n            \"quarantine\": {\n                \"offer_accepted_type\": null,\n                \"quarantine_expiry\": null,\n                \"offer_accepted\": null,\n                \"offer_rejected\": null,\n                \"offer_rejected_type\": null\n            },\n            \"reference_1\": null,\n            \"reference_2\": null,\n            \"invoice_uid\": \"30727651850\"\n        },\n        {\n            \"uid\": \"20547941151\",\n            \"condition\": \"damaged\",\n            \"local_price_in_cents\": 0,\n            \"local_typical_price_in_cents\": 0,\n            \"local_customer_price_in_cents\": 0,\n            \"local_typical_customer_price_in_cents\": 0,\n            \"original_local_price_in_cents\": 0,\n            \"original_local_typical_price_in_cents\": 0,\n            \"original_local_customer_price_in_cents\": 0,\n            \"original_local_typical_customer_price_in_cents\": 0,\n            \"local_currency_symbol\": \"USD\",\n            \"status\": \"quoted\",\n            \"imei\": null,\n            \"serial\": \"11118487236\",\n            \"product\": {\n                \"uid\": \"15848028971\",\n                \"title\": \"MacBook Pro Core 2 Duo 2.26 GHz 13\\\" (Mid 2009) 128GB SSD\",\n                \"manufacturer\": {\n                    \"slug\": \"apple\",\n                    \"title\": \"Apple\"\n                },\n                \"attributes\": {\n                    \"screen\": [\n                        {\n                            \"slug\": \"13\",\n                            \"title\": \"13\"\n                        }\n                    ],\n                    \"capacity\": [\n                        {\n                            \"slug\": \"128gb-ssd\",\n                            \"title\": \"128GB SSD\"\n                        }\n                    ],\n                    \"processor\": [\n                        {\n                            \"slug\": \"core-2-duo-226ghz\",\n                            \"title\": \"Core 2 Duo 2.26GHz\"\n                        }\n                    ],\n                    \"family\": [\n                        {\n                            \"slug\": \"macbook-pro\",\n                            \"title\": \"MacBook Pro\"\n                        }\n                    ],\n                    \"year\": [\n                        {\n                            \"slug\": \"2009\",\n                            \"title\": \"2009\"\n                        }\n                    ]\n                },\n                \"category\": {\n                    \"slug\": \"laptop\",\n                    \"title\": \"Laptop\"\n                },\n                \"icon_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/icon-apple-macbook-pro-core-2-duo-226-ghz-13-mid-2009-128gb-ssd.png\",\n                \"small_image_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/small-apple-macbook-pro-core-2-duo-226-ghz-13-mid-2009-128gb-ssd.png\",\n                \"large_image_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/large-apple-macbook-pro-core-2-duo-226-ghz-13-mid-2009-128gb-ssd.png\",\n                \"questions\": [\n                    {\n                        \"uid\": \"17873016814\",\n                        \"title\": \"Power On\",\n                        \"question\": \"Is your device eligible for trade-in?\",\n                        \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Issues powering on and off\\r\\n- <a href=\\\"http://phobiosupport.com/hrf_faq/how-do-signs-of-battery-swelling-affect-my-trade-value/\\\" target=\\\"_blank\\\">Signs of battery swelling</a>\",\n                        \"responses\": [\n                            {\n                                \"uid\": \"18000000001\",\n                                \"title\": \"True\",\n                                \"description\": \"True\"\n                            },\n                            {\n                                \"uid\": \"18000000002\",\n                                \"title\": \"False\",\n                                \"description\": \"False\"\n                            }\n                        ]\n                    },\n                    {\n                        \"uid\": \"17163645876\",\n                        \"title\": \"Operating System\",\n                        \"question\": \"Does the operating system load properly?\",\n                        \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Software boot-up errors\\r\\n- Software can't be installed\\r\\n- A blinking folder with a “?” displayed\\r\\n- <a href=\\\"http://phobiosupport.com/hrf_faq/what-are-the-accepted-screens-for-my-mac\\\" target=\\\"_blank\\\">View Accepted Mac Screens</a>\",\n                        \"responses\": [\n                            {\n                                \"uid\": \"18000000001\",\n                                \"title\": \"True\",\n                                \"description\": \"True\"\n                            },\n                            {\n                                \"uid\": \"18000000002\",\n                                \"title\": \"False\",\n                                \"description\": \"False\"\n                            }\n                        ]\n                    },\n                    {\n                        \"uid\": \"17181139258\",\n                        \"title\": \"Physical Damage\",\n                        \"question\": \"Is the device free of any physical damage?\",\n                        \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Broken or cracked screen\\r\\n- Malfunctioning screen (flickers, pixel loss, non-functioning backlight, lines in the screen)\\r\\n- Cracks, dents or severe scratches to the housing\\r\\n- Malfunctioning or missing buttons\",\n                        \"responses\": [\n                            {\n                                \"uid\": \"18000000001\",\n                                \"title\": \"True\",\n                                \"description\": \"True\"\n                            },\n                            {\n                                \"uid\": \"18000000002\",\n                                \"title\": \"False\",\n                                \"description\": \"False\"\n                            }\n                        ]\n                    },\n                    {\n                        \"uid\": \"17680791435\",\n                        \"title\": \"Power Adapter Included\",\n                        \"question\": \"Will the working power adapter be included?\",\n                        \"body\": \"\",\n                        \"responses\": [\n                            {\n                                \"uid\": \"18000000001\",\n                                \"title\": \"True\",\n                                \"description\": \"True\"\n                            },\n                            {\n                                \"uid\": \"18000000002\",\n                                \"title\": \"False\",\n                                \"description\": \"False\"\n                            }\n                        ]\n                    }\n                ]\n            },\n            \"created\": \"2018-06-05T18:57:18\",\n            \"modified\": \"2018-06-05T18:58:07\",\n            \"inspected\": null,\n            \"received\": null,\n            \"paid\": null,\n            \"shipments\": [],\n            \"adjustment_reasons\": [],\n            \"hold_expiry\": null,\n            \"partner_expected_price_in_cents\": 0,\n            \"quarantine\": {\n                \"offer_accepted_type\": null,\n                \"quarantine_expiry\": null,\n                \"offer_accepted\": null,\n                \"offer_rejected\": null,\n                \"offer_rejected_type\": null\n            },\n            \"ready_for_partner_payment\": null,\n            \"reference_1\": null,\n            \"reference_2\": null,\n            \"invoice_uid\": \"30727651850\"\n        }\n    ],\n    \"created\": \"2018-06-05T18:58:07\",\n    \"modified\": \"2018-06-05T18:58:07\",\n    \"reference_1\": null,\n    \"reference_2\": null\n}"}],"_postman_id":"c2948adc-c9c9-91c3-9967-ef84292eeacd"},{"name":"List Invoices","id":"12902e62-bb43-9a28-8852-f026c10c26fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"url":"https://phobio.com/api/v2/invoices/","description":"<p>List all active Invoices for the current API User</p>\n","urlObject":{"path":["invoices",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[]}},"response":[],"_postman_id":"12902e62-bb43-9a28-8852-f026c10c26fd"},{"name":"Deactivate Invoice","id":"b641785d-6f3e-dc8c-c069-474ee3c47190","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"formdata","formdata":[]},"url":"https://phobio.com/api/v2/invoices/:uid/","description":"<p>Deactivate an Invoice with a given Invoice UID. If any Trades on the Invoice have been submitted, it cannot be deactivated. A sucessful deletion will return HTTP 204, no content.</p>\n","urlObject":{"path":["invoices",":uid",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[{"description":{"content":"<p>Invoice UID</p>\n","type":"text/plain"},"type":"string","value":"30729343704","key":"uid"}]}},"response":[{"id":"61deb68f-3ed0-7c41-46d7-74781537b9d3","name":"Deactivate Invoice","originalRequest":{"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"https://phobio.com/api/v2/invoices/:uid/","host":["https://phobio.com/api/v2"],"path":["invoices",":uid",""],"variable":[{"key":"uid","value":"30244907074"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Allow","value":"GET, DELETE, HEAD, OPTIONS","name":"Allow","description":""},{"key":"Content-Language","value":"en","name":"Content-Language","description":""},{"key":"Content-Length","value":"0","name":"Content-Length","description":""},{"key":"Date","value":"Wed, 10 Jan 2018 21:54:12 GMT","name":"Date","description":""},{"key":"Server","value":"WSGIServer/0.1 Python/2.7.12","name":"Server","description":""},{"key":"Vary","value":"Accept-Language, Cookie","name":"Vary","description":""},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":""}],"cookie":[],"responseTime":"3133","body":""}],"_postman_id":"b641785d-6f3e-dc8c-c069-474ee3c47190"},{"name":"Update Customer Details","id":"83f32a5d-aeb6-4a84-bf89-0b4c6e08756c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"raw","raw":"{\n  \"first_name\": \"John\",\n  \"last_name\": \"Alexander\",\n  \"postal_code\": \"30339\"\n}"},"url":"https://phobio.com/api/v2/invoices/:uid/customer/","description":"<p>Customer information may be updated after Invoice confirmation through this PUT request. Partial updates are accepted, provide only that information which requires replacement.</p>\n<h6 id=\"json-body-parameters\">JSON Body Parameters</h6>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>first_name</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer first name</td>\n</tr>\n<tr>\n<td><code>last_name</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer last name</td>\n</tr>\n<tr>\n<td><code>phone</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer phone number</td>\n</tr>\n<tr>\n<td><code>email</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer email address</td>\n</tr>\n<tr>\n<td><code>address_1</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer address line 1</td>\n</tr>\n<tr>\n<td><code>address_2</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer address line 2</td>\n</tr>\n<tr>\n<td><code>city</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer city</td>\n</tr>\n<tr>\n<td><code>state</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer state</td>\n</tr>\n<tr>\n<td><code>postal_code</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer postal code</td>\n</tr>\n<tr>\n<td><code>country_code</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer two-letter country code</td>\n</tr>\n<tr>\n<td><code>id_type</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer identification type (driver's license, passport, etc)</td>\n</tr>\n<tr>\n<td><code>id_number</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer identification number (driver's license number, etc.)</td>\n</tr>\n<tr>\n<td><code>id_type_alternate</code></td>\n<td>string</td>\n<td>False</td>\n<td>Alternate customer identification type (driver's license, passport, etc)</td>\n</tr>\n<tr>\n<td><code>id_number_alternate</code></td>\n<td>string</td>\n<td>False</td>\n<td>Alternate customer identification number (driver's license number, etc.)</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["invoices",":uid","customer",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[{"description":{"content":"<p>Invoice UID</p>\n","type":"text/plain"},"type":"string","value":"30134288775","key":"uid"}]}},"response":[{"id":"b0ab919e-c28b-411f-9cf6-300fe593f38d","name":"Update Customer Details","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json","disabled":false},{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Accept-Language","value":"en-US","disabled":false}],"body":{"mode":"raw","raw":"{\n  \"first_name\": \"John\",\n  \"last_name\": \"Alexander\",\n  \"postal_code\": \"30339\"\n}"},"url":{"raw":"https://phobio.com/api/v2/invoices/:uid/customer/","host":["https://phobio.com/api/v2"],"path":["invoices",":uid","customer",""],"variable":[{"key":"uid","value":"30134288775","description":"Invoice UID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"PUT, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Content-Language","value":"en","name":"Content-Language","description":"The language the content is in"},{"key":"Content-Length","value":"287","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 04 Jun 2018 14:59:48 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"WSGIServer/0.1 Python/2.7.12","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Accept-Language, Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"}],"cookie":[],"responseTime":null,"body":"{\"first_name\":\"John\",\"last_name\":\"Alexander\",\"phone\":null,\"email\":\"arnold42@cellularstorenetwork.org\",\"id_type\":null,\"id_number\":null,\"id_type_alternate\":null,\"id_number_alternate\":null,\"address_1\":null,\"address_2\":null,\"city\":null,\"state\":null,\"postal_code\":\"30339\",\"country_code\":null}"}],"_postman_id":"83f32a5d-aeb6-4a84-bf89-0b4c6e08756c"},{"name":"Accept Quarantine Value","id":"cdd03bd2-658a-465d-9eca-89e1f4268356","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"raw","raw":""},"url":"https://phobio.com/api/v2/invoices/:uid/quarantine_accept/","description":"<p>When a consumer trade has had its value adjusted (due to unreported damage, etc.) it enters a quarantine state. In order to accept the changed value, a call must be made to the <code>quarantine_accept</code> endpoint. If no action taken the trade will automatically be returned to the customer at the end of the quarantine period.</p>\n","urlObject":{"path":["invoices",":uid","quarantine_accept",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[{"description":{"content":"<p>Invoice UID</p>\n","type":"text/plain"},"type":"string","value":"30134288775","key":"uid"}]}},"response":[],"_postman_id":"cdd03bd2-658a-465d-9eca-89e1f4268356"},{"name":"Reject Quarantine Value","id":"c6aab577-c8d5-44c6-ad99-68c429843687","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"raw","raw":""},"url":"https://phobio.com/api/v2/invoices/:uid/quarantine_reject/","description":"<p>When a consumer trade has had its value adjusted (due to unreported damage, etc.) it enters a quarantine state. In order to reject the changed value and return the device to the customer, a call should be made to the <code>quarantine_reject</code> endpoint.</p>\n","urlObject":{"path":["invoices",":uid","quarantine_reject",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[{"description":{"content":"<p>Invoice UID</p>\n","type":"text/plain"},"type":"string","value":"30134288775","key":"uid"}]}},"response":[],"_postman_id":"c6aab577-c8d5-44c6-ad99-68c429843687"},{"name":"Request Return","id":"155905d8-6782-4771-917a-028f506868c4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"raw","raw":""},"url":"https://phobio.com/api/v2/invoices/:uid/request_return/","urlObject":{"path":["invoices",":uid","request_return",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[{"description":{"content":"<p>Invoice UID</p>\n","type":"text/plain"},"type":"string","value":"30134288775","key":"uid"}]}},"response":[],"_postman_id":"155905d8-6782-4771-917a-028f506868c4"}],"id":"696b1467-3d0b-5ad9-dbc1-e9766f28c4d2","description":"<p>In order to accept a Quote, you must create an Invoice. This, in effect, confirms the trade and returns a unique Invoice number which Phobio uses to track trades and generate receipts. Invoice UIDs can be used to look up Invoice and Trade status.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"2fd49fba-2383-4a7e-834e-8925ddae8adc","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"668be297-de9c-470f-a9d9-ced6cf85799a","type":"text/javascript","exec":[""]}}],"_postman_id":"696b1467-3d0b-5ad9-dbc1-e9766f28c4d2"},{"name":"Trades","item":[{"name":"Get Trade","id":"1cfb0d3a-c0e8-643d-4b1a-b8888437b6e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"url":"https://phobio.com/api/v2/trades/:uid/","description":"<p>Get Trade by Trade UID</p>\n","urlObject":{"path":["trades",":uid",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[{"description":{"content":"<p>Trade UID</p>\n","type":"text/plain"},"type":"string","value":"20270100272","key":"uid"}]}},"response":[{"id":"9f037c83-158e-46a6-bcdd-41c25b71e9d9","name":"Get Trade","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","disabled":false},{"key":"Content-Type","value":"application/json","disabled":false},{"key":"Accept-Language","value":"en-US","disabled":false}],"url":{"raw":"https://phobio.com/api/v2/trades/:uid/","host":["https://phobio.com/api/v2"],"path":["trades",":uid",""],"variable":[{"key":"uid","value":"20270100272","description":"Trade UID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Content-Language","value":"en","name":"Content-Language","description":"The language the content is in"},{"key":"Content-Length","value":"3467","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Mon, 11 Jun 2018 13:55:42 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"WSGIServer/0.1 Python/2.7.12","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Accept-Language, Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"}],"cookie":[],"responseTime":null,"body":"{\n    \"uid\": \"20270100272\",\n    \"condition\": \"working\",\n    \"local_price_in_cents\": 5000,\n    \"local_typical_price_in_cents\": 5000,\n    \"local_customer_price_in_cents\": 5000,\n    \"local_typical_customer_price_in_cents\": 5000,\n    \"original_local_price_in_cents\": 5000,\n    \"original_local_typical_price_in_cents\": 5000,\n    \"original_local_customer_price_in_cents\": 5000,\n    \"original_local_typical_customer_price_in_cents\": 5000,\n    \"local_currency_symbol\": \"USD\",\n    \"status\": \"quoted\",\n    \"imei\": null,\n    \"serial\": \"11111167265\",\n    \"product\": {\n        \"uid\": \"15848028971\",\n        \"title\": \"MacBook Pro Core 2 Duo 2.26 GHz 13\\\" (Mid 2009) 128GB SSD\",\n        \"manufacturer\": {\n            \"slug\": \"apple\",\n            \"title\": \"Apple\"\n        },\n        \"attributes\": {\n            \"screen\": [\n                {\n                    \"slug\": \"13\",\n                    \"title\": \"13\"\n                }\n            ],\n            \"capacity\": [\n                {\n                    \"slug\": \"128gb-ssd\",\n                    \"title\": \"128GB SSD\"\n                }\n            ],\n            \"processor\": [\n                {\n                    \"slug\": \"core-2-duo-226ghz\",\n                    \"title\": \"Core 2 Duo 2.26GHz\"\n                }\n            ],\n            \"family\": [\n                {\n                    \"slug\": \"macbook-pro\",\n                    \"title\": \"MacBook Pro\"\n                }\n            ],\n            \"year\": [\n                {\n                    \"slug\": \"2009\",\n                    \"title\": \"2009\"\n                }\n            ]\n        },\n        \"category\": {\n            \"slug\": \"laptop\",\n            \"title\": \"Laptop\"\n        },\n        \"icon_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/icon-apple-macbook-pro-core-2-duo-226-ghz-13-mid-2009-128gb-ssd.png\",\n        \"small_image_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/small-apple-macbook-pro-core-2-duo-226-ghz-13-mid-2009-128gb-ssd.png\",\n        \"large_image_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/large-apple-macbook-pro-core-2-duo-226-ghz-13-mid-2009-128gb-ssd.png\",\n        \"questions\": [\n            {\n                \"uid\": \"17873016814\",\n                \"title\": \"Power On\",\n                \"question\": \"Is your device eligible for trade-in?\",\n                \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Issues powering on and off\\r\\n- <a href=\\\"http://phobiosupport.com/hrf_faq/how-do-signs-of-battery-swelling-affect-my-trade-value/\\\" target=\\\"_blank\\\">Signs of battery swelling</a>\",\n                \"responses\": [\n                    {\n                        \"uid\": \"18000000001\",\n                        \"title\": \"True\",\n                        \"description\": \"True\"\n                    },\n                    {\n                        \"uid\": \"18000000002\",\n                        \"title\": \"False\",\n                        \"description\": \"False\"\n                    }\n                ]\n            },\n            {\n                \"uid\": \"17163645876\",\n                \"title\": \"Operating System\",\n                \"question\": \"Does the operating system load properly?\",\n                \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Software boot-up errors\\r\\n- Software can't be installed\\r\\n- A blinking folder with a “?” displayed\\r\\n- <a href=\\\"http://phobiosupport.com/hrf_faq/what-are-the-accepted-screens-for-my-mac\\\" target=\\\"_blank\\\">View Accepted Mac Screens</a>\",\n                \"responses\": [\n                    {\n                        \"uid\": \"18000000001\",\n                        \"title\": \"True\",\n                        \"description\": \"True\"\n                    },\n                    {\n                        \"uid\": \"18000000002\",\n                        \"title\": \"False\",\n                        \"description\": \"False\"\n                    }\n                ]\n            },\n            {\n                \"uid\": \"17181139258\",\n                \"title\": \"Physical Damage\",\n                \"question\": \"Is the device free of any physical damage?\",\n                \"body\": \"Select \\\"No\\\" if the device has:\\r\\n\\r\\n- Broken or cracked screen\\r\\n- Malfunctioning screen (flickers, pixel loss, non-functioning backlight, lines in the screen)\\r\\n- Cracks, dents or severe scratches to the housing\\r\\n- Malfunctioning or missing buttons\",\n                \"responses\": [\n                    {\n                        \"uid\": \"18000000001\",\n                        \"title\": \"True\",\n                        \"description\": \"True\"\n                    },\n                    {\n                        \"uid\": \"18000000002\",\n                        \"title\": \"False\",\n                        \"description\": \"False\"\n                    }\n                ]\n            },\n            {\n                \"uid\": \"17680791435\",\n                \"title\": \"Power Adapter Included\",\n                \"question\": \"Will the working power adapter be included?\",\n                \"body\": \"\",\n                \"responses\": [\n                    {\n                        \"uid\": \"18000000001\",\n                        \"title\": \"True\",\n                        \"description\": \"True\"\n                    },\n                    {\n                        \"uid\": \"18000000002\",\n                        \"title\": \"False\",\n                        \"description\": \"False\"\n                    }\n                ]\n            }\n        ]\n    },\n    \"created\": \"2018-06-05T18:57:18\",\n    \"modified\": \"2018-06-05T18:58:07\",\n    \"inspected\": null,\n    \"received\": null,\n    \"paid\": null,\n    \"shipments\": [],\n    \"adjustment_reasons\": [],\n    \"hold_expiry\": null,\n    \"partner_expected_price_in_cents\": 0,\n    \"quarantine\": {\n        \"offer_accepted_type\": null,\n        \"quarantine_expiry\": null,\n        \"offer_accepted\": null,\n        \"offer_rejected\": null,\n        \"offer_rejected_type\": null\n    },\n    \"ready_for_partner_payment\": null,\n    \"reference_1\": null,\n    \"reference_2\": null,\n    \"invoice_uid\": \"30727651850\"\n}"}],"_postman_id":"1cfb0d3a-c0e8-643d-4b1a-b8888437b6e7"},{"name":"List Trades","id":"ffdfb5e7-e376-3cd4-26be-51837441c6f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"url":"https://phobio.com/api/v2/trades/","description":"<p>List all active Trades for the current API User.</p>\n","urlObject":{"path":["trades",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[]}},"response":[],"_postman_id":"ffdfb5e7-e376-3cd4-26be-51837441c6f0"},{"name":"Accept Quarantine Value","id":"66480366-8c24-4139-82f5-2692b9ba2232","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"raw","raw":""},"url":"https://phobio.com/api/v2/trades/:uid/quarantine_accept/","description":"<p>When a consumer trade has had its value adjusted (due to unreported damage, etc.) it enters a quarantine state. In order to accept the changed value, a call must be made to the <code>quarantine_accept</code> endpoint. If no action taken the trade will automatically be returned to the customer at the end of the quarantine period.</p>\n","urlObject":{"path":["trades",":uid","quarantine_accept",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[{"description":{"content":"<p>Trade UID</p>\n","type":"text/plain"},"type":"string","value":"20192839948","key":"uid"}]}},"response":[],"_postman_id":"66480366-8c24-4139-82f5-2692b9ba2232"},{"name":"Reject Quarantine Value","id":"a5878203-c4bd-4fe4-a1e8-9e21122c440f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"raw","raw":""},"url":"https://phobio.com/api/v2/trades/:uid/quarantine_reject/","description":"<p>When a consumer trade has had its value adjusted (due to unreported damage, etc.) it enters a quarantine state. In order to reject the changed value and return the device to the customer, a call should be made to the <code>quarantine_reject</code> endpoint.</p>\n","urlObject":{"path":["trades",":uid","quarantine_reject",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[{"description":{"content":"<p>Trade UID</p>\n","type":"text/plain"},"type":"string","value":"20192839948","key":"uid"}]}},"response":[],"_postman_id":"a5878203-c4bd-4fe4-a1e8-9e21122c440f"},{"name":"Request Reship","id":"f2e68709-2ed4-428a-b171-1b4643198a9b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"raw","raw":"{\n    \"first_name\": \"Arnold\",\n    \"last_name\": \"Fitzpatrick\",\n    \"email\": \"arnold42@cellularstorenetwork.org\",\n    \"phone\": \"800-353-9028\",\n    \"address_1\": \"3100 Cumberland Blvd. SE\",\n    \"address_2\": \"Suite 200\",\n    \"city\": \"Atlanta\",\n    \"state\": \"GA\",\n    \"postal_code\": \"30339\",\n    \"product\": \"Apple iPhone 8 64GB Sprint\"\n }"},"url":"https://phobio.com/api/v2/trades/:uid/request_reship/","description":"<p>Handles reship requests. Reship requests usually happen when the customer claims the box for shipping their device did not arrive.</p>\n<h5 id=\"json-body-parameters\">JSON Body Parameters</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>first_name</code></td>\n<td>string</td>\n<td>False</td>\n<td>First name of customer</td>\n</tr>\n<tr>\n<td><code>last_name</code></td>\n<td>string</td>\n<td>False</td>\n<td>Last name of customer</td>\n</tr>\n<tr>\n<td><code>email</code></td>\n<td>string</td>\n<td>False</td>\n<td>Email address of customer</td>\n</tr>\n<tr>\n<td><code>phone</code></td>\n<td>string</td>\n<td>False</td>\n<td>Phone number of customer</td>\n</tr>\n<tr>\n<td><code>address_1</code></td>\n<td>string</td>\n<td>True</td>\n<td>First line of address of customer</td>\n</tr>\n<tr>\n<td><code>address_2</code></td>\n<td>string</td>\n<td>True</td>\n<td>Second line of address of customer</td>\n</tr>\n<tr>\n<td><code>city</code></td>\n<td>string</td>\n<td>True</td>\n<td>City of customer</td>\n</tr>\n<tr>\n<td><code>state</code></td>\n<td>string</td>\n<td>True</td>\n<td>State of customer</td>\n</tr>\n<tr>\n<td><code>postal_code</code></td>\n<td>string</td>\n<td>True</td>\n<td>Postal code of customer</td>\n</tr>\n<tr>\n<td><code>product</code></td>\n<td>string</td>\n<td>False</td>\n<td>Product the customer is shipping</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["trades",":uid","request_reship",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[{"type":"string","value":"","key":"uid"}]}},"response":[],"_postman_id":"f2e68709-2ed4-428a-b171-1b4643198a9b"},{"name":"Request Return","id":"0e1796b7-9f35-425b-a1d0-f391dec9a373","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"raw","raw":""},"url":"https://phobio.com/api/v2/trades/:uid/request_return/","urlObject":{"path":["trades",":uid","request_return",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[{"description":{"content":"<p>Trade UID</p>\n","type":"text/plain"},"type":"string","value":"20192839948","key":"uid"}]}},"response":[],"_postman_id":"0e1796b7-9f35-425b-a1d0-f391dec9a373"},{"name":"Mark as Partner Paid","id":"376ae89b-2b03-472e-8021-6ef4e1969f9a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"raw","raw":"{\n\t\"paid_date\": \"2018-04-23T18:25:43.000Z\"\n}"},"url":"https://phobio.com/api/v2/trades/:uid/mark_as_partner_paid/","description":"<h5 id=\"json-body-parameters\">JSON Body Parameters</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>paid_date</code></td>\n<td>string</td>\n<td>False</td>\n<td>A new partner paid date.  If not provided defaults to current date/time. ISO-8601 Formatted.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["trades",":uid","mark_as_partner_paid",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[{"description":{"content":"<p>Trade UID</p>\n","type":"text/plain"},"type":"string","value":"20192839948","key":"uid"}]}},"response":[],"_postman_id":"376ae89b-2b03-472e-8021-6ef4e1969f9a"},{"name":"Update IMEI","id":"bf77e298-742c-461a-ad45-cb7955cc3f9c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"raw","raw":"{\n  \"imei\": \"867970021632084\"\n}"},"url":"https://phobio.com/api/v2/trades/:uid/imei/","description":"<h5 id=\"json-body-parameters\">JSON Body Parameters</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>imei</code></td>\n<td>string</td>\n<td>True</td>\n<td>A new device IMEI number for this Trade. It will not overwrite an exisitng IMEI number.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["trades",":uid","imei",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[{"description":{"content":"<p>Trade UID</p>\n","type":"text/plain"},"type":"string","value":"20192839948","key":"uid"}]}},"response":[],"_postman_id":"bf77e298-742c-461a-ad45-cb7955cc3f9c"},{"name":"Update Lock Status","id":"9826650f-52eb-4019-9563-1d13367a7250","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"raw","raw":"{\n  \"partner_lock_status\": \"freed\"\n}"},"url":"https://phobio.com/api/v2/trades/:uid/update_lock_status/","description":"<h5 id=\"json-body-parameters\">JSON Body Parameters</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>partner_lock_status</code></td>\n<td>string</td>\n<td>True</td>\n<td>A new device lock status to set for this Trade, indicating what the partner has determined the activation lock status to be. Acceptable statuses are <code>locked</code>, <code>unlocked</code>, <code>verified_locked</code>, <code>verified_unlocked</code>, and <code>freed</code>. This field is for informational use only, and has no functional purpose.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["trades",":uid","update_lock_status",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[{"description":{"content":"<p>Trade UID</p>\n","type":"text/plain"},"type":"string","value":"20192839948","key":"uid"}]}},"response":[],"_postman_id":"9826650f-52eb-4019-9563-1d13367a7250"},{"name":"Update Serial","id":"260453a1-4ff1-48d1-8962-8ad9f3105bc7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"raw","raw":"{\n  \"serial\": \"DLXWC0R9HND6\"\n}"},"url":"https://phobio.com/api/v2/trades/:uid/serial/","description":"<h5 id=\"json-body-parameters\">JSON Body Parameters</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>serial</code></td>\n<td>string</td>\n<td>True</td>\n<td>A new device serial number for this Trade. It will not overwrite an existing serial number.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["trades",":uid","serial",""],"host":["https://phobio.com/api/v2"],"query":[{"key":"","value":""}],"variable":[{"description":{"content":"<p>Trade UID</p>\n","type":"text/plain"},"type":"string","value":"20192839948","key":"uid"}]}},"response":[],"_postman_id":"260453a1-4ff1-48d1-8962-8ad9f3105bc7"}],"id":"c74f3418-6a0e-5e96-de6f-133cc690d892","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"2dc51970-5a50-4c6f-85c6-ce98ba9a8956","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"5756c584-34b9-4c97-8712-e0681497dc3a","type":"text/javascript","exec":[""]}}],"_postman_id":"c74f3418-6a0e-5e96-de6f-133cc690d892","description":""},{"name":"Shipments","item":[{"name":"Create Shipment","id":"11463f8f-eec2-2cf6-9546-c6066220d8ec","request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"raw","raw":"{\n\t\"invoices\": [\n\t\t\"30826951193\",\n\t\t\"30955625089\"\n\t]\n}"},"url":"https://phobio.com/api/v2/shipments/","description":"<p>Create a Shipment with Invoices to send in to Phobio. This method requires a JSON object described below with the Invoices being shipped:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>invoices</code></td>\n<td>list</td>\n<td>True</td>\n<td>A list of Invoice UIDs to be added to the new Shipment</td>\n</tr>\n<tr>\n<td><code>shipping_label_format</code></td>\n<td>string</td>\n<td>False</td>\n<td>Valid values are <code>png</code> or <code>pdf</code>; defaults to <code>pdf</code></td>\n</tr>\n<tr>\n<td><code>reference_1</code></td>\n<td>string</td>\n<td>False</td>\n<td>Company specific reference metadata</td>\n</tr>\n<tr>\n<td><code>reference_2</code></td>\n<td>string</td>\n<td>False</td>\n<td>Company specific reference metadata</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["shipments",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[]}},"response":[],"_postman_id":"11463f8f-eec2-2cf6-9546-c6066220d8ec"},{"name":"Create Consumer Shipment","id":"5d1d371c-9da4-4d95-aff7-50852c1f0fd2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"raw","raw":"{\n\t\"invoice\": \"30603220085\"\n}"},"url":"https://phobio.com/api/v2/shipments/consumer_shipment/","description":"<p>Create a shipment for a consumer Trade. Generates a shipment and shipping label packet for a given Invoice. This shipping label packet is a consumer-facing document that can be printed by the consumer and used to mail their device to Phobio.</p>\n<p> This method requires a JSON object described below with the Invoice being shipped:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>invoice</code></td>\n<td>string</td>\n<td>True</td>\n<td>A single Invoice UID to be added to the new Shipment</td>\n</tr>\n<tr>\n<td><code>shipping_label_format</code></td>\n<td>string</td>\n<td>False</td>\n<td>Valid values are <code>png</code> or <code>pdf</code>; defaults to <code>pdf</code></td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["shipments","consumer_shipment",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[]}},"response":[{"id":"396ed5b5-500f-4cf2-bd94-ae39cf0dfad0","name":"Create Consumer Shipment","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"raw","raw":"{\n    \"invoice\": \"30603220085\",\n    \"shipping_label_format\": \"pdf\"\n}","options":{"raw":{"language":"json"}}},"url":"https://phobio.com/api/v2/shipments/consumer_shipment/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 10 Oct 2019 16:19:33 GMT"},{"key":"Server","value":"WSGIServer/0.1 Python/2.7.14"},{"key":"Content-Length","value":"4331"},{"key":"Content-Language","value":"en"},{"key":"Vary","value":"Accept-Language, Cookie"},{"key":"Allow","value":"POST, OPTIONS"},{"key":"X-Frame-Options","value":"DENY"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"uid\": \"40510302702\",\n    \"shipping_label_full_url\": \"https://s3.amazonaws.com/media.phobio.com/shipment_labels/40510302702-2019-10-10-2619358.pdf\",\n    \"tracking_number\": \"800027215327878\",\n    \"tracking_service_status\": \"Tracking Not Found\",\n    \"invoices\": [\n        {\n            \"uid\": \"30603220085\",\n            \"promo\": null,\n            \"local_total_in_cents\": 23000,\n            \"local_typical_total_in_cents\": 23000,\n            \"local_customer_total_in_cents\": 23000,\n            \"local_typical_customer_total_in_cents\": 23000,\n            \"original_local_total_in_cents\": 23000,\n            \"original_local_typical_total_in_cents\": 23000,\n            \"original_local_customer_total_in_cents\": 23000,\n            \"original_local_typical_customer_total_in_cents\": 23000,\n            \"payment_details\": {\n                \"confirmation_number\": null,\n                \"paid\": null,\n                \"payment_option_slug\": null\n            },\n            \"local_currency_symbol\": \"USD\",\n            \"customer\": {\n                \"first_name\": \"Leonardo\",\n                \"last_name\": \"Simmons\",\n                \"phone\": null,\n                \"email\": \"leo@itsleo.com\",\n                \"id_type\": null,\n                \"id_number\": null,\n                \"id_type_alternate\": null,\n                \"id_number_alternate\": null,\n                \"address_1\": null,\n                \"address_2\": null,\n                \"city\": null,\n                \"state\": null,\n                \"postal_code\": null,\n                \"country_code\": null\n            },\n            \"barcode_full_url\": \"https://phobio.com/inventory/barcode/30603220085/\",\n            \"trades\": [\n                {\n                    \"uid\": \"20544380486\",\n                    \"condition\": \"working\",\n                    \"local_price_in_cents\": 23000,\n                    \"local_typical_price_in_cents\": 23000,\n                    \"local_customer_price_in_cents\": 23000,\n                    \"local_typical_customer_price_in_cents\": 23000,\n                    \"original_local_price_in_cents\": 23000,\n                    \"original_local_typical_price_in_cents\": 23000,\n                    \"original_local_customer_price_in_cents\": 23000,\n                    \"original_local_typical_customer_price_in_cents\": 23000,\n                    \"local_currency_symbol\": \"USD\",\n                    \"status\": \"quoted\",\n                    \"original_imei\": \"29883746288\",\n                    \"imei\": \"29883746288\",\n                    \"original_serial\": null,\n                    \"serial\": null,\n                    \"product\": {\n                        \"uid\": \"15536428194\",\n                        \"title\": \"OnePlus 7 256GB\",\n                        \"manufacturer\": {\n                            \"slug\": \"oneplus\",\n                            \"title\": \"OnePlus\"\n                        },\n                        \"attributes\": {\n                            \"capacity\": [\n                                {\n                                    \"slug\": \"256gb\",\n                                    \"title\": \"256GB\"\n                                }\n                            ],\n                            \"network\": [\n                                {\n                                    \"slug\": \"gsm\",\n                                    \"title\": \"gsm\"\n                                }\n                            ],\n                            \"family\": [\n                                {\n                                    \"slug\": \"oneplus-7\",\n                                    \"title\": \"OnePlus 7\"\n                                }\n                            ]\n                        },\n                        \"category\": {\n                            \"slug\": \"phone\",\n                            \"title\": \"Phone\"\n                        },\n                        \"icon_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/icon-oneplus-oneplus-7-256gb.jpg\",\n                        \"small_image_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/small-oneplus-oneplus-7-256gb.jpg\",\n                        \"large_image_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/large-oneplus-oneplus-7-256gb.jpg\",\n                        \"questions\": [\n                            {\n                                \"uid\": \"17983361514\",\n                                \"title\": \"Android - Eligible\",\n                                \"question\": \"Is the device eligible for trade-in?\",\n                                \"body\": \"Select No if the device:\\r\\n\\r\\n- has a swollen battery\\r\\n\\r\\n- does not power on\\r\\n\\r\\n- is lost/stolen\\r\\n\\r\\n- is finance locked\\r\\n\\r\\n- is activation locked\",\n                                \"responses\": [\n                                    {\n                                        \"uid\": \"18000000001\",\n                                        \"title\": \"True\",\n                                        \"description\": \"True\"\n                                    },\n                                    {\n                                        \"uid\": \"18000000002\",\n                                        \"title\": \"False\",\n                                        \"description\": \"False\"\n                                    }\n                                ]\n                            },\n                            {\n                                \"uid\": \"17175901234\",\n                                \"title\": \"Function Properly\",\n                                \"question\": \"Does the device function properly?\",\n                                \"body\": \"Select NO if:\\r\\n\\r\\n- the touchscreen has any display impairments or is not responsive\\r\\n\\r\\n- the buttons and camera do not work as they should\",\n                                \"responses\": [\n                                    {\n                                        \"uid\": \"18000000001\",\n                                        \"title\": \"True\",\n                                        \"description\": \"True\"\n                                    },\n                                    {\n                                        \"uid\": \"18000000002\",\n                                        \"title\": \"False\",\n                                        \"description\": \"False\"\n                                    }\n                                ]\n                            },\n                            {\n                                \"uid\": \"17999380920\",\n                                \"title\": \"Good Cosmetic Condition\",\n                                \"question\": \"Is the device in good cosmetic condition?\",\n                                \"body\": \"Select No if the device has:\\r\\n\\r\\n- cracks or severe scratches on the housing, screen or camera\\r\\n\\r\\n- signs of water damage\",\n                                \"responses\": [\n                                    {\n                                        \"uid\": \"18000000001\",\n                                        \"title\": \"True\",\n                                        \"description\": \"True\"\n                                    },\n                                    {\n                                        \"uid\": \"18000000002\",\n                                        \"title\": \"False\",\n                                        \"description\": \"False\"\n                                    }\n                                ]\n                            }\n                        ]\n                    },\n                    \"created\": \"2019-10-10T16:09:30\",\n                    \"modified\": \"2019-10-10T16:13:37\",\n                    \"inspected\": null,\n                    \"received\": null,\n                    \"paid\": null,\n                    \"shipments\": [],\n                    \"adjustment_reasons\": [],\n                    \"hold_expiry\": null,\n                    \"pricing_date\": null,\n                    \"partner_expected_price_in_cents\": 0,\n                    \"quarantine\": {},\n                    \"ready_for_partner_payment\": null,\n                    \"partner_lock_status\": null,\n                    \"reference_1\": null,\n                    \"reference_2\": null,\n                    \"was_mulligan\": false,\n                    \"partner_paid_date\": null\n                }\n            ],\n            \"created\": \"2019-10-10T16:13:37\",\n            \"modified\": \"2019-10-10T16:13:37\",\n            \"reference_1\": null,\n            \"reference_2\": null\n        }\n    ],\n    \"company_location\": {\n        \"uid\": \"89553070627\",\n        \"name\": \"Atlanta Headquarters\"\n    },\n    \"created\": \"2019-10-10T16:19:30\",\n    \"modified\": \"2019-10-10T16:19:33\",\n    \"shipped\": null,\n    \"received\": null,\n    \"processed\": null,\n    \"tracking_service_expected_delivery\": null,\n    \"tracking_service_delivery\": null,\n    \"shipping_service_type_display\": \"FedEx Ground\",\n    \"tracking_service_status_display\": \"Tracking Not Found\",\n    \"print_at_home\": true\n}"}],"_postman_id":"5d1d371c-9da4-4d95-aff7-50852c1f0fd2"},{"name":"Get Shipments","id":"69a726e9-927c-85aa-36ae-041ad46826c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"url":"https://phobio.com/api/v2/shipments/:uid/","description":"<p>Get Shipment by Shipment UID</p>\n","urlObject":{"path":["shipments",":uid",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[{"description":{"content":"<p>Shipment UID</p>\n","type":"text/plain"},"type":"string","value":"40424577472","key":"uid"}]}},"response":[{"id":"c5adc126-b136-6c37-7113-0d3de29f2171","name":"Get Shipments","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"https://phobio.com/api/v2/shipments/:uid/","host":["https://phobio.com/api/v2"],"path":["shipments",":uid",""],"variable":[{"key":"uid","value":"40424577472","description":"Shipment UID"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, HEAD, OPTIONS","name":"Allow","description":""},{"key":"Content-Language","value":"en","name":"Content-Language","description":""},{"key":"Content-Length","value":"3892","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 18 Jan 2018 03:26:45 GMT","name":"Date","description":""},{"key":"Server","value":"WSGIServer/0.1 Python/2.7.12","name":"Server","description":""},{"key":"Vary","value":"Accept-Language, Cookie","name":"Vary","description":""},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":""}],"cookie":[],"responseTime":"823","body":"{\n    \"uid\": \"40424577472\",\n    \"shipping_label_full_url\": \"https://s3.amazonaws.com/media.phobio.com/shipment_labels/40424577472-2013-11-07-8d13712.pdf\",\n    \"tracking_number\": \"797109731240\",\n    \"invoices\": [\n        {\n            \"uid\": \"30235480131\",\n            \"promo\": null,\n            \"local_total_in_cents\": 17500,\n            \"local_typical_total_in_cents\": 17500,\n            \"local_customer_total_in_cents\": 17500,\n            \"local_typical_customer_total_in_cents\": 0,\n            \"original_local_total_in_cents\": 17500,\n            \"original_local_typical_total_in_cents\": 17500,\n            \"original_local_customer_total_in_cents\": 17500,\n            \"original_local_typical_customer_total_in_cents\": 0,\n            \"local_currency_symbol\": \"USD\",\n            \"customer\": {\n                \"first_name\": \"Test\",\n                \"last_name\": \"Test\",\n                \"phone\": null,\n                \"email\": null,\n                \"identification_type\": \"drivers_license\",\n                \"identification_number\": \"\",\n                \"alternate_identification_type\": null,\n                \"alternate_identification_number\": null\n            },\n            \"barcode_full_url\": \"http://localhost:8000/inventory/barcode/30235480131/\",\n            \"trades\": [\n                {\n                    \"uid\": \"20543724890\",\n                    \"condition\": \"working\",\n                    \"local_price_in_cents\": 17500,\n                    \"local_typical_price_in_cents\": 17500,\n                    \"local_customer_price_in_cents\": 17500,\n                    \"local_typical_customer_price_in_cents\": 0,\n                    \"original_local_price_in_cents\": 17500,\n                    \"original_local_typical_price_in_cents\": 17500,\n                    \"original_local_customer_price_in_cents\": 17500,\n                    \"original_local_typical_customer_price_in_cents\": 0,\n                    \"local_currency_symbol\": \"USD\",\n                    \"status\": \"quoted\",\n                    \"imei\": null,\n                    \"serial\": null,\n                    \"product\": {\n                        \"uid\": \"15762887642\",\n                        \"title\": \"iPhone 4S 16GB GSM\",\n                        \"manufacturer\": {\n                            \"slug\": \"apple\",\n                            \"title\": \"Apple\"\n                        },\n                        \"attributes\": {\n                            \"carrier\": [\n                                {\n                                    \"slug\": \"t-mobile\",\n                                    \"title\": \"T-Mobile\"\n                                },\n                                {\n                                    \"slug\": \"att\",\n                                    \"title\": \"AT&T\"\n                                },\n                                {\n                                    \"slug\": \"optus\",\n                                    \"title\": \"Optus\"\n                                },\n                                {\n                                    \"slug\": \"telstra\",\n                                    \"title\": \"Telstra\"\n                                },\n                                {\n                                    \"slug\": \"vodafone\",\n                                    \"title\": \"Vodafone\"\n                                }\n                            ],\n                            \"capacity\": [\n                                {\n                                    \"slug\": \"16gb\",\n                                    \"title\": \"16GB\"\n                                }\n                            ],\n                            \"network\": [\n                                {\n                                    \"slug\": \"gsm\",\n                                    \"title\": \"gsm\"\n                                }\n                            ]\n                        },\n                        \"category\": {\n                            \"slug\": \"phone\",\n                            \"title\": \"Phone\"\n                        },\n                        \"icon_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/icon-apple-iphone-4s-16gb-gsm.jpg\",\n                        \"small_image_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/small-apple-iphone-4s-16gb-gsm.jpg\",\n                        \"large_image_full_url\": \"https://s3.amazonaws.com/media.phobio.com/product_images/large-apple-iphone-4s-16gb-gsm.jpg\"\n                    },\n                    \"created\": \"2013-10-17T13:44:30\",\n                    \"modified\": \"2013-10-17T13:44:30\",\n                    \"paid\": null,\n                    \"reference_1\": null,\n            \t\t\"reference_2\": null\n                }\n            ],\n            \"created\": \"2013-10-17T13:44:30\",\n            \"modified\": \"2013-10-17T13:44:30\",\n            \"reference_1\": null,\n            \"reference_2\": null\n        }\n    ],\n    \"company_location\": {\n        \"uid\": \"00000000001\",\n        \"name\": \"US Logistics HQ\"\n    },\n    \"created\": \"2013-11-07T23:46:37\",\n    \"modified\": \"2013-11-11T20:20:46\",\n    \"shipped\": null,\n    \"received\": null,\n    \"processed\": null\n}"}],"_postman_id":"69a726e9-927c-85aa-36ae-041ad46826c6"},{"name":"List Shipments","id":"ac5a151f-05bf-f506-9007-7ec8845ce3bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"url":"https://phobio.com/api/v2/shipments/","description":"<p>List all active Shipments for the current API User</p>\n","urlObject":{"path":["shipments",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[]}},"response":[],"_postman_id":"ac5a151f-05bf-f506-9007-7ec8845ce3bc"}],"id":"33a8b247-348a-1fd2-2b16-ac7e0aee2659","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"76d1df82-db7a-4aa2-afd4-bb4b20b25741","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"589444ba-df7e-4ba7-9761-7b0fa5fe4ff6","type":"text/javascript","exec":[""]}}],"_postman_id":"33a8b247-348a-1fd2-2b16-ac7e0aee2659","description":""},{"name":"Users","item":[{"name":"List Users","id":"5a039903-e704-6bc3-8b75-c3418c6aec6b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"url":"https://phobio.com/api/v2/users/","description":"<p>List all active users</p>\n","urlObject":{"path":["users",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[]}},"response":[{"id":"eecf3425-fffc-5f84-eaab-81904a32a084","name":"List Users","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"formdata","formdata":[]},"url":"https://phobio.com/api/v2/users/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, POST, HEAD, OPTIONS","name":"Allow","description":""},{"key":"Content-Language","value":"en","name":"Content-Language","description":""},{"key":"Content-Length","value":"14496","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 17 Jan 2018 15:21:26 GMT","name":"Date","description":""},{"key":"Server","value":"WSGIServer/0.1 Python/2.7.12","name":"Server","description":""},{"key":"Vary","value":"Accept-Language, Cookie","name":"Vary","description":""},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":""}],"cookie":[],"responseTime":"2828","body":"{\n    \"count\": 4,\n    \"next\": null,\n    \"previous\": null,\n    \"results\": [\n        {\n            \"username\": \"johndoe\",\n            \"email\": \"noreply@phobio.com\",\n            \"first_name\": \"John\",\n            \"last_name\": \"Doe\",\n            \"phone\": \"678-601-6167\",\n            \"company_location\": {\n                \"uid\": \"00000000001\",\n                \"name\": \"US Logistics HQ\"\n            },\n            \"client_reference\": \"a654321\",\n            \"is_company_manager\": true,\n            \"allow_location_switching\": false,\n            \"external_uid\": null\n        },\n        {\n            \"username\": \"johndoe1\",\n            \"email\": \"noreply@phobio.com\",\n            \"first_name\": \"John\",\n            \"last_name\": \"Doe\",\n            \"phone\": \"678-601-6167\",\n            \"company_location\": {\n                \"uid\": \"00000000001\",\n                \"name\": \"US Logistics HQ\"\n            },\n            \"client_reference\": null,\n            \"is_company_manager\": false,\n            \"allow_location_switching\": false,\n            \"external_uid\": null\n        },\n        {\n            \"username\": \"johndoe2\",\n            \"email\": \"noreply@phobio.com\",\n            \"first_name\": \"John\",\n            \"last_name\": \"Doe\",\n            \"phone\": \"678-601-6167\",\n            \"company_location\": {\n                \"uid\": \"00000000001\",\n                \"name\": \"US Logistics HQ\"\n            },\n            \"client_reference\": null,\n            \"is_company_manager\": false,\n            \"allow_location_switching\": false,\n            \"external_uid\": null\n        },\n        {\n            \"username\": \"johndoe3\",\n            \"email\": \"noreply@phobio.com\",\n            \"first_name\": \"John\",\n            \"last_name\": \"Doe\",\n            \"phone\": \"678-601-6167\",\n            \"company_location\": {\n                \"uid\": \"00000000001\",\n                \"name\": \"US Logistics HQ\"\n            },\n            \"client_reference\": null,\n            \"is_company_manager\": false,\n            \"allow_location_switching\": false,\n            \"external_uid\": null\n        }\n    ]\n}"}],"_postman_id":"5a039903-e704-6bc3-8b75-c3418c6aec6b"},{"name":"Get User","id":"1f8b1f67-4cd5-3f69-ddbd-b5aae5e78fcf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"url":"https://phobio.com/api/v2/users/:username/","description":"<p>Get a user by username</p>\n","urlObject":{"path":["users",":username",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[{"description":{"content":"<p>Phobio User Username</p>\n","type":"text/plain"},"type":"string","value":"johndoe","key":"username"}]}},"response":[{"id":"e49469bf-18d3-3f4b-a01d-6cb20b43437c","name":"Get User","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"https://phobio.com/api/v2/users/:username/","host":["https://phobio.com/api/v2"],"path":["users",":username",""],"variable":[{"key":"username","value":"johndoe","description":"Phobio User Username"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, PUT, PATCH, DELETE, HEAD, OPTIONS","name":"Allow","description":""},{"key":"Content-Language","value":"en","name":"Content-Language","description":""},{"key":"Content-Length","value":"286","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 17 Jan 2018 15:27:42 GMT","name":"Date","description":""},{"key":"Server","value":"WSGIServer/0.1 Python/2.7.12","name":"Server","description":""},{"key":"Vary","value":"Accept-Language, Cookie","name":"Vary","description":""},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":""}],"cookie":[],"responseTime":"137","body":"{\n    \"username\": \"johndoe\",\n    \"email\": \"noreply@phobio.com\",\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"phone\": \"678-601-6167\",\n    \"company_location\": {\n        \"uid\": \"00000000001\",\n        \"name\": \"US Logistics HQ\"\n    },\n    \"client_reference\": \"a654321\",\n    \"is_company_manager\": true,\n    \"allow_location_switching\": false,\n    \"external_uid\": null\n}"}],"_postman_id":"1f8b1f67-4cd5-3f69-ddbd-b5aae5e78fcf"},{"name":"Create User","id":"2cde1881-da2e-91ef-23e2-6d679fbf3de5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"noreply@phobio.com\",\n\t\"first_name\": \"John\",\n\t\"last_name\": \"Doe\",\n\t\"phone\": \"678-601-6167\",\n\t\"company_location_uid\": \"89553070627\",\n\t\"client_reference\": \"a654321\",\n\t\"is_company_manager\": false\n}\n"},"url":"https://phobio.com/api/v2/users/","description":"<p>Creates a new user within the Phobio system. This method requires a JSON object described below with the user's information. </p>\n<p>Optionally, you can omit the username and one will be automatically generated for your user. You may also provide a unique ID that allows you to later match users within Phobio with users in your own platform. We refer to client-provided IDs as an \"external UID\".</p>\n<h6 id=\"json-body-parameters\">JSON Body Parameters</h6>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>username</code></td>\n<td>string</td>\n<td>False</td>\n<td>A username will be generated for your new user if one is not provided</td>\n</tr>\n<tr>\n<td><code>password</code></td>\n<td>string</td>\n<td>False</td>\n<td>A password will be generated for your new user if one is not provided. Your user will need to reset their password if they have a need to log in to a Phobio system</td>\n</tr>\n<tr>\n<td><code>email</code></td>\n<td>string</td>\n<td>True</td>\n<td>-</td>\n</tr>\n<tr>\n<td><code>first_name</code></td>\n<td>string</td>\n<td>True</td>\n<td>-</td>\n</tr>\n<tr>\n<td><code>last_name</code></td>\n<td>string</td>\n<td>True</td>\n<td>-</td>\n</tr>\n<tr>\n<td><code>phone</code></td>\n<td>string</td>\n<td>False</td>\n<td>-</td>\n</tr>\n<tr>\n<td><code>company_location_uid</code></td>\n<td>integer</td>\n<td>True</td>\n<td>The UID of a Company Location to initially associate the user with</td>\n</tr>\n<tr>\n<td><code>client_reference</code></td>\n<td>string</td>\n<td>False</td>\n<td></td>\n</tr>\n<tr>\n<td><code>is_company_manager</code></td>\n<td>boolean</td>\n<td>False</td>\n<td>Specifies the new user as a manager, with manager permissions and roles.</td>\n</tr>\n<tr>\n<td><code>external_uid</code></td>\n<td>string</td>\n<td>False</td>\n<td>Client-specific unique ID, can be used to match the Phobio user with an external user after creation</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["users",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[]}},"response":[{"id":"b13731cb-f898-fb07-5d9d-efc323eafa0e","name":"Create User","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"raw","raw":"{\n\t\"email\": \"noreply@phobio.com\",\n\t\"first_name\": \"John\",\n\t\"last_name\": \"Doe\",\n\t\"phone\": \"678-601-6167\",\n\t\"company_location_uid\": \"00000000001\",\n\t\"client_reference\": \"a654321\",\n\t\"is_company_manager\": false\n}\n"},"url":"https://phobio.com/api/v2/users/"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, POST, HEAD, OPTIONS","name":"Allow","description":""},{"key":"Content-Language","value":"en","name":"Content-Language","description":""},{"key":"Content-Length","value":"288","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 16 Jan 2018 22:45:05 GMT","name":"Date","description":""},{"key":"Server","value":"WSGIServer/0.1 Python/2.7.12","name":"Server","description":""},{"key":"Vary","value":"Accept-Language, Cookie","name":"Vary","description":""},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":""}],"cookie":[],"responseTime":"241","body":"{\n    \"username\": \"johndoe3\",\n    \"email\": \"noreply@phobio.com\",\n    \"first_name\": \"John\",\n    \"last_name\": \"Doe\",\n    \"phone\": \"678-601-6167\",\n    \"company_location\": {\n        \"uid\": \"00000000001\",\n        \"name\": \"US Logistics HQ\"\n    },\n    \"client_reference\": \"a654321\",\n    \"is_company_manager\": false,\n    \"allow_location_switching\": false,\n    \"external_uid\": null\n}"}],"_postman_id":"2cde1881-da2e-91ef-23e2-6d679fbf3de5"},{"name":"Update User","id":"dc8eca6c-af5f-a860-bb23-e7af23bf6722","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"raw","raw":"{\n\t\"is_company_manager\": true\n}\n"},"url":"https://phobio.com/api/v2/users/:username/","description":"<p>Updates an existing Phobio user, allowing you to change some attributes. All fields in the JSON body below are optional.</p>\n<h6 id=\"json-body-parameters\">JSON Body Parameters</h6>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>email</code></td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td><code>first_name</code></td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td><code>last_name</code></td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td><code>phone</code></td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td><code>client_reference</code></td>\n<td>string</td>\n<td></td>\n</tr>\n<tr>\n<td><code>is_company_manager</code></td>\n<td>boolean</td>\n<td>Specifies the user as a manager, with manager permissions and roles.</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["users",":username",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[{"description":{"content":"<p>Phobio User Username</p>\n","type":"text/plain"},"type":"string","value":"johndoe3","key":"username"}]}},"response":[{"id":"b2f944de-e447-eebc-c7a0-742ad8ddc337","name":"Update User","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"raw","raw":"{\n\t\"is_company_manager\": true\n}\n"},"url":{"raw":"https://phobio.com/api/v2/users/:username/","host":["https://phobio.com/api/v2"],"path":["users",":username",""],"variable":[{"key":"username","value":"johndoe3","description":"Phobio User Username"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, PUT, PATCH, DELETE, HEAD, OPTIONS","name":"Allow","description":""},{"key":"Content-Language","value":"en","name":"Content-Language","description":""},{"key":"Content-Length","value":"288","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 17 Jan 2018 02:08:48 GMT","name":"Date","description":""},{"key":"Server","value":"WSGIServer/0.1 Python/2.7.12","name":"Server","description":""},{"key":"Vary","value":"Accept-Language, Cookie","name":"Vary","description":""},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":""}],"cookie":[],"responseTime":"217","body":"{\n    \"username\": \"johndoe3\",\n    \"email\": \"noreply@phobio.com\",\n    \"first_name\": \"Jane\",\n    \"last_name\": \"Dane\",\n    \"phone\": \"678-601-6167\",\n    \"company_location\": {\n        \"uid\": \"00000000001\",\n        \"name\": \"US Logistics HQ\"\n    },\n    \"client_reference\": \"a654321\",\n    \"is_company_manager\": true,\n    \"allow_location_switching\": false,\n    \"external_uid\": null\n}"}],"_postman_id":"dc8eca6c-af5f-a860-bb23-e7af23bf6722"},{"name":"Deactivate User","id":"7a1b8fe9-2928-aa11-50ff-1422fa695f26","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"DELETE","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"raw","raw":""},"url":"https://phobio.com/api/v2/users/:username/","description":"<p>Deletes (deactivates) a Phobio user in your Company. The current API user may not deactivate itself.</p>\n","urlObject":{"path":["users",":username",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[{"description":{"content":"<p>Phobio User Username</p>\n","type":"text/plain"},"type":"string","value":"johndoe3","key":"username"}]}},"response":[{"id":"4780af13-77b1-c7ae-6f0f-6f8e561af4ce","name":"Update User","originalRequest":{"method":"PUT","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"raw","raw":"{\n\t\"is_company_manager\": true\n}\n"},"url":{"raw":"https://phobio.com/api/v2/users/:username/","host":["https://phobio.com/api/v2"],"path":["users",":username",""],"variable":[{"key":"username","value":"johndoe3","description":"Phobio User Username"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, PUT, PATCH, DELETE, HEAD, OPTIONS","name":"Allow","description":""},{"key":"Content-Language","value":"en","name":"Content-Language","description":""},{"key":"Content-Length","value":"288","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Wed, 17 Jan 2018 02:08:48 GMT","name":"Date","description":""},{"key":"Server","value":"WSGIServer/0.1 Python/2.7.12","name":"Server","description":""},{"key":"Vary","value":"Accept-Language, Cookie","name":"Vary","description":""},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":""}],"cookie":[],"responseTime":"217","body":"{\n    \"username\": \"johndoe3\",\n    \"email\": \"noreply@phobio.com\",\n    \"first_name\": \"Jane\",\n    \"last_name\": \"Dane\",\n    \"phone\": \"678-601-6167\",\n    \"company_location\": {\n        \"uid\": \"00000000001\",\n        \"name\": \"US Logistics HQ\"\n    },\n    \"client_reference\": \"a654321\",\n    \"is_company_manager\": true,\n    \"allow_location_switching\": false,\n    \"external_uid\": null\n}"}],"_postman_id":"7a1b8fe9-2928-aa11-50ff-1422fa695f26"}],"id":"57aa7df9-aa77-b88d-cc30-a61e8ce74209","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"bb3b3f10-fe47-4f19-b63a-d24f3d4960b2","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"3ddac2d9-6461-4adb-a06e-239efdc5b28c","type":"text/javascript","exec":[""]}}],"_postman_id":"57aa7df9-aa77-b88d-cc30-a61e8ce74209","description":""},{"name":"Company Locations","item":[{"name":"List Locations","id":"d19a6a18-4be5-a802-1c69-94e2cafcc3d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"url":"https://phobio.com/api/v2/locations/","description":"<p>List all available Company Locations</p>\n","urlObject":{"path":["locations",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[]}},"response":[{"id":"e0c7b03f-6bce-98c1-d315-bd299c7cc919","name":"List Locations","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://phobio.com/api/v2/locations/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, HEAD, OPTIONS","name":"Allow","description":""},{"key":"Content-Language","value":"en","name":"Content-Language","description":""},{"key":"Content-Length","value":"386","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 04 Jan 2018 21:07:54 GMT","name":"Date","description":""},{"key":"Server","value":"WSGIServer/0.1 Python/2.7.12","name":"Server","description":""},{"key":"Vary","value":"Accept-Language, Cookie","name":"Vary","description":""},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":""}],"cookie":[],"responseTime":"202","body":"{\n    \"count\": 3,\n    \"next\": null,\n    \"previous\": null,\n    \"results\": [\n        {\n            \"uid\": \"00000000001\",\n            \"name\": \"Downtown Mall\"\n        },\n        {\n            \"uid\": \"00000000002\",\n            \"name\": \"West End Corporate\"\n        },\n        {\n            \"uid\": \"00000000003\",\n            \"name\": \"Northside Lakes\"\n        }\n    ]\n}"}],"_postman_id":"d19a6a18-4be5-a802-1c69-94e2cafcc3d4"},{"name":"Get Location","id":"ef2488a3-cf86-e3ef-9dc3-73178d033ae5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"url":"https://phobio.com/api/v2/locations/:uid/","description":"<p>Get a Company Location by Company Location UID</p>\n","urlObject":{"path":["locations",":uid",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[{"description":{"content":"<p>Company Location UID</p>\n","type":"text/plain"},"type":"string","value":"00000000001","key":"uid"}]}},"response":[{"id":"4483435e-4320-94bf-c648-a26e7efbc509","name":"Get Location","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://phobio.com/api/v2/locations/00000000001"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, HEAD, OPTIONS","name":"Allow","description":""},{"key":"Content-Language","value":"en","name":"Content-Language","description":""},{"key":"Content-Length","value":"224","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 04 Jan 2018 21:11:26 GMT","name":"Date","description":""},{"key":"Server","value":"WSGIServer/0.1 Python/2.7.12","name":"Server","description":""},{"key":"Vary","value":"Accept-Language, Cookie","name":"Vary","description":""},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":""}],"cookie":[],"responseTime":"116","body":"{\n    \"uid\": \"00000000001\",\n    \"name\": \"Downtown Mall\",\n    \"address_1\": \"1205 Any Place Ln\",\n    \"address_2\": \"\",\n    \"city\": \"Nothintown\",\n    \"state\": \"PA\",\n    \"postal_code\": \"67654\",\n    \"country_code\": \"US\",\n    \"email\": \"test@phobio.com\",\n    \"phone\": \"123-456-7890\"\n}"},{"id":"acdfa1f8-44d4-27f5-bc17-ea3f98bce642","name":"List Locations","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://phobio.com/api/v2/locations/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, HEAD, OPTIONS","name":"Allow","description":"Valid actions for a specified resource. To be used for a 405 Method not allowed"},{"key":"Content-Language","value":"en","name":"Content-Language","description":"The language the content is in"},{"key":"Content-Length","value":"386","name":"Content-Length","description":"The length of the response body in octets (8-bit bytes)"},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":"The mime type of this content"},{"key":"Date","value":"Thu, 04 Jan 2018 21:07:54 GMT","name":"Date","description":"The date and time that the message was sent"},{"key":"Server","value":"WSGIServer/0.1 Python/2.7.12","name":"Server","description":"A name for the server"},{"key":"Vary","value":"Accept-Language, Cookie","name":"Vary","description":"Tells downstream proxies how to match future request headers to decide whether the cached response can be used rather than requesting a fresh one from the origin server."},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":"Clickjacking protection: \"deny\" - no rendering within a frame, \"sameorigin\" - no rendering if origin mismatch"}],"cookie":[],"responseTime":"202","body":"{\n    \"count\": 3,\n    \"next\": null,\n    \"previous\": null,\n    \"results\": [\n        {\n            \"uid\": \"00000000001\",\n            \"name\": \"Downtown Mall\"\n        },\n        {\n            \"uid\": \"00000000002\",\n            \"name\": \"West End Corporate\"\n        },\n        {\n            \"uid\": \"00000000003\",\n            \"name\": \"Northside Lakes\"\n        }\n    ]\n}"}],"_postman_id":"ef2488a3-cf86-e3ef-9dc3-73178d033ae5"}],"id":"ba1e0028-f007-c406-8130-9d380b8897a6","description":"<p>Company Locations represent the individual corporate locations, retail locations, or other lowest-level division of a company</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"6ae0e141-01a2-44e0-a655-69d9008bff77","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"72a57013-122d-4fc1-8df7-52556c03bb86","type":"text/javascript","exec":[""]}}],"_postman_id":"ba1e0028-f007-c406-8130-9d380b8897a6"},{"name":"Trade Conditions","item":[{"name":"List Conditions","id":"9e234e35-4424-7d85-ee84-f8eda45d739e","request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"url":"https://phobio.com/api/v2/conditions/","description":"<p>List all condition levels available for your Company.</p>\n","urlObject":{"path":["conditions",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[]}},"response":[{"id":"f680e6fb-1307-51dd-4c37-bf7ca4ed1e61","name":"List Conditions","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"formdata","formdata":[]},"url":"https://phobio.com/api/v2/conditions/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, HEAD, OPTIONS","name":"Allow","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Language","value":"en","name":"Content-Language","description":""},{"key":"Content-Length","value":"395","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Feb 2018 16:33:54 GMT","name":"Date","description":""},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":""},{"key":"Strict-Transport-Security","value":"max-age=15768000","name":"Strict-Transport-Security","description":""},{"key":"Vary","value":"Accept-Language, Cookie","name":"Vary","description":""},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":""}],"cookie":[],"responseTime":"63","body":"[{\"condition\":\"working\",\"name\":\"Working\",\"description\":\"Functional and original device free of physical damage, software problems, and water damage.\"},{\"condition\":\"damaged\",\"name\":\"Damaged\",\"description\":\"Device has physical damage (cracked screen or broken parts), software problems, and/or signs of water damage.\"},{\"condition\":\"dead\",\"name\":\"Dead\",\"description\":\"Device does not power on.\"}]"}],"_postman_id":"9e234e35-4424-7d85-ee84-f8eda45d739e"},{"name":"Get Condition","id":"fd8523f0-7cd3-a376-15f1-5079711a525d","request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"url":"https://phobio.com/api/v2/conditions/:condition/","description":"<p>Get a condition level by a condition level slug.</p>\n","urlObject":{"path":["conditions",":condition",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[{"description":{"content":"<p>Condition Level</p>\n","type":"text/plain"},"type":"string","value":"working","key":"condition"}]}},"response":[{"id":"6a4b37cf-64a5-1323-c19c-0f4f23b13a15","name":"Get Condition","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"https://phobio.com/api/v2/conditions/:condition/","host":["https://phobio.com/api/v2"],"path":["conditions",":condition",""],"variable":[{"key":"condition","value":"working","description":"Condition Level"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, HEAD, OPTIONS","name":"Allow","description":""},{"key":"Connection","value":"keep-alive","name":"Connection","description":""},{"key":"Content-Language","value":"en","name":"Content-Language","description":""},{"key":"Content-Length","value":"149","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 06 Feb 2018 16:34:03 GMT","name":"Date","description":""},{"key":"Server","value":"gunicorn/19.7.1","name":"Server","description":""},{"key":"Strict-Transport-Security","value":"max-age=15768000","name":"Strict-Transport-Security","description":""},{"key":"Vary","value":"Accept-Language, Cookie","name":"Vary","description":""},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":""}],"cookie":[],"responseTime":"52","body":"{\"condition\":\"working\",\"name\":\"Working\",\"description\":\"Functional and original device free of physical damage, software problems, and water damage.\"}"}],"_postman_id":"fd8523f0-7cd3-a376-15f1-5079711a525d"}],"id":"da4f88d5-5ce4-d326-21d8-5e873adfe425","description":"<p>A condition is required for each trade on a Quote. This resource allows you to view all available condition levels available for your company, including their names and descriptions.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"5ab023af-582f-4948-b001-54418ed545c6","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"add7b8e6-d5bc-45e9-88c6-dfb05c3d0685","type":"text/javascript","exec":[""]}}],"_postman_id":"da4f88d5-5ce4-d326-21d8-5e873adfe425"},{"name":"Authenticated URLs","item":[{"name":"List URLs","id":"5a4c0e83-f7f9-2940-031c-6a2c355d4599","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"url":"https://phobio.com/api/v2/authenticated-urls/","description":"<p>List available types of Authenticated URLs</p>\n","urlObject":{"path":["authenticated-urls",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[]}},"response":[{"id":"16db0b8d-a2af-d8fb-1b09-90eb41407dbf","name":"List URLs","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://phobio.com/api/v2/authenticated-urls/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, POST, HEAD, OPTIONS","name":"Allow","description":""},{"key":"Content-Language","value":"en","name":"Content-Language","description":""},{"key":"Content-Length","value":"1435","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Thu, 04 Jan 2018 20:59:26 GMT","name":"Date","description":""},{"key":"Server","value":"WSGIServer/0.1 Python/2.7.12","name":"Server","description":""},{"key":"Vary","value":"Accept-Language, Cookie","name":"Vary","description":""},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":""}],"cookie":[],"responseTime":"104","body":"[{\"slug\":\"shipments\",\"name\":\"Shipments\",\"description\":\"Allows user to create new shipments, print shipping labels, and view the status of existing shipments.\"},{\"slug\":\"trade_flow_handoff\",\"name\":\"Trade Flow Handoff\",\"description\":\"Returns the URL to begin a \\\"Trade Flow Handoff\\\". The Trade is completed on Phobio's websiteand the user is redirected back to the integrator's web-based POS.in a web view or container.\"},{\"slug\":\"safetrade\",\"name\":\"Safetrade\",\"description\":\"Allows user access to Phobio Safetrade, the web-based trade-in platform.\"},{\"slug\":\"trade_reports\",\"name\":\"Trade Report\",\"description\":\"Allows user to view trade activity using a variety of filters.\"},{\"slug\":\"chat\",\"name\":\"Live Chat\",\"description\":\"Returns the appropriate Live Chat URL.\"},{\"slug\":\"embedded_trade_flow\",\"name\":\"Embedded Trade Flow (ETF)\",\"description\":\"Returns the URL to load a specially crafted \\\"embedded trade flow\\\"  URL to be loadedin a web view or container.\"},{\"slug\":\"dashboards_and_analytics\",\"name\":\"Dashboards & Analytics\",\"description\":\"Allows user to see any dashboard or analytics view they have access to.\"},{\"slug\":\"shipping_supplies\",\"name\":\"Order Supplies\",\"description\":\"Allows user to order shipping supplies and in-store collateral.\"},{\"slug\":\"tools\",\"name\":\"Tools Menu\",\"description\":\"Allows user access to a menu of various tools such as reporting, analytics, shipment creation, device erasure, and supply ordering.\"}]"}],"_postman_id":"5a4c0e83-f7f9-2940-031c-6a2c355d4599"},{"name":"Get URL","id":"109fdda2-5fb8-cdce-81fc-c7f77e009b96","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"raw","raw":"{\n  \"url_slug\": \"embedded_trade_flow\",\n  \"customer\": {\n    \"first_name\": \"Joe\",\n    \"last_name\": \"Johnson\",\n    \"phone\": \"678-601-6167\"\n  }\n}"},"url":"https://phobio.com/api/v2/authenticated-urls/","description":"<p>Get an Authenticated URL for instant, one-time access to a Phobio system. </p>\n<h5 id=\"json-body-parameters\">JSON Body Parameters</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>url_slug</code></td>\n<td>string</td>\n<td>True</td>\n<td>URL Type to request</td>\n</tr>\n<tr>\n<td><code>company_location_uid</code></td>\n<td>integer</td>\n<td>False</td>\n<td>Providing a company location UID allows for Phobio to show the correct location to the user for certain tools.</td>\n</tr>\n<tr>\n<td><code>customer</code></td>\n<td>JSON object</td>\n<td>False</td>\n<td>See the 'customer object' below.</td>\n</tr>\n<tr>\n<td><code>success_url</code></td>\n<td>string</td>\n<td>True*</td>\n<td>URL to return the user to after the successful completion of a Trade-Flow Handoff. *Required for Trade-Flow Handoff URLs</td>\n</tr>\n<tr>\n<td><code>error_url</code></td>\n<td>string</td>\n<td>True*</td>\n<td>URL to return the user to after an error during a Trade-Flow Handoff. *Required for Trade-Flow Handoff URLs</td>\n</tr>\n</tbody>\n</table>\n</div><h5 id=\"customer-object-parameters\">Customer Object Parameters</h5>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Parameter</th>\n<th>Type</th>\n<th>Required</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>first_name</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer first name</td>\n</tr>\n<tr>\n<td><code>last_name</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer last name</td>\n</tr>\n<tr>\n<td><code>phone</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer phone number</td>\n</tr>\n<tr>\n<td><code>email</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer email address</td>\n</tr>\n<tr>\n<td><code>identification_type</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer identification type (driver's license, passport, etc)</td>\n</tr>\n<tr>\n<td><code>identification_number</code></td>\n<td>string</td>\n<td>False</td>\n<td>Customer identification number (driver's license number, etc.)</td>\n</tr>\n</tbody>\n</table>\n</div>","urlObject":{"path":["authenticated-urls",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[]}},"response":[{"id":"9a36e1fe-d92f-3497-c6c7-3f3b21daea3d","name":"Get URL","originalRequest":{"method":"POST","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"body":{"mode":"raw","raw":"{\n  \"url_slug\": \"embedded_trade_flow\",\n  \"customer\": {\n    \"first_name\": \"Joe\",\n    \"last_name\": \"Johnson\",\n    \"phone\": \"678-601-6167\"\n  }\n}"},"url":"https://phobio.com/api/v2/authenticated-urls/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, POST, HEAD, OPTIONS","name":"Allow","description":""},{"key":"Content-Language","value":"en","name":"Content-Language","description":""},{"key":"Content-Length","value":"176","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Fri, 05 Jan 2018 15:17:42 GMT","name":"Date","description":""},{"key":"Server","value":"WSGIServer/0.1 Python/2.7.12","name":"Server","description":""},{"key":"Vary","value":"Accept-Language, Cookie","name":"Vary","description":""},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":""}],"cookie":[],"responseTime":"925","body":"{\n    \"url\": \"https://phobio.com/external-login?auth=d2luc3RvbjoxZVhUa2M6dVpTckJBOFJzeHExRXJkLTk5MmUyQVQzVW93&next=%2Fsp2%2Fintegration\",\n    \"expiration\": \"2018-01-05T15:18:12.718553\"\n}"}],"_postman_id":"109fdda2-5fb8-cdce-81fc-c7f77e009b96"}],"id":"8eaf5411-bc8f-8853-44ec-5488b337ff93","description":"<p>Authenticated URLs allow a user access to certain Phobio systems. URLs should not be cached and should be used right away, as they are time limited. </p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"d2e3d286-320c-4f25-8e8d-eb2a5e105748","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"7a950f3a-db5a-440a-bc4f-fc8ccf752ee2","type":"text/javascript","exec":[""]}}],"_postman_id":"8eaf5411-bc8f-8853-44ec-5488b337ff93"},{"name":"Terms and Conditions","item":[{"name":"Get Terms and Conditions","id":"e585bcc7-07c8-29a5-b449-2a99bd4300da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"abcd1234=="}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/json"},{"key":"Content-Type","value":"application/json"},{"key":"Accept-Language","value":"en-US"}],"url":"https://phobio.com/api/v2/terms/","description":"<p>Get a copy of the current terms and conditions of trade-in</p>\n","urlObject":{"path":["terms",""],"host":["https://phobio.com/api/v2"],"query":[],"variable":[]}},"response":[{"id":"c3a0a34c-669c-1dc6-d5e2-136dcf9de72c","name":"Get Terms and Conditions","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/json","type":"text","disabled":false},{"key":"Content-Type","value":"application/json","type":"text","disabled":false},{"key":"Accept-Language","value":"en-US","type":"text","disabled":false}],"body":{"mode":"formdata","formdata":[]},"url":"https://phobio.com/api/v2/terms/"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Allow","value":"GET, HEAD, OPTIONS","name":"Allow","description":""},{"key":"Content-Language","value":"en","name":"Content-Language","description":""},{"key":"Content-Length","value":"4181","name":"Content-Length","description":""},{"key":"Content-Type","value":"application/json","name":"Content-Type","description":""},{"key":"Date","value":"Tue, 16 Jan 2018 19:50:07 GMT","name":"Date","description":""},{"key":"Server","value":"WSGIServer/0.1 Python/2.7.12","name":"Server","description":""},{"key":"Vary","value":"Accept-Language, Cookie","name":"Vary","description":""},{"key":"X-Frame-Options","value":"DENY","name":"X-Frame-Options","description":""}],"cookie":[],"responseTime":"625","body":"{\"html_body\":\"<p>The following terms and conditions shall govern your rights and obligations as a participant in the trade-in program (the &ldquo;Program&rdquo;) of Phobio, LLC, a Georgia limited liability company, and its related entities and affiliates (collectively, referred to as &ldquo;Phobio&rdquo;). By participating in the Program, you expressly agree to the terms and conditions set forth below (the &ldquo;Agreement&rdquo;).</p>\\r\\n\\r\\n<p><strong>All Transactions Final.</strong> All transactions under the Program are final. Phobio and its participating retailers shall be under no obligation to terminate any transaction or otherwise return any device (each a &ldquo;Device&rdquo;) traded-in by you under the Program.</p>\\r\\n\\r\\n<p><strong>Representations and Warranties.</strong> You hereby represent and warrant that: (1) you are the sole and rightful owner of all rights, title and interests in the Device being traded-in, free and clear of any liens or claims by third parties; and (2) the Device does not contain any content which would infringe upon any existing copyrights, trade secrets or other proprietary rights of third parties.</p>\\r\\n\\r\\n<p><strong>Trade-In Value.</strong> The trade-in value of a Device is based upon the information you supply Phobio and its representatives. The Trade-In Value is redeemable only as store credit at the location of the trade-in and may only be applied to purchase transactions occurring on the same day as the trade-in. The full amount of the Trade-In Value must be exercised at the time of the purchase transaction or the remainder will be forfeited. The Trade-In Value may not be redeemed for cash.</p>\\r\\n\\r\\n<p><strong>Deletion of Data.</strong> Phobio recommends that you erase, delete or remove any and all personal or confidential data or information stored on the Device prior to participation in the Program.</p>\\r\\n\\r\\n<p><strong>Limitation of Liability.</strong> PHOBIO SHALL NOT BE LIABLE TO YOU OR ANY OTHER INDIVIDUAL OR ENTITY FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, CONSEQUENTIAL, PUNITIVE OR EXEMPLARY DAMAGES, INCLUDING ATTORNEYS FEES, ARISING OUT OF OR IN CONNECTION WITH THE LOSS, DISCLOSURE, SECURITY, INTEGRITY, CONFIDENTIALITY OR USE OF PERSONAL OR CONFIDENTIAL DATA STORED ON ANY DEVICE TRADED-IN UNDER THE PROGRAM.</p>\\r\\n\\r\\n<p><strong>Indemnification.</strong> By participating in the Program, you expressly agree to hold harmless and indemnify Phobio and its shareholders, officers, directors, employees, contractors, agents, successors and assigns, from and against any and all claims, damages, liabilities, losses, costs, expenses, and fees (including reasonable attorneys&rsquo; fees) arising out of: (1) your breach of this Agreement, including, but not limited to, the representations and warranties contained herein; (2) any suit or other proceeding for infringement or misappropriation of any copyright, trade secret or other proprietary right brought against Phobio in connection with your Device you trade-in under the Program; and (3) the loss, disclosure, security, integrity, confidentiality or use of any personal or confidential information stored on a Device you trade-in under the Program.</p>\\r\\n\\r\\n<p><strong>Governing Law and Jurisdiction.</strong> Any claim relating to the Program shall be governed by the laws of the State of Georgia without regard to its conflict of law provisions. By virtue of your participation in the Program, you expressly submit to jurisdiction in the Superior Court of Cobb County, Georgia, for any and all claims arising from this Agreement.</p>\\r\\n\\r\\n<p>The customer agrees to receive messages via text and/or email in service or support of this trade-in transaction. Any customer information collected will be used solely for the purposes of service to this trade-in, and will not be shared with any third parties with the exception of direct request from Law Enforcement Agencies.</p>\\r\\n\\r\\n<p>If you have any questions or concerns regarding the above Agreement, you may contact Phobio at <a href=\\\"mailto:help@phobio.com\\\">help@phobio.com</a>. &copy; 2015 Phobio. All Rights Reserved.</p>\\r\\n\\r\\n<p>Last Update on Aug 28, 2015</p>\"}"}],"_postman_id":"e585bcc7-07c8-29a5-b449-2a99bd4300da"}],"id":"c490afd4-0477-d56c-0f60-d78c951289a4","description":"<p>The customer must agree to the terms and conditions before a Quote can be confirmed, and an Invoice created. The current terms and conditions can be requested (as formatted HTML) through this resource and displayed to the customer.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"9596fa0b-a63e-40cf-ae76-201041e10e9c","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"f79dabb7-953f-4098-8879-a31260d9ec6f","type":"text/javascript","exec":[""]}}],"_postman_id":"c490afd4-0477-d56c-0f60-d78c951289a4"},{"name":"Trade Status Webhook","item":[],"id":"2c9db7f5-8915-4f24-bddc-6b8159bee52e","description":"<p>The Phobio Trade Status Webhook provides a means for Phobio to provide<br />near real-time status updates to integrated partners on the status of<br />trades as they progress through the trade-in process. Status updates<br />include events such as receipt of a trade at a Phobio facility, or<br />payment issuance to a customer.</p>\n<p>All status updates will be POSTed to a single HTTPS endpoint that you<br />will provide to Phobio</p>\n<h2 id=\"authentication\">Authentication</h2>\n<p>The webhook supports token authentication via the Authentication HTTP<br />header. Phobio will provide you with an authentication token when you<br />provide Phobio with an endpoint URL.</p>\n<p>Phobio expects that you will reply with HTTP 401: Unauthorized if the<br />token header does not match the token that you were provided.</p>\n<p>The Webhook requires an HTTPS connection, and will not provide status<br />updates over non-secure HTTP connections.</p>\n<blockquote>\n<p><strong>Example</strong> </p>\n</blockquote>\n<h2 id=\"conventions\">Conventions</h2>\n<ul>\n<li><p>Request bodies will always be UTF-8 encoded with the <code>application/json</code> content type.</p>\n</li>\n<li><p>Only HTTPS connections are supported by the webhook.</p>\n</li>\n<li><p>The webhook adheres to standard HTTP/1.1 status codes.</p>\n</li>\n<li><p>Any non-20x status codes will be considered failed and automatically retried.</p>\n</li>\n</ul>\n<h2 id=\"endpoint-specification\">Endpoint Specification</h2>\n<p>Your endpoint must accept a JSON document with two keys: <code>event</code> and<br /><code>trade</code>.</p>\n<ul>\n<li><p><code>event</code> is an event type string (see \"<em>Event Types</em>\" below), indicating what status change event has occurred for an individual trade.</p>\n</li>\n<li><p><code>trade</code> is a serialized JSON trade object, providing the current state of the referenced trade as of the time of notification.</p>\n</li>\n</ul>\n<p>The trade object is detailed within Phobio's API documentation<br />(<a href=\"https://apidocs.phobio.com/\">https://apidocs.phobio.com/</a>). The<br />trade object will always match this specification, and may be updated<br />from time-to-time as required.</p>\n<blockquote>\n<p><strong>Example - Notification of a New Trade Created</strong> </p>\n</blockquote>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>POST /phobio_status HTTP/1.1\nUser-Agent: Phobio Webhook/1.0\nHost: acme.co\nContent-Type: application/json; charset=utf-8\nAccept: application/json\nAccept-Language: en-us\nAuthentication: 4d5743ThisIsTheSecretToken813569\n {\n    \"event\": \"trade_created\",\n    \"trade\": {\n      \"uid\": \"20270100272\",\n      \"condition\": \"working\",\n      \"local_price_in_cents\": 5000,\n      \"local_typical_price_in_cents\": 5000,\n      \"local_customer_price_in_cents\": 5000,\n      \"local_currency_symbol\": \"USD\",\n      \"status\": \"quoted\",\n      \"serial\": \"11111167265\",\n      ...\n      \"created\": \"2019-06-05T18:57:18\",\n      \"modified\": \"2019-06-05T18:58:07\",\n      \"inspected\": null,\n      \"received\": null,\n      \"paid\": null,\n      \"shipments\": [],\n      ...\n }\n\n</code></pre><h2 id=\"event-types\">Event Types</h2>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Event</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>trade_created</code></td>\n<td>The \"trade created\" event indicates that a trade has been created via the creation of a Quote.</td>\n</tr>\n<tr>\n<td><code>trade_confirmed</code></td>\n<td>The \"trade confirmed\" event indicates that a quote has been confirmed, resulting in the creation of a new Invoice.</td>\n</tr>\n<tr>\n<td><code>shipment_created</code></td>\n<td>The \"shipment created\" event occurs when a shipping kit has been processed for a trade, and tracking information is now available for the supplies and inbound shipments.</td>\n</tr>\n<tr>\n<td><code>shipment_outbound</code></td>\n<td>The \"shipment outbound\" event occurs when shipment tracking indicates that a shipping kit is in transit to the customer from Phobio.</td>\n</tr>\n<tr>\n<td><code>shipment_inbound</code></td>\n<td>The \"shipment inbound\" event occurs when shipment tracking indicates that a trade is in transit to Phobio.</td>\n</tr>\n<tr>\n<td><code>received</code></td>\n<td>The \"received\" event indicates that a trade has been received at a Phobio facility and is pending inspection.</td>\n</tr>\n<tr>\n<td><code>inspected</code></td>\n<td>The \"inspected\" event occurs when a trade has been inspected for model and condition accuracy at a Phobio facility. The event that follows \"inspected\" depends on if a revised offer is made as a result of inspection. If a revised offer is made (as the result of a model or condition change), the trade enters quarantine and will then become \"awaiting response\". If the trade is inspected as quoted, it will move directly to \"ready for payment\".</td>\n</tr>\n<tr>\n<td><code>awaiting_response</code></td>\n<td>The \"awaiting response\" event occurs when a revised offer is made on a trade. The customer should be asked to accept or reject the revised offer, and this decision should then be conveyed via the quarantine_accept or quarantine_reject endpoint in the Phobio API.</td>\n</tr>\n<tr>\n<td><code>to_be_returned</code></td>\n<td>If a revised offer is rejected or if an offer decision is not reached by the time quarantine expires, a \"to be returned\" event occurs. This event indicates that a trade will be returned to the customer and will not progress any further.</td>\n</tr>\n<tr>\n<td><code>returned</code></td>\n<td>The \"returned\" event occurs when return shipment tracking is available, and the return shipment to the customer has left the Phobio facility.</td>\n</tr>\n<tr>\n<td><code>ready_for_payment</code></td>\n<td>The \"ready for payment\" event indicates that a trade has completed inspection and is ready to be paid. Depending on your integration either Phobio will issue this payment to the customer, or you will be expected to issue payment to the customer at this time.</td>\n</tr>\n<tr>\n<td><code>paid</code></td>\n<td>If your integration with Phobio necessitates that Phobio issue payment to the customer, the \"paid\" event indicates that the payment to the customer has been issued, and the trade is complete.</td>\n</tr>\n</tbody>\n</table>\n</div>","event":[{"listen":"prerequest","script":{"id":"4ff500f9-40aa-4cbe-bfd4-b7e83ac85839","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"6e41e2c1-116a-46d4-80cd-509baf578836","type":"text/javascript","exec":[""]}}],"_postman_id":"2c9db7f5-8915-4f24-bddc-6b8159bee52e"}],"event":[{"listen":"prerequest","script":{"id":"89363a4a-2311-40be-88af-bd556c2896c5","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"94f46d36-f526-4486-8069-9e9a2e36bb6d","type":"text/javascript","exec":[""]}}],"variable":[{"key":"AUTH_TOKEN","value":"abcd1234=="},{"key":"BASE_URL","value":"https://phobio.com/api/v2"}]}