{"info":{"_postman_id":"e13c776d-803f-7c57-e869-21dd160facd5","name":"Meural REST API","description":"<html><head></head><body><p>The Meural REST API allows you to manage your Canvases and content. Here are some of the things you can do.</p>\n<ul>\n<li>Register and configure Canvases</li>\n<li>Manage artwork on your Canvas</li>\n<li>Browse Meural's collection of artwork and artists</li>\n<li>Upload your own images</li>\n<li>Create playlists containing artwork from Meural's collection and your own</li>\n</ul>\n<h1 id=\"nomenclature\">Nomenclature</h1>\n<p>There are a few discrepancies between user-facing language and the language we use in the API. The words <code>gallery</code> and <code>playlist</code> and synonyms, as are <code>item</code> and <code>artwork</code>, and <code>device</code> and <code>canvas</code>. We use these words interchangeably throughout our documentation.</p>\n<h1 id=\"authentication\">Authentication</h1>\n<p>We use token based authentication. Any authenticated request requires an <code>Authorization</code> header with the value of <code>Token {{YOUR_TOKEN}}</code>. To obtain your token, all you need to do is create an account.</p>\n<h1 id=\"standard-requests-responses\">Standard Requests &amp; Responses</h1>\n<p>Request data can be encoded as <code>JSON</code>, <code>url</code>, or <code>form</code>. JSON is prefered. There are some endpoints that require JSON and others that require form-encoded data.</p>\n<p>All standard responses are in JSON format and have the following form.</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Key</th>\n<th>Value Type</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>data</td>\n<td>Object or Array</td>\n<td>The requested resource</td>\n</tr>\n<tr>\n<td>message</td>\n<td>String</td>\n<td>A message for the user about the status of the request</td>\n</tr>\n<tr>\n<td>isPaginated</td>\n<td>Boolean</td>\n<td>Indication of whether or not the response is paginated</td>\n</tr>\n<tr>\n<td>isLast</td>\n<td>Null or Boolean</td>\n<td>Indication of whether or not the response is the last in a paginated list if the response is paginated</td>\n</tr>\n<tr>\n<td>count</td>\n<td>Null or Int</td>\n<td>The total number of objects in the paginated list</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"error-responses\">Error Responses</h1>\n<p>Error responses are responses whose status code is &gt;= 400. All error responses are JSON objects with either a general error under the key <code>errors</code> or field specific errors under keys matching the field name. The errors themselves are always strings.</p>\n<h1 id=\"pagination\">Pagination</h1>\n<p>All list responses are paginated and the page number can be specified with the <code>page</code> querystring parameter. The default page size is 10; and there is an optional <code>count</code> parameter that allows you to specify the page size.</p>\n<h1 id=\"filtering-and-sorting\">Filtering and Sorting</h1>\n<p>Filtered and sorted responses are requested with querystring parameters. Endpoints that support filtering and sorting can be requested with either filter or sort parameters, where each points to a valid argument. Arguments are formatted as <code>{filter or sort type}__{filter or sort value}</code>. For example,</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>/artists/?filter=name__a\n</code></pre><p>will retrieve those artists whose names start with a.</p>\n<h3 id=\"available-sorts-and-filters-by-model\">Available Sorts and Filters by Model</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Model</th>\n<th>Sort</th>\n<th>Filter</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Channel</td>\n<td><code>date_added</code></td>\n<td><code>name</code></td>\n</tr>\n<tr>\n<td>Artist</td>\n<td><code>date_added</code>, <code>name</code>, <code>time_period</code></td>\n<td><code>name</code>, <code>time_period</code></td>\n</tr>\n<tr>\n<td>Model/Items</td>\n<td><code>date_added</code>, <code>name</code>, <code>time_period</code></td>\n<td>None</td>\n</tr>\n<tr>\n<td>Model/Galleries</td>\n<td><code>date_added</code>, <code>name</code></td>\n<td>None</td>\n</tr>\n<tr>\n<td>Model/Artists</td>\n<td><code>date_added</code>, <code>name</code></td>\n<td>None</td>\n</tr>\n</tbody>\n</table>\n</div><h3 id=\"accepted-sort-and-filter-values\">Accepted Sort and Filter Values</h3>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Type</th>\n<th>Subtype</th>\n<th>Values</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Sort</td>\n<td><code>name</code></td>\n<td><code>asc</code>, <code>dsc</code></td>\n</tr>\n<tr>\n<td>Sort</td>\n<td><code>date_added</code></td>\n<td><code>asc</code>, <code>dsc</code></td>\n</tr>\n<tr>\n<td>Sort</td>\n<td><code>time_period</code></td>\n<td><code>asc</code>, <code>dsc</code></td>\n</tr>\n<tr>\n<td>Filter</td>\n<td><code>name</code></td>\n<td><code>a</code> to <code>z</code></td>\n</tr>\n<tr>\n<td>Filter</td>\n<td><code>time_period</code></td>\n<td><code>Renaissance</code>, <code>1600</code>, <code>1700</code>, <code>1800</code>, <code>1900</code>, <code>2000</code></td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"content-hierarchy\">Content Hierarchy</h1>\n<p>Meural's content hierarchy allows us to group artists, galleries, and artworks together by various qualities such as time period, style, or color, for example. We can take a <code>group</code> at the top of the hierarchy and drill down into its sets of artwords and artists; and we can also take an <code>item</code> at the bottom of the hierarchy and find its relationships to other <code>items</code>, <code>artists</code>, <code>categories</code>, etc.</p>\n<p>The lowest level of our content hierarchy is the <code>item</code>, which is the artwork itself with various metadata. One level above <code>item</code> is <code>gallery</code>. <code>galleries</code> are collections of items and they are the only objects that can be sent to Canvases. Above <code>gallery</code> is <code>artist</code>. <code>artists</code> have both <code>galleries</code> and <code>items</code>; and above <code>artists</code> are <code>categories</code>, which have <code>artists</code>, <code>items</code>, and <code>galleries</code>. One futher layer in the hierarchy is <code>groups</code>, which are groups of <code>categories</code>.</p>\n<p><code>channels</code> stand outside of this hierarchy and are used to group <code>items</code>, <code>artists</code>, and <code>galleries</code> together by more arbirary concepts, such as the partner that provided the artwork, or a theme devised by a curator.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Nomenclature","slug":"nomenclature"},{"content":"Authentication","slug":"authentication"},{"content":"Standard Requests & Responses","slug":"standard-requests-responses"},{"content":"Error Responses","slug":"error-responses"},{"content":"Pagination","slug":"pagination"},{"content":"Filtering and Sorting","slug":"filtering-and-sorting"},{"content":"Content Hierarchy","slug":"content-hierarchy"}],"owner":"1657302","collectionId":"e13c776d-803f-7c57-e869-21dd160facd5","publishedId":"RVnWjKUL","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2018-05-29T18:28:32.000Z"},"item":[{"name":"User","item":[{"name":"/user","id":"b295459d-fb89-1dc6-35cf-afe45aa8997b","request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"username","value":"{{username}}","description":"<p>(Required) String: The user's desired username</p>\n","type":"text"},{"key":"email","value":"{{email}}","description":"<p>(Required) String: The user's desired email address</p>\n","type":"text"},{"key":"password1","value":"{{password}}","description":"<p>(Required) String: The user's desired password</p>\n","type":"text"},{"key":"password2","value":"{{password}}","description":"<p>(Required) String: Password confirmation</p>\n","type":"text"}]},"url":"{{API_ORIGIN}}{{VERSION}}/user","description":"<p>Create an account. Note that a successful response does not fit the standard response style.</p>\n","urlObject":{"path":["user"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b295459d-fb89-1dc6-35cf-afe45aa8997b"},{"name":"/authenticate","id":"2084e0ac-c411-017a-b9f1-2ce171b7aefe","request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"username","value":"{{email}}","description":"<p>(Required) The user's email address</p>\n","type":"text"},{"key":"password","value":"{{password}}","description":"<p>(Required) The user's password</p>\n","type":"text"}]},"url":"{{API_ORIGIN}}{{VERSION}}/authenticate","description":"<p>Retrieve your authentication token.</p>\n","urlObject":{"path":["authenticate"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[]}},"response":[{"id":"c26df3f6-d287-5c21-fe24-df4e87fe8ccb","name":"/authenticate","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded","disabled":true}],"body":{"mode":"urlencoded","urlencoded":[{"key":"username","value":"{{email}}","description":"(Required) The user's email address","type":"text"},{"key":"password","value":"{{password}}","description":"(Required) The user's password","type":"text"}]},"url":"{{API_ORIGIN}}{{VERSION}}/authenticate"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"access-control-allow-credentials","key":"access-control-allow-credentials","value":"true","description":""},{"name":"allow","key":"allow","value":"POST, OPTIONS","description":""},{"name":"content-length","key":"content-length","value":"52","description":""},{"name":"content-type","key":"content-type","value":"application/json","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:01:52 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"422","body":"{\"token\":\"a83f0831967a91672f620e7c24ee43d1572a5802\"}"}],"_postman_id":"2084e0ac-c411-017a-b9f1-2ce171b7aefe"},{"name":"/user","id":"5a15410a-4fea-e18d-c1ec-789463c4ee8f","request":{"method":"GET","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"<p>The user's authentication token</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/user","description":"<p>Retrieve the current user's info.</p>\n","urlObject":{"path":["user"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[]}},"response":[{"id":"5722a47d-7db0-087a-2088-f967d7c4100d","name":"/user","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"The user's authentication token"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/user"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"allow","key":"allow","value":"GET, POST, PUT, HEAD, OPTIONS","description":""},{"name":"content-length","key":"content-length","value":"508","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:00:23 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"404","body":"{\"count\": null, \"message\": \"\", \"data\": {\"username\": \"testuser\", \"favoriteArtists\": [265, 81, 79], \"paymentLast4\": null, \"subscriptionCancelAtPeriodEnd\": null, \"favoritePartners\": [15, 1], \"subscriptionInterval\": null, \"subscriptionIsActive\": null, \"paymentBrand\": null, \"favoriteGalleries\": [19192, 21476], \"subscriptionStatus\": null, \"favoriteItems\": [114787, 146646, 114780, 39855, 41587], \"id\": 8429, \"subscriptionCurrentPeriodEnd\": null, \"email\": \"test@meural.com\"}, \"isLast\": null, \"isPaginated\": false}"}],"_postman_id":"5a15410a-4fea-e18d-c1ec-789463c4ee8f"},{"name":"/user","id":"1d88f087-aab1-f0fb-935b-7c7f3e8bf7f9","request":{"method":"PUT","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"<p>The user's authentication token</p>\n"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"email","value":"{{email}}","description":"<p>String: The user's desired email address</p>\n","type":"text"},{"key":"username","value":"{{username}}","description":"<p>String: The user's desired username</p>\n","type":"text"}]},"url":"{{API_ORIGIN}}{{VERSION}}/user","description":"<p>Update the user's email address or username</p>\n","urlObject":{"path":["user"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1d88f087-aab1-f0fb-935b-7c7f3e8bf7f9"},{"name":"/user/items","id":"543b3dcc-c989-7915-593a-61e6a038cbcf","request":{"method":"GET","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"<p>The user's authentication token</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/user/items?count={{count}}&page={{page}}","description":"<p>Retrieve the user's personal uploads</p>\n","urlObject":{"path":["user","items"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[{"description":{"content":"<p>The number of objects per page</p>\n","type":"text/plain"},"key":"count","value":"{{count}}"},{"description":{"content":"<p>The page number</p>\n","type":"text/plain"},"key":"page","value":"{{page}}"}],"variable":[]}},"response":[{"id":"5b7e6fd5-da27-459c-d87e-dd834387c313","name":"/user/items","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"The user's authentication token"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{API_ORIGIN}}{{VERSION}}/user/items?count=10&page=1","host":["{{API_ORIGIN}}{{VERSION}}"],"path":["user","items"],"query":[{"key":"count","value":"10","description":"The number of objects per page"},{"key":"page","value":"1","description":"The page number"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"allow","key":"allow","value":"OPTIONS, GET","description":""},{"name":"content-encoding","key":"content-encoding","value":"gzip","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:00:41 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"167","body":"{\"count\": 12, \"message\": \"\", \"data\": [{\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/SyB28ziHcD4BCUgD6vNXhjmsAPMqlV6w.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/SyB28ziHcD4BCUgD6vNXhjmsAPMqlV6w.jpeg\", \"year\": \"1999\", \"userId\": 8429, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 1024, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/40x40/SyB28ziHcD4BCUgD6vNXhjmsAPMqlV6w.jpeg\", \"id\": 398096, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": \"author\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/SyB28ziHcD4BCUgD6vNXhjmsAPMqlV6w.jpeg\", \"categoryIds\": [], \"croppedWidth\": 0, \"type\": \"image\", \"isSampler\": false, \"medium\": \"photography\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/SyB28ziHcD4BCUgD6vNXhjmsAPMqlV6w.jpeg\", \"description\": \"A new description\", \"name\": \"newname\", \"isPublic\": false, \"croppedX1\": 0, \"slug\": \"newname\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/20x20/SyB28ziHcD4BCUgD6vNXhjmsAPMqlV6w.jpeg\", \"categoryNames\": [], \"croppedHeight\": 0, \"originalHeight\": 383, \"artistName\": null, \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/Zsh8cjjWfPFM0ViFxpJ2Npm5Mlnh0CO6.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/Zsh8cjjWfPFM0ViFxpJ2Npm5Mlnh0CO6.jpeg\", \"year\": null, \"userId\": 8429, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 5456, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/40x40/Zsh8cjjWfPFM0ViFxpJ2Npm5Mlnh0CO6.jpeg\", \"id\": 397295, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": null, \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/Zsh8cjjWfPFM0ViFxpJ2Npm5Mlnh0CO6.jpeg\", \"categoryIds\": [], \"croppedWidth\": 0, \"type\": \"image\", \"isSampler\": false, \"medium\": null, \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/Zsh8cjjWfPFM0ViFxpJ2Npm5Mlnh0CO6.jpeg\", \"description\": null, \"name\": \"6tFy4lv\", \"isPublic\": false, \"croppedX1\": 0, \"slug\": \"6tfy4lv\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/20x20/Zsh8cjjWfPFM0ViFxpJ2Npm5Mlnh0CO6.jpeg\", \"categoryNames\": [], \"croppedHeight\": 0, \"originalHeight\": 3632, \"artistName\": null, \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/ryVD5FanS1t3eaA33Hye1cJfWedvXfbg.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/ryVD5FanS1t3eaA33Hye1cJfWedvXfbg.jpeg\", \"year\": null, \"userId\": 8429, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 2448, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/40x40/ryVD5FanS1t3eaA33Hye1cJfWedvXfbg.jpeg\", \"id\": 397294, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": null, \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/ryVD5FanS1t3eaA33Hye1cJfWedvXfbg.jpeg\", \"categoryIds\": [], \"croppedWidth\": 0, \"type\": \"image\", \"isSampler\": false, \"medium\": null, \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/ryVD5FanS1t3eaA33Hye1cJfWedvXfbg.jpeg\", \"description\": null, \"name\": \"YpTmQTz\", \"isPublic\": false, \"croppedX1\": 0, \"slug\": \"yptmqtz\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/20x20/ryVD5FanS1t3eaA33Hye1cJfWedvXfbg.jpeg\", \"categoryNames\": [], \"croppedHeight\": 0, \"originalHeight\": 3060, \"artistName\": null, \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/FsM2niVj5lMABOzuDEkA9QNPGkxvXFZg.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/FsM2niVj5lMABOzuDEkA9QNPGkxvXFZg.jpeg\", \"year\": null, \"userId\": 8429, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 4111, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/40x40/FsM2niVj5lMABOzuDEkA9QNPGkxvXFZg.jpeg\", \"id\": 397293, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": null, \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/FsM2niVj5lMABOzuDEkA9QNPGkxvXFZg.jpeg\", \"categoryIds\": [], \"croppedWidth\": 0, \"type\": \"image\", \"isSampler\": false, \"medium\": null, \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/FsM2niVj5lMABOzuDEkA9QNPGkxvXFZg.jpeg\", \"description\": null, \"name\": \"Xd0zUn3\", \"isPublic\": false, \"croppedX1\": 0, \"slug\": \"xd0zun3\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/20x20/FsM2niVj5lMABOzuDEkA9QNPGkxvXFZg.jpeg\", \"categoryNames\": [], \"croppedHeight\": 0, \"originalHeight\": 3083, \"artistName\": null, \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/8kBqL8hs1XKwTxkuo6tBbUZuKfpJ6XNE.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/8kBqL8hs1XKwTxkuo6tBbUZuKfpJ6XNE.jpeg\", \"year\": null, \"userId\": 8429, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 4320, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/40x40/8kBqL8hs1XKwTxkuo6tBbUZuKfpJ6XNE.jpeg\", \"id\": 397292, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": null, \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/8kBqL8hs1XKwTxkuo6tBbUZuKfpJ6XNE.jpeg\", \"categoryIds\": [], \"croppedWidth\": 0, \"type\": \"image\", \"isSampler\": false, \"medium\": null, \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/8kBqL8hs1XKwTxkuo6tBbUZuKfpJ6XNE.jpeg\", \"description\": null, \"name\": \"A6hX564\", \"isPublic\": false, \"croppedX1\": 0, \"slug\": \"a6hx564\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/20x20/8kBqL8hs1XKwTxkuo6tBbUZuKfpJ6XNE.jpeg\", \"categoryNames\": [], \"croppedHeight\": 0, \"originalHeight\": 3240, \"artistName\": null, \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/pztGOatK2wOeR7K4BSNvVdJOtMC6IWbZ.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/pztGOatK2wOeR7K4BSNvVdJOtMC6IWbZ.jpeg\", \"year\": null, \"userId\": 8429, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 4320, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/40x40/pztGOatK2wOeR7K4BSNvVdJOtMC6IWbZ.jpeg\", \"id\": 397291, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": null, \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/pztGOatK2wOeR7K4BSNvVdJOtMC6IWbZ.jpeg\", \"categoryIds\": [], \"croppedWidth\": 0, \"type\": \"image\", \"isSampler\": false, \"medium\": null, \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/pztGOatK2wOeR7K4BSNvVdJOtMC6IWbZ.jpeg\", \"description\": null, \"name\": \"gcaCo4m\", \"isPublic\": false, \"croppedX1\": 0, \"slug\": \"gcaco4m\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/20x20/pztGOatK2wOeR7K4BSNvVdJOtMC6IWbZ.jpeg\", \"categoryNames\": [], \"croppedHeight\": 0, \"originalHeight\": 3240, \"artistName\": null, \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/hfuyGlAG42sENeOM2AVufB88L6kj9ep8.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/hfuyGlAG42sENeOM2AVufB88L6kj9ep8.jpeg\", \"year\": null, \"userId\": 8429, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 3264, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/40x40/hfuyGlAG42sENeOM2AVufB88L6kj9ep8.jpeg\", \"id\": 397290, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": null, \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/hfuyGlAG42sENeOM2AVufB88L6kj9ep8.jpeg\", \"categoryIds\": [], \"croppedWidth\": 0, \"type\": \"image\", \"isSampler\": false, \"medium\": null, \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/hfuyGlAG42sENeOM2AVufB88L6kj9ep8.jpeg\", \"description\": null, \"name\": \"DaxGb6Z\", \"isPublic\": false, \"croppedX1\": 0, \"slug\": \"daxgb6z\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/20x20/hfuyGlAG42sENeOM2AVufB88L6kj9ep8.jpeg\", \"categoryNames\": [], \"croppedHeight\": 0, \"originalHeight\": 2448, \"artistName\": null, \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/dh9mHUdSy4yYD1dlGAxL98m69eo944vz.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/dh9mHUdSy4yYD1dlGAxL98m69eo944vz.jpeg\", \"year\": null, \"userId\": 8429, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 3264, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/40x40/dh9mHUdSy4yYD1dlGAxL98m69eo944vz.jpeg\", \"id\": 397289, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": null, \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/dh9mHUdSy4yYD1dlGAxL98m69eo944vz.jpeg\", \"categoryIds\": [], \"croppedWidth\": 0, \"type\": \"image\", \"isSampler\": false, \"medium\": null, \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/dh9mHUdSy4yYD1dlGAxL98m69eo944vz.jpeg\", \"description\": null, \"name\": \"UUUbz3r\", \"isPublic\": false, \"croppedX1\": 0, \"slug\": \"uuubz3r\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/20x20/dh9mHUdSy4yYD1dlGAxL98m69eo944vz.jpeg\", \"categoryNames\": [], \"croppedHeight\": 0, \"originalHeight\": 2376, \"artistName\": null, \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/Mgf9w0RTbQEPgmW3PRQHCMCwy2mNJxu2.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/Mgf9w0RTbQEPgmW3PRQHCMCwy2mNJxu2.jpeg\", \"year\": null, \"userId\": 8429, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 2448, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/40x40/Mgf9w0RTbQEPgmW3PRQHCMCwy2mNJxu2.jpeg\", \"id\": 397288, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": null, \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/Mgf9w0RTbQEPgmW3PRQHCMCwy2mNJxu2.jpeg\", \"categoryIds\": [], \"croppedWidth\": 0, \"type\": \"image\", \"isSampler\": false, \"medium\": null, \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/Mgf9w0RTbQEPgmW3PRQHCMCwy2mNJxu2.jpeg\", \"description\": null, \"name\": \"nRYK7MX\", \"isPublic\": false, \"croppedX1\": 0, \"slug\": \"nryk7mx\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/20x20/Mgf9w0RTbQEPgmW3PRQHCMCwy2mNJxu2.jpeg\", \"categoryNames\": [], \"croppedHeight\": 0, \"originalHeight\": 3264, \"artistName\": null, \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/kDfTg51Fvac7IRU6hIhu0q1vUhUsECdA.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/kDfTg51Fvac7IRU6hIhu0q1vUhUsECdA.jpeg\", \"year\": null, \"userId\": 8429, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 1200, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/40x40/kDfTg51Fvac7IRU6hIhu0q1vUhUsECdA.jpeg\", \"id\": 397287, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": null, \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/kDfTg51Fvac7IRU6hIhu0q1vUhUsECdA.jpeg\", \"categoryIds\": [], \"croppedWidth\": 0, \"type\": \"image\", \"isSampler\": false, \"medium\": null, \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/kDfTg51Fvac7IRU6hIhu0q1vUhUsECdA.jpeg\", \"description\": null, \"name\": \"bwb8fn4\", \"isPublic\": false, \"croppedX1\": 0, \"slug\": \"bwb8fn4\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/20x20/kDfTg51Fvac7IRU6hIhu0q1vUhUsECdA.jpeg\", \"categoryNames\": [], \"croppedHeight\": 0, \"originalHeight\": 1200, \"artistName\": null, \"isDetailed\": false}], \"isLast\": false, \"isPaginated\": true}"}],"_postman_id":"543b3dcc-c989-7915-593a-61e6a038cbcf"},{"name":"/user/galleries","id":"86b039ee-e063-9984-3ba1-31bc1fa158b7","request":{"method":"GET","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"<p>The user's authentication token</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/user/galleries?count={{count}}&page={{page}}","description":"<p>Retrieve the user's personal playlists</p>\n","urlObject":{"path":["user","galleries"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[{"description":{"content":"<p>The number of objects per page</p>\n","type":"text/plain"},"key":"count","value":"{{count}}"},{"description":{"content":"<p>The page number</p>\n","type":"text/plain"},"key":"page","value":"{{page}}"}],"variable":[]}},"response":[{"id":"2b4f1714-cb9f-a1ce-b09c-5ff2ec9492b9","name":"/user/galleries","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"The user's authentication token"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{API_ORIGIN}}{{VERSION}}/user/galleries?count=10&page=1","host":["{{API_ORIGIN}}{{VERSION}}"],"path":["user","galleries"],"query":[{"key":"count","value":"10","description":"The number of objects per page"},{"key":"page","value":"1","description":"The page number"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"allow","key":"allow","value":"OPTIONS, GET","description":""},{"name":"content-encoding","key":"content-encoding","value":"gzip","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:00:50 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"232","body":"{\"count\": 2, \"message\": \"\", \"data\": [{\"username\": \"testuser\", \"isSampler\": false, \"slug\": null, \"cover2x\": null, \"categoryNames\": [], \"itemIds\": [], \"hero2x\": null, \"isPurchased\": false, \"isPublic\": false, \"cover\": null, \"id\": 37361, \"featuredAt\": null, \"orientation\": \"vertical\", \"coverId\": null, \"icon2x\": null, \"hero\": null, \"icon\": null, \"name\": \"My first playlist\", \"categoryIds\": [], \"userId\": 8429, \"description\": \"My greate playlist\"}, {\"username\": \"testuser\", \"isSampler\": false, \"slug\": null, \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/344x610/eZqZExnrF3zwlNquJtYq4ftrcOgiQAet.jpeg\", \"categoryNames\": [], \"itemIds\": [397289, 397285, 397293, 397294], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/eZqZExnrF3zwlNquJtYq4ftrcOgiQAet.jpeg\", \"isPurchased\": false, \"isPublic\": false, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/172x305/eZqZExnrF3zwlNquJtYq4ftrcOgiQAet.jpeg\", \"id\": 37318, \"featuredAt\": null, \"orientation\": \"vertical\", \"coverId\": 397285, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/40x40/eZqZExnrF3zwlNquJtYq4ftrcOgiQAet.jpeg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/eZqZExnrF3zwlNquJtYq4ftrcOgiQAet.jpeg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/20x20/eZqZExnrF3zwlNquJtYq4ftrcOgiQAet.jpeg\", \"name\": \"Good boys\", \"categoryIds\": [], \"userId\": 8429, \"description\": \"A lot of good boys here!\"}], \"isLast\": true, \"isPaginated\": true}"}],"_postman_id":"86b039ee-e063-9984-3ba1-31bc1fa158b7"},{"name":"/user/devices","id":"10d45d6e-c85c-51b4-8e35-8111ffda7190","request":{"method":"GET","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"<p>The user's authentication token</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/user/devices?count={{count}}&page={{page}}","description":"<p>Retrive the user's canvases</p>\n","urlObject":{"path":["user","devices"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[{"description":{"content":"<p>The number of objects per page</p>\n","type":"text/plain"},"key":"count","value":"{{count}}"},{"description":{"content":"<p>The page number</p>\n","type":"text/plain"},"key":"page","value":"{{page}}"}],"variable":[]}},"response":[{"id":"65bdbe8b-2b25-fe5e-9a59-daca59e49923","name":"/user/devices","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"The user's authentication token"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{API_ORIGIN}}{{VERSION}}/user/devices?count=10&page=1","host":["{{API_ORIGIN}}{{VERSION}}"],"path":["user","devices"],"query":[{"key":"count","value":"10","description":"The number of objects per page"},{"key":"page","value":"1","description":"The page number"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"allow","key":"allow","value":"OPTIONS, GET","description":""},{"name":"content-length","key":"content-length","value":"846","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:24:13 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"174","body":"{\"count\": 1, \"message\": \"\", \"data\": [{\"schedulerEnabled\": true, \"orientation\": \"vertical\", \"orientationMatch\": false, \"frameColor\": \"black\", \"userId\": 8429, \"localIp\": \"172.31.46.101\", \"timezone\": \"UTC\", \"id\": 1545, \"gestureFeedbackHelp\": true, \"previewDuration\": 60, \"syncedAt\": \"Aug. 15, 2017, 08:19PM\", \"imageShuffle\": false, \"version\": \"2.0.2\", \"backgroundColor\": \"black\", \"alsEnabled\": true, \"status\": \"offline\", \"freeSpace\": 4425, \"goesDark\": false, \"productKey\": \"MEU0000000000001\", \"imageDuration\": 0, \"fillMode\": \"as is\", \"user\": \"testuser\", \"overlayDuration\": 120, \"galleryRotation\": false, \"galleryIds\": [46, 41, 40, 39], \"currentImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/7x9j7pag6hshkx6.thumb.jpeg\", \"alias\": \"munch-306\", \"alsSensitivity\": 20, \"model\": 0, \"gestureFeedback\": true}], \"isLast\": true, \"isPaginated\": true}"}],"_postman_id":"10d45d6e-c85c-51b4-8e35-8111ffda7190"},{"name":"/user/feedback","id":"775d21dd-2cfb-4f33-8e70-c999c7ab3de6","request":{"method":"POST","header":[{"key":"Authorization","value":"Token {{TOKEN}}"},{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"rating","value":"{{rating}}","description":"<p>(Required) The feedback rating as a number between 1-5</p>\n","type":"text"},{"key":"source","value":"{{source}}","description":"<p>(Required) The feedback source (ios, android)</p>\n","type":"text"},{"key":"message","value":"{{message}}","description":"<p>(Required) The feedback message to send to the Meural team</p>\n","type":"text"},{"key":"version","value":"{{app_version}}","type":"text"},{"key":"can_email","value":"true","type":"text","disabled":true},{"key":"contact","value":"true","type":"text"}]},"url":"{{API_ORIGIN}}{{VERSION}}/user/feedback","urlObject":{"path":["user","feedback"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"775d21dd-2cfb-4f33-8e70-c999c7ab3de6"}],"id":"99acd090-1a42-c5ed-73a3-f8956c9e2c0b","description":"<p>These endpoints allow you to create new users, retrieve and update user information, and to retrieve canvases and user-created content such as items and galleries.</p>\n","_postman_id":"99acd090-1a42-c5ed-73a3-f8956c9e2c0b"},{"name":"Favorites","item":[{"name":"/favorites","id":"e536de49-12f9-c461-eb06-9716878431f2","request":{"method":"POST","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"<p>The user's authentication token</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"model\": \"Item\",\n\t\"id\": 329793\n}"},"url":"{{API_ORIGIN}}{{VERSION}}/favorites","description":"<p>Create a favorite. The post data must be a json object of the following form:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"model\": \"{{model_name}}\",\n    \"id\": {{id}}\n}\n</code></pre><p>Valid model names are:</p>\n<ul>\n<li>item</li>\n<li>gallery</li>\n<li>artist</li>\n<li>channel</li>\n</ul>\n","urlObject":{"path":["favorites"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[]}},"response":[{"id":"5bdb6c92-7568-828d-7b5f-5fd7b508c875","name":"/favorites","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"The user's authentication token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"model\": \"Item\",\n\t\"id\": 329793\n}"},"url":"{{API_ORIGIN}}{{VERSION}}/favorites"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"name":"access-control-allow-credentials","key":"access-control-allow-credentials","value":"true","description":""},{"name":"allow","key":"allow","value":"POST, DELETE, OPTIONS","description":""},{"name":"content-length","key":"content-length","value":"109","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:02:44 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"201","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"169","body":"{\"count\": null, \"message\": \"\", \"data\": {\"model\": \"item\", \"id\": 329793}, \"isLast\": null, \"isPaginated\": false}"}],"_postman_id":"e536de49-12f9-c461-eb06-9716878431f2"},{"name":"/favorites","id":"72766972-2091-869d-54bc-2253db019416","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"<p>The user's authentication token</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"model\": \"Item\",\n\t\"id\": 329793\n}"},"url":"{{API_ORIGIN}}{{VERSION}}/favorites","description":"<p>Delete a favorite. The post data must be a json object of the following form:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"model\": \"{{model_name}}\",\n    \"id\": {{id}}\n}\n</code></pre><p>Valid model names are:</p>\n<ul>\n<li>item</li>\n<li>gallery</li>\n<li>artist</li>\n<li>channel</li>\n</ul>\n","urlObject":{"path":["favorites"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[]}},"response":[{"id":"c76793b4-bebe-6b31-a32f-6af2d8169838","name":"/favorites","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"The user's authentication token"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"model\": \"Item\",\n\t\"id\": 329793\n}"},"url":"{{API_ORIGIN}}{{VERSION}}/favorites"},"status":"No Content","code":204,"_postman_previewlanguage":"plainText","header":[{"name":"access-control-allow-credentials","key":"access-control-allow-credentials","value":"true","description":""},{"name":"allow","key":"allow","value":"POST, DELETE, OPTIONS","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:02:53 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"204","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"167","body":""}],"_postman_id":"72766972-2091-869d-54bc-2253db019416"},{"name":"/favorites/items","id":"b0b270e8-80f2-0130-ad0b-7e6599d9df78","request":{"method":"GET","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"<p>The user's authentication token</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/favorites/items?count={{count}}&page={{page}}","description":"<p>Retrieve the user's favorite items.</p>\n","urlObject":{"path":["favorites","items"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[{"description":{"content":"<p>The number of objects per page</p>\n","type":"text/plain"},"key":"count","value":"{{count}}"},{"description":{"content":"<p>The page number</p>\n","type":"text/plain"},"key":"page","value":"{{page}}"}],"variable":[]}},"response":[{"id":"d93c0250-4617-fb5a-5d17-6dc595c3222f","name":"/favorites/items","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"The user's authentication token"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{API_ORIGIN}}{{VERSION}}/favorites/items?count=10&page=1","host":["{{API_ORIGIN}}{{VERSION}}"],"path":["favorites","items"],"query":[{"key":"count","value":"10"},{"key":"page","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"allow","key":"allow","value":"OPTIONS, GET","description":""},{"name":"content-encoding","key":"content-encoding","value":"gzip","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:03:00 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"181","body":"{\"count\": 5, \"message\": \"\", \"data\": [{\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/arqt8br0gd0m09b.thumb.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/tkgy89wme4hh0ud.optimized.thumb.jpeg\", \"year\": \"1965\", \"userId\": 2224, \"artistId\": 265, \"sortedOrder\": null, \"originalWidth\": 3452, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/40x40/tkgy89wme4hh0ud.optimized.thumb.jpeg\", \"id\": 114787, \"croppedY1\": 22, \"dimensions\": \"96 x 288\", \"copyright\": \"O\\u2019Keeffe,\\u00a9 2016 Georgia O'Keeffe Museum / Artists Rights Society (ARS), New York\", \"author\": \"Georgia O'Keeffe\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/1000x500/tkgy89wme4hh0ud.optimized.thumb.jpeg\", \"categoryIds\": [172, 12, 27, 65], \"croppedWidth\": 2041, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil on canvas\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/1000x500/tkgy89wme4hh0ud.optimized.thumb.jpeg\", \"description\": \"Sky above Clouds speaks to O'Keeffe's many travels in the 1950s and 1960s. While en route to the Far East, she became intrigued by the view of the clouds below the airplane and sought to render this aerial view in paint as if to symbolize her own expanded view of the world. Remarkably, as she was nearly 80 years old at the time, she began stretching enormous canvases, nearly 24 feet wide, to capture the expansiveness of the scene. This painting, with its high horizon line and simplified clouds that extend beyond the frame, shows the influence of Eastern landscape painting. The work underscores that O'Keeffe's art, whatever the motif, remains consistent over many decades: she renders a naturalistic scene or object in such a way as to focus on its essential formal elements and render it abstractly.[The Art Story](https://www.theartstory.org/artist-okeeffe-georgia.htm)\", \"name\": \"Sky Above Clouds IV\", \"isPublic\": true, \"croppedX1\": 625, \"slug\": \"sky-above-clouds-iv\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/20x20/tkgy89wme4hh0ud.optimized.thumb.jpeg\", \"categoryNames\": [\"American Regionalism\", \"Modernism\", \"Abstract\", \"Modernism\"], \"croppedHeight\": 1147, \"originalHeight\": 1192, \"artistName\": \"Georgia O'Keeffe\", \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/bigr3sKrjJdRIFIYXLzpSE65m52cW7Ei.thumb.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/sNIqukY7qKpczIBt57pgyZJcHevnfGck.optimized.thumb.jpeg\", \"year\": \"1893\", \"userId\": 2214, \"artistId\": 81, \"sortedOrder\": null, \"originalWidth\": 7881, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/40x40/sNIqukY7qKpczIBt57pgyZJcHevnfGck.optimized.thumb.jpeg\", \"id\": 146646, \"croppedY1\": 88, \"dimensions\": \"135.6 x 140 cm\", \"copyright\": null, \"author\": \"Edvard Munch\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/sNIqukY7qKpczIBt57pgyZJcHevnfGck.optimized.thumb.jpeg\", \"categoryIds\": [72], \"croppedWidth\": 4149, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil on Canvas\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/sNIqukY7qKpczIBt57pgyZJcHevnfGck.optimized.thumb.jpeg\", \"description\": null, \"name\": \"Starry Night\", \"isPublic\": true, \"croppedX1\": 1866, \"slug\": \"starry-night\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/20x20/sNIqukY7qKpczIBt57pgyZJcHevnfGck.optimized.thumb.jpeg\", \"categoryNames\": [\"Nineteenth Century\"], \"croppedHeight\": 7376, \"originalHeight\": 7581, \"artistName\": \"Edvard Munch\", \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/lgk51agwuj0dd0y.thumb.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/ynmkl9fvkn2aidu.optimized.thumb.jpeg\", \"year\": \"1924\", \"userId\": 2224, \"artistId\": 265, \"sortedOrder\": null, \"originalWidth\": 2000, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/40x40/ynmkl9fvkn2aidu.optimized.thumb.jpeg\", \"id\": 114780, \"croppedY1\": 220, \"dimensions\": \"36 x 30\", \"copyright\": \"O\\u2019Keeffe \\u00a9 2016 Georgia O'Keeffe Museum / Artists Rights Society (ARS), New York\", \"author\": \"Georgia O'Keeffe\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/1000x500/ynmkl9fvkn2aidu.optimized.thumb.jpeg\", \"categoryIds\": [172, 49, 12, 65], \"croppedWidth\": 1177, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil on canvas\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/1000x500/ynmkl9fvkn2aidu.optimized.thumb.jpeg\", \"description\": \"In 1924, Alfred Stieglitz and Georgia O\\u2019Keeffe were married. \\r\\n\\r\\n\\\"Petunia No. 2, one of O'Keeffe's first large-scale renderings of a flower, represents the beginning of her exploration of a theme that would mark her career. In this painting, she magnifies the flower's form to emphasize its shape and color. She stated that \\\"nobody really sees a flower - really - it is so small - we haven't time - and to see takes time... So I said to myself - I'll paint what I see - what the flower is to me but I'll paint it big and they will be surprised into taking time to look at it.\\\" Her flower images often received interpretations that O'Keeffe disagreed with, particularly from feminist critics who saw these paintings as veiled illusions to female genitalia. For O'Keeffe, there was no hidden symbolism, just the essence of the flower.\\\" [The Art Story](http://www.theartstory.org/artist-okeeffe-georgia-artworks.htm#pnt_2)\", \"name\": \"Petunia No. 2\", \"isPublic\": true, \"croppedX1\": 502, \"slug\": \"petunia-no-2\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/20x20/ynmkl9fvkn2aidu.optimized.thumb.jpeg\", \"categoryNames\": [\"American Regionalism\", \"Nature\", \"Modernism\", \"Modernism\"], \"croppedHeight\": 2093, \"originalHeight\": 2552, \"artistName\": \"Georgia O'Keeffe\", \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/1nenkn3g6mpjlzb.thumb.jpg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/ccmkfyaz6u86fj2.optimized.thumb.jpg\", \"year\": \"1873-74\", \"userId\": 2224, \"artistId\": 79, \"sortedOrder\": null, \"originalWidth\": 2000, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/40x40/ccmkfyaz6u86fj2.optimized.thumb.jpg\", \"id\": 39855, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": \"Claude Monet\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/1000x500/ccmkfyaz6u86fj2.optimized.thumb.jpg\", \"categoryIds\": [148, 13, 29, 72], \"croppedWidth\": 1519, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil on canvas\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/1000x500/ccmkfyaz6u86fj2.optimized.thumb.jpg\", \"description\": null, \"name\": \"Boulevard des Capucines\", \"isPublic\": true, \"croppedX1\": 26, \"slug\": \"boulevard-des-capucines\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/20x20/ccmkfyaz6u86fj2.optimized.thumb.jpg\", \"categoryNames\": [\"Impressionism\", \"Feature 3\", \"Landscape\", \"Nineteenth Century\"], \"croppedHeight\": 2699, \"originalHeight\": 2699, \"artistName\": \"Claude Monet\", \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/pp4ivd9xawfp4lp.thumb.jpg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/rk4ki7ow6pwfkj7.optimized.thumb.jpg\", \"year\": \"1885\", \"userId\": 2224, \"artistId\": 79, \"sortedOrder\": null, \"originalWidth\": 2481, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/40x40/rk4ki7ow6pwfkj7.optimized.thumb.jpg\", \"id\": 41587, \"croppedY1\": 607, \"dimensions\": null, \"copyright\": null, \"author\": \"Claude Monet\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/1000x500/rk4ki7ow6pwfkj7.optimized.thumb.jpg\", \"categoryIds\": [148, 40, 72], \"croppedWidth\": 2471, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil on canvas\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/1000x500/rk4ki7ow6pwfkj7.optimized.thumb.jpg\", \"description\": null, \"name\": \"The Poppy Field near Giverny\", \"isPublic\": true, \"croppedX1\": 5, \"slug\": \"the-poppy-field-near-giverny\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/20x20/rk4ki7ow6pwfkj7.optimized.thumb.jpg\", \"categoryNames\": [\"Impressionism\", \"Flora and Fauna\", \"Nineteenth Century\"], \"croppedHeight\": 1390, \"originalHeight\": 2000, \"artistName\": \"Claude Monet\", \"isDetailed\": false}], \"isLast\": true, \"isPaginated\": true}"}],"_postman_id":"b0b270e8-80f2-0130-ad0b-7e6599d9df78"},{"name":"/favorites/galleries","id":"86ca18cd-4465-f53b-d014-30c0fe6c560f","request":{"method":"GET","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"<p>The user's authentication token</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/favorites/galleries?count={{count}}&page={{page}}","description":"<p>Retrieve the user's favorite items.</p>\n","urlObject":{"path":["favorites","galleries"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[{"key":"count","value":"{{count}}"},{"key":"page","value":"{{page}}"}],"variable":[]}},"response":[{"id":"d833e13e-7006-b0e2-f424-b4c5bf9f3674","name":"/favorites/galleries","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"The user's authentication token"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{API_ORIGIN}}{{VERSION}}/favorites/galleries?count=10&page=1","host":["{{API_ORIGIN}}{{VERSION}}"],"path":["favorites","galleries"],"query":[{"key":"count","value":"10"},{"key":"page","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"allow","key":"allow","value":"OPTIONS, GET","description":""},{"name":"content-encoding","key":"content-encoding","value":"gzip","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:03:05 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"181","body":"{\"count\": 2, \"message\": \"\", \"data\": [{\"username\": \"Meural \\u00a0\", \"isSampler\": false, \"slug\": \"the-blues\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/610x344/10b5xvi169b7xsm.optimized.thumb.jpg\", \"categoryNames\": [\"Blend\", \"Fusion\", \"Series 2\"], \"itemIds\": [34048, 34069, 12610, 10285, 39602, 105528, 98404, 34054, 105519, 105531, 106492, 108786, 115597, 122761, 143445], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/10b5xvi169b7xsm.optimized.thumb.jpg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/305x172/10b5xvi169b7xsm.optimized.thumb.jpg\", \"id\": 19192, \"featuredAt\": \"2017-10-03 14:47:51.269657+00:00\", \"orientation\": \"horizontal\", \"coverId\": 10285, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/40x40/10b5xvi169b7xsm.optimized.thumb.jpg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/10b5xvi169b7xsm.optimized.thumb.jpg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/20x20/10b5xvi169b7xsm.optimized.thumb.jpg\", \"name\": \"The Blues\", \"categoryIds\": [53, 59, 7], \"userId\": 257, \"description\": \"Shades of blue to go with any mood.\"}, {\"username\": \"Meural \\u00a0\", \"isSampler\": false, \"slug\": \"spot-pantone-14-0121-tcx\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/344x610/fBKZn6N7KTXqjmIDRhULi3QqeDB9WiHi.jpeg\", \"categoryNames\": [\"Fusion\", \"Series 2\"], \"itemIds\": [98406, 168747, 189492, 92147, 100470, 60240, 39795, 186811, 218828, 38988, 39824, 225270], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/1000x500/fBKZn6N7KTXqjmIDRhULi3QqeDB9WiHi.jpeg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/172x305/fBKZn6N7KTXqjmIDRhULi3QqeDB9WiHi.jpeg\", \"id\": 21476, \"featuredAt\": \"2018-01-03 15:26:45.864980+00:00\", \"orientation\": \"vertical\", \"coverId\": 168747, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/40x40/fBKZn6N7KTXqjmIDRhULi3QqeDB9WiHi.jpeg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/1000x500/fBKZn6N7KTXqjmIDRhULi3QqeDB9WiHi.jpeg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/20x20/fBKZn6N7KTXqjmIDRhULi3QqeDB9WiHi.jpeg\", \"name\": \"Spot: Pantone 14-0121 TCX\", \"categoryIds\": [59, 7], \"userId\": 257, \"description\": \"Meural brings you galleries inspired by different Pantone colors. This week's collection is inspired by Pantone 14-0121 TCX.\\r\\n\\r\\nAlso featured in [horizontal](https://my.meural.com/playlist/21477).\"}], \"isLast\": true, \"isPaginated\": true}"}],"_postman_id":"86ca18cd-4465-f53b-d014-30c0fe6c560f"},{"name":"/favorites/artists","id":"c98f0c22-8fc4-0e4c-c92e-6ff094cc07cb","request":{"method":"GET","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"<p>The user's authentication token</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/favorites/artists?count={{count}}&page={{page}}","description":"<p>Retrieve the user's favorite artists.</p>\n","urlObject":{"path":["favorites","artists"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[{"key":"count","value":"{{count}}"},{"key":"page","value":"{{page}}"}],"variable":[]}},"response":[{"id":"3630271f-2e1f-fa06-fdba-13517d18ea6b","name":"/favorites/artists","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"The user's authentication token"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{API_ORIGIN}}{{VERSION}}/favorites/artists?count=10&page=1","host":["{{API_ORIGIN}}{{VERSION}}"],"path":["favorites","artists"],"query":[{"key":"count","value":"10"},{"key":"page","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"allow","key":"allow","value":"OPTIONS, GET","description":""},{"name":"content-encoding","key":"content-encoding","value":"gzip","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:03:10 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"186","body":"{\"count\": 3, \"message\": \"\", \"data\": [{\"slug\": \"georgia-okeeffe\", \"death\": \"1986\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/1000x500/tkgy89wme4hh0ud.optimized.thumb.jpeg\", \"categoryNames\": [\"Modernism\"], \"firstName\": \"Georgia\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/1000x500/tkgy89wme4hh0ud.optimized.thumb.jpeg\", \"gender\": \"Female\", \"name\": \"Georgia O'Keeffe\", \"avatar2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/800x800/ynmkl9fvkn2aidu.optimized.thumb.jpeg\", \"featuredAt\": \"2017-04-28 13:35:05.210646+00:00\", \"avatar\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/400x400/ynmkl9fvkn2aidu.optimized.thumb.jpeg\", \"birth\": \"1887\", \"lastName\": \"O'Keeffe\", \"id\": 265, \"nationality\": \"American\", \"categoryIds\": [65], \"description\": \"Georgia O'Keeffe played a pivotal role in the development of American modernism and its relationship to European avante garde movements of the early twentieth century. Producing a substantial body of work over seven decades, she sought to capture the emotion and power of objects through abstracting the natural world. [Alfred Stieglitz](https://my.meural.com/browse/artists/268) identified her as the first female American modernist, whose paintings of flowers, barren landscapes, and close-up still lifes have become a part of the mythology and iconography of the American artistic landscape. Text courtesy of [The Art Story](http://www.theartstory.org/)\"}, {\"slug\": \"edvard-munch\", \"death\": \"1944\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/fysddbln6rzxd6s.optimized.thumb.jpg\", \"categoryNames\": [\"Modernism\"], \"firstName\": \"Edvard\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/fysddbln6rzxd6s.optimized.thumb.jpg\", \"gender\": \"Male\", \"name\": \"Edvard Munch\", \"avatar2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/800x800/pgpeukyy19pihw6.optimized.thumb.jpg\", \"featuredAt\": \"2017-04-28 13:35:06.600181+00:00\", \"avatar\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/400x400/pgpeukyy19pihw6.optimized.thumb.jpg\", \"birth\": \"1863\", \"lastName\": \"Munch\", \"id\": 81, \"nationality\": \"Norwegian\", \"categoryIds\": [65], \"description\": \"Edvard Munch was a talented but tormented artist obsessed with the idea of human mortality. As such - along with his use of vivid colors and abstract forms - his works were saturated in themes of chronic illness, sexual liberation, and religion. Munch\\u2019s paintings and illustrations became known as windows into the uncomfortable, yet intriguing depths of the human mind.\"}, {\"slug\": \"claude-monet\", \"death\": \"1926\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/1000x500/18js3nho3xuwomg.optimized.thumb.jpg\", \"categoryNames\": [\"Modernism\", \"Impressionism\"], \"firstName\": \"Claude\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/1000x500/18js3nho3xuwomg.optimized.thumb.jpg\", \"gender\": \"Male\", \"name\": \"Claude Monet\", \"avatar2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/800x800/xjdfMMYHxvEsrBZqbOqnwvMu9Ccxnu8J.jpeg\", \"featuredAt\": \"2017-04-28 13:35:06.496752+00:00\", \"avatar\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/400x400/xjdfMMYHxvEsrBZqbOqnwvMu9Ccxnu8J.jpeg\", \"birth\": \"1840\", \"lastName\": \"Monet\", \"id\": 79, \"nationality\": \"French\", \"categoryIds\": [65, 148], \"description\": \"As the leading founder of the French Impressionists, Claude Monet's inspiring talent and personality were crucial in bringing the movement, and it's members, together. Monet was influenced by the Realist painters, and so, like those before him, he often depicted the landscapes and leisurely activities of Paris society and the Normandy coast. He developed a unique style of painting depth through light and shadows, seeking to capture, on canvas, the very act of perceiving nature. Monet lead a fulfilling career\\u2014creating some of the world's most beloved pieces of art\\u2014 and set a benchmark for decades of abstract and modernist artists to come.\"}], \"isLast\": true, \"isPaginated\": true}"}],"_postman_id":"c98f0c22-8fc4-0e4c-c92e-6ff094cc07cb"},{"name":"/favorites/channels","id":"74ab4068-cbb4-7068-b727-0c41292b0367","request":{"method":"GET","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"<p>The user's authentication token</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/favorites/channels?count={{count}}&page={{page}}","description":"<p>Retrieve the user's favorite channels.</p>\n","urlObject":{"path":["favorites","channels"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[{"key":"count","value":"{{count}}"},{"key":"page","value":"{{page}}"}],"variable":[]}},"response":[{"id":"2586cd12-ad03-a30f-7758-829068c58ac4","name":"/favorites/channels","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"The user's authentication token"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{API_ORIGIN}}{{VERSION}}/favorites/channels?count=10&page=1","host":["{{API_ORIGIN}}{{VERSION}}"],"path":["favorites","channels"],"query":[{"key":"count","value":"10"},{"key":"page","value":"1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"allow","key":"allow","value":"OPTIONS, GET","description":""},{"name":"content-encoding","key":"content-encoding","value":"gzip","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:03:15 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"150","body":"{\"count\": 2, \"message\": \"\", \"data\": [{\"id\": 15, \"order\": 0, \"name\": \"Splash and Grab\", \"description\": \"[Splash & Grab](http://splashandgrab.co.uk/) is a new photography magazine with a single\\u00a0objective: to promote new global photography. It was founded by a group of young graduates. Since even the\\u00a0most successful magazines had to start somewhere, they took the view that if they were going to start at the bottom, they might as well do things their own\\u00a0way.\\u00a0They are now distributed throughout Europe\\u2019s top galleries and bookshops and have put hundreds of photographer into print, often for the first time.\", \"logo\": \"https://d3qmok6r0qa65b.cloudfront.net/media/6adf97f83acf6453d4a6a4b1070f3754/A6ABWPfqSQDkEsdbeoctP9EkbKP9sU2L.jpeg\", \"avatar\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/nWBUsByWpKNyek0VjfvHXds1fiGeBdyW.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/nWBUsByWpKNyek0VjfvHXds1fiGeBdyW.jpeg\", \"year\": \"2016\", \"userId\": 2224, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 2000, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/40x40/nWBUsByWpKNyek0VjfvHXds1fiGeBdyW.jpeg\", \"id\": 327495, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": \"Iacopo Pasqui\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/nWBUsByWpKNyek0VjfvHXds1fiGeBdyW.jpeg\", \"categoryIds\": [], \"croppedWidth\": 0, \"type\": \"image\", \"isSampler\": false, \"medium\": null, \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/nWBUsByWpKNyek0VjfvHXds1fiGeBdyW.jpeg\", \"description\": null, \"name\": \"From 'Americana' Series\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"from-americana-series\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/20x20/nWBUsByWpKNyek0VjfvHXds1fiGeBdyW.jpeg\", \"categoryNames\": [], \"croppedHeight\": 0, \"originalHeight\": 1125, \"artistName\": null, \"isDetailed\": false}, \"hero\": null, \"featuredAt\": null}, {\"id\": 1, \"order\": 0, \"name\": \"Art&Found\", \"description\": \"[Art&Found](https://www.artandfound.co/) is a curated platform for quality affordable art by emerging Indian artists, for a new generation of art buyers.\", \"logo\": \"https://d3qmok6r0qa65b.cloudfront.net/media/6adf97f83acf6453d4a6a4b1070f3754/Ayawg5EFsvd38sdR9URhLyQtPxbjpnue.jpg\", \"avatar\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/DbOx4EOYiey1BcwfehnwYp2HJRoOqgiD.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/DbOx4EOYiey1BcwfehnwYp2HJRoOqgiD.jpeg\", \"year\": null, \"userId\": 2224, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 2004, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/40x40/DbOx4EOYiey1BcwfehnwYp2HJRoOqgiD.jpeg\", \"id\": 321760, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": \"Courtesy of Art&Found\", \"author\": \"Malay Bargali\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/DbOx4EOYiey1BcwfehnwYp2HJRoOqgiD.jpeg\", \"categoryIds\": [10, 70], \"croppedWidth\": 0, \"type\": \"image\", \"isSampler\": false, \"medium\": \"192 gsm Epson Enhanced Matte\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/DbOx4EOYiey1BcwfehnwYp2HJRoOqgiD.jpeg\", \"description\": \"Simple images that are a mix of ordinary and surreal expressed by concealed feelings and desires through reduced, figurative line work. One can see a genuine emotion and a sense of self-expression through storytelling. From exaggerated and disproportionately stylized figures to witty pen-drawn line work through to explorations of abstract mark-making, Malay isn't afraid to experiment in conveying his own feelings.\", \"name\": \"Fall 02\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"fall-02\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/20x20/DbOx4EOYiey1BcwfehnwYp2HJRoOqgiD.jpeg\", \"categoryNames\": [\"Contemporary\", \"Contemporary\"], \"croppedHeight\": 0, \"originalHeight\": 3562, \"artistName\": null, \"isDetailed\": false}, \"hero\": null, \"featuredAt\": null}], \"isLast\": true, \"isPaginated\": true}"}],"_postman_id":"74ab4068-cbb4-7068-b727-0c41292b0367"}],"id":"bffc567a-129a-0a13-2e35-f5452bf46658","description":"<p>These endpoints allow users to create and retrieve their favorite content.</p>\n","_postman_id":"bffc567a-129a-0a13-2e35-f5452bf46658"},{"name":"Devices","item":[{"name":"/devices","id":"4b06f3a5-016a-714f-6c5b-474c62206313","request":{"method":"POST","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"<p>The user's authentication token</p>\n"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"alias","value":"{{alias}}","description":"<p>(Required) String: The device's alias</p>\n","type":"text"},{"key":"productKey","value":"{{product_key}}","description":"<p>(Required) String: The device's product key</p>\n","type":"text"}]},"url":"{{API_ORIGIN}}{{VERSION}}/devices","description":"<p>Register a device.</p>\n","urlObject":{"path":["devices"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4b06f3a5-016a-714f-6c5b-474c62206313"},{"name":"/devices/:id","id":"3a9bd785-93ea-8634-c630-dde13206d12e","request":{"method":"GET","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"<p>The user's authentication token</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/devices/:id","description":"<p>Retrieve a specific device.</p>\n","urlObject":{"path":["devices",":id"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[{"description":{"content":"<p>The device's id</p>\n","type":"text/plain"},"type":"any","value":"{{deviceId}}","key":"id"}]}},"response":[{"id":"be035a87-754b-dd63-bded-19547ace8bb9","name":"/devices/:id","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"The user's authentication token"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{API_ORIGIN}}{{VERSION}}/devices/:id","host":["{{API_ORIGIN}}{{VERSION}}"],"path":["devices",":id"],"variable":[{"key":"id","value":"1545","description":"The device's id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"allow","key":"allow","value":"GET, PUT, PATCH, DELETE, HEAD, OPTIONS","description":""},{"name":"content-length","key":"content-length","value":"848","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:27:18 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"195","body":"{\"count\": null, \"message\": \"\", \"data\": {\"schedulerEnabled\": true, \"orientation\": \"vertical\", \"orientationMatch\": false, \"frameColor\": \"black\", \"userId\": 8429, \"localIp\": \"172.31.46.101\", \"timezone\": \"UTC\", \"id\": 1545, \"gestureFeedbackHelp\": true, \"previewDuration\": 60, \"syncedAt\": \"Aug. 15, 2017, 08:19PM\", \"imageShuffle\": false, \"version\": \"2.0.2\", \"backgroundColor\": \"black\", \"alsEnabled\": true, \"status\": \"offline\", \"freeSpace\": 4425, \"goesDark\": false, \"productKey\": \"MEU0000000000001\", \"imageDuration\": 0, \"fillMode\": \"as is\", \"user\": \"testuser\", \"overlayDuration\": 120, \"galleryRotation\": false, \"galleryIds\": [46, 41, 40, 39], \"currentImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/7x9j7pag6hshkx6.thumb.jpeg\", \"alias\": \"munch-306\", \"alsSensitivity\": 20, \"model\": 0, \"gestureFeedback\": true}, \"isLast\": null, \"isPaginated\": false}"}],"_postman_id":"3a9bd785-93ea-8634-c630-dde13206d12e"},{"name":"/devices/:id","id":"c8f9afeb-a334-60fb-a7d7-3e801d52386c","request":{"method":"PUT","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"<p>The user's authentication token</p>\n"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"alias","value":"","description":"<p>string</p>\n","type":"text"},{"key":"orientation","value":"","description":"<p>string - <code>horizontal</code> or <code>vertical</code></p>\n","type":"text"},{"key":"orientationMatch","value":"","description":"<p>boolean</p>\n","type":"text"},{"key":"alsEnabled","value":"","description":"<p>boolean</p>\n","type":"text"},{"key":"alsSensitivity","value":"","description":"<p>int - <code>0</code> to <code>100</code> where <code>100</code> is most sensitive</p>\n","type":"text"},{"key":"goesDark","value":"","description":"<p>boolean</p>\n","type":"text"},{"key":"imageShuffle","value":"","description":"<p>boolean</p>\n","type":"text"},{"key":"imageDuration","value":"","description":"<p>int - <code>1</code> to <code>Infinity</code>, <code>0</code> prevents images from rotating</p>\n","type":"text"},{"key":"previewDuration","value":"","description":"<p>int - <code>1</code> to <code>100</code></p>\n","type":"text"},{"key":"overlayDuration","value":"","description":"<p>int - <code>1</code> to <code>100</code></p>\n","type":"text"},{"key":"gestureFeedback","value":"","description":"<p>boolean</p>\n","type":"text"},{"key":"gestureFeedbackHelp","value":"","description":"<p>boolean</p>\n","type":"text"},{"key":"timezone","value":"","description":"<p>string - <code>GET /devices/timezones</code> for list</p>\n","type":"text"},{"key":"backgroundColor","value":"","description":"<p>string - <code>grey</code>, <code>white</code>, or <code>black</code></p>\n","type":"text"},{"key":"frameColor","value":"","description":"<p>string - <code>light</code>, <code>white</code>, <code>black</code>, or <code>winslow</code></p>\n","type":"text"},{"key":"fillMode","value":"","description":"<p>string - <code>as is</code>, <code>contain</code>, <code>autocrop</code>, or <code>stretch</code></p>\n","type":"text"},{"key":"galleryRotation","value":"","description":"<p>boolean</p>\n","type":"text"}]},"url":"{{API_ORIGIN}}{{VERSION}}/devices/:id","description":"<p>Update a specific device's configuration.</p>\n","urlObject":{"path":["devices",":id"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[{"description":{"content":"<p>The device's id</p>\n","type":"text/plain"},"type":"any","value":"{{deviceId}}","key":"id"}]}},"response":[],"_postman_id":"c8f9afeb-a334-60fb-a7d7-3e801d52386c"},{"name":"/devices/:id","id":"964edc16-8c74-ba7a-dd54-019efcdd22b6","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"<p>The user's authentication token</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/devices/:id","description":"<p>Deregister a device.</p>\n","urlObject":{"path":["devices",":id"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[{"description":{"content":"<p>The device's id</p>\n","type":"text/plain"},"type":"any","value":"{{deviceId}}","key":"id"}]}},"response":[],"_postman_id":"964edc16-8c74-ba7a-dd54-019efcdd22b6"},{"name":"/devices/:id/galleries","id":"ad6ffa2e-85b7-3786-f2d7-2f450ce348fc","request":{"method":"GET","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"<p>The user's authentication token</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/devices/:id/galleries?count={{count}}&page={{page}}","description":"<p>Retrieve the galleries that are on the specified device.</p>\n","urlObject":{"path":["devices",":id","galleries"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[{"key":"count","value":"{{count}}"},{"key":"page","value":"{{page}}"}],"variable":[{"description":{"content":"<p>The device's id</p>\n","type":"text/plain"},"type":"any","value":"{{deviceId}}","key":"id"}]}},"response":[{"id":"d31cdcd8-2d0c-f7e1-e8cb-cea79be6cdc3","name":"/devices/:id/galleries","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"The user's authentication token"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{API_ORIGIN}}{{VERSION}}/devices/:id/galleries?count=10&page=1","host":["{{API_ORIGIN}}{{VERSION}}"],"path":["devices",":id","galleries"],"query":[{"key":"count","value":"10"},{"key":"page","value":"1"}],"variable":[{"key":"id","value":"1545","description":"The device's id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"allow","key":"allow","value":"GET, HEAD, OPTIONS","description":""},{"name":"content-encoding","key":"content-encoding","value":"gzip","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:25:07 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"184","body":"{\"count\": 4, \"message\": \"\", \"data\": [{\"username\": \"meural\", \"isSampler\": false, \"slug\": \"gallery-1\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/344x610/x43q40p2ilmkg6r.thumb.jpg\", \"categoryNames\": [], \"itemIds\": [45654, 307, 308, 309, 310, 311, 312, 11425, 314, 315], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/x43q40p2ilmkg6r.thumb.jpg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/172x305/x43q40p2ilmkg6r.thumb.jpg\", \"id\": 39, \"featuredAt\": \"2015-12-04 19:43:33.436500+00:00\", \"orientation\": \"vertical\", \"coverId\": 315, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/40x40/x43q40p2ilmkg6r.thumb.jpg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/x43q40p2ilmkg6r.thumb.jpg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/20x20/x43q40p2ilmkg6r.thumb.jpg\", \"name\": \"Gallery 1\", \"categoryIds\": [], \"userId\": 2224, \"description\": \"This taster gallery of classic and contemporary artwork has been designed to give you a taste of the diversity you will find the Meural Permanent Collection - a dynamic and growing online library of the world\\u2019s best art.\"}, {\"username\": \"meural\", \"isSampler\": false, \"slug\": \"gallery-4\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/610x344/uxemspivqhnblmb.thumb.jpg\", \"categoryNames\": [\"Contemporary\", \"Blend\", \"Contemporary\"], \"itemIds\": [326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336, 337], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/uxemspivqhnblmb.thumb.jpg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/305x172/uxemspivqhnblmb.thumb.jpg\", \"id\": 41, \"featuredAt\": \"2015-12-04 19:43:40.834414+00:00\", \"orientation\": \"horizontal\", \"coverId\": 326, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/40x40/uxemspivqhnblmb.thumb.jpg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/uxemspivqhnblmb.thumb.jpg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/20x20/uxemspivqhnblmb.thumb.jpg\", \"name\": \"Gallery 4\", \"categoryIds\": [70, 53, 10], \"userId\": 2224, \"description\": \"This taster gallery of urban art, graphic illustration and photography has been designed to give you a taste of the diversity of the Meural Permanent Collection - a dynamic and growing online library of the world\\u2019s best art.\"}, {\"username\": \"meural\", \"isSampler\": false, \"slug\": \"gallery-2\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/610x344/658nm0sqkx2lf5l.thumb.jpg\", \"categoryNames\": [\"Contemporary\", \"Contemporary\"], \"itemIds\": [316, 317, 318, 319, 320, 321, 322, 323, 45691, 325], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/658nm0sqkx2lf5l.thumb.jpg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/305x172/658nm0sqkx2lf5l.thumb.jpg\", \"id\": 40, \"featuredAt\": \"2015-12-04 19:43:37.211398+00:00\", \"orientation\": \"horizontal\", \"coverId\": 325, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/40x40/658nm0sqkx2lf5l.thumb.jpg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/658nm0sqkx2lf5l.thumb.jpg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/20x20/658nm0sqkx2lf5l.thumb.jpg\", \"name\": \"Gallery 2\", \"categoryIds\": [70, 10], \"userId\": 2224, \"description\": \"This taster gallery of classic and contemporary artwork has been designed to give you a taste of the diversity of the Meural Permanent Collection - a dynamic and growing online library of the world\\u2019s best art.\"}, {\"username\": \"meural\", \"isSampler\": false, \"slug\": \"desert-dreams\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/344x610/rmmphr14rz4y6d5.thumb.jpg\", \"categoryNames\": [\"Space\", \"Contemporary\", \"Contemporary\"], \"itemIds\": [386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396, 27433, 398, 399], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/rmmphr14rz4y6d5.thumb.jpg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/172x305/rmmphr14rz4y6d5.thumb.jpg\", \"id\": 46, \"featuredAt\": \"2015-12-08 07:56:11.240584+00:00\", \"orientation\": \"vertical\", \"coverId\": 388, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/40x40/rmmphr14rz4y6d5.thumb.jpg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/rmmphr14rz4y6d5.thumb.jpg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/20x20/rmmphr14rz4y6d5.thumb.jpg\", \"name\": \"Desert Dreams\", \"categoryIds\": [31, 70, 10], \"userId\": 2224, \"description\": \"\\u2018Desert Dreams\\u2019 offers a series of stunning satellite views of the globe\\u2019s various deserts. Seen from above, these barren lands take on new, shimmering beauty.\"}], \"isLast\": true, \"isPaginated\": true}"}],"_postman_id":"ad6ffa2e-85b7-3786-f2d7-2f450ce348fc"},{"name":"/devices/:deviceId/galleries/:galleryId","id":"7a7a3663-669e-f109-3596-70946eb4c506","request":{"method":"POST","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"<p>The user's authentication token</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/devices/:deviceId/galleries/:galleryId","description":"<p>Add a gallery to the specified device.</p>\n","urlObject":{"path":["devices",":deviceId","galleries",":galleryId"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[{"type":"any","value":"{{galleryId}}","key":"deviceId"},{"type":"any","value":"{{deviceId}}","key":"galleryId"}]}},"response":[],"_postman_id":"7a7a3663-669e-f109-3596-70946eb4c506"},{"name":"/devices/:deviceId/galleries/:galleryId","id":"a970cd8a-ae1d-0acc-f894-a244017ef8e8","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"<p>The user's authentication token</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/devices/:deviceId/galleries/:galleryId","description":"<p>Remove a gallery from the specified device.</p>\n","urlObject":{"path":["devices",":deviceId","galleries",":galleryId"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[{"type":"any","value":"{{deviceId}}","key":"deviceId"},{"type":"any","value":"{{galleryId}}","key":"galleryId"}]}},"response":[],"_postman_id":"a970cd8a-ae1d-0acc-f894-a244017ef8e8"},{"name":"/devices/:id/schedule","id":"3476620e-f511-f948-c599-c7e1b2573e89","request":{"method":"GET","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"<p>The user's authentication token</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/devices/:id/schedule","description":"<p>Retrieve the schedule of the specified device.</p>\n","urlObject":{"path":["devices",":id","schedule"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[{"description":{"content":"<p>The device's id</p>\n","type":"text/plain"},"type":"any","value":"{{deviceId}}","key":"id"}]}},"response":[],"_postman_id":"3476620e-f511-f948-c599-c7e1b2573e89"},{"name":"/devices/:id/schedule","id":"2e01bf14-571e-fc40-9609-a39b585e042d","request":{"method":"PUT","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"<p>The user's authentication token</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/devices/:id/schedule","description":"<p>Update the schedule of the specified device. Submit a json object of the following form to update the schedule.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n    \"events\": [\n        {\n            \"galleryId\": int or null,\n            \"command\": string of wake, sleep, gallery, or dont_care,\n            \"time\": string of military time,\n            \"days\": [\n                An array of strings of days on which this event should occur\n            ]\n        },\n        ...\n    ]\n}\n</code></pre>","urlObject":{"path":["devices",":id","schedule"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[{"description":{"content":"<p>The device's id</p>\n","type":"text/plain"},"type":"any","value":"{{deviceId}}","key":"id"}]}},"response":[],"_postman_id":"2e01bf14-571e-fc40-9609-a39b585e042d"},{"name":"/devices/:id/sync","id":"d68eda27-eff2-3e4a-c952-d007d1f8fb81","request":{"method":"POST","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"<p>The user's authentication token</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/devices/:id/sync","description":"<p>Synchronize ip address, free space, current item, and current playlists.</p>\n","urlObject":{"path":["devices",":id","sync"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[{"description":{"content":"<p>The device's id</p>\n","type":"text/plain"},"type":"any","value":"{{deviceId}}","key":"id"}]}},"response":[],"_postman_id":"d68eda27-eff2-3e4a-c952-d007d1f8fb81"},{"name":"/devices/:deviceId/preview/:itemId","id":"05d0d5be-96c9-1c6e-aa4e-44a2bc52c185","request":{"method":"POST","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"<p>The user's authentication token</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/devices/:deviceId/preview/:itemId","description":"<p>Preview an item on the specified device.</p>\n","urlObject":{"path":["devices",":deviceId","preview",":itemId"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[{"type":"any","value":"","key":"deviceId"},{"description":{"content":"<p>The item's id</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"itemId"}]}},"response":[],"_postman_id":"05d0d5be-96c9-1c6e-aa4e-44a2bc52c185"}],"id":"5a3ddb6e-2783-eac5-f8c1-eb9fc09299f5","description":"<p>These endpoints allow users to register and manage their Canvases. Galleries are the means by which artwork is added to and removed from Canvases. We do not currently support adding individual items, artists, or other content types to Canvases.</p>\n","_postman_id":"5a3ddb6e-2783-eac5-f8c1-eb9fc09299f5"},{"name":"Items","item":[{"name":"/items","id":"5f688b73-070c-9e45-8142-668a01f5ee79","request":{"method":"POST","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"<p>The user's authentication token</p>\n"},{"key":"Content-Type","value":"multipart/form-data"}],"body":{"mode":"formdata","formdata":[{"key":"image","value":null,"type":"file"}]},"url":"{{API_ORIGIN}}{{VERSION}}/items","description":"<p>Upload an image. The data of this request must be form-encoded. The media must be under either <code>image</code>, if the content type of the media is image, or <code>video</code> if the content type is video.</p>\n","urlObject":{"path":["items"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[]}},"response":[{"id":"412ed796-512d-6ecd-7061-24f29683b20a","name":"/items","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"The user's authentication token"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","disabled":true}],"body":{"mode":"formdata","formdata":[{"key":"image","type":"file","src":null}]},"url":"{{API_ORIGIN}}{{VERSION}}/items"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"name":"access-control-allow-credentials","key":"access-control-allow-credentials","value":"true","description":""},{"name":"allow","key":"allow","value":"GET, POST, HEAD, OPTIONS","description":""},{"name":"content-length","key":"content-length","value":"1342","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:03:44 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"201","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"3220","body":"{\"count\": null, \"message\": \"\", \"data\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\", \"year\": null, \"userId\": 8429, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 2560, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/40x40/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\", \"id\": 398483, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": null, \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\", \"categoryIds\": [], \"croppedWidth\": 0, \"type\": \"image\", \"isSampler\": false, \"medium\": null, \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\", \"description\": null, \"name\": \"Earth\", \"isPublic\": false, \"croppedX1\": 0, \"slug\": \"earth\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/20x20/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\", \"categoryNames\": [], \"croppedHeight\": 0, \"originalHeight\": 1600, \"artistName\": null, \"isDetailed\": false}, \"isLast\": null, \"isPaginated\": false}"}],"_postman_id":"5f688b73-070c-9e45-8142-668a01f5ee79"},{"name":"/items/:id","id":"828a2e8d-fcde-e955-a56c-c2f0f717d190","request":{"method":"GET","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"<p>The user's authentication token</p>\n"}],"body":{"mode":"formdata","formdata":[{"key":"image","value":null,"type":"file"}]},"url":"{{API_ORIGIN}}{{VERSION}}/items/:id","description":"<p>Retrieve an item.</p>\n","urlObject":{"path":["items",":id"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[{"description":{"content":"<p>The item's id</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"id"}]}},"response":[{"id":"2aa15627-b329-73a6-9033-e49b6e37b458","name":"/items/:id","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"The user's authentication token"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","disabled":true}],"body":{"mode":"formdata","formdata":[{"key":"image","value":null,"type":"file"}]},"url":{"raw":"{{API_ORIGIN}}{{VERSION}}/items/:id","host":["{{API_ORIGIN}}{{VERSION}}"],"path":["items",":id"],"variable":[{"key":"id","value":"398483","description":"The item's id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"allow","key":"allow","value":"GET, PUT, PATCH, DELETE, HEAD, OPTIONS","description":""},{"name":"content-encoding","key":"content-encoding","value":"gzip","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:04:22 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"174","body":"{\"count\": null, \"message\": \"\", \"data\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\", \"year\": null, \"userId\": 8429, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 2560, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/40x40/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\", \"id\": 398483, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": null, \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\", \"categoryIds\": [], \"croppedWidth\": 0, \"type\": \"image\", \"isSampler\": false, \"medium\": null, \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\", \"description\": null, \"name\": \"Earth\", \"isPublic\": false, \"croppedX1\": 0, \"slug\": \"earth\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/20x20/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\", \"categoryNames\": [], \"croppedHeight\": 0, \"originalHeight\": 1600, \"artistName\": null, \"isDetailed\": false}, \"isLast\": null, \"isPaginated\": false}"}],"_postman_id":"828a2e8d-fcde-e955-a56c-c2f0f717d190"},{"name":"/items/:id","id":"b78a176b-173f-1718-372b-7a01889e5d22","request":{"method":"PUT","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"<p>The user's authentication token</p>\n"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"newname","description":"<p>String: The name of the artwork</p>\n","type":"text"},{"key":"author","value":"author","description":"<p>String: The name of the artist who produced the artwork</p>\n","type":"text"},{"key":"description","value":"A new description","description":"<p>String: A description of the artwork</p>\n","type":"text"},{"key":"medium","value":"photography","description":"<p>String: The medium of the artwork</p>\n","type":"text"},{"key":"year","value":"1999","description":"<p>String: The year the artwork was produced</p>\n","type":"text"}]},"url":"{{API_ORIGIN}}{{VERSION}}/items/:id","description":"<p>Update an item's metadata.</p>\n","urlObject":{"path":["items",":id"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[{"description":{"content":"<p>The item's id</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"id"}]}},"response":[{"id":"599f628e-3438-fba2-e7e8-3b9f3ffcc22b","name":"/items/:id","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"The user's authentication token"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","disabled":true}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"newname","description":"The name of the artwork","type":"text"},{"key":"author","value":"author","description":"The name of the artist who produced the artwork","type":"text"},{"key":"description","value":"A new description","description":"A description of the artwork","type":"text"},{"key":"medium","value":"photography","description":"The medium of the artwork","type":"text"},{"key":"year","value":"1999","description":"The year the artwork was produced","type":"text"}]},"url":{"raw":"{{API_ORIGIN}}{{VERSION}}/items/:id","host":["{{API_ORIGIN}}{{VERSION}}"],"path":["items",":id"],"variable":[{"key":"id","value":"398483","description":"The item's id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"access-control-allow-credentials","key":"access-control-allow-credentials","value":"true","description":""},{"name":"allow","key":"allow","value":"GET, PUT, PATCH, DELETE, HEAD, OPTIONS","description":""},{"name":"content-encoding","key":"content-encoding","value":"gzip","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:04:40 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"175","body":"{\"count\": null, \"message\": \"\", \"data\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\", \"year\": \"1999\", \"userId\": 8429, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 2560, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/40x40/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\", \"id\": 398483, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": \"author\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\", \"categoryIds\": [], \"croppedWidth\": 0, \"type\": \"image\", \"isSampler\": false, \"medium\": \"photography\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\", \"description\": \"A new description\", \"name\": \"newname\", \"isPublic\": false, \"croppedX1\": 0, \"slug\": \"newname\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/20x20/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\", \"categoryNames\": [], \"croppedHeight\": 0, \"originalHeight\": 1600, \"artistName\": null, \"isDetailed\": false}, \"isLast\": null, \"isPaginated\": false}"}],"_postman_id":"b78a176b-173f-1718-372b-7a01889e5d22"},{"name":"/items/:id/crop","id":"4f129217-9f13-c1ef-1646-8a11e6eb4de7","request":{"method":"PUT","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"<p>The user's authentication token</p>\n"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"x1","value":"{{x1}}","description":"<p>(Required) Int: The x value of the top left coordinate of where the crop should start</p>\n","type":"text"},{"key":"y1","value":"{{y1}}","description":"<p>(Required) Int: The y value of the top left coordinate of where the crop should start</p>\n","type":"text"},{"key":"x2","value":"{{x2}}","description":"<p>(Required) Int: The x value of the bottom right coordinate of where the crop should end</p>\n","type":"text"},{"key":"y2","value":"{{y2}}","description":"<p>(Required) Int: The y value of the bottom right coordinate of where the crop should end</p>\n","type":"text"}]},"url":"{{API_ORIGIN}}{{VERSION}}/items/:id","description":"<p>Crop an item in to a 16:9 or 9:16 rectangle by specifying two points, namely, the top left corner and the bottom right corner of the crop area. Vidoes cannot be cropped.</p>\n","urlObject":{"path":["items",":id"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[{"description":{"content":"<p>The item's id</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"id"}]}},"response":[{"id":"5e6b7a3e-2e29-3357-6be2-0ad8197bdce7","name":"/items/:id/crop","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"The user's authentication token"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","disabled":true}],"body":{"mode":"urlencoded","urlencoded":[{"key":"x1","value":"0","description":"(Required) The x value of the top left coordinate of where the crop should start","type":"text"},{"key":"y1","value":"0","description":"(Required) The y value of the top left coordinate of where the crop should start","type":"text"},{"key":"x2","value":"100","description":"(Required) The x value of the bottom right coordinate of where the crop should end","type":"text"},{"key":"y2","value":"100","description":"(Required) The y value of the bottom right coordinate of where the crop should end","type":"text"}]},"url":{"raw":"{{API_ORIGIN}}{{VERSION}}/items/:id","host":["{{API_ORIGIN}}{{VERSION}}"],"path":["items",":id"],"variable":[{"key":"id","value":"398096","description":"The item's id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"access-control-allow-credentials","key":"access-control-allow-credentials","value":"true","description":""},{"name":"allow","key":"allow","value":"GET, PUT, PATCH, DELETE, HEAD, OPTIONS","description":""},{"name":"content-encoding","key":"content-encoding","value":"gzip","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:04:56 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"182","body":"{\"count\": null, \"message\": \"\", \"data\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/SyB28ziHcD4BCUgD6vNXhjmsAPMqlV6w.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/SyB28ziHcD4BCUgD6vNXhjmsAPMqlV6w.jpeg\", \"year\": \"1999\", \"userId\": 8429, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 1024, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/40x40/SyB28ziHcD4BCUgD6vNXhjmsAPMqlV6w.jpeg\", \"id\": 398096, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": \"author\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/SyB28ziHcD4BCUgD6vNXhjmsAPMqlV6w.jpeg\", \"categoryIds\": [], \"croppedWidth\": 0, \"type\": \"image\", \"isSampler\": false, \"medium\": \"photography\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/SyB28ziHcD4BCUgD6vNXhjmsAPMqlV6w.jpeg\", \"description\": \"A new description\", \"name\": \"newname\", \"isPublic\": false, \"croppedX1\": 0, \"slug\": \"newname\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/20x20/SyB28ziHcD4BCUgD6vNXhjmsAPMqlV6w.jpeg\", \"categoryNames\": [], \"croppedHeight\": 0, \"originalHeight\": 383, \"artistName\": null, \"isDetailed\": false}, \"isLast\": null, \"isPaginated\": false}"}],"_postman_id":"4f129217-9f13-c1ef-1646-8a11e6eb4de7"},{"name":"/items/:id","id":"8cecaf1d-6017-0ab5-e2f2-beb9e15195b9","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"<p>The user's authentication token</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/items/:id","description":"<p>Delete an item. This also removes the item from any galleries to which it had been added.</p>\n","urlObject":{"path":["items",":id"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[{"description":{"content":"<p>The item's id</p>\n","type":"text/plain"},"type":"any","value":"{{itemId}}","key":"id"}]}},"response":[],"_postman_id":"8cecaf1d-6017-0ab5-e2f2-beb9e15195b9"},{"name":"/items/:id/articles","id":"a48e576e-0fe7-40fb-81a9-52af276606fe","request":{"method":"GET","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"<p>The user's authentication token</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/items/:id/articles","description":"<p>Get all articles related to an item.</p>\n","urlObject":{"path":["items",":id","articles"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[{"type":"any","value":"","key":"id"}]}},"response":[{"id":"39406c1c-fe08-48a8-b684-9905c886318c","name":"/items/:id/articles","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"The user's authentication token"}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{API_ORIGIN}}{{VERSION}}/items/:id/articles","host":["{{API_ORIGIN}}{{VERSION}}"],"path":["items",":id","articles"],"variable":[{"key":"id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 1,\n    \"message\": \"\",\n    \"data\": [\n        {\n            \"name\": \"Stieglitz and O'Keeffe: A Love Story\",\n            \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/1000x500/dyy6gii7f86mh0m.optimized.thumb.jpeg\",\n            \"publishedAt\": \"2017-04-07T19:02:13.312371+00:00\",\n            \"body\": [\n                {\n                    \"type\": \"paragraph\",\n                    \"content\": {\n                        \"text\": \"When [Alfred Stieglitz](https://my.meural.com/browse/artists/268) and [Georgia O'Keeffe](https://my.meural.com/browse/artists/265) met in 1916, he was in his 50s—an internationally acclaimed photographer as well as a gallerist and dealer, while she was an unknown 28-year-old schoolteacher from Texas. They had been corresponding for a year, after Stieglitz had exhibited some of O'Keeffe's paintings in his influential gallery, 291. On meeting, their relationship developed quickly—Stieglitz left his wife and the couple married in 1924. Theirs was a passionate, unconventional and tumultuous marriage—one that saw O'Keeffe's emergence as America's leading Modernist painter, weathered infidelity and survived long periods of living apart. Throughout their relationship, the couple continued to correspond, and their combined letters, between 1915 and 1946, make up 25,000 sheets of paper.\"\n                    }\n                },\n                {\n                    \"type\": \"item\",\n                    \"content\": {\n                        \"caption\": \"Look at this beautiful item\",\n                        \"item\": {\n                            \"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\",\n                            \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\",\n                            \"year\": null,\n                            \"userId\": 8429,\n                            \"artistId\": null,\n                            \"sortedOrder\": null,\n                            \"originalWidth\": 2560,\n                            \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/40x40/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\",\n                            \"id\": 398483,\n                            \"croppedY1\": 0,\n                            \"dimensions\": null,\n                            \"copyright\": null,\n                            \"author\": null,\n                            \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\",\n                            \"categoryIds\": [],\n                            \"croppedWidth\": 0,\n                            \"type\": \"image\",\n                            \"isSampler\": false,\n                            \"medium\": null,\n                            \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\",\n                            \"description\": null,\n                            \"name\": \"Earth\",\n                            \"isPublic\": false,\n                            \"croppedX1\": 0,\n                            \"slug\": \"earth\",\n                            \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/20x20/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\",\n                            \"categoryNames\": [],\n                            \"croppedHeight\": 0,\n                            \"originalHeight\": 1600,\n                            \"artistName\": null,\n                            \"isDetailed\": false\n                        }\n                    }\n                },\n                {\n                    \"type\": \"image\",\n                    \"content\": {\n                        \"caption\": \"Interesting pose from the artist\",\n                        \"url\": \"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/O%27Keeffe-%28hands%29.jpg/1280px-O%27Keeffe-%28hands%29.jpg\",\n                        \"name\": \"Okeeffe by Steiglitz\",\n                        \"highres\": \"\"\n                    }\n                },\n                {\n                    \"type\": \"video\",\n                    \"content\": {\n                        \"caption\": \"a video\",\n                        \"url\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.mp4\",\n                        \"name\": \"Okeeffe video\",\n                        \"duration\": \"445\",\n                        \"thumbnailUrl\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\"\n                    }\n                },\n                {\n                    \"type\": \"audio\",\n                    \"content\": {\n                        \"url\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.wav\",\n                        \"duration\": \"783\",\n                        \"name\": \"An interview with Georgia Okeeffe\"\n                    }\n                }\n            ],\n            \"object\": {\n               \"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/4sefapq33zd7yvz.thumb.jpeg\",\n\"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/4sefapq33zd7yvz.thumb.jpeg\",\n\"year\": \"2016\",\n\"userId\": 2224,\n\"artistId\": 155,\n\"sortedOrder\": null,\n\"originalWidth\": 1080,\n\"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/40x40/4sefapq33zd7yvz.thumb.jpeg\",\n\"id\": 49512,\n\"croppedY1\": 0,\n\"dimensions\": null,\n\"copyright\": null,\n\"author\": \"Eric Corriel\",\n\"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/4sefapq33zd7yvz.thumb.jpeg\",\n\"categoryIds\": [\n70,\n160\n],\n\"croppedWidth\": 0,\n\"type\": \"image\",\n\"isSampler\": false,\n\"medium\": \"Programmatically generated digital file\",\n\"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/4sefapq33zd7yvz.thumb.jpeg\",\n\"description\": \"Imagine you could shrink yourself down, swim around your hard drive, and meet your files face to face—what would they look like? Enter The Machine aims to provide a new way of seeing our digital files, one that does justice to their uniqueness, the diversity of the data they contain, and the complexity by which they are structured.\",\n\"name\": \"Portrait of 71325.jpg (Waterlilies - Morning by Claude Monet)\",\n\"isPublic\": true,\n\"croppedX1\": 0,\n\"slug\": \"portrait-of-71325jpg-waterlilies-morning-by-claude-monet\",\n\"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/20x20/4sefapq33zd7yvz.thumb.jpeg\",\n\"categoryNames\": [\n\"Contemporary\",\n\"Digital Art\"\n],\n\"croppedHeight\": 0,\n\"originalHeight\": 1920,\n\"artistName\": \"Eric Corriel\",\n\"isDetailed\": false\n\n            },\n            \"type\": \"item\",\n            \"categoryIds\": [\n                65,\n                37\n            ],\n            \"categoryNames\": [\n                \"Modernism\",\n                \"Conceptual\"\n            ],\n            \"artistIds\": [\n                268,\n                265\n            ],\n            \"artistNames\": [\n                \"Alfred Stieglitz\",\n                \"Georgia O'Keeffe\"\n            ],\n            \"author\": {\n                \"id\": 1,\n                \"name\": \"Poppy Simpson\"\n            }\n        }\n    ],\n    \"isLast\": true,\n    \"isPaginated\": true\n}"}],"_postman_id":"a48e576e-0fe7-40fb-81a9-52af276606fe"}],"id":"0fc0c39b-a009-1850-c683-7a20a443e720","description":"<p>Items are also known as artworks. In addition to standard CRUD functionality, items can also be cropped.</p>\n","_postman_id":"0fc0c39b-a009-1850-c683-7a20a443e720"},{"name":"Galleries","item":[{"name":"/galleries","id":"068863bb-fcb4-fb8b-764b-b738847069e8","request":{"method":"POST","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"<p>The user's authentication token</p>\n"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"{{name}}","description":"<p>String: The title of the gallery</p>\n","type":"text"},{"key":"description","value":"{{description}}","description":"<p>String: A description of the gallery</p>\n","type":"text"},{"key":"orientation","value":"{{orientation}}","description":"<p>(Required) String: The orientation of the gallery - can be either <code>horizontal</code> or <code>vertical</code></p>\n","type":"text"}]},"url":"{{API_ORIGIN}}{{VERSION}}/galleries","description":"<p>Create a gallery.</p>\n","urlObject":{"path":["galleries"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[]}},"response":[{"id":"ff5c27a9-bca7-fead-6821-c10fe3fe1e7e","name":"/galleries","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"The user's authentication token"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","disabled":true}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"My first playlist","description":"The title of the gallery","type":"text"},{"key":"description","value":"My greate playlist","description":"A description of the gallery","type":"text"},{"key":"orientation","value":"vertical","description":"(Required) The orientation of the gallery","type":"text"}]},"url":"{{API_ORIGIN}}{{VERSION}}/galleries"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"name":"access-control-allow-credentials","key":"access-control-allow-credentials","value":"true","description":""},{"name":"allow","key":"allow","value":"GET, POST, HEAD, OPTIONS","description":""},{"name":"content-length","key":"content-length","value":"483","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:06:52 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"201","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"400","body":"{\"count\": null, \"message\": \"\", \"data\": {\"username\": \"testuser\", \"isSampler\": false, \"slug\": null, \"cover2x\": null, \"categoryNames\": [], \"itemIds\": [], \"hero2x\": null, \"isPurchased\": false, \"isPublic\": false, \"cover\": null, \"id\": 37399, \"featuredAt\": null, \"orientation\": \"vertical\", \"coverId\": null, \"icon2x\": null, \"hero\": null, \"icon\": null, \"name\": \"My first playlist\", \"categoryIds\": [], \"userId\": 8429, \"description\": \"My greate playlist\"}, \"isLast\": null, \"isPaginated\": false}"}],"_postman_id":"068863bb-fcb4-fb8b-764b-b738847069e8"},{"name":"/galleries/:id","id":"d99fe64e-4cde-4b5b-e5ee-936256299d72","request":{"method":"GET","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"<p>The user's authentication token</p>\n"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"My first playlist","description":"<p>The title of the gallery</p>\n","type":"text"},{"key":"description","value":"My greate playlist","description":"<p>A description of the gallery</p>\n","type":"text"},{"key":"orientation","value":"vertical","description":"<p>The orientation of the gallery - can be <code>horizontal</code> or <code>vertical</code></p>\n","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{API_ORIGIN}}{{VERSION}}/galleries/:id","description":"<p>Retrieve a gallery.</p>\n","urlObject":{"path":["galleries",":id"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[{"description":{"content":"<p>The id of the gallery</p>\n","type":"text/plain"},"type":"any","value":"{{galleryId}}","key":"id"}]}},"response":[{"id":"84997f6d-9215-1c9f-e8f5-42a67ddbc73d","name":"/galleries/:id","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"The user's authentication token"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","disabled":true}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"My first playlist","description":"The title of the gallery","type":"text"},{"key":"description","value":"My greate playlist","description":"A description of the gallery","type":"text"},{"key":"orientation","value":"vertical","description":"The orientation of the gallery - can be `horizontal` or `vertical`","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":{"raw":"{{API_ORIGIN}}{{VERSION}}/galleries/:id","host":["{{API_ORIGIN}}{{VERSION}}"],"path":["galleries",":id"],"variable":[{"key":"id","value":"37361","description":"The id of the gallery"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"allow","key":"allow","value":"GET, PUT, PATCH, DELETE, HEAD, OPTIONS","description":""},{"name":"content-length","key":"content-length","value":"483","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:06:59 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"148","body":"{\"count\": null, \"message\": \"\", \"data\": {\"username\": \"testuser\", \"isSampler\": false, \"slug\": null, \"cover2x\": null, \"categoryNames\": [], \"itemIds\": [], \"hero2x\": null, \"isPurchased\": false, \"isPublic\": false, \"cover\": null, \"id\": 37361, \"featuredAt\": null, \"orientation\": \"vertical\", \"coverId\": null, \"icon2x\": null, \"hero\": null, \"icon\": null, \"name\": \"My first playlist\", \"categoryIds\": [], \"userId\": 8429, \"description\": \"My greate playlist\"}, \"isLast\": null, \"isPaginated\": false}"}],"_postman_id":"d99fe64e-4cde-4b5b-e5ee-936256299d72"},{"name":"/galleries/:id","id":"108d0219-f8ed-b9d3-dbb1-499854eef709","request":{"method":"PUT","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"<p>The user's authentication token</p>\n"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"{{name}}","description":"<p>String: The title of the gallery</p>\n","type":"text"},{"key":"description","value":"{{description}}","description":"<p>String: A description of the gallery</p>\n","type":"text"},{"key":"orientation","value":"{{orientation}}","description":"<p>String: The orientation of the gallery - can be <code>horizontal</code> or <code>vertical</code></p>\n","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{API_ORIGIN}}{{VERSION}}/galleries/:id","description":"<p>Update a gallery.</p>\n","urlObject":{"path":["galleries",":id"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[{"description":{"content":"<p>The id of the gallery</p>\n","type":"text/plain"},"type":"any","value":"{{galleryId}}","key":"id"}]}},"response":[{"id":"d0299078-f0b4-3cef-2646-fd62a1ab9c0e","name":"/galleries/:id","originalRequest":{"method":"PUT","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"The user's authentication token"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","disabled":true}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"My first playlist","description":"The title of the gallery","type":"text"},{"key":"description","value":"My greate playlist","description":"A description of the gallery","type":"text"},{"key":"orientation","value":"vertical","description":"The orientation of the gallery - can be `horizontal` or `vertical`","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":{"raw":"{{API_ORIGIN}}{{VERSION}}/galleries/:id","host":["{{API_ORIGIN}}{{VERSION}}"],"path":["galleries",":id"],"variable":[{"key":"id","value":"37361","description":"The id of the gallery"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"access-control-allow-credentials","key":"access-control-allow-credentials","value":"true","description":""},{"name":"allow","key":"allow","value":"GET, PUT, PATCH, DELETE, HEAD, OPTIONS","description":""},{"name":"content-length","key":"content-length","value":"483","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:07:04 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"164","body":"{\"count\": null, \"message\": \"\", \"data\": {\"username\": \"testuser\", \"isSampler\": false, \"slug\": null, \"cover2x\": null, \"categoryNames\": [], \"itemIds\": [], \"hero2x\": null, \"isPurchased\": false, \"isPublic\": false, \"cover\": null, \"id\": 37361, \"featuredAt\": null, \"orientation\": \"vertical\", \"coverId\": null, \"icon2x\": null, \"hero\": null, \"icon\": null, \"name\": \"My first playlist\", \"categoryIds\": [], \"userId\": 8429, \"description\": \"My greate playlist\"}, \"isLast\": null, \"isPaginated\": false}"}],"_postman_id":"108d0219-f8ed-b9d3-dbb1-499854eef709"},{"name":"/galleries/:id","id":"4389643b-b61a-e4de-753e-be19bab8d021","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"<p>The user's authentication token</p>\n"}],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/galleries/:id","description":"<p>Delete a gallery.</p>\n","urlObject":{"path":["galleries",":id"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[{"description":{"content":"<p>The id of the gallery</p>\n","type":"text/plain"},"type":"any","value":"{{galleryId}}","key":"id"}]}},"response":[{"id":"21b0c1bc-7805-bf6b-d0ae-c63bbe108dc1","name":"/galleries/:id","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"The user's authentication token"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","disabled":true}],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{API_ORIGIN}}{{VERSION}}/galleries/:id","host":["{{API_ORIGIN}}{{VERSION}}"],"path":["galleries",":id"],"variable":[{"key":"id","value":"37361","description":"The id of the gallery"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"plainText","header":[{"name":"access-control-allow-credentials","key":"access-control-allow-credentials","value":"true","description":""},{"name":"allow","key":"allow","value":"GET, PUT, PATCH, DELETE, HEAD, OPTIONS","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:07:09 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"204","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"193","body":""}],"_postman_id":"4389643b-b61a-e4de-753e-be19bab8d021"},{"name":"/galleries/:id/items","id":"cde49d7f-ee99-be23-2a60-9cc110e0fb03","request":{"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"My first playlist","description":"<p>The title of the gallery</p>\n","type":"text"},{"key":"description","value":"My greate playlist","description":"<p>A description of the gallery</p>\n","type":"text"},{"key":"orientation","value":"vertical","description":"<p>The orientation of the gallery - can be <code>horizontal</code> or <code>vertical</code></p>\n","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{API_ORIGIN}}{{VERSION}}/galleries/:id/items","description":"<p>Retrieve the items of the specified gallery.</p>\n","urlObject":{"path":["galleries",":id","items"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[{"description":{"content":"<p>The id of the gallery</p>\n","type":"text/plain"},"type":"any","value":"{{galleryId}}","key":"id"}]}},"response":[{"id":"01725d73-45ee-36d3-21d6-3044c6f5f63e","name":"/galleries/:id/items","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"The user's authentication token","disabled":true},{"key":"Content-Type","value":"application/x-www-form-urlencoded","disabled":true}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"My first playlist","description":"The title of the gallery","type":"text"},{"key":"description","value":"My greate playlist","description":"A description of the gallery","type":"text"},{"key":"orientation","value":"vertical","description":"The orientation of the gallery - can be `horizontal` or `vertical`","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":{"raw":"{{API_ORIGIN}}{{VERSION}}/galleries/:id/items","host":["{{API_ORIGIN}}{{VERSION}}"],"path":["galleries",":id","items"],"variable":[{"key":"id","value":"18359","description":"The id of the gallery"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"allow","key":"allow","value":"GET, HEAD, OPTIONS","description":""},{"name":"content-encoding","key":"content-encoding","value":"gzip","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:07:35 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"179","body":"{\"count\": 6, \"message\": \"\", \"data\": [{\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/pxwok083g4fa191.thumb.jpg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/9jbc9y8571273jz.optimized.thumb.jpg\", \"year\": \"1863\", \"userId\": 2224, \"artistId\": 108, \"sortedOrder\": null, \"originalWidth\": 2569, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/40x40/9jbc9y8571273jz.optimized.thumb.jpg\", \"id\": 43877, \"croppedY1\": 518, \"dimensions\": null, \"copyright\": null, \"author\": \"\\u00c9douard Manet\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/1000x500/9jbc9y8571273jz.optimized.thumb.jpg\", \"categoryIds\": [148, 24, 72], \"croppedWidth\": 2569, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil on canvas\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/1000x500/9jbc9y8571273jz.optimized.thumb.jpg\", \"description\": \"As the most talked about main attraction of the The Salon des Refus\\u00e9s in 1863, it\\u2019s pretty evident why this painting shocked the bourgeois patrons in attendance as well as Emperor Napoleon III himself. Manet\\u2019s composition has Renaissance influence however, his complete disregard for perspective and use of unnatural light sources diminishes the core values of the Renaissance style. In fact, it was the inclusion of an unidealized female nude, casually engaging with two well dressed men, that was the cause of such public outrage. Her confrontational gaze engages the viewer on a sensual level, but through her Manet is confronting society as well, challenging what it considered appropriate ethical and artistic boundaries. [The Art Story-Manet](https://www.theartstory.org/artist-manet-edouard.htm)\", \"name\": \"Dejeuner sur l'Herbe\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"dejeuner-sur-lherbe\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/20x20/9jbc9y8571273jz.optimized.thumb.jpg\", \"categoryNames\": [\"Impressionism\", \"Figurative\", \"Nineteenth Century\"], \"croppedHeight\": 1444, \"originalHeight\": 2000, \"artistName\": \"\\u00c9douard Manet\", \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/1w01nwv6vkr0dti.thumb.jpg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/z5mwmmkgbv1uy1x.optimized.thumb.jpg\", \"year\": \"1874\", \"userId\": 2224, \"artistId\": 121, \"sortedOrder\": null, \"originalWidth\": 2600, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/40x40/z5mwmmkgbv1uy1x.optimized.thumb.jpg\", \"id\": 20765, \"croppedY1\": 256, \"dimensions\": null, \"copyright\": null, \"author\": \"Alfred Sisley\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/1000x500/z5mwmmkgbv1uy1x.optimized.thumb.jpg\", \"categoryIds\": [148, 29, 72], \"croppedWidth\": 2600, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil on canvas\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/1000x500/z5mwmmkgbv1uy1x.optimized.thumb.jpg\", \"description\": \"Sisley, along with Monet, was one of the central proponents of the plein air technique, using this method in his famous paintings of the Voisins countryside, where he moved in 1871. Unlike Degas, Renoir, Cassatt, or Morisot, Sisley focused almost expressly on representations of the atmosphere while diminishing the importance of the human figure, if they appeared at all. Fog, Voisins demonstrates this general preoccupation with the visual perception of the natural world through the application of rough, clearly visible brushstrokes and the blurry, almost ethereal rendering of color and form. Here, a woman, serenely picking flowers, is almost entirely obscured within the dense fog that eclipses the pastoral scene. Like much of Sisley's work, the protagonist of the painting is nature and the visual reception of it. [The Art Story-Sisley](http://www.theartstory.org/artist-sisley-alfred.htm)\", \"name\": \"The Fog, Voisins\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"the-fog-voisins\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/20x20/z5mwmmkgbv1uy1x.optimized.thumb.jpg\", \"categoryNames\": [\"Impressionism\", \"Landscape\", \"Nineteenth Century\"], \"croppedHeight\": 1463, \"originalHeight\": 2000, \"artistName\": \"Alfred Sisley\", \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/QdNImxGc5YC78qhmXRn5h419vpcH6aHq.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1VP0afZwP1JAZ0k7X8e4narELeGWSruz.jpeg\", \"year\": \"1874\", \"userId\": 2224, \"artistId\": 111, \"sortedOrder\": null, \"originalWidth\": 2283, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/40x40/1VP0afZwP1JAZ0k7X8e4narELeGWSruz.jpeg\", \"id\": 190116, \"croppedY1\": 504, \"dimensions\": null, \"copyright\": null, \"author\": \"Berthe Morisot\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/1VP0afZwP1JAZ0k7X8e4narELeGWSruz.jpeg\", \"categoryIds\": [148, 72], \"croppedWidth\": 2283, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Pastel on paper\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/1VP0afZwP1JAZ0k7X8e4narELeGWSruz.jpeg\", \"description\": \"A central figure of the Impressionist circle, Berthe Morisot is known for both her compelling portraits and her poignant landscapes. In a Park combines these elements of figuration with representations of nature in this serene family portrait set in a bucolic garden. Like Mary Cassatt, Morisot is recognized for her portrayals of the private sphere of female society. As in this quiet image of family life, she centered on the maternal bond between mother and child. Her loose handling of pastels, a medium embraced by the Impressionists, and visible application of color and form were central characteristics of her work. [The Art Story-Morisot](http://www.theartstory.org/artist-morisot-berthe.htm)\", \"name\": \"In a Park\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"in-a-park\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/20x20/1VP0afZwP1JAZ0k7X8e4narELeGWSruz.jpeg\", \"categoryNames\": [\"Impressionism\", \"Nineteenth Century\"], \"croppedHeight\": 1284, \"originalHeight\": 2000, \"artistName\": \"Berthe Morisot\", \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/H4Ka3RBoCMJ1Fce3r7yQF523vc3yWHXP.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/ppGzBu1JgW4UZMa5LOet4aWn4mz3Fzj6.jpeg\", \"year\": \"1877\", \"userId\": 2224, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 2477, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/40x40/ppGzBu1JgW4UZMa5LOet4aWn4mz3Fzj6.jpeg\", \"id\": 190077, \"croppedY1\": 37, \"dimensions\": null, \"copyright\": null, \"author\": \"Gustave Caillebotte\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/ppGzBu1JgW4UZMa5LOet4aWn4mz3Fzj6.jpeg\", \"categoryIds\": [72], \"croppedWidth\": 2474, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil on canvas\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/ppGzBu1JgW4UZMa5LOet4aWn4mz3Fzj6.jpeg\", \"description\": \"While the work of Gustave Caillebotte adheres to a distinctly realistic aesthetic that differs from most impressionistic renderings, his paintings reflect a similar concern with subjects of modern life. Paris Street, Rainy Day shows this tendency within his work, through the depiction of the typical urban scene; the panoramic view of the rain-drizzled boulevard presents the newly renovated metropolis, while the anonymous figures in the background emphasize the alienation of the individual within the city. The painting centers on the apathetic gaze of the male figure, who epitomizes the cool detachment of the flaneur, poised in his characteristic black coat and top hat. Like Caillebotte's other paintings, this work depicts the impact of modernity on the individual's psychology, the fleeting impressions of the street, and the effect of the changing urban sphere upon society. [The Art Story-Caillebotte](http://www.theartstory.org/artist-caillebotte-gustave.htm)\", \"name\": \"Paris Street, Rainy Day\", \"isPublic\": true, \"croppedX1\": 3, \"slug\": \"paris-street-rainy-day\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/20x20/ppGzBu1JgW4UZMa5LOet4aWn4mz3Fzj6.jpeg\", \"categoryNames\": [\"Nineteenth Century\"], \"croppedHeight\": 1394, \"originalHeight\": 2000, \"artistName\": null, \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/k26bjJSwxnNpvL89ykk4G3CEZQEcFbEf.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/wYgrAeFj0XF8AqCKxYIF6fVRjPdatc2W.jpeg\", \"year\": \"1879\", \"userId\": 2224, \"artistId\": 79, \"sortedOrder\": null, \"originalWidth\": 2390, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/40x40/wYgrAeFj0XF8AqCKxYIF6fVRjPdatc2W.jpeg\", \"id\": 190078, \"croppedY1\": 312, \"dimensions\": null, \"copyright\": null, \"author\": \"Claude Monet\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/wYgrAeFj0XF8AqCKxYIF6fVRjPdatc2W.jpeg\", \"categoryIds\": [148, 72], \"croppedWidth\": 2390, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil on canvas\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/wYgrAeFj0XF8AqCKxYIF6fVRjPdatc2W.jpeg\", \"description\": \"In 1878, Monet moved his family to the town of Vetheuil in northern France. They temporarily lived with a wealthy magnate who became Monet's patron. His Vetheuil in the Fog is among his finest works, offering a subtle, albeit distinct impression of a figural form. As was characteristic of many of Monet's paintings, he applied his brush rather quickly to the canvas in order to capture the exact image he wanted before the sunlight shifted or faded away altogether. Monet's emphasis on the fleeting changes in the natural world was a central aspect of his oeuvre that captures the ephemerality of nature and preserves it within the picture plane; thus, the momentary perception is crystallized in the replication of the optical experience of it. [The Art Story-Monet](http://www.theartstory.org/artist-morisot-berthe.htm)\", \"name\": \"Vetheuil in the Fog\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"vetheuil-in-the-fog\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/20x20/wYgrAeFj0XF8AqCKxYIF6fVRjPdatc2W.jpeg\", \"categoryNames\": [\"Impressionism\", \"Nineteenth Century\"], \"croppedHeight\": 1345, \"originalHeight\": 2000, \"artistName\": \"Claude Monet\", \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/idlm4i7dr9g86j1.thumb.jpg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/xicy6cpspdrujd7.optimized.thumb.jpg\", \"year\": \"1897\", \"userId\": 2224, \"artistId\": 113, \"sortedOrder\": null, \"originalWidth\": 2514, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/40x40/xicy6cpspdrujd7.optimized.thumb.jpg\", \"id\": 11300, \"croppedY1\": 242, \"dimensions\": null, \"copyright\": null, \"author\": \"Camille Pissarro\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/1000x500/xicy6cpspdrujd7.optimized.thumb.jpg\", \"categoryIds\": [148, 29, 72], \"croppedWidth\": 2514, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil on canvas\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/1000x500/xicy6cpspdrujd7.optimized.thumb.jpg\", \"description\": \"Pissarro's career, which spanned nearly four decades in and around Paris, saw great changes in the makeup of the city. City planner Georges-Eugene Haussmann's renovation of the city (1853-70) broadened Paris's avenues, and the liberalization of Parisian labor laws during those years allowed for greater free time for the average citizen. As a devoted anarchist, Pissarro surely applauded this opening up of the everyman's creative leisure time. In this late-career hybrid of Pissarro's many artistic styles (Realism in its underlying composition and depiction of cloud formations; Impressionism in its snapshot quality; and Neo-Impressionism in its use of complementary colors to heighten visual sensation), he celebrates the city's modernity in one masterly canvas. [The Art Story-Pissarro](https://www.theartstory.org/artist-pissarro-camille.htm)\", \"name\": \"Boulevard Montmartre, Afternoon Sun\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"boulevard-montmartre-afternoon-sun\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/20x20/xicy6cpspdrujd7.optimized.thumb.jpg\", \"categoryNames\": [\"Impressionism\", \"Landscape\", \"Nineteenth Century\"], \"croppedHeight\": 1413, \"originalHeight\": 2000, \"artistName\": \"Camille Pissarro\", \"isDetailed\": false}], \"isLast\": true, \"isPaginated\": true}"}],"_postman_id":"cde49d7f-ee99-be23-2a60-9cc110e0fb03"},{"name":"/galleries/:id/articles","id":"2e78c8c6-dbef-458a-be26-f7e4290b1045","request":{"method":"GET","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"My first playlist","description":"<p>The title of the gallery</p>\n","type":"text"},{"key":"description","value":"My greate playlist","description":"<p>A description of the gallery</p>\n","type":"text"},{"key":"orientation","value":"vertical","description":"<p>The orientation of the gallery - can be <code>horizontal</code> or <code>vertical</code></p>\n","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":"{{API_ORIGIN}}{{VERSION}}/galleries/:id/articles","description":"<p>Retrieve the articles of the specified gallery.</p>\n","urlObject":{"path":["galleries",":id","articles"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[{"description":{"content":"<p>The id of the gallery</p>\n","type":"text/plain"},"type":"any","value":"{{galleryId}}","key":"id"}]}},"response":[{"id":"ef35d4c1-6719-4fa7-9868-23bd089772c3","name":"/galleries/:id/articles","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"The user's authentication token","disabled":true},{"key":"Content-Type","value":"application/x-www-form-urlencoded","disabled":true}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"My first playlist","description":"The title of the gallery","type":"text"},{"key":"description","value":"My greate playlist","description":"A description of the gallery","type":"text"},{"key":"orientation","value":"vertical","description":"The orientation of the gallery - can be `horizontal` or `vertical`","type":"text"},{"key":"","value":"","type":"text","disabled":true}]},"url":{"raw":"{{API_ORIGIN}}{{VERSION}}/galleries/:id/articles","host":["{{API_ORIGIN}}{{VERSION}}"],"path":["galleries",":id","articles"],"variable":[{"key":"id","value":"18359","description":"The id of the gallery"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"allow","key":"allow","value":"GET, HEAD, OPTIONS","description":""},{"name":"content-encoding","key":"content-encoding","value":"gzip","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:07:35 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 1,\n    \"message\": \"\",\n    \"data\": [\n        {\n            \"name\": \"Stieglitz and O'Keeffe: A Love Story\",\n            \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/1000x500/dyy6gii7f86mh0m.optimized.thumb.jpeg\",\n            \"publishedAt\": \"2017-04-07T19:02:13.312371+00:00\",\n            \"body\": [\n                {\n                    \"type\": \"paragraph\",\n                    \"content\": {\n                        \"text\": \"When [Alfred Stieglitz](https://my.meural.com/browse/artists/268) and [Georgia O'Keeffe](https://my.meural.com/browse/artists/265) met in 1916, he was in his 50s—an internationally acclaimed photographer as well as a gallerist and dealer, while she was an unknown 28-year-old schoolteacher from Texas. They had been corresponding for a year, after Stieglitz had exhibited some of O'Keeffe's paintings in his influential gallery, 291. On meeting, their relationship developed quickly—Stieglitz left his wife and the couple married in 1924. Theirs was a passionate, unconventional and tumultuous marriage—one that saw O'Keeffe's emergence as America's leading Modernist painter, weathered infidelity and survived long periods of living apart. Throughout their relationship, the couple continued to correspond, and their combined letters, between 1915 and 1946, make up 25,000 sheets of paper.\"\n                    }\n                },\n                {\n                    \"type\": \"item\",\n                    \"content\": {\n                        \"caption\": \"Look at this beautiful item\",\n                        \"item\": {\n                            \"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\",\n                            \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\",\n                            \"year\": null,\n                            \"userId\": 8429,\n                            \"artistId\": null,\n                            \"sortedOrder\": null,\n                            \"originalWidth\": 2560,\n                            \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/40x40/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\",\n                            \"id\": 398483,\n                            \"croppedY1\": 0,\n                            \"dimensions\": null,\n                            \"copyright\": null,\n                            \"author\": null,\n                            \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\",\n                            \"categoryIds\": [],\n                            \"croppedWidth\": 0,\n                            \"type\": \"image\",\n                            \"isSampler\": false,\n                            \"medium\": null,\n                            \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\",\n                            \"description\": null,\n                            \"name\": \"Earth\",\n                            \"isPublic\": false,\n                            \"croppedX1\": 0,\n                            \"slug\": \"earth\",\n                            \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/20x20/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\",\n                            \"categoryNames\": [],\n                            \"croppedHeight\": 0,\n                            \"originalHeight\": 1600,\n                            \"artistName\": null,\n                            \"isDetailed\": false\n                        }\n                    }\n                },\n                {\n                    \"type\": \"image\",\n                    \"content\": {\n                        \"caption\": \"Interesting pose from the artist\",\n                        \"url\": \"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/O%27Keeffe-%28hands%29.jpg/1280px-O%27Keeffe-%28hands%29.jpg\",\n                        \"name\": \"Okeeffe by Steiglitz\",\n                        \"highres\": \"\"\n                    }\n                },\n                {\n                    \"type\": \"video\",\n                    \"content\": {\n                        \"caption\": \"a video\",\n                        \"url\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.mp4\",\n                        \"name\": \"Okeeffe video\",\n                        \"duration\": \"445\",\n                        \"thumbnailUrl\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\"\n                    }\n                },\n                {\n                    \"type\": \"audio\",\n                    \"content\": {\n                        \"url\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.wav\",\n                        \"duration\": \"783\",\n                        \"name\": \"An interview with Georgia Okeeffe\"\n                    }\n                }\n            ],\n            \"object\": {\n                \"username\": \"testuser\",\n                \"isSampler\": false,\n                \"slug\": null,\n                \"cover2x\": null,\n                \"categoryNames\": [],\n                \"itemIds\": [],\n                \"hero2x\": null,\n                \"isPurchased\": false,\n                \"isPublic\": false,\n                \"cover\": null,\n                \"id\": 37399,\n                \"featuredAt\": null,\n                \"orientation\": \"vertical\",\n                \"coverId\": null,\n                \"icon2x\": null,\n                \"hero\": null,\n                \"icon\": null,\n                \"name\": \"My first playlist\",\n                \"categoryIds\": [],\n                \"userId\": 8429,\n                \"description\": \"My greate playlist\"\n            },\n            \"type\": \"gallery\",\n            \"categoryIds\": [\n                65,\n                37\n            ],\n            \"categoryNames\": [\n                \"Modernism\",\n                \"Conceptual\"\n            ],\n            \"artistIds\": [\n                268,\n                265\n            ],\n            \"artistNames\": [\n                \"Alfred Stieglitz\",\n                \"Georgia O'Keeffe\"\n            ],\n            \"author\": {\n                \"id\": 1,\n                \"name\": \"Poppy Simpson\"\n            }\n        }\n    ],\n    \"isLast\": true,\n    \"isPaginated\": true\n}"}],"_postman_id":"2e78c8c6-dbef-458a-be26-f7e4290b1045"},{"name":"/galleries/:id/sort","id":"64a29f7a-be34-fe8c-50e3-21ec965ad7f4","request":{"method":"PUT","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"<p>The user's authentication token</p>\n"},{"key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n\t\"order\": [\n\t\t123,\n\t\t456,\n\t\t789\n\t]\n}"},"url":"{{API_ORIGIN}}{{VERSION}}/galleries/:id/sort","description":"<p>Sort the items inside the specified gallery. Submit a JSON object with a key of <code>order</code> that points to an array of item ids.</p>\n","urlObject":{"path":["galleries",":id","sort"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[{"description":{"content":"<p>The id of the gallery</p>\n","type":"text/plain"},"type":"any","value":"{{galleryId}}","key":"id"}]}},"response":[],"_postman_id":"64a29f7a-be34-fe8c-50e3-21ec965ad7f4"},{"name":"/galleries/:galleryId/items/:itemId","id":"99130290-3b72-8569-d5d6-fe7839a3122b","request":{"method":"POST","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"<p>The user's authentication token</p>\n"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"{{API_ORIGIN}}{{VERSION}}/galleries/:galleryId/items/:itemId","description":"<p>Add an item to a gallery.</p>\n","urlObject":{"path":["galleries",":galleryId","items",":itemId"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[{"type":"any","value":"{{galleryId}}","key":"galleryId"},{"type":"any","value":"{{itemId}}","key":"itemId"}]}},"response":[],"_postman_id":"99130290-3b72-8569-d5d6-fe7839a3122b"},{"name":"/galleries/:galleryId/items/:itemId","id":"1c4e4795-8793-74e9-2ef2-ab28341527d8","request":{"method":"DELETE","header":[{"key":"Authorization","value":"Token {{TOKEN}}","description":"<p>The user's authentication token</p>\n"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"","value":"","type":"text","disabled":true}]},"url":"{{API_ORIGIN}}{{VERSION}}/galleries/:galleryId/items/:itemId","description":"<p>Remove an item from a gallery.</p>\n","urlObject":{"path":["galleries",":galleryId","items",":itemId"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[{"type":"any","value":"{{galleryId}}","key":"galleryId"},{"type":"any","value":"{{itemId}}","key":"itemId"}]}},"response":[],"_postman_id":"1c4e4795-8793-74e9-2ef2-ab28341527d8"}],"id":"97c7cba8-5642-055e-27a3-bdc2c8bca72d","description":"<p>Galleries are also known as playlists. They are the means by which artwork is added to and displayed on Canvases.</p>\n","_postman_id":"97c7cba8-5642-055e-27a3-bdc2c8bca72d"},{"name":"Artists","item":[{"name":"/artists","id":"a6df9b57-dfab-f76b-db1e-8812247992b3","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/artists?page={{page}}&count={{count}}&sort={{sortParameter}}","description":"<p>Retrieve artists. This endpoint supports sorting and filtering.</p>\n","urlObject":{"path":["artists"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[{"description":{"content":"<p>The page number</p>\n","type":"text/plain"},"key":"page","value":"{{page}}"},{"description":{"content":"<p>The number of objects per page</p>\n","type":"text/plain"},"key":"count","value":"{{count}}"},{"description":{"content":"<p>The sort parameter</p>\n","type":"text/plain"},"key":"sort","value":"{{sortParameter}}"}],"variable":[]}},"response":[{"id":"81886c9e-444e-7c88-50ef-0e821555d29f","name":"/artists","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{API_ORIGIN}}{{VERSION}}/artists?page=1&count=10&sort=date_added__dsc","host":["{{API_ORIGIN}}{{VERSION}}"],"path":["artists"],"query":[{"key":"page","value":"1","description":"The page number"},{"key":"count","value":"10","description":"The number of objects per page"},{"key":"sort","value":"date_added__dsc","description":"The sort parameter"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"allow","key":"allow","value":"GET, POST, HEAD, OPTIONS","description":""},{"name":"content-encoding","key":"content-encoding","value":"gzip","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:08:01 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"217","body":"{\"count\": 383, \"message\": \"\", \"data\": [{\"slug\": \"olga-wisinger-florian\", \"death\": \"1926\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/79E4ZIEKJxcLRphSmaO0Mv1oDWlWNiAd.jpeg\", \"categoryNames\": [\"Modernism\"], \"firstName\": \"Olga\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/79E4ZIEKJxcLRphSmaO0Mv1oDWlWNiAd.jpeg\", \"gender\": \"Female\", \"name\": \"Olga Wisinger-Florian\", \"avatar2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/800x800/vteNSTB2dnvoUnlwxbWpHzGMuKkgfZZt.jpeg\", \"featuredAt\": null, \"avatar\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/400x400/vteNSTB2dnvoUnlwxbWpHzGMuKkgfZZt.jpeg\", \"birth\": \"1844\", \"lastName\": \"Wisinger-Florian\", \"id\": 535, \"nationality\": \"Austrian\", \"categoryIds\": [65], \"description\": \"Olga Wisinger-Florian was an Austrian impressionist painter and was a part of a loose group of Austrian painters dubbed the Austrian Mood Impressionists.\"}, {\"slug\": \"bertha-wegmann\", \"death\": \"1926\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/0kdHdld6DT7J6VVkMAuyfHkiyHH4nQlr.jpeg\", \"categoryNames\": [\"Modernism\"], \"firstName\": \"Bertha\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/0kdHdld6DT7J6VVkMAuyfHkiyHH4nQlr.jpeg\", \"gender\": \"Female\", \"name\": \"Bertha Wegmann\", \"avatar2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/800x800/WBKjdYU6Dgr4treBgETHmS4pc6koqCrO.jpeg\", \"featuredAt\": null, \"avatar\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/400x400/WBKjdYU6Dgr4treBgETHmS4pc6koqCrO.jpeg\", \"birth\": \"1847\", \"lastName\": \"Wegmann\", \"id\": 534, \"nationality\": \"Danish\", \"categoryIds\": [65], \"description\": \"Bertha Wegmann was a Danish portrait painter. She was the first woman to hold a chair in the Royal Danish Academy of Fine Arts.\"}, {\"slug\": \"elisabeth-louise-vigeele-brun\", \"death\": \"1842\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/1000x500/0kQLgHu4EomAH04PK2VkHSG6BPQ33R31.jpeg\", \"categoryNames\": [\"Baroque and Rococo\"], \"firstName\": \"\\u00c9lisabeth Louise\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/1000x500/0kQLgHu4EomAH04PK2VkHSG6BPQ33R31.jpeg\", \"gender\": \"Female\", \"name\": \"\\u00c9lisabeth Louise Vig\\u00e9e\\u2013Le Brun\", \"avatar2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/800x800/QmoUIHkrMK8eFamuPn7oYeGMreBwJEEy.jpeg\", \"featuredAt\": null, \"avatar\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/400x400/QmoUIHkrMK8eFamuPn7oYeGMreBwJEEy.jpeg\", \"birth\": \"1755\", \"lastName\": \"Vig\\u00e9e\\u2013Le Brun\", \"id\": 533, \"nationality\": \"French\", \"categoryIds\": [62], \"description\": \"\\u00c9lisabeth-Louise Vig\\u00e9e Le Brun was born in Paris, France, and was best known for her fashionable portrait paintings of the 18th century. Her clientele included Marie Antoinette, the French royal court and many other royal and aristocratic families throughout Europe. She enjoyed a life of fame and success, revolutionizing the way society looked at women artists at this time.\"}, {\"slug\": \"henry-scott-tuke\", \"death\": \"1929\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/70B14N0pwdAwy8Rw3BrUgEDmRLlv8Xqm.jpeg\", \"categoryNames\": [\"Modernism\"], \"firstName\": \"Henry Scott\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/70B14N0pwdAwy8Rw3BrUgEDmRLlv8Xqm.jpeg\", \"gender\": \"Male\", \"name\": \"Henry Scott Tuke\", \"avatar2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/800x800/OO3HoLmbjIu0Rh3Jd4sbBO5UCRHWRrOq.jpeg\", \"featuredAt\": null, \"avatar\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/400x400/OO3HoLmbjIu0Rh3Jd4sbBO5UCRHWRrOq.jpeg\", \"birth\": \"1858\", \"lastName\": \"Tuke\", \"id\": 531, \"nationality\": \"English\", \"categoryIds\": [65], \"description\": \"Henry Scott Tuke was an English visual artists who primarily produced paintings. Tuke was strongly influenced by contemporary French plein-air painting and his favorite subject matter was nude males in a bright atmosphere against a background of the ocean.\"}, {\"slug\": \"almeida-junior\", \"death\": \"1899\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/gxFT9zBIo85mLFFFrZ24rWypPLq9jEto.jpeg\", \"categoryNames\": [\"Nineteenth Century\"], \"firstName\": \"Almeida\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/gxFT9zBIo85mLFFFrZ24rWypPLq9jEto.jpeg\", \"gender\": \"Male\", \"name\": \"Almeida J\\u00fanior\", \"avatar2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/800x800/OGg85YR1zRX0bv5gJkYXqSR6Mt7hBlwo.jpeg\", \"featuredAt\": null, \"avatar\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/400x400/OGg85YR1zRX0bv5gJkYXqSR6Mt7hBlwo.jpeg\", \"birth\": \"1850\", \"lastName\": \"J\\u00fanior\", \"id\": 530, \"nationality\": \"Brazilian\", \"categoryIds\": [72], \"description\": \"Jos\\u00e9 Ferraz de Almeida J\\u00fanior, also known as just Almeida J\\u00fanior, is a Brazilian artist who is known for being one of the first in his country to paint in the Realistic tradition similar to  [Gustave Courbet](https://my.meural.com/browse/artists/67/gustave-courbet).\"}, {\"slug\": \"chaim-soutine\", \"death\": \"1943\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/OB3ykBXjNwZjHC2b2wG8xZCyagZZQIxy.jpeg\", \"categoryNames\": [\"Modernism\"], \"firstName\": \"Chaim\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/OB3ykBXjNwZjHC2b2wG8xZCyagZZQIxy.jpeg\", \"gender\": \"Male\", \"name\": \"Chaim Soutine\", \"avatar2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/800x800/20K9QYzgc3BgVrlp3D1Rshug3Br5tF6U.jpeg\", \"featuredAt\": null, \"avatar\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/400x400/20K9QYzgc3BgVrlp3D1Rshug3Br5tF6U.jpeg\", \"birth\": \"1893\", \"lastName\": \"Soutine\", \"id\": 529, \"nationality\": \"Russian-French\", \"categoryIds\": [65], \"description\": \"Chaim Soutine was a Jewish Expressionist painter whose textured, impasto style was influential for later gestural painters. He is especially known for his portraits, landscapes, and studies of flayed meat. [The Art Story](http://www.theartstory.org/artist-soutine-chaim.htm)\"}, {\"slug\": \"paul-nash\", \"death\": \"1946\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/tIV5IyHniCzslGy9goncvdioo67Zbl4t.jpeg\", \"categoryNames\": [\"Modernism\"], \"firstName\": \"Paul\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/tIV5IyHniCzslGy9goncvdioo67Zbl4t.jpeg\", \"gender\": \"Male\", \"name\": \"Paul Nash\", \"avatar2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/800x800/b9dSt8eOxIWlPihHBUvKRImP7bhdyNqM.jpeg\", \"featuredAt\": null, \"avatar\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/400x400/b9dSt8eOxIWlPihHBUvKRImP7bhdyNqM.jpeg\", \"birth\": \"1889\", \"lastName\": \"Nash\", \"id\": 380, \"nationality\": \"British\", \"categoryIds\": [65], \"description\": \"Paul Nash was a British surrealist artist who ended up documenting two world wars through a series of surrealist landscapes.\"}, {\"slug\": \"christian-jackson\", \"death\": \"Present\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/1000x500/4HjWlPEtPjr53kk3sczVlhanyUbE5LiR.jpeg\", \"categoryNames\": [\"Design and Illustration\"], \"firstName\": \"Christian\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/1000x500/4HjWlPEtPjr53kk3sczVlhanyUbE5LiR.jpeg\", \"gender\": \"Male\", \"name\": \"Christian Jackson\", \"avatar2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/800x800/GLnSn2y8Mm4OXVCFRW91h9hp0N8sPk3G.jpeg\", \"featuredAt\": \"2018-03-02 16:46:10.301983+00:00\", \"avatar\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/400x400/GLnSn2y8Mm4OXVCFRW91h9hp0N8sPk3G.jpeg\", \"birth\": \"N/A\", \"lastName\": \"Jackson\", \"id\": 526, \"nationality\": \"American\", \"categoryIds\": [58], \"description\": \"Christian Jackson is an illustrator and designer who\\u2019s minimal stylings have been featured in a wide spectrum. From TV and films by 20th Century Fox, Lion\\u2019s Gate and ABC, to best selling books by Penguin Random House. With a commitment to creating clever art Christian draws inspiration from geometry, symbolism, and story telling, while operating within a simple code, \\u201cIf it\\u2019s not beautiful or useful, than it\\u2019s not worth it\\u201d. Christian currently lives in the burbs of Chicago with his muse, which is embodied by his family of six.\"}, {\"slug\": \"francisco-de-zurbaran\", \"death\": \"1664\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/BTPlIzxYSTBbgWDOX57pb37s608iG6tJ.jpeg\", \"categoryNames\": [\"Baroque and Rococo\"], \"firstName\": \"Francisco\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/BTPlIzxYSTBbgWDOX57pb37s608iG6tJ.jpeg\", \"gender\": \"Male\", \"name\": \"Francisco de Zurbar\\u00e1n\", \"avatar2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/800x800/lrI2MmRYcTW6h4nr98jsJB1DpzrdQIjc.jpeg\", \"featuredAt\": \"2018-03-01 16:23:42.926487+00:00\", \"avatar\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/400x400/lrI2MmRYcTW6h4nr98jsJB1DpzrdQIjc.jpeg\", \"birth\": \"1598\", \"lastName\": \"de Zurbar\\u00e1n\", \"id\": 525, \"nationality\": \"Spanish\", \"categoryIds\": [62], \"description\": \"Francisco de Zurbar\\u00e1n was Spanish painter who was greatly influenced by Vel\\u00e1zquez. Zurbar\\u00e1n is known for depicting religious figures in his work which were painted in a realistic style that enforces chiaroscuro, a technique used to create three dimensional effects in paintings. In his career, Zurbar\\u00e1n gained the nickname the \\\"Spanish Caravaggio\\\" due to his work mirroring effect that the Italian painter used.\"}, {\"slug\": \"robert-campin\", \"death\": \"1444\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/gG7oXaFGtJjdZPTYjASK4OcbzrIdpUPR.jpeg\", \"categoryNames\": [\"Renaissance\"], \"firstName\": \"Robert\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/gG7oXaFGtJjdZPTYjASK4OcbzrIdpUPR.jpeg\", \"gender\": \"Male\", \"name\": \"Robert Campin\", \"avatar2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/800x800/cQIym4nOrmWEBF9gYM5Bz12jbWuBUyEn.jpeg\", \"featuredAt\": \"2018-02-27 22:38:47.620987+00:00\", \"avatar\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/400x400/cQIym4nOrmWEBF9gYM5Bz12jbWuBUyEn.jpeg\", \"birth\": \"1375\", \"lastName\": \"Campin\", \"id\": 521, \"nationality\": \"Flemish\", \"categoryIds\": [74], \"description\": \"Robert Campin is an early Flemish painter associated with the Flemish Primitives. After the discovery of Campin's Triptychs, he is now identified as the Master of Fl\\u00e9malle.\"}], \"isLast\": false, \"isPaginated\": true}"}],"_postman_id":"a6df9b57-dfab-f76b-db1e-8812247992b3"},{"name":"/artists/:id","id":"8bb997db-8fc5-12a7-510f-518214e92d3b","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/artists/:id","description":"<p>Retrieve a specific artist.</p>\n","urlObject":{"path":["artists",":id"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[{"description":{"content":"<p>The artist's id</p>\n","type":"text/plain"},"type":"any","value":"{{artistId}}","key":"id"}]}},"response":[{"id":"e9058995-80e9-f832-3008-9813e8d78b18","name":"/artists/:id","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{API_ORIGIN}}{{VERSION}}/artists/:id","host":["{{API_ORIGIN}}{{VERSION}}"],"path":["artists",":id"],"variable":[{"key":"id","value":"79","description":"The artist's id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"allow","key":"allow","value":"GET, PUT, PATCH, DELETE, HEAD, OPTIONS","description":""},{"name":"content-encoding","key":"content-encoding","value":"gzip","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:08:06 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"157","body":"{\"count\": null, \"message\": \"\", \"data\": {\"slug\": \"claude-monet\", \"death\": \"1926\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/1000x500/18js3nho3xuwomg.optimized.thumb.jpg\", \"categoryNames\": [\"Modernism\", \"Impressionism\"], \"firstName\": \"Claude\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/1000x500/18js3nho3xuwomg.optimized.thumb.jpg\", \"gender\": \"Male\", \"name\": \"Claude Monet\", \"avatar2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/800x800/xjdfMMYHxvEsrBZqbOqnwvMu9Ccxnu8J.jpeg\", \"featuredAt\": \"2017-04-28 13:35:06.496752+00:00\", \"avatar\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/400x400/xjdfMMYHxvEsrBZqbOqnwvMu9Ccxnu8J.jpeg\", \"birth\": \"1840\", \"lastName\": \"Monet\", \"id\": 79, \"nationality\": \"French\", \"categoryIds\": [65, 148], \"description\": \"As the leading founder of the French Impressionists, Claude Monet's inspiring talent and personality were crucial in bringing the movement, and it's members, together. Monet was influenced by the Realist painters, and so, like those before him, he often depicted the landscapes and leisurely activities of Paris society and the Normandy coast. He developed a unique style of painting depth through light and shadows, seeking to capture, on canvas, the very act of perceiving nature. Monet lead a fulfilling career\\u2014creating some of the world's most beloved pieces of art\\u2014 and set a benchmark for decades of abstract and modernist artists to come.\"}, \"isLast\": null, \"isPaginated\": false}"}],"_postman_id":"8bb997db-8fc5-12a7-510f-518214e92d3b"},{"name":"/artists/:id/galleries","id":"7dd7f083-76db-9376-785e-468b89080154","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/artists/:id/galleries?page={{page}}&count={{count}}","description":"<p>Retrieve a specific artist's galleries. These are galleries with at least one item that belongs to the specified artist. This endpoint supports sorting.</p>\n","urlObject":{"path":["artists",":id","galleries"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[{"key":"page","value":"{{page}}"},{"key":"count","value":"{{count}}"}],"variable":[{"description":{"content":"<p>The artist's id</p>\n","type":"text/plain"},"type":"any","value":"{{artistId}}","key":"id"}]}},"response":[{"id":"2b1b35b0-dfde-d604-e7ba-f386d3180fbe","name":"/artists/:id/galleries","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{API_ORIGIN}}{{VERSION}}/artists/:id/galleries?page=1&count=10","host":["{{API_ORIGIN}}{{VERSION}}"],"path":["artists",":id","galleries"],"query":[{"key":"page","value":"1"},{"key":"count","value":"10"}],"variable":[{"key":"id","value":"79","description":"The artist's id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"allow","key":"allow","value":"GET, HEAD, OPTIONS","description":""},{"name":"content-encoding","key":"content-encoding","value":"gzip","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:08:12 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"272","body":"{\"count\": 44, \"message\": \"\", \"data\": [{\"username\": \"kelvin\", \"isSampler\": false, \"slug\": \"the-barnes-foundation-highlights\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/344x610/Lamqym03V7skKTvHkYVi4nNW8oxXRyJR.jpeg\", \"categoryNames\": [\"Recently Added\"], \"itemIds\": [225114, 225106, 225104, 225095, 224705, 224353, 225117, 225109], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/Lamqym03V7skKTvHkYVi4nNW8oxXRyJR.jpeg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/172x305/Lamqym03V7skKTvHkYVi4nNW8oxXRyJR.jpeg\", \"id\": 21116, \"featuredAt\": null, \"orientation\": \"vertical\", \"coverId\": 224705, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/40x40/Lamqym03V7skKTvHkYVi4nNW8oxXRyJR.jpeg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/Lamqym03V7skKTvHkYVi4nNW8oxXRyJR.jpeg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/20x20/Lamqym03V7skKTvHkYVi4nNW8oxXRyJR.jpeg\", \"name\": \"The Barnes Foundation: Highlights\", \"categoryIds\": [75], \"userId\": 2214, \"description\": \"The Barnes Foundation is an institution that houses Albert C. Barnes' art collection, which includes works from notable artists' like [Renoir](https://my.meural.com/browse/artists/115/pierre-auguste-renoir), [Glackens](https://my.meural.com/browse/artists/464/william-glackens) and [Van Gogh](https://my.meural.com/browse/artists/126/vincent-van-gogh).\\r\\n\\r\\nThis playlist is also featured in [horizontal](https://my.meural.com/playlist/21115).\"}, {\"username\": \"Meural \\u00a0\", \"isSampler\": false, \"slug\": \"best-buy-demo-playlist\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/344x610/UQGOE98AJKeXC1xCLHJWD4IXBporA8TR.optimized.thumb.jpg\", \"categoryNames\": [\"Fusion\"], \"itemIds\": [181381, 374389, 318836, 29660, 117870, 29664, 98384, 306103, 12930, 200379, 114780, 11183, 87790, 41570, 39841, 9667], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/UQGOE98AJKeXC1xCLHJWD4IXBporA8TR.optimized.thumb.jpg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/172x305/UQGOE98AJKeXC1xCLHJWD4IXBporA8TR.optimized.thumb.jpg\", \"id\": 36425, \"featuredAt\": null, \"orientation\": \"vertical\", \"coverId\": 41570, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/40x40/UQGOE98AJKeXC1xCLHJWD4IXBporA8TR.optimized.thumb.jpg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/UQGOE98AJKeXC1xCLHJWD4IXBporA8TR.optimized.thumb.jpg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/20x20/UQGOE98AJKeXC1xCLHJWD4IXBporA8TR.optimized.thumb.jpg\", \"name\": \"Best Buy Demo Playlist\", \"categoryIds\": [59], \"userId\": 257, \"description\": null}, {\"username\": \"Meural \\u00a0\", \"isSampler\": false, \"slug\": \"best-buy-demo-playlist\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/610x344/7klmc44lc68ow1e.optimized.thumb.jpg\", \"categoryNames\": [\"Fusion\"], \"itemIds\": [318846, 116756, 86285, 184149, 201578, 198196, 687, 188194, 9300, 316, 45691, 16435, 572, 14970, 15134], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/1000x500/7klmc44lc68ow1e.optimized.thumb.jpg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/305x172/7klmc44lc68ow1e.optimized.thumb.jpg\", \"id\": 36426, \"featuredAt\": null, \"orientation\": \"horizontal\", \"coverId\": 45691, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/40x40/7klmc44lc68ow1e.optimized.thumb.jpg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/1000x500/7klmc44lc68ow1e.optimized.thumb.jpg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/20x20/7klmc44lc68ow1e.optimized.thumb.jpg\", \"name\": \"Best Buy Demo Playlist\", \"categoryIds\": [59], \"userId\": 257, \"description\": null}, {\"username\": \"kelvin\", \"isSampler\": false, \"slug\": \"albertina-museum-highlights\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/610x344/6HklMcH4PoseT20d4kt0NA6uV8tJVGNS.jpeg\", \"categoryNames\": [\"Blend\", \"Fusion\", \"Series 1\"], \"itemIds\": [227981, 32399, 227980, 228011, 227979, 227978], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/6HklMcH4PoseT20d4kt0NA6uV8tJVGNS.jpeg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/305x172/6HklMcH4PoseT20d4kt0NA6uV8tJVGNS.jpeg\", \"id\": 21473, \"featuredAt\": \"2018-01-15 17:03:43.987027+00:00\", \"orientation\": \"horizontal\", \"coverId\": 228011, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/40x40/6HklMcH4PoseT20d4kt0NA6uV8tJVGNS.jpeg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/6HklMcH4PoseT20d4kt0NA6uV8tJVGNS.jpeg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/20x20/6HklMcH4PoseT20d4kt0NA6uV8tJVGNS.jpeg\", \"name\": \"Albertina Museum: Highlights\", \"categoryIds\": [53, 59, 6], \"userId\": 2214, \"description\": \"This playlist includes highlights from The Albertina\\u2014a museum in Austria that hosts one of the most important and largest collections of prints. The collection surpasses 60,000 items, all on permanent collection.\\r\\n\\r\\nThis playlist is also featured in [vertical](https://my.meural.com/playlist/21474).\"}, {\"username\": \"kelvin\", \"isSampler\": false, \"slug\": \"albertina-museum-highlights\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/344x610/hfRADoq9QkgNziQRNGsZiMifr3JmwDXg.jpeg\", \"categoryNames\": [\"Blend\", \"Fusion\", \"Series 1\"], \"itemIds\": [250814, 229249, 227977, 227974, 227975, 227973, 227972, 227976, 223705], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/hfRADoq9QkgNziQRNGsZiMifr3JmwDXg.jpeg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/172x305/hfRADoq9QkgNziQRNGsZiMifr3JmwDXg.jpeg\", \"id\": 21474, \"featuredAt\": \"2018-01-15 17:03:14.902126+00:00\", \"orientation\": \"vertical\", \"coverId\": 227975, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/40x40/hfRADoq9QkgNziQRNGsZiMifr3JmwDXg.jpeg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/hfRADoq9QkgNziQRNGsZiMifr3JmwDXg.jpeg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/20x20/hfRADoq9QkgNziQRNGsZiMifr3JmwDXg.jpeg\", \"name\": \"Albertina Museum: Highlights\", \"categoryIds\": [53, 59, 6], \"userId\": 2214, \"description\": \"This playlist includes highlights from The Albertina\\u2014a museum in Austria that hosts one of the most important and largest collections of prints. The collection surpasses 60,000 items, all on permanent collection.\\r\\n\\r\\nThis playlist is also featured in [horizontal](https://my.meural.com/playlist/21473).\"}, {\"username\": \"Meural\\u00a0\", \"isSampler\": false, \"slug\": \"peace-and-tranquility\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/610x344/3UyJ3XM0Iu7YWIYvCtEkSxhwFvJvZEzZ.jpeg\", \"categoryNames\": [\"Photography\", \"Fusion\", \"Photography\", \"Photograph\"], \"itemIds\": [311275, 311413, 93579, 39802, 39820, 39804, 311273, 311276, 17550, 34743, 308373], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/1000x500/3UyJ3XM0Iu7YWIYvCtEkSxhwFvJvZEzZ.jpeg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/305x172/3UyJ3XM0Iu7YWIYvCtEkSxhwFvJvZEzZ.jpeg\", \"id\": 30198, \"featuredAt\": \"2018-01-05 22:58:39.944274+00:00\", \"orientation\": \"horizontal\", \"coverId\": 311275, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/40x40/3UyJ3XM0Iu7YWIYvCtEkSxhwFvJvZEzZ.jpeg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/1000x500/3UyJ3XM0Iu7YWIYvCtEkSxhwFvJvZEzZ.jpeg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/20x20/3UyJ3XM0Iu7YWIYvCtEkSxhwFvJvZEzZ.jpeg\", \"name\": \"Peace and Tranquility\", \"categoryIds\": [9, 59, 73, 88], \"userId\": 254, \"description\": \"Start your week off right with these images that embody Zen.\\r\\n\\r\\nThis playlist is also featured in [vertical](https://my.meural.com/playlist/30199).\"}, {\"username\": \"Meural \\u00a0\", \"isSampler\": false, \"slug\": \"spot-pantone-14-0121-tcx\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/344x610/fBKZn6N7KTXqjmIDRhULi3QqeDB9WiHi.jpeg\", \"categoryNames\": [\"Fusion\", \"Series 2\"], \"itemIds\": [98406, 168747, 189492, 92147, 100470, 60240, 39795, 186811, 218828, 38988, 39824, 225270], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/1000x500/fBKZn6N7KTXqjmIDRhULi3QqeDB9WiHi.jpeg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/172x305/fBKZn6N7KTXqjmIDRhULi3QqeDB9WiHi.jpeg\", \"id\": 21476, \"featuredAt\": \"2018-01-03 15:26:45.864980+00:00\", \"orientation\": \"vertical\", \"coverId\": 168747, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/40x40/fBKZn6N7KTXqjmIDRhULi3QqeDB9WiHi.jpeg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/1000x500/fBKZn6N7KTXqjmIDRhULi3QqeDB9WiHi.jpeg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/20x20/fBKZn6N7KTXqjmIDRhULi3QqeDB9WiHi.jpeg\", \"name\": \"Spot: Pantone 14-0121 TCX\", \"categoryIds\": [59, 7], \"userId\": 257, \"description\": \"Meural brings you galleries inspired by different Pantone colors. This week's collection is inspired by Pantone 14-0121 TCX.\\r\\n\\r\\nAlso featured in [horizontal](https://my.meural.com/playlist/21477).\"}, {\"username\": \"Meural \\u00a0\", \"isSampler\": false, \"slug\": \"spot-pantone-14-0121-tcx\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/610x344/Fwi077rAVknnndWCzhPViuCnerRHgeOz.jpeg\", \"categoryNames\": [\"Fusion\", \"Series 2\"], \"itemIds\": [227704, 157875, 109278, 60434, 11186, 39009, 12918, 39820, 218766], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/Fwi077rAVknnndWCzhPViuCnerRHgeOz.jpeg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/305x172/Fwi077rAVknnndWCzhPViuCnerRHgeOz.jpeg\", \"id\": 21477, \"featuredAt\": \"2018-01-03 15:24:49.748561+00:00\", \"orientation\": \"horizontal\", \"coverId\": 157875, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/40x40/Fwi077rAVknnndWCzhPViuCnerRHgeOz.jpeg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/Fwi077rAVknnndWCzhPViuCnerRHgeOz.jpeg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/20x20/Fwi077rAVknnndWCzhPViuCnerRHgeOz.jpeg\", \"name\": \"Spot: Pantone 14-0121 TCX\", \"categoryIds\": [59, 7], \"userId\": 257, \"description\": \"Meural brings you galleries inspired by different Pantone colors. This week's collection is inspired by Pantone 14-0121 TCX.\\r\\n\\r\\nAlso featured in [vertical](https://my.meural.com/playlist/21476).\"}, {\"username\": \"kelvin\", \"isSampler\": false, \"slug\": \"winter-wonderland\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/610x344/9mb83phtsapeqyn.optimized.thumb.jpeg\", \"categoryNames\": [\"Happy Holidays\", \"Holidays\", \"Fusion\"], \"itemIds\": [201208, 227677, 44931, 93575, 157877, 88636, 31154, 167296, 20769, 133285, 39792, 241279, 49775, 11308, 49783], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/1000x500/9mb83phtsapeqyn.optimized.thumb.jpeg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/305x172/9mb83phtsapeqyn.optimized.thumb.jpeg\", \"id\": 23192, \"featuredAt\": \"2017-12-11 17:46:03.893686+00:00\", \"orientation\": \"horizontal\", \"coverId\": 49783, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/40x40/9mb83phtsapeqyn.optimized.thumb.jpeg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/1000x500/9mb83phtsapeqyn.optimized.thumb.jpeg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/20x20/9mb83phtsapeqyn.optimized.thumb.jpeg\", \"name\": \"Winter Wonderland\", \"categoryIds\": [17, 44, 59], \"userId\": 2214, \"description\": \"To face unafraid, the plans that we\\u2019ve made, walking in a winter wonderland.\\r\\n\\r\\nThis playlist is also featured in [vertical](https://my.meural.com/playlist/23193).\"}, {\"username\": \"kelvin\", \"isSampler\": false, \"slug\": \"cleveland-museum-of-art\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/344x610/kFWiL1p4EIpjE5tC5tI2OkvwyxcrccoB.jpeg\", \"categoryNames\": [\"Blend\", \"Fusion\", \"Series 1\"], \"itemIds\": [215868, 215855, 12816, 215856, 215867, 215854, 215853, 215850], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/kFWiL1p4EIpjE5tC5tI2OkvwyxcrccoB.jpeg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/172x305/kFWiL1p4EIpjE5tC5tI2OkvwyxcrccoB.jpeg\", \"id\": 20372, \"featuredAt\": \"2017-12-11 17:23:18.090115+00:00\", \"orientation\": \"vertical\", \"coverId\": 215867, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/40x40/kFWiL1p4EIpjE5tC5tI2OkvwyxcrccoB.jpeg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/kFWiL1p4EIpjE5tC5tI2OkvwyxcrccoB.jpeg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/20x20/kFWiL1p4EIpjE5tC5tI2OkvwyxcrccoB.jpeg\", \"name\": \"Cleveland Museum of Art: Highlights\", \"categoryIds\": [53, 59, 6], \"userId\": 2214, \"description\": \"The Cleveland Museum of Art came to life around 1913, with the help of prominent Cleveland industrialists. Its collection holds a substantial amount of Asian and Egyptian art, as well as more than 45,000 works from around the world. Today, the museum still holds to it's original mission: \\\"For the benefit of all people, forever\\\", keeping general admission free to the public.\\r\\n\\r\\nThis playlist is also available in [horizontal](https://my.meural.com/playlist/20371).\"}], \"isLast\": false, \"isPaginated\": true}"}],"_postman_id":"7dd7f083-76db-9376-785e-468b89080154"},{"name":"/artists/:id/articles","id":"b34ab0ae-3458-406f-9c81-feea79f7d7ad","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/artists/:id/articles","description":"<p>Retrieve a specific artist's articles.</p>\n","urlObject":{"path":["artists",":id","articles"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[{"description":{"content":"<p>The artist's id</p>\n","type":"text/plain"},"type":"any","value":"{{artistId}}","key":"id"}]}},"response":[{"id":"15d0ed0f-0aea-4e84-b22c-035472c90c8b","name":"/artists/:id/articles","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{API_ORIGIN}}{{VERSION}}/artists/:id/articles","host":["{{API_ORIGIN}}{{VERSION}}"],"path":["artists",":id","articles"],"variable":[{"key":"id","value":"{{artistId}}","description":"The artist's id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 1,\n    \"message\": \"\",\n    \"data\": [\n        {\n            \"name\": \"Stieglitz and O'Keeffe: A Love Story\",\n            \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/1000x500/dyy6gii7f86mh0m.optimized.thumb.jpeg\",\n            \"publishedAt\": \"2017-04-07T19:02:13.312371+00:00\",\n            \"body\": [\n                {\n                    \"type\": \"paragraph\",\n                    \"content\": {\n                        \"text\": \"When [Alfred Stieglitz](https://my.meural.com/browse/artists/268) and [Georgia O'Keeffe](https://my.meural.com/browse/artists/265) met in 1916, he was in his 50s—an internationally acclaimed photographer as well as a gallerist and dealer, while she was an unknown 28-year-old schoolteacher from Texas. They had been corresponding for a year, after Stieglitz had exhibited some of O'Keeffe's paintings in his influential gallery, 291. On meeting, their relationship developed quickly—Stieglitz left his wife and the couple married in 1924. Theirs was a passionate, unconventional and tumultuous marriage—one that saw O'Keeffe's emergence as America's leading Modernist painter, weathered infidelity and survived long periods of living apart. Throughout their relationship, the couple continued to correspond, and their combined letters, between 1915 and 1946, make up 25,000 sheets of paper.\"\n                    }\n                },\n                {\n                    \"type\": \"item\",\n                    \"content\": {\n                        \"caption\": \"Look at this beautiful item\",\n                        \"item\": {\n                            \"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\",\n                            \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\",\n                            \"year\": null,\n                            \"userId\": 8429,\n                            \"artistId\": null,\n                            \"sortedOrder\": null,\n                            \"originalWidth\": 2560,\n                            \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/40x40/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\",\n                            \"id\": 398483,\n                            \"croppedY1\": 0,\n                            \"dimensions\": null,\n                            \"copyright\": null,\n                            \"author\": null,\n                            \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\",\n                            \"categoryIds\": [],\n                            \"croppedWidth\": 0,\n                            \"type\": \"image\",\n                            \"isSampler\": false,\n                            \"medium\": null,\n                            \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\",\n                            \"description\": null,\n                            \"name\": \"Earth\",\n                            \"isPublic\": false,\n                            \"croppedX1\": 0,\n                            \"slug\": \"earth\",\n                            \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/20x20/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\",\n                            \"categoryNames\": [],\n                            \"croppedHeight\": 0,\n                            \"originalHeight\": 1600,\n                            \"artistName\": null,\n                            \"isDetailed\": false\n                        }\n                    }\n                },\n                {\n                    \"type\": \"image\",\n                    \"content\": {\n                        \"caption\": \"Interesting pose from the artist\",\n                        \"url\": \"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/O%27Keeffe-%28hands%29.jpg/1280px-O%27Keeffe-%28hands%29.jpg\",\n                        \"name\": \"Okeeffe by Steiglitz\",\n                        \"highres\": \"\"\n                    }\n                },\n                {\n                    \"type\": \"video\",\n                    \"content\": {\n                        \"caption\": \"a video\",\n                        \"url\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.mp4\",\n                        \"name\": \"Okeeffe video\",\n                        \"duration\": \"445\",\n                        \"thumbnailUrl\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\"\n                    }\n                },\n                {\n                    \"type\": \"audio\",\n                    \"content\": {\n                        \"url\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.wav\",\n                        \"duration\": \"783\",\n                        \"name\": \"An interview with Georgia Okeeffe\"\n                    }\n                }\n            ],\n            \"object\": {\n               \"slug\": \"syddharth-mate\",\n\"death\": \"present\",\n\"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/1000x500/0y8HSduWoes70PC3G0HmXHH2Tc2ID23Y.gif\",\n\"categoryNames\": [\n\"Motion\",\n\"Contemporary\",\n\"Digital Art\"\n],\n\"firstName\": \"Syddharth\",\n\"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/1000x500/0y8HSduWoes70PC3G0HmXHH2Tc2ID23Y.gif\",\n\"gender\": \"Male\",\n\"name\": \"Syddharth Mate\",\n\"avatar2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/800x800/eL3MIj1sj5TLfFeJwAEbGm7KgcLO1Cop.gif\",\n\"featuredAt\": \"2018-05-30 17:30:00+00:00\",\n\"avatar\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/400x400/eL3MIj1sj5TLfFeJwAEbGm7KgcLO1Cop.gif\",\n\"birth\": \"Uknown\",\n\"lastName\": \"Mate\",\n\"id\": 513,\n\"nationality\": \"Indian\",\n\"itemCount\": 9,\n\"categoryIds\": [\n66,\n70,\n160\n],\n\"description\": \"[Syddharth Mate](http://syddharth.com/) is a 2nd-year Master's student enrolled in the Graphic Design program at the National Institute of Design, Ahmedabad, India.\"\n            },\n            \"type\": \"artist\",\n            \"categoryIds\": [\n                65,\n                37\n            ],\n            \"categoryNames\": [\n                \"Modernism\",\n                \"Conceptual\"\n            ],\n            \"artistIds\": [\n                268,\n                265\n            ],\n            \"artistNames\": [\n                \"Alfred Stieglitz\",\n                \"Georgia O'Keeffe\"\n            ],\n            \"author\": {\n                \"id\": 1,\n                \"name\": \"Poppy Simpson\"\n            }\n        }\n    ],\n    \"isLast\": true,\n    \"isPaginated\": true\n}"}],"_postman_id":"b34ab0ae-3458-406f-9c81-feea79f7d7ad"},{"name":"/artists/:id/items","id":"b23cc712-1a08-ccc1-4a71-b9af2f04aa78","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/artists/:id/items?page={{page}}&count={{count}}&sort={{sortParameter}}","description":"<p>Retrieve a specific artist's items. This endpoint supports sorting.</p>\n","urlObject":{"path":["artists",":id","items"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[{"key":"page","value":"{{page}}"},{"key":"count","value":"{{count}}"},{"key":"sort","value":"{{sortParameter}}"}],"variable":[{"description":{"content":"<p>The artist's id</p>\n","type":"text/plain"},"type":"any","value":"{{artistId}}","key":"id"}]}},"response":[{"id":"33b80bc0-5d12-1e7d-251e-f3dab987a28c","name":"/artists/:id/items","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{API_ORIGIN}}{{VERSION}}/artists/:id/items?page=1&count=10&sort=date_added__dsc","host":["{{API_ORIGIN}}{{VERSION}}"],"path":["artists",":id","items"],"query":[{"key":"page","value":"1"},{"key":"count","value":"10"},{"key":"sort","value":"date_added__dsc"}],"variable":[{"key":"id","value":"79","description":"The artist's id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"allow","key":"allow","value":"GET, HEAD, OPTIONS","description":""},{"name":"content-encoding","key":"content-encoding","value":"gzip","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:08:16 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"178","body":"{\"count\": 98, \"message\": \"\", \"data\": [{\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/z2RKdIRODyaN7PGmaqhQW0fKTqlkuKSQ.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/ywWgO6HLDCTOPE8cdTgSoXuZRPeALkAO.jpeg\", \"year\": \"1917-19\", \"userId\": 2214, \"artistId\": 79, \"sortedOrder\": null, \"originalWidth\": 4476, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/40x40/ywWgO6HLDCTOPE8cdTgSoXuZRPeALkAO.jpeg\", \"id\": 250814, \"croppedY1\": 0, \"dimensions\": \"100 \\u00d7 200 cm\", \"copyright\": null, \"author\": \"Claude Monet\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/ywWgO6HLDCTOPE8cdTgSoXuZRPeALkAO.jpeg\", \"categoryIds\": [40, 12, 65, 148], \"croppedWidth\": 2604, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil on canvas\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/ywWgO6HLDCTOPE8cdTgSoXuZRPeALkAO.jpeg\", \"description\": null, \"name\": \"House Among the Roses\", \"isPublic\": true, \"croppedX1\": 698, \"slug\": \"house-among-the-roses\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/20x20/ywWgO6HLDCTOPE8cdTgSoXuZRPeALkAO.jpeg\", \"categoryNames\": [\"Flora and Fauna\", \"Modernism\", \"Modernism\", \"Impressionism\"], \"croppedHeight\": 4632, \"originalHeight\": 4632, \"artistName\": \"Claude Monet\", \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/3iWe1hxqKU5NYuDgwAwUpAivrbMb0qL0.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/isNbuK9LC25yxK2oXEc8k9MbuP9B39e1.jpeg\", \"year\": \"1917-19\", \"userId\": 2214, \"artistId\": 79, \"sortedOrder\": null, \"originalWidth\": 6854, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/40x40/isNbuK9LC25yxK2oXEc8k9MbuP9B39e1.jpeg\", \"id\": 227979, \"croppedY1\": 69, \"dimensions\": null, \"copyright\": null, \"author\": \"Claude Monet\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/isNbuK9LC25yxK2oXEc8k9MbuP9B39e1.jpeg\", \"categoryIds\": [40, 12, 65, 148], \"croppedWidth\": 5942, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil on canvas\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/isNbuK9LC25yxK2oXEc8k9MbuP9B39e1.jpeg\", \"description\": null, \"name\": \"The Water Lily Pond\", \"isPublic\": true, \"croppedX1\": 843, \"slug\": \"the-water-lily-pond\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/20x20/isNbuK9LC25yxK2oXEc8k9MbuP9B39e1.jpeg\", \"categoryNames\": [\"Flora and Fauna\", \"Modernism\", \"Modernism\", \"Impressionism\"], \"croppedHeight\": 3346, \"originalHeight\": 3513, \"artistName\": \"Claude Monet\", \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/qNSRoAAW3126eEKQTJLrnOrXzzCrwUu6.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/iFforO81GgVEaejyHiYB4YqefjFFDaiR.jpeg\", \"year\": \"1875\", \"userId\": 2214, \"artistId\": 79, \"sortedOrder\": null, \"originalWidth\": 4096, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/40x40/iFforO81GgVEaejyHiYB4YqefjFFDaiR.jpeg\", \"id\": 225104, \"croppedY1\": 0, \"dimensions\": \"65.4 x 55.9 cm\", \"copyright\": null, \"author\": \"Claude Monet\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/iFforO81GgVEaejyHiYB4YqefjFFDaiR.jpeg\", \"categoryIds\": [21, 72, 148], \"croppedWidth\": 2708, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil on canvas\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/iFforO81GgVEaejyHiYB4YqefjFFDaiR.jpeg\", \"description\": null, \"name\": \"Madame Monet Embroidering\", \"isPublic\": true, \"croppedX1\": 278, \"slug\": \"madame-monet-embroidering\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/20x20/iFforO81GgVEaejyHiYB4YqefjFFDaiR.jpeg\", \"categoryNames\": [\"Portraiture\", \"Nineteenth Century\", \"Impressionism\"], \"croppedHeight\": 4815, \"originalHeight\": 4815, \"artistName\": \"Claude Monet\", \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/S4m6yNVEujoLeZiFizFgrJtcddRv7PNl.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/Y9hGT1jHxWmG2BC4bBwQip1cfTuGcmxM.jpeg\", \"year\": \"1864\", \"userId\": 2214, \"artistId\": 79, \"sortedOrder\": null, \"originalWidth\": 1909, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/40x40/Y9hGT1jHxWmG2BC4bBwQip1cfTuGcmxM.jpeg\", \"id\": 215868, \"croppedY1\": 0, \"dimensions\": \"116.8 \\u00d7 90.5 cm\", \"copyright\": null, \"author\": \"Claude Monet\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/Y9hGT1jHxWmG2BC4bBwQip1cfTuGcmxM.jpeg\", \"categoryIds\": [40, 72, 148], \"croppedWidth\": 1408, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil on fabric\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/Y9hGT1jHxWmG2BC4bBwQip1cfTuGcmxM.jpeg\", \"description\": null, \"name\": \"Spring Flowers\", \"isPublic\": true, \"croppedX1\": 206, \"slug\": \"spring-flowers\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/20x20/Y9hGT1jHxWmG2BC4bBwQip1cfTuGcmxM.jpeg\", \"categoryNames\": [\"Flora and Fauna\", \"Nineteenth Century\", \"Impressionism\"], \"croppedHeight\": 2500, \"originalHeight\": 2500, \"artistName\": \"Claude Monet\", \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/doFLSjpL3Va4q5YroaSwNysYP3m2uZjT.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/EotlhSZoj0Mebgsuqs8wNY5n5axq6yd6.jpeg\", \"year\": \"1872\", \"userId\": 2214, \"artistId\": 79, \"sortedOrder\": null, \"originalWidth\": 5773, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/40x40/EotlhSZoj0Mebgsuqs8wNY5n5axq6yd6.jpeg\", \"id\": 380986, \"croppedY1\": 452, \"dimensions\": \"48 cm \\u00d7 63 cm\", \"copyright\": null, \"author\": \"Claude Monet\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/EotlhSZoj0Mebgsuqs8wNY5n5axq6yd6.jpeg\", \"categoryIds\": [42, 72, 148], \"croppedWidth\": 5765, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil on canvas\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/EotlhSZoj0Mebgsuqs8wNY5n5axq6yd6.jpeg\", \"description\": null, \"name\": \"Impression, Sunrise\", \"isPublic\": true, \"croppedX1\": 8, \"slug\": \"impression-sunrise\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/20x20/EotlhSZoj0Mebgsuqs8wNY5n5axq6yd6.jpeg\", \"categoryNames\": [\"Nautical\", \"Nineteenth Century\", \"Impressionism\"], \"croppedHeight\": 3250, \"originalHeight\": 4478, \"artistName\": \"Claude Monet\", \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1ZpX5uw3b6KmLZaatthdtGfPhmki7SzX.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/9MKaGvqCHEfxw32gZGYqzj0Q1T22F2Mb.jpeg\", \"year\": \"1880\", \"userId\": 2214, \"artistId\": 79, \"sortedOrder\": null, \"originalWidth\": 3809, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/40x40/9MKaGvqCHEfxw32gZGYqzj0Q1T22F2Mb.jpeg\", \"id\": 345676, \"croppedY1\": 320, \"dimensions\": \"66 x 81.3 cm\", \"copyright\": null, \"author\": \"Claude Monet\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/9MKaGvqCHEfxw32gZGYqzj0Q1T22F2Mb.jpeg\", \"categoryIds\": [29, 72, 148], \"croppedWidth\": 3686, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil on canvas\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/9MKaGvqCHEfxw32gZGYqzj0Q1T22F2Mb.jpeg\", \"description\": null, \"name\": \"\\u00cele aux Fleurs near V\\u00e9theuil\", \"isPublic\": true, \"croppedX1\": 68, \"slug\": \"ile-aux-fleurs-near-vetheuil\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/20x20/9MKaGvqCHEfxw32gZGYqzj0Q1T22F2Mb.jpeg\", \"categoryNames\": [\"Landscape\", \"Nineteenth Century\", \"Impressionism\"], \"croppedHeight\": 2074, \"originalHeight\": 3083, \"artistName\": \"Claude Monet\", \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/MpRZ4kxGzA0oulO2t4DK6VINhzTdw90D.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/xjdfMMYHxvEsrBZqbOqnwvMu9Ccxnu8J.jpeg\", \"year\": \"1917\", \"userId\": 2214, \"artistId\": 79, \"sortedOrder\": null, \"originalWidth\": 2000, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/40x40/xjdfMMYHxvEsrBZqbOqnwvMu9Ccxnu8J.jpeg\", \"id\": 225080, \"croppedY1\": 0, \"dimensions\": \"70 \\u00d7 55 cm\", \"copyright\": null, \"author\": \"Claude Monet\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/xjdfMMYHxvEsrBZqbOqnwvMu9Ccxnu8J.jpeg\", \"categoryIds\": [21, 12, 65, 148], \"croppedWidth\": 1562, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil on canvas\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/xjdfMMYHxvEsrBZqbOqnwvMu9Ccxnu8J.jpeg\", \"description\": null, \"name\": \"Self-Portrait\", \"isPublic\": true, \"croppedX1\": 256, \"slug\": \"self-portrait\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/20x20/xjdfMMYHxvEsrBZqbOqnwvMu9Ccxnu8J.jpeg\", \"categoryNames\": [\"Portraiture\", \"Modernism\", \"Modernism\", \"Impressionism\"], \"croppedHeight\": 2776, \"originalHeight\": 2776, \"artistName\": \"Claude Monet\", \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/k26bjJSwxnNpvL89ykk4G3CEZQEcFbEf.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/wYgrAeFj0XF8AqCKxYIF6fVRjPdatc2W.jpeg\", \"year\": \"1879\", \"userId\": 2224, \"artistId\": 79, \"sortedOrder\": null, \"originalWidth\": 2390, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/40x40/wYgrAeFj0XF8AqCKxYIF6fVRjPdatc2W.jpeg\", \"id\": 190078, \"croppedY1\": 312, \"dimensions\": null, \"copyright\": null, \"author\": \"Claude Monet\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/wYgrAeFj0XF8AqCKxYIF6fVRjPdatc2W.jpeg\", \"categoryIds\": [72, 148], \"croppedWidth\": 2390, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil on canvas\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/wYgrAeFj0XF8AqCKxYIF6fVRjPdatc2W.jpeg\", \"description\": \"In 1878, Monet moved his family to the town of Vetheuil in northern France. They temporarily lived with a wealthy magnate who became Monet's patron. His Vetheuil in the Fog is among his finest works, offering a subtle, albeit distinct impression of a figural form. As was characteristic of many of Monet's paintings, he applied his brush rather quickly to the canvas in order to capture the exact image he wanted before the sunlight shifted or faded away altogether. Monet's emphasis on the fleeting changes in the natural world was a central aspect of his oeuvre that captures the ephemerality of nature and preserves it within the picture plane; thus, the momentary perception is crystallized in the replication of the optical experience of it. [The Art Story-Monet](http://www.theartstory.org/artist-morisot-berthe.htm)\", \"name\": \"Vetheuil in the Fog\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"vetheuil-in-the-fog\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/20x20/wYgrAeFj0XF8AqCKxYIF6fVRjPdatc2W.jpeg\", \"categoryNames\": [\"Nineteenth Century\", \"Impressionism\"], \"croppedHeight\": 1345, \"originalHeight\": 2000, \"artistName\": \"Claude Monet\", \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/unne3ybmgsbbs0i.thumb.jpg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/6wj6js2gss95qkl.optimized.thumb.jpg\", \"year\": \"1871\", \"userId\": 254, \"artistId\": 79, \"sortedOrder\": null, \"originalWidth\": 3000, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/40x40/6wj6js2gss95qkl.optimized.thumb.jpg\", \"id\": 109418, \"croppedY1\": 179, \"dimensions\": \"18 x 26 3/8\", \"copyright\": null, \"author\": \"Claude Monet\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/1000x500/6wj6js2gss95qkl.optimized.thumb.jpg\", \"categoryIds\": [72, 148], \"croppedWidth\": 2910, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil on canvas\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/1000x500/6wj6js2gss95qkl.optimized.thumb.jpg\", \"description\": \"\\\"On the advice of the French painter Charles-Fran\\u00e7ois Daubigny, Claude Monet traveled to the Netherlands in 1871, where he painted this landscape of limpid waters and azure skies along the Achterzaan River in Zaandam. Writing to fellow Impressionist Camille Pissarro, Monet noted the pleasures of painting the picturesque Dutch landscape: \\\"This is a superb place for painting. There are the most amusing things everywhere: hundreds of windmills and enchanting boats, extremely friendly Dutchmen\\u2026\\\" Using a limited palette of varying shades of green, Monet has captured the hazy atmosphere and light-dappled water of this picturesque Dutch port. Monet's Dutch landscapes were widely admired by other contemporary artists, especially Daubigny, whose own studies of light and water share an affinity.\\\" The Met\", \"name\": \"Houses on the Achterzaan\", \"isPublic\": true, \"croppedX1\": 37, \"slug\": \"houses-on-the-achterzaan\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/20x20/6wj6js2gss95qkl.optimized.thumb.jpg\", \"categoryNames\": [\"Nineteenth Century\", \"Impressionism\"], \"croppedHeight\": 1636, \"originalHeight\": 1973, \"artistName\": \"Claude Monet\", \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/crky4h8gkjkx94x.thumb.jpg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/18js3nho3xuwomg.optimized.thumb.jpg\", \"year\": \"1889\", \"userId\": 2214, \"artistId\": 79, \"sortedOrder\": null, \"originalWidth\": 2485, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/40x40/18js3nho3xuwomg.optimized.thumb.jpg\", \"id\": 100499, \"croppedY1\": 259, \"dimensions\": \"81.3 x 101.6 cm\", \"copyright\": null, \"author\": \"Claude Monet\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/1000x500/18js3nho3xuwomg.optimized.thumb.jpg\", \"categoryIds\": [40, 72, 148], \"croppedWidth\": 2468, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil on Canvas\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/1000x500/18js3nho3xuwomg.optimized.thumb.jpg\", \"description\": null, \"name\": \"The Japanese Footbridge\", \"isPublic\": true, \"croppedX1\": 17, \"slug\": \"the-japanese-footbridge\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/20x20/18js3nho3xuwomg.optimized.thumb.jpg\", \"categoryNames\": [\"Flora and Fauna\", \"Nineteenth Century\", \"Impressionism\"], \"croppedHeight\": 1398, \"originalHeight\": 2000, \"artistName\": \"Claude Monet\", \"isDetailed\": false}], \"isLast\": false, \"isPaginated\": true}"}],"_postman_id":"b23cc712-1a08-ccc1-4a71-b9af2f04aa78"}],"id":"c9c0d0f1-fda0-1d8a-ecb8-f7c37c418562","description":"<p>These endpoints allow the user to retrieve artists and their artworks and playlists.</p>\n","_postman_id":"c9c0d0f1-fda0-1d8a-ecb8-f7c37c418562"},{"name":"Categories","item":[{"name":"/categories","id":"0c779a15-1a43-28c0-0b36-2c9994764f29","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/categories?page={{page}}&count={{count}}","description":"<p>Retrieve categories.</p>\n","urlObject":{"path":["categories"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[{"description":{"content":"<p>The page number</p>\n","type":"text/plain"},"key":"page","value":"{{page}}"},{"description":{"content":"<p>The number of objects per page</p>\n","type":"text/plain"},"key":"count","value":"{{count}}"}],"variable":[]}},"response":[{"id":"3c48a126-ff2e-d043-2ebb-1faa481cd557","name":"/categories","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{API_ORIGIN}}{{VERSION}}/categories?page=1&count=10","host":["{{API_ORIGIN}}{{VERSION}}"],"path":["categories"],"query":[{"key":"page","value":"1","description":"The page number"},{"key":"count","value":"10","description":"The number of objects per page"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"allow","key":"allow","value":"GET, POST, HEAD, OPTIONS","description":""},{"name":"content-encoding","key":"content-encoding","value":"gzip","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:08:23 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"263","body":"{\"count\": 41, \"message\": \"\", \"data\": [{\"id\": 75, \"order\": 0, \"name\": \"Recently Added\", \"description\": \"\", \"avatar\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/MO7jFAqg2yIrZDeSesecOgamFra3pBDZ.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/Na6shXXaObvvSACAZpp6IXUGfzHzCpcE.jpeg\", \"year\": null, \"userId\": 2224, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 2400, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/40x40/Na6shXXaObvvSACAZpp6IXUGfzHzCpcE.jpeg\", \"id\": 380244, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": \"Prince Lunawara\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/Na6shXXaObvvSACAZpp6IXUGfzHzCpcE.jpeg\", \"categoryIds\": [75], \"croppedWidth\": 2027, \"type\": \"image\", \"isSampler\": false, \"medium\": null, \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/Na6shXXaObvvSACAZpp6IXUGfzHzCpcE.jpeg\", \"description\": null, \"name\": \"Swatches and Patches\", \"isPublic\": true, \"croppedX1\": 218, \"slug\": \"swatches-and-patches\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/20x20/Na6shXXaObvvSACAZpp6IXUGfzHzCpcE.jpeg\", \"categoryNames\": [\"Recently Added\"], \"croppedHeight\": 3600, \"originalHeight\": 3600, \"artistName\": null, \"isDetailed\": false}, \"hero\": null}, {\"id\": 20, \"order\": 0, \"name\": \"Women's History Month\", \"description\": \"A collection of playlists featuring female trailblazers, icons, and inspirations.\", \"avatar\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/qewokycxid00jj0.thumb.jpg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/hgxlwk1cpfbbc7l.optimized.thumb.jpg\", \"year\": \"1915\", \"userId\": 254, \"artistId\": 63, \"sortedOrder\": null, \"originalWidth\": 2000, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/40x40/hgxlwk1cpfbbc7l.optimized.thumb.jpg\", \"id\": 24613, \"croppedY1\": 61, \"dimensions\": null, \"copyright\": null, \"author\": \"Hilma af Klint\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/1000x500/hgxlwk1cpfbbc7l.optimized.thumb.jpg\", \"categoryIds\": [27, 12, 20, 65], \"croppedWidth\": 1406, \"type\": \"image\", \"isSampler\": true, \"medium\": \"Oil and tempura\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/1000x500/hgxlwk1cpfbbc7l.optimized.thumb.jpg\", \"description\": null, \"name\": \"Altar Painting No.1\", \"isPublic\": true, \"croppedX1\": 305, \"slug\": \"altar-painting-no1\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/20x20/hgxlwk1cpfbbc7l.optimized.thumb.jpg\", \"categoryNames\": [\"Abstract\", \"Modernism\", \"Women's History Month\", \"Modernism\"], \"croppedHeight\": 2499, \"originalHeight\": 2621, \"artistName\": \"Hilma af Klint\", \"isDetailed\": false}, \"hero\": null}, {\"id\": 27, \"order\": 0, \"name\": \"Abstract\", \"description\": \"\", \"avatar\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/p3qfb0tc0c2leyy.thumb.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/y6395f6vlh6p580.optimized.thumb.jpeg\", \"year\": \"1926\", \"userId\": 2224, \"artistId\": 203, \"sortedOrder\": null, \"originalWidth\": 1964, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/40x40/y6395f6vlh6p580.optimized.thumb.jpeg\", \"id\": 109253, \"croppedY1\": 0, \"dimensions\": \"140.3 x 140.7 cm\", \"copyright\": null, \"author\": \"Wassily Kandinsky\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/1000x500/y6395f6vlh6p580.optimized.thumb.jpeg\", \"categoryIds\": [27, 12, 65], \"croppedWidth\": 1125, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil on canvas\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/1000x500/y6395f6vlh6p580.optimized.thumb.jpeg\", \"description\": \"Kandinsky painted this work in his sixtieth year and it demonstrates his lifelong search for the ideal form of spiritual expression in art. Created as part of his experimentation with a linear style of painting, this work shows his interest in the form of the circle. \\\"The circle,\\\" claimed Kandinsky, \\\"is the synthesis of the greatest oppositions. It combines the concentric and the eccentric in a single form and in equilibrium. Of the three primary forms, it points most clearly to the fourth dimension.\\\" The diverse dimensions and bright hues of each circle bubble up through the canvas and are balanced through Kandinsky's careful juxtapositions of proportion and color. The dynamic movement of the round forms evokes their universality - from the stars in the cosmos to drops of dew; the circle a shape integral to life. [The Art Story-Kandinsky](http://www.theartstory.org/artist-kandinsky-wassily.htm)\", \"name\": \"Several Circles\", \"isPublic\": true, \"croppedX1\": 144, \"slug\": \"several-circles\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/20x20/y6395f6vlh6p580.optimized.thumb.jpeg\", \"categoryNames\": [\"Abstract\", \"Modernism\", \"Modernism\"], \"croppedHeight\": 2000, \"originalHeight\": 2000, \"artistName\": \"Wassily Kandinsky\", \"isDetailed\": false}, \"hero\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/fi1wcqrl3wfftc3.thumb.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/a0p903kfrubomlc.optimized.thumb.jpeg\", \"year\": \"1922\", \"userId\": 254, \"artistId\": 267, \"sortedOrder\": null, \"originalWidth\": 1906, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/40x40/a0p903kfrubomlc.optimized.thumb.jpeg\", \"id\": 131937, \"croppedY1\": 42, \"dimensions\": null, \"copyright\": null, \"author\": \"Paul Klee\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/1000x500/a0p903kfrubomlc.optimized.thumb.jpeg\", \"categoryIds\": [27, 12, 65], \"croppedWidth\": 1618, \"type\": \"image\", \"isSampler\": false, \"medium\": null, \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/1000x500/a0p903kfrubomlc.optimized.thumb.jpeg\", \"description\": \"Klee \\u00a9 2016 Artists Rights Society (ARS), New York\", \"name\": \"Little Painting with Pine Tree\", \"isPublic\": true, \"croppedX1\": 137, \"slug\": \"little-painting-with-pine-tree\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/20x20/a0p903kfrubomlc.optimized.thumb.jpeg\", \"categoryNames\": [\"Abstract\", \"Modernism\", \"Modernism\"], \"croppedHeight\": 2875, \"originalHeight\": 3000, \"artistName\": \"Paul Klee\", \"isDetailed\": false}}, {\"id\": 28, \"order\": 1, \"name\": \"Fantasy\", \"description\": \"\", \"avatar\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/tm1oxjagwxx296z.thumb.gif\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/tm1oxjagwxx296z.thumb.gif\", \"year\": null, \"userId\": 254, \"artistId\": 167, \"sortedOrder\": null, \"originalWidth\": 1080, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/40x40/tm1oxjagwxx296z.thumb.gif\", \"id\": 33332, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": \"Bill Domonkos\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/1000x500/tm1oxjagwxx296z.thumb.gif\", \"categoryIds\": [28, 66, 70, 160], \"croppedWidth\": 0, \"type\": \"image\", \"isSampler\": false, \"medium\": null, \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/1000x500/tm1oxjagwxx296z.thumb.gif\", \"description\": null, \"name\": \"Taxi\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"taxi\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/20x20/tm1oxjagwxx296z.thumb.gif\", \"categoryNames\": [\"Fantasy\", \"Motion\", \"Contemporary\", \"Digital Art\"], \"croppedHeight\": 0, \"originalHeight\": 1920, \"artistName\": \"Bill Domonkos\", \"isDetailed\": false}, \"hero\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8ca8da41fe1ebc8d3ca31dc14f5fc56c/AzEsHNuUcXIXP7EMhGOJJmv2z2bzkU9M.thumb.png\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8ca8da41fe1ebc8d3ca31dc14f5fc56c/AzEsHNuUcXIXP7EMhGOJJmv2z2bzkU9M.thumb.png\", \"year\": null, \"userId\": 2224, \"artistId\": 342, \"sortedOrder\": null, \"originalWidth\": 1080, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8ca8da41fe1ebc8d3ca31dc14f5fc56c/40x40/AzEsHNuUcXIXP7EMhGOJJmv2z2bzkU9M.thumb.png\", \"id\": 144380, \"croppedY1\": 0, \"dimensions\": \"20 x 35 cm\", \"copyright\": \"Courtesy of The Lumen Prize\", \"author\": \"Claire Reika Wright\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8ca8da41fe1ebc8d3ca31dc14f5fc56c/1000x500/AzEsHNuUcXIXP7EMhGOJJmv2z2bzkU9M.thumb.png\", \"categoryIds\": [28, 10, 70], \"croppedWidth\": 0, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Monoprint on watercolor paper\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8ca8da41fe1ebc8d3ca31dc14f5fc56c/1000x500/AzEsHNuUcXIXP7EMhGOJJmv2z2bzkU9M.thumb.png\", \"description\": \"\\\"In this series of original monoprints and screen based images I have further explored the enduring combination of trees, landscape and celestial bodies. The primeval sense of mystery here fascinates me - probably a result of my looking out of my bedroom window as a child and watching the night sky\\\". Claire Reika Wright\", \"name\": \"The Judas Tree\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"the-judas-tree\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8ca8da41fe1ebc8d3ca31dc14f5fc56c/20x20/AzEsHNuUcXIXP7EMhGOJJmv2z2bzkU9M.thumb.png\", \"categoryNames\": [\"Fantasy\", \"Contemporary\", \"Contemporary\"], \"croppedHeight\": 0, \"originalHeight\": 1920, \"artistName\": \"Claire Reika Wright\", \"isDetailed\": false}}, {\"id\": 62, \"order\": 1, \"name\": \"Baroque and Rococo\", \"description\": \"Baroque and Rococo artworks are characterized by their opulent use of decorative elements and flourishes to create a sense of grandeur. The Baroque period began at the end of the Renaissance, and elaborated on its classical motifs with an emphasis on dramatic lighting and composition. In the Rococo, which followed, the palette turned to lighter, softer colors to depict idyllic genre scenes, typically of court life or mythology.\", \"avatar\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/21svesqlinjojti.thumb.jpg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/uqzrqgf51j87v3e.optimized.thumb.jpg\", \"year\": \"c. 1738\", \"userId\": 2224, \"artistId\": 19, \"sortedOrder\": null, \"originalWidth\": 0, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/40x40/uqzrqgf51j87v3e.optimized.thumb.jpg\", \"id\": 17483, \"croppedY1\": 143, \"dimensions\": \"124.5 x 204.6 cm\", \"copyright\": null, \"author\": \"Canaletto\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/uqzrqgf51j87v3e.optimized.thumb.jpg\", \"categoryIds\": [36, 11, 62], \"croppedWidth\": 3000, \"type\": \"image\", \"isSampler\": true, \"medium\": \"Oil on canvas\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/uqzrqgf51j87v3e.optimized.thumb.jpg\", \"description\": null, \"name\": \"The Grand Canal in Venice with San Simeone Piccolo\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"the-grand-canal-in-venice-with-san-simeone-piccolo\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/20x20/uqzrqgf51j87v3e.optimized.thumb.jpg\", \"categoryNames\": [\"City\", \"Baroque and Rococo\", \"Baroque and Rococo\"], \"croppedHeight\": 1687, \"originalHeight\": 0, \"artistName\": \"Giovanni Canaletto\", \"isDetailed\": false}, \"hero\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/vai5a8j2knkhoxj.thumb.jpg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/4u5051eoyly6yyq.optimized.thumb.jpg\", \"year\": null, \"userId\": 2224, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 3000, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/40x40/4u5051eoyly6yyq.optimized.thumb.jpg\", \"id\": 117291, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": \"Gabriel de Saint-Aubin\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/1000x500/4u5051eoyly6yyq.optimized.thumb.jpg\", \"categoryIds\": [11, 62], \"croppedWidth\": 2760, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Watercolor on paper\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/1000x500/4u5051eoyly6yyq.optimized.thumb.jpg\", \"description\": null, \"name\": \"Sketch for The Salon of 1765\", \"isPublic\": true, \"croppedX1\": 28, \"slug\": \"sketch-for-the-salon-of-1765\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/20x20/4u5051eoyly6yyq.optimized.thumb.jpg\", \"categoryNames\": [\"Baroque and Rococo\", \"Baroque and Rococo\"], \"croppedHeight\": 1553, \"originalHeight\": 1553, \"artistName\": null, \"isDetailed\": false}}, {\"id\": 148, \"order\": 2, \"name\": \"Impressionism\", \"description\": \"Impressionism can be considered the first distinctly modern movement in painting. Developing in Paris in the 1860s, its influence spread throughout Europe and eventually the United States. Its originators were artists who rejected the official, government-sanctioned exhibitions, or salons, and were consequently shunned by powerful academic art institutions. In turning away from the fine finish and detail to which most artists of their day aspired, the Impressionists aimed to capture the momentary, sensory effect of a scene - the impression objects made on the eye in a fleeting instant. To achieve this effect, many Impressionist artists moved from the studio to the streets and countryside, painting en plein air. (The Art Story)\", \"avatar\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/9u4zv956ccjf1hy.thumb.jpg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/oqcg24p66djrlj2.optimized.thumb.jpg\", \"year\": \"1914-26\", \"userId\": 2224, \"artistId\": 79, \"sortedOrder\": null, \"originalWidth\": 3000, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/40x40/oqcg24p66djrlj2.optimized.thumb.jpg\", \"id\": 9297, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": \"Claude Monet\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/1000x500/oqcg24p66djrlj2.optimized.thumb.jpg\", \"categoryIds\": [29, 72, 148], \"croppedWidth\": 2474, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil on canvas\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/1000x500/oqcg24p66djrlj2.optimized.thumb.jpg\", \"description\": \"When Monet moved to the village of Giverny in 1890, he set about remodeling the landscape surrounding his home, including a Japanese style water-lily pond. Indeed, Monet referred to his garden as his most \\\"beautiful masterpiece\\\". The pond and its lilies are the central subject of Monet\\u2019s monumental, almost abstract, late works. The artist said that he aimed, with his large-scale Water Lilies paintings, to create \\\"the illusion of an endless whole, of water without horizon or bank\\\" and to offer \\\"the refuge of a peaceful meditation in the center of a flowering aquarium\\\".\", \"name\": \"The Waterlilies: The Clouds (left section)\", \"isPublic\": true, \"croppedX1\": 478, \"slug\": \"the-waterlilies-the-clouds-left-section\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/20x20/oqcg24p66djrlj2.optimized.thumb.jpg\", \"categoryNames\": [\"Landscape\", \"Nineteenth Century\", \"Impressionism\"], \"croppedHeight\": 1391, \"originalHeight\": 1391, \"artistName\": \"Claude Monet\", \"isDetailed\": false}, \"hero\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/pxwok083g4fa191.thumb.jpg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/9jbc9y8571273jz.optimized.thumb.jpg\", \"year\": \"1863\", \"userId\": 2224, \"artistId\": 108, \"sortedOrder\": null, \"originalWidth\": 2569, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/40x40/9jbc9y8571273jz.optimized.thumb.jpg\", \"id\": 43877, \"croppedY1\": 518, \"dimensions\": null, \"copyright\": null, \"author\": \"\\u00c9douard Manet\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/1000x500/9jbc9y8571273jz.optimized.thumb.jpg\", \"categoryIds\": [24, 72, 148], \"croppedWidth\": 2569, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil on canvas\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/1000x500/9jbc9y8571273jz.optimized.thumb.jpg\", \"description\": \"As the most talked about main attraction of the The Salon des Refus\\u00e9s in 1863, it\\u2019s pretty evident why this painting shocked the bourgeois patrons in attendance as well as Emperor Napoleon III himself. Manet\\u2019s composition has Renaissance influence however, his complete disregard for perspective and use of unnatural light sources diminishes the core values of the Renaissance style. In fact, it was the inclusion of an unidealized female nude, casually engaging with two well dressed men, that was the cause of such public outrage. Her confrontational gaze engages the viewer on a sensual level, but through her Manet is confronting society as well, challenging what it considered appropriate ethical and artistic boundaries. [The Art Story-Manet](https://www.theartstory.org/artist-manet-edouard.htm)\", \"name\": \"Dejeuner sur l'Herbe\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"dejeuner-sur-lherbe\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/20x20/9jbc9y8571273jz.optimized.thumb.jpg\", \"categoryNames\": [\"Figurative\", \"Nineteenth Century\", \"Impressionism\"], \"croppedHeight\": 1444, \"originalHeight\": 2000, \"artistName\": \"\\u00c9douard Manet\", \"isDetailed\": false}}, {\"id\": 74, \"order\": 2, \"name\": \"Renaissance\", \"description\": \"The Renaissance was a European intellectual movement that began around 1400 in Italy. The term \\u2018renaissance\\u2019 means \\u2018rebirth,\\u2019 in reference to the movement\\u2019s revival of classical Greco-Roman values of order and idealized realism. The patronage of the Catholic Church and wealthy Italian families drew a high concentration of artistic talent to Florence and Rome. This period saw artistic geniuses like Michelangelo, Donatello, and Titian take on monumental commissions that yielded many of the masterpieces of the Western Canon.\", \"avatar\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/g34fj25vi489jls.thumb.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/pnaw9vyv2o4rlrq.optimized.thumb.jpeg\", \"year\": \"1484\\u201386\", \"userId\": 2224, \"artistId\": 138, \"sortedOrder\": null, \"originalWidth\": 2435, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/40x40/pnaw9vyv2o4rlrq.optimized.thumb.jpeg\", \"id\": 10649, \"croppedY1\": 39, \"dimensions\": null, \"copyright\": null, \"author\": \"Sandro Botticelli\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/pnaw9vyv2o4rlrq.optimized.thumb.jpeg\", \"categoryIds\": [14, 32, 74], \"croppedWidth\": 2435, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Tempera on panel\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/pnaw9vyv2o4rlrq.optimized.thumb.jpeg\", \"description\": \"Uffizi Gallery, Florence, Italy\", \"name\": \"Birth of Venus\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"birth-of-venus\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/20x20/pnaw9vyv2o4rlrq.optimized.thumb.jpeg\", \"categoryNames\": [\"Renaissance\", \"Religion\", \"Renaissance\"], \"croppedHeight\": 1369, \"originalHeight\": 1560, \"artistName\": \"Sandro Botticelli\", \"isDetailed\": false}, \"hero\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/ce40arm0xbsaxem.thumb.jpg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/u40lx1an81ay6cj.optimized.thumb.jpg\", \"year\": \"1511\", \"userId\": 2224, \"artistId\": 140, \"sortedOrder\": null, \"originalWidth\": 2591, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/40x40/u40lx1an81ay6cj.optimized.thumb.jpg\", \"id\": 15086, \"croppedY1\": 71, \"dimensions\": null, \"copyright\": null, \"author\": \"Michelangelo Buonarroti\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/1000x500/u40lx1an81ay6cj.optimized.thumb.jpg\", \"categoryIds\": [14, 32, 74], \"croppedWidth\": 2591, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Fresco\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/1000x500/u40lx1an81ay6cj.optimized.thumb.jpg\", \"description\": \"From The Creation of Adam, from the Sistine Ceiling\", \"name\": \"Hands of God and Adam\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"hands-of-god-and-adam\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/20x20/u40lx1an81ay6cj.optimized.thumb.jpg\", \"categoryNames\": [\"Renaissance\", \"Religion\", \"Renaissance\"], \"croppedHeight\": 1457, \"originalHeight\": 2000, \"artistName\": \"Michelangelo Buonarroti\", \"isDetailed\": true}}, {\"id\": 29, \"order\": 2, \"name\": \"Landscape\", \"description\": \"Nature captured by artists old and new.\", \"avatar\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/zn4ez346yosfgut.thumb.jpg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/00867r6mtmcrloa.optimized.thumb.jpg\", \"year\": \"1886\", \"userId\": 257, \"artistId\": 319, \"sortedOrder\": null, \"originalWidth\": 2716, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/40x40/00867r6mtmcrloa.optimized.thumb.jpg\", \"id\": 128013, \"croppedY1\": 285, \"dimensions\": \"135.5 x 100.5 cm\", \"copyright\": null, \"author\": \"Kitty Kielland\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/1000x500/00867r6mtmcrloa.optimized.thumb.jpg\", \"categoryIds\": [29, 72, 86], \"croppedWidth\": 2712, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil on canvas\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/1000x500/00867r6mtmcrloa.optimized.thumb.jpg\", \"description\": null, \"name\": \"Summer Night\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"summer-night\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/20x20/00867r6mtmcrloa.optimized.thumb.jpg\", \"categoryNames\": [\"Landscape\", \"Nineteenth Century\", \"Painting\"], \"croppedHeight\": 1526, \"originalHeight\": 2000, \"artistName\": \"Kitty Kielland\", \"isDetailed\": false}, \"hero\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/MCSB4vklllFQTOH3OqnPE9hFr8Z5V0Bv.thumb.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/MCSB4vklllFQTOH3OqnPE9hFr8Z5V0Bv.thumb.jpeg\", \"year\": \"2017\", \"userId\": 257, \"artistId\": 348, \"sortedOrder\": null, \"originalWidth\": 5627, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/40x40/MCSB4vklllFQTOH3OqnPE9hFr8Z5V0Bv.thumb.jpeg\", \"id\": 143450, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": \"Bill Posner\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/1000x500/MCSB4vklllFQTOH3OqnPE9hFr8Z5V0Bv.thumb.jpeg\", \"categoryIds\": [9, 29, 73], \"croppedWidth\": 0, \"type\": \"image\", \"isSampler\": false, \"medium\": null, \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/1000x500/MCSB4vklllFQTOH3OqnPE9hFr8Z5V0Bv.thumb.jpeg\", \"description\": null, \"name\": \"Night Watchers\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"night-watchers\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/20x20/MCSB4vklllFQTOH3OqnPE9hFr8Z5V0Bv.thumb.jpeg\", \"categoryNames\": [\"Photography\", \"Landscape\", \"Photography\"], \"croppedHeight\": 0, \"originalHeight\": 3165, \"artistName\": \"Bill Posner\", \"isDetailed\": false}}, {\"id\": 72, \"order\": 2, \"name\": \"Nineteenth Century\", \"description\": \"The early nineteenth century saw the rigid guidelines that had existed for painting begin to lose traction and relevance. Emphasis shifted toward expressive brushwork, gesture, light, and color with the emergence of The Impressionists in Paris. Artists began depicting scenes of everyday life, documenting both the increasingly modern urban areas and the pastoral countryside. Towards the end of the nineteenth century, the work of Post-Impressionists like Seurat, Gauguin, and Van Gogh expanded on the work of their predecessors, with ever-more vibrant colors, physicality of paint, and stylized representations of their subject matter.\\r\\n \\r\\nOn the other side of the Atlantic, America\\u2019s first homegrown artistic movement combined romanticism and democratic values in the work of the Hudson River school artists. Their rugged, elegant portrayals of the countryside informed the work of later American artists Thomas Eakins and Winslow Homer.\", \"avatar\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/ucnlkdu3ngfm3ic.thumb.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/ucnlkdu3ngfm3ic.thumb.jpeg\", \"year\": \"1876-77\", \"userId\": 2224, \"artistId\": 98, \"sortedOrder\": null, \"originalWidth\": 1080, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/40x40/ucnlkdu3ngfm3ic.thumb.jpeg\", \"id\": 7513, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": \"Edgar Degas\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/ucnlkdu3ngfm3ic.thumb.jpeg\", \"categoryIds\": [24, 72, 148], \"croppedWidth\": 0, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Pastel in paper\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/ucnlkdu3ngfm3ic.thumb.jpeg\", \"description\": \"Edgar Degas is best known for his paintings inspired by the ballet. However, the artist\\u2019s main interest was not in the performance itself, but rather behind-the-scenes - candid, casual moments in which ballerinas rested or rehearsed. Degas\\u2019 drawings and paintings of dancers also illustrate his interest in exploring perspective - he was particularly fascinated by the unexpected views and compositions of Japanese prints - and he experimented with cutting figures off at the edge of the canvas and contrasting highly patterned areas with planes of color.\", \"name\": \"The Star, or Dancer on the Stage\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"the-star-or-dancer-on-the-stage\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/20x20/ucnlkdu3ngfm3ic.thumb.jpeg\", \"categoryNames\": [\"Figurative\", \"Nineteenth Century\", \"Impressionism\"], \"croppedHeight\": 0, \"originalHeight\": 1920, \"artistName\": \"Edgar Degas\", \"isDetailed\": false}, \"hero\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/cpqu0t95bu5oa75.thumb.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/gue8ygmuu4qcje9.optimized.thumb.jpeg\", \"year\": \"1884\", \"userId\": 2224, \"artistId\": 119, \"sortedOrder\": null, \"originalWidth\": 3000, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/40x40/gue8ygmuu4qcje9.optimized.thumb.jpeg\", \"id\": 16435, \"croppedY1\": 184, \"dimensions\": null, \"copyright\": null, \"author\": \"Georges Seurat\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/gue8ygmuu4qcje9.optimized.thumb.jpeg\", \"categoryIds\": [24, 72, 122], \"croppedWidth\": 2919, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil on canvas\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/gue8ygmuu4qcje9.optimized.thumb.jpeg\", \"description\": \"Seurat's Sunday Afternoon is perhaps the most famous example of the painting technique known as Pointillism. Although the picture contains the impressionistic elements of light and shadow and depicts the leisure activities of the Parisian bourgeoisie, it is an early example of the artistic reaction to the Impressionist movement. Seurat composed the entire scene from a series of small, precise dots of color. If viewed closely, the painting becomes nothing more than a quasi-abstract array of colors, similar to a needlepoint. When viewed at an appropriate distance, however, Sunday Afternoon comes into focus. Seurat carefully placed each dot in relation to the ones around it in order to create the desired optical effect. He did so in order to bring structure and rationality to what he perceived were the triviality and disorganization rampant in Impressionism. [The Art Story-Seurat](http://www.theartstory.org/artist-seurat-georges.htm)\", \"name\": \"A Sunday on La Grande Jatte\", \"isPublic\": true, \"croppedX1\": 39, \"slug\": \"a-sunday-on-la-grande-jatte\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/20x20/gue8ygmuu4qcje9.optimized.thumb.jpeg\", \"categoryNames\": [\"Figurative\", \"Nineteenth Century\", \"Pointillism\"], \"croppedHeight\": 1641, \"originalHeight\": 1997, \"artistName\": \"Georges Seurat\", \"isDetailed\": false}}, {\"id\": 30, \"order\": 3, \"name\": \"Animals\", \"description\": \"\", \"avatar\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/7zsb71a1wf80k34.thumb.jpg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/x2e1nakt4cqkwut.optimized.thumb.jpg\", \"year\": \"1763\", \"userId\": 2224, \"artistId\": 30, \"sortedOrder\": null, \"originalWidth\": 2536, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/40x40/x2e1nakt4cqkwut.optimized.thumb.jpg\", \"id\": 11753, \"croppedY1\": 414, \"dimensions\": null, \"copyright\": null, \"author\": \"George Stubbs\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/1000x500/x2e1nakt4cqkwut.optimized.thumb.jpg\", \"categoryIds\": [30, 11, 62], \"croppedWidth\": 2536, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil on canvas\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/1000x500/x2e1nakt4cqkwut.optimized.thumb.jpg\", \"description\": \"Yale Center for British Art, Paul Mellon Collection, USA\", \"name\": \"A Zebra\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"a-zebra\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/20x20/x2e1nakt4cqkwut.optimized.thumb.jpg\", \"categoryNames\": [\"Animals\", \"Baroque and Rococo\", \"Baroque and Rococo\"], \"croppedHeight\": 1426, \"originalHeight\": 2000, \"artistName\": \"George Stubbs\", \"isDetailed\": false}, \"hero\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/fk8golup4gp2f33.thumb.jpg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/3wf6lsmtd6r94z8.optimized.thumb.jpg\", \"year\": \"2010\", \"userId\": 2214, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 3000, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/40x40/3wf6lsmtd6r94z8.optimized.thumb.jpg\", \"id\": 120797, \"croppedY1\": 271, \"dimensions\": null, \"copyright\": \"Courtesy of Getty Images\", \"author\": \"Koichi Kamoshida\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/1000x500/3wf6lsmtd6r94z8.optimized.thumb.jpg\", \"categoryIds\": [30], \"croppedWidth\": 3000, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Digital Photograph\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/1000x500/3wf6lsmtd6r94z8.optimized.thumb.jpg\", \"description\": \"Japanese Macaque monkeys relax in the hot spring at the Jigokudani (Hell's Valley) Monkey Park on January 30, 2010 in Yamanouchi, Japan. This Macaque troop regularly visits the Jigokudani-Onsen springs to escape the cold. This behaviour originates from a female Macaque who ventured into the hot springs to retrieve soybeans in 1963. (Getty Images)\", \"name\": \"Spa Day\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"spa-day\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/20x20/3wf6lsmtd6r94z8.optimized.thumb.jpg\", \"categoryNames\": [\"Animals\"], \"croppedHeight\": 1688, \"originalHeight\": 2001, \"artistName\": null, \"isDetailed\": false}}], \"isLast\": false, \"isPaginated\": true}"}],"_postman_id":"0c779a15-1a43-28c0-0b36-2c9994764f29"},{"name":"/categories/:id","id":"b9bcd7b4-d2b2-d8a4-3ae8-aadca67b8cbb","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/categories/:id","description":"<p>Retrieve a specific category.</p>\n","urlObject":{"path":["categories",":id"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[{"description":{"content":"<p>The category's id</p>\n","type":"text/plain"},"type":"any","value":"{{categoryId}}","key":"id"}]}},"response":[{"id":"9277eea5-61a0-96ee-77a2-4f4a27e94b29","name":"/categories/:id","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{API_ORIGIN}}{{VERSION}}/categories/:id","host":["{{API_ORIGIN}}{{VERSION}}"],"path":["categories",":id"],"variable":[{"key":"id","value":"75","description":"The category's id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"allow","key":"allow","value":"GET, PUT, PATCH, DELETE, HEAD, OPTIONS","description":""},{"name":"content-encoding","key":"content-encoding","value":"gzip","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:08:28 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"153","body":"{\"count\": null, \"message\": \"\", \"data\": {\"id\": 75, \"order\": 0, \"name\": \"Recently Added\", \"description\": \"\", \"avatar\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/MO7jFAqg2yIrZDeSesecOgamFra3pBDZ.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/Na6shXXaObvvSACAZpp6IXUGfzHzCpcE.jpeg\", \"year\": null, \"userId\": 2224, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 2400, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/40x40/Na6shXXaObvvSACAZpp6IXUGfzHzCpcE.jpeg\", \"id\": 380244, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": \"Prince Lunawara\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/Na6shXXaObvvSACAZpp6IXUGfzHzCpcE.jpeg\", \"categoryIds\": [75], \"croppedWidth\": 2027, \"type\": \"image\", \"isSampler\": false, \"medium\": null, \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/Na6shXXaObvvSACAZpp6IXUGfzHzCpcE.jpeg\", \"description\": null, \"name\": \"Swatches and Patches\", \"isPublic\": true, \"croppedX1\": 218, \"slug\": \"swatches-and-patches\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/20x20/Na6shXXaObvvSACAZpp6IXUGfzHzCpcE.jpeg\", \"categoryNames\": [\"Recently Added\"], \"croppedHeight\": 3600, \"originalHeight\": 3600, \"artistName\": null, \"isDetailed\": false}, \"hero\": null}, \"isLast\": null, \"isPaginated\": false}"}],"_postman_id":"b9bcd7b4-d2b2-d8a4-3ae8-aadca67b8cbb"},{"name":"/categories/:id/galleries","id":"8ca9e3c3-6515-2b9e-86df-f9bef598f898","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/categories/:id/galleries?page={{page}}&count={{count}}","description":"<p>Retrieve the galleries that are members of this category.</p>\n","urlObject":{"path":["categories",":id","galleries"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[{"key":"page","value":"{{page}}"},{"key":"count","value":"{{count}}"}],"variable":[{"description":{"content":"<p>The artist's id</p>\n","type":"text/plain"},"type":"any","value":"{{categoryId}}","key":"id"}]}},"response":[{"id":"48a7bf8a-cabc-719c-6d30-945f0e9f5096","name":"/categories/:id/galleries","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{API_ORIGIN}}{{VERSION}}/categories/:id/galleries?page=1&count=10","host":["{{API_ORIGIN}}{{VERSION}}"],"path":["categories",":id","galleries"],"query":[{"key":"page","value":"1"},{"key":"count","value":"10"}],"variable":[{"key":"id","value":"75","description":"The artist's id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"allow","key":"allow","value":"GET, HEAD, OPTIONS","description":""},{"name":"content-encoding","key":"content-encoding","value":"gzip","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:08:34 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"263","body":"{\"count\": 24, \"message\": \"\", \"data\": [{\"username\": \"sxsw\", \"isSampler\": false, \"slug\": \"a-history-of-art-in-8-hours-baroque-and-rococo\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/610x344/oivx772yxav2gsb.optimized.thumb.jpg\", \"categoryNames\": [\"Baroque and Rococo\", \"Recently Added\"], \"itemIds\": [383311, 383310, 111799, 111794, 111806, 111800, 136482, 45647, 17576, 212468, 33671, 17592, 17586, 17483, 211880, 17447, 383251, 12730, 15187, 17459, 15175, 16563, 17436, 111801, 309754, 17460, 45648, 45629, 45637, 15192, 45628, 11753, 248388, 15185, 221814, 221808, 11746, 38936, 205795, 221815, 212465, 15193, 221717, 38914, 221724, 64162, 221728, 131353, 38917, 111802], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/1000x500/oivx772yxav2gsb.optimized.thumb.jpg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/305x172/oivx772yxav2gsb.optimized.thumb.jpg\", \"id\": 37358, \"featuredAt\": null, \"orientation\": \"horizontal\", \"coverId\": 64162, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/40x40/oivx772yxav2gsb.optimized.thumb.jpg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/1000x500/oivx772yxav2gsb.optimized.thumb.jpg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/20x20/oivx772yxav2gsb.optimized.thumb.jpg\", \"name\": \"The History of Art in 8 Hours: Baroque and Rococo\", \"categoryIds\": [62, 75], \"userId\": 8268, \"description\": \"Meural brings you a playlist from our curated installation at the 2018 [SXSW Art Program](https://www.sxsw.com/news/2018/start-your-sxsw-art-experience-with-meurals-the-history-of-art-in-8-hours/) in Austin, Texas.\\n\\n\\\"The History of Art in 8 Hours\\\" takes viewers on a visual journey from the Renaissance, moving chronologically through the Western canon, with interludes into Asia, South America, and beyond.\\n\\nEnjoy Baroque and Rococo, with classical and highly ornate works from the 17th to 18th century, from Europe to Asia. \\n\\nThis playlist is also available in [vertical](https://my.meural.com/playlist/37359).\"}, {\"username\": \"sxsw\", \"isSampler\": false, \"slug\": \"a-history-of-art-in-8-hours-baroque-and-rococo\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/344x610/r3ImmkCW81DGTrOJQ4tUuq71SPXcTkXh.jpeg\", \"categoryNames\": [\"Baroque and Rococo\", \"Recently Added\"], \"itemIds\": [212467, 17583, 17585, 17582, 17593, 17590, 45630, 17474, 45640, 12724, 211875, 15191, 211873, 12737, 33629, 211848, 45633, 221811, 221720, 15194, 236533, 15195, 227738, 38915, 227737, 111788, 127894, 111786, 111787, 111789, 212464, 38933, 38939, 38942], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/1000x500/r3ImmkCW81DGTrOJQ4tUuq71SPXcTkXh.jpeg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/172x305/r3ImmkCW81DGTrOJQ4tUuq71SPXcTkXh.jpeg\", \"id\": 37359, \"featuredAt\": null, \"orientation\": \"vertical\", \"coverId\": 211873, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/40x40/r3ImmkCW81DGTrOJQ4tUuq71SPXcTkXh.jpeg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/1000x500/r3ImmkCW81DGTrOJQ4tUuq71SPXcTkXh.jpeg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/20x20/r3ImmkCW81DGTrOJQ4tUuq71SPXcTkXh.jpeg\", \"name\": \"The History of Art in 8 Hours: Baroque and Rococo\", \"categoryIds\": [62, 75], \"userId\": 8268, \"description\": \"Meural brings you a playlist from our curated installation at the 2018 [SXSW Art Program](https://www.sxsw.com/news/2018/start-your-sxsw-art-experience-with-meurals-the-history-of-art-in-8-hours/) in Austin, Texas.\\n\\n\\\"The History of Art in 8 Hours\\\" takes viewers on a visual journey from the Renaissance, moving chronologically through the Western canon, with interludes into Asia, South America, and beyond.\\n\\nEnjoy Baroque and Rococo, with classical and highly ornate works from the 17th to 18th century, from Europe to Asia. \\n\\nThis playlist is also available in [horizontal](https://my.meural.com/playlist/37358).\"}, {\"username\": \"sxsw\", \"isSampler\": false, \"slug\": \"a-history-of-art-in-8-hours-the-golden-age\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/344x610/r57gokr0jb4zijb.optimized.thumb.jpg\", \"categoryNames\": [\"Baroque and Rococo\", \"Recently Added\"], \"itemIds\": [11150, 11073, 11346, 45730, 10907, 11098, 11129, 11156, 234346, 382758, 382750, 10905, 382756, 15161, 10522, 11319, 15167, 234353, 15160, 234351, 11330, 10647, 99228, 383225, 27363, 9669, 9682, 20950, 9667, 9693, 9671, 158092, 20947, 10931], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/r57gokr0jb4zijb.optimized.thumb.jpg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/172x305/r57gokr0jb4zijb.optimized.thumb.jpg\", \"id\": 37356, \"featuredAt\": null, \"orientation\": \"vertical\", \"coverId\": 9667, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/40x40/r57gokr0jb4zijb.optimized.thumb.jpg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/r57gokr0jb4zijb.optimized.thumb.jpg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/20x20/r57gokr0jb4zijb.optimized.thumb.jpg\", \"name\": \"The History of Art in 8 Hours: The Golden Age\", \"categoryIds\": [62, 75], \"userId\": 8268, \"description\": \"Meural brings you a playlist from our curated installation at the 2018 [SXSW Art Program](https://www.sxsw.com/news/2018/start-your-sxsw-art-experience-with-meurals-the-history-of-art-in-8-hours/) in Austin, Texas.\\n\\n\\\"The History of Art in 8 Hours\\\" takes viewers on a visual journey from the Renaissance, moving chronologically through the Western canon, with interludes into Asia, South America, and beyond.\\n\\nEnjoy the Golden Age, spanning the 17th century, with works from the Dutch, Spanish, French, and more.\\n\\nThis playlist is also available in [horizontal](https://my.meural.com/playlist/37355).\"}, {\"username\": \"sxsw\", \"isSampler\": false, \"slug\": \"a-history-of-art-in-8-hours-the-golden-age\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/610x344/szmxbm7z7ir7nu5.optimized.thumb.jpg\", \"categoryNames\": [\"Baroque and Rococo\", \"Recently Added\"], \"itemIds\": [11140, 11074, 11152, 11077, 11154, 11147, 11347, 234356, 383220, 382761, 10560, 99274, 99270, 99240, 33648, 11109, 383211, 383228, 15157, 229354, 382749, 11132, 10530, 33634, 15153, 99266, 15173, 99264, 99250, 15172, 15174, 20874, 11318, 234354, 15156, 382754, 11527, 99225, 383215, 15154, 99224, 20949, 68669, 68670, 374203, 11088, 20952, 374202, 20923, 158090], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/1000x500/szmxbm7z7ir7nu5.optimized.thumb.jpg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/305x172/szmxbm7z7ir7nu5.optimized.thumb.jpg\", \"id\": 37355, \"featuredAt\": null, \"orientation\": \"horizontal\", \"coverId\": 20952, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/40x40/szmxbm7z7ir7nu5.optimized.thumb.jpg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/1000x500/szmxbm7z7ir7nu5.optimized.thumb.jpg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/20x20/szmxbm7z7ir7nu5.optimized.thumb.jpg\", \"name\": \"The History of Art in 8 Hours: The Golden Age\", \"categoryIds\": [62, 75], \"userId\": 8268, \"description\": \"Meural brings you a playlist from our curated installation at the 2018 [SXSW Art Program](https://www.sxsw.com/news/2018/start-your-sxsw-art-experience-with-meurals-the-history-of-art-in-8-hours/) in Austin, Texas.\\n\\n\\\"The History of Art in 8 Hours\\\" takes viewers on a visual journey from the Renaissance, moving chronologically through the Western canon, with interludes into Asia, South America, and beyond.\\n\\nEnjoy the Golden Age, spanning the 17th century, with works from the Dutch, Spanish, French and more.\\n\\nThis playlist is also available in [vertical](https://my.meural.com/playlist/37356).\"}, {\"username\": \"sxsw\", \"isSampler\": false, \"slug\": \"a-history-of-art-in-8-hours-late-renaissance\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/46a4378f835dc8040c8057beb6a2da52/610x344/0na0tg42PSStUODi2wDTQD2HjRsJm7M2.jpeg\", \"categoryNames\": [\"Recently Added\", \"Renaissance\"], \"itemIds\": [114534, 127984, 127983, 27439, 17682, 15134, 127982, 114536, 114535, 17718, 11507, 116535, 121060, 258031, 51589, 68671, 11496, 15106, 258032, 258030, 261051, 382600, 11488, 11489, 41632, 41623, 10972, 374282, 41629, 41627, 41630, 121106, 114532, 261159, 261157, 128064, 214286, 10894, 155100, 12783, 382618, 382616, 329852, 383309, 211889, 329868, 382604, 329835, 10899, 211968], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/46a4378f835dc8040c8057beb6a2da52/1000x500/0na0tg42PSStUODi2wDTQD2HjRsJm7M2.jpeg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/46a4378f835dc8040c8057beb6a2da52/305x172/0na0tg42PSStUODi2wDTQD2HjRsJm7M2.jpeg\", \"id\": 37297, \"featuredAt\": null, \"orientation\": \"horizontal\", \"coverId\": 383309, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/46a4378f835dc8040c8057beb6a2da52/40x40/0na0tg42PSStUODi2wDTQD2HjRsJm7M2.jpeg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/46a4378f835dc8040c8057beb6a2da52/1000x500/0na0tg42PSStUODi2wDTQD2HjRsJm7M2.jpeg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/46a4378f835dc8040c8057beb6a2da52/20x20/0na0tg42PSStUODi2wDTQD2HjRsJm7M2.jpeg\", \"name\": \"The History of Art in 8 Hours: Late Renaissance\", \"categoryIds\": [75, 74], \"userId\": 8268, \"description\": \"Meural brings you a playlist from our curated installation at the 2018 [SXSW Art Program](https://www.sxsw.com/news/2018/start-your-sxsw-art-experience-with-meurals-the-history-of-art-in-8-hours/) in Austin, Texas.\\n\\n\\\"The History of Art in 8 Hours\\\" takes viewers on a visual journey from the Renaissance, moving chronologically through the Western canon, with interludes into Asia, South America, and beyond.\\n\\nEnjoy the Late Renaissance, beginning with works created in the 1500s and ending in the beginning of the 17th century. \\n\\nThis playlist is also available in [vertical](https://my.meural.com/playlist/37298).\"}, {\"username\": \"sxsw\", \"isSampler\": false, \"slug\": \"a-history-of-art-in-8-hours-late-renaissance\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/344x610/yprcnkujbnoa8d2.optimized.thumb.jpg\", \"categoryNames\": [\"Recently Added\", \"Renaissance\"], \"itemIds\": [4691, 27437, 4700, 17698, 227802, 17690, 17705, 17684, 11497, 10465, 221826, 51580, 122687, 51576, 122685, 116534, 221833, 100525, 121062, 11482, 24596, 11008, 24598, 24594, 383245, 12766, 33626, 211892, 10855, 10904, 211962, 12793, 214338, 12778], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/1000x500/yprcnkujbnoa8d2.optimized.thumb.jpg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/172x305/yprcnkujbnoa8d2.optimized.thumb.jpg\", \"id\": 37298, \"featuredAt\": null, \"orientation\": \"vertical\", \"coverId\": 33626, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/40x40/yprcnkujbnoa8d2.optimized.thumb.jpg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/1000x500/yprcnkujbnoa8d2.optimized.thumb.jpg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/20x20/yprcnkujbnoa8d2.optimized.thumb.jpg\", \"name\": \"The History of Art in 8 Hours: Late Renaissance\", \"categoryIds\": [75, 74], \"userId\": 8268, \"description\": \"Meural brings you a playlist from our curated installation at the 2018 [SXSW Art Program](https://www.sxsw.com/news/2018/start-your-sxsw-art-experience-with-meurals-the-history-of-art-in-8-hours/) in Austin, Texas.\\n\\n\\\"The History of Art in 8 Hours\\\" takes viewers on a visual journey from the Renaissance, moving chronologically through the Western canon, with interludes into Asia, South America, and beyond.\\n\\nEnjoy the Late Renaissance, beginning with works created in the 1500s and ending in the beginning of the 17th century. \\n\\nThis playlist is also available in [horizontal](https://my.meural.com/playlist/37302).\"}, {\"username\": \"sxsw\", \"isSampler\": false, \"slug\": \"a-history-of-art-early-renaissance\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/344x610/fx0u9bpsmplomcx.optimized.thumb.jpg\", \"categoryNames\": [\"Recently Added\", \"Renaissance\"], \"itemIds\": [382735, 373574, 380959, 373612, 14429, 14420, 14428, 14432, 33624, 15040, 374492, 373577, 373582, 373614, 373609, 10632, 46508, 373611, 46507, 10611, 46509, 7831, 227940, 46505, 10489, 10487, 15142, 114542, 46504, 10484, 10517, 373607, 227974, 46510], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/1000x500/fx0u9bpsmplomcx.optimized.thumb.jpg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/172x305/fx0u9bpsmplomcx.optimized.thumb.jpg\", \"id\": 37301, \"featuredAt\": null, \"orientation\": \"vertical\", \"coverId\": 46509, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/40x40/fx0u9bpsmplomcx.optimized.thumb.jpg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/1000x500/fx0u9bpsmplomcx.optimized.thumb.jpg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/20x20/fx0u9bpsmplomcx.optimized.thumb.jpg\", \"name\": \"The History of Art in 8 Hours: Early Renaissance\", \"categoryIds\": [75, 74], \"userId\": 8268, \"description\": \"Meural brings you a playlist from our curated installation at the 2018 [SXSW Art Program](https://www.sxsw.com/news/2018/start-your-sxsw-art-experience-with-meurals-the-history-of-art-in-8-hours/) in Austin, Texas.\\n\\n\\\"The History of Art in 8 Hours\\\" takes viewers on a visual journey from the Renaissance, moving chronologically through the Western canon, with interludes into Asia, South America, and beyond.\\n\\nEnjoy the Early Renaissance, beginning with works created in the 1300s and ending in the end of the 15th century. \\n\\nThis playlist is also available in [horizontal](https://my.meural.com/playlist/37302).\"}, {\"username\": \"sxsw\", \"isSampler\": false, \"slug\": \"a-history-of-art-early-renaissance\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/610x344/pnaw9vyv2o4rlrq.optimized.thumb.jpeg\", \"categoryNames\": [\"Recently Added\", \"Renaissance\"], \"itemIds\": [372841, 364646, 382532, 382524, 15013, 374494, 15016, 15030, 15032, 14424, 236004, 236024, 14590, 14422, 14433, 15036, 15027, 373617, 15029, 373618, 373616, 380902, 10595, 46511, 10651, 10604, 10649, 10594, 10624, 112543, 10629, 4721, 10512, 10519, 10515, 31128, 10518, 10494, 46506, 10591, 10612, 121057, 4719, 4710, 4712, 4718, 17714, 15086, 374177], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/pnaw9vyv2o4rlrq.optimized.thumb.jpeg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/305x172/pnaw9vyv2o4rlrq.optimized.thumb.jpeg\", \"id\": 37302, \"featuredAt\": null, \"orientation\": \"horizontal\", \"coverId\": 10649, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/40x40/pnaw9vyv2o4rlrq.optimized.thumb.jpeg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/pnaw9vyv2o4rlrq.optimized.thumb.jpeg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/20x20/pnaw9vyv2o4rlrq.optimized.thumb.jpeg\", \"name\": \"The History of Art in 8 Hours: Early Renaissance\", \"categoryIds\": [75, 74], \"userId\": 8268, \"description\": \"Meural brings you a playlist from our curated installation at the 2018 [SXSW Art Program](https://www.sxsw.com/news/2018/start-your-sxsw-art-experience-with-meurals-the-history-of-art-in-8-hours/) in Austin, Texas.\\n\\n\\\"The History of Art in 8 Hours\\\" takes viewers on a visual journey from the Renaissance, moving chronologically through the Western canon, with interludes into Asia, South America, and beyond.\\n\\nEnjoy the Early Renaissance, beginning with works created in the late 1300s and ending in the end of the 15th century. \\n\\nThis playlist is also available in [vertical](https://my.meural.com/playlist/37301).\"}, {\"username\": \"kelvin\", \"isSampler\": false, \"slug\": \"impasto\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/610x344/p4rpk8otgu6ggyp.optimized.thumb.jpg\", \"categoryNames\": [\"Recently Added\", \"Painting\"], \"itemIds\": [127819, 353483, 346079, 251950, 127818, 346196], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/1000x500/p4rpk8otgu6ggyp.optimized.thumb.jpg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/305x172/p4rpk8otgu6ggyp.optimized.thumb.jpg\", \"id\": 33502, \"featuredAt\": null, \"orientation\": \"horizontal\", \"coverId\": 127818, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/40x40/p4rpk8otgu6ggyp.optimized.thumb.jpg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/1000x500/p4rpk8otgu6ggyp.optimized.thumb.jpg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/20x20/p4rpk8otgu6ggyp.optimized.thumb.jpg\", \"name\": \"Impasto\", \"categoryIds\": [75, 86], \"userId\": 2214, \"description\": \"Impasto is a painting technique where the artist would layer paint or pigment in thick doses to achieve a \\\"painterly\\\" aesthetic. The brushstrokes gain depth and begin to protrude outward to give a three-dimensional appearance. The impasto technique has been prevalent since the Italian Renaissance era where it was used to amplify details in their paintings to represent folds on garments or wrinkles on skin. In modern times, the technique now is used in an array of proficiency showcased in our collection.\\n\\nThis playlist is available in [vertical](https://my.meural.com/playlist/33503).\"}, {\"username\": \"kelvin\", \"isSampler\": false, \"slug\": \"impasto\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/344x610/u8mjnu1yknkutsl.optimized.thumb.jpeg\", \"categoryNames\": [\"Fusion\", \"Recently Added\", \"Painting\"], \"itemIds\": [354793, 345666, 227762, 108926, 170952, 637, 354276, 157878], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/1000x500/u8mjnu1yknkutsl.optimized.thumb.jpeg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/172x305/u8mjnu1yknkutsl.optimized.thumb.jpeg\", \"id\": 33503, \"featuredAt\": null, \"orientation\": \"vertical\", \"coverId\": 108926, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/40x40/u8mjnu1yknkutsl.optimized.thumb.jpeg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/1000x500/u8mjnu1yknkutsl.optimized.thumb.jpeg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/20x20/u8mjnu1yknkutsl.optimized.thumb.jpeg\", \"name\": \"Impasto\", \"categoryIds\": [59, 75, 86], \"userId\": 2214, \"description\": \"Impasto is a painting technique where the artist would layer paint or pigment in thick doses to achieve a \\\"painterly\\\" aesthetic. The brushstrokes gain depth and begin to protrude outward to give a three-dimensional appearance. The impasto technique has been prevalent since the Italian Renaissance era where it was used to amplify details in their paintings to represent folds on garments or wrinkles on skin. In modern times, the technique now is used in an array of proficiency showcased in our collection.\\n\\nThis playlist is available in [horizontal](https://my.meural.com/playlist/33502).\"}], \"isLast\": false, \"isPaginated\": true}"}],"_postman_id":"8ca9e3c3-6515-2b9e-86df-f9bef598f898"},{"name":"/categories/:id/articles","id":"cc87f85d-6c46-d665-fc64-375b7990060c","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/categories/:id/artists?page={{page}}&count={{count}}","description":"<p>Retrieve the artists that are members of this category.</p>\n","urlObject":{"path":["categories",":id","artists"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[{"key":"page","value":"{{page}}"},{"key":"count","value":"{{count}}"}],"variable":[{"description":{"content":"<p>The artist's id</p>\n","type":"text/plain"},"type":"any","value":"{{artistId}}","key":"id"}]}},"response":[{"id":"374ddcb7-985d-4485-bb16-f2222587ae7d","name":"/categories/:id/articles","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{API_ORIGIN}}{{VERSION}}/categories/:id/articles?page={{page}}&count={{count}}","host":["{{API_ORIGIN}}{{VERSION}}"],"path":["categories",":id","articles"],"query":[{"key":"page","value":"{{page}}"},{"key":"count","value":"{{count}}"}],"variable":[{"key":"id","value":"{{artistId}}","description":"The artist's id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 1,\n    \"message\": \"\",\n    \"data\": [\n        {\n            \"name\": \"Stieglitz and O'Keeffe: A Love Story\",\n            \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/1000x500/dyy6gii7f86mh0m.optimized.thumb.jpeg\",\n            \"publishedAt\": \"2017-04-07T19:02:13.312371+00:00\",\n            \"body\": [\n                {\n                    \"type\": \"paragraph\",\n                    \"content\": {\n                        \"text\": \"When [Alfred Stieglitz](https://my.meural.com/browse/artists/268) and [Georgia O'Keeffe](https://my.meural.com/browse/artists/265) met in 1916, he was in his 50s—an internationally acclaimed photographer as well as a gallerist and dealer, while she was an unknown 28-year-old schoolteacher from Texas. They had been corresponding for a year, after Stieglitz had exhibited some of O'Keeffe's paintings in his influential gallery, 291. On meeting, their relationship developed quickly—Stieglitz left his wife and the couple married in 1924. Theirs was a passionate, unconventional and tumultuous marriage—one that saw O'Keeffe's emergence as America's leading Modernist painter, weathered infidelity and survived long periods of living apart. Throughout their relationship, the couple continued to correspond, and their combined letters, between 1915 and 1946, make up 25,000 sheets of paper.\"\n                    }\n                },\n                {\n                    \"type\": \"item\",\n                    \"content\": {\n                        \"caption\": \"Look at this beautiful item\",\n                        \"item\": {\n                            \"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\",\n                            \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\",\n                            \"year\": null,\n                            \"userId\": 8429,\n                            \"artistId\": null,\n                            \"sortedOrder\": null,\n                            \"originalWidth\": 2560,\n                            \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/40x40/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\",\n                            \"id\": 398483,\n                            \"croppedY1\": 0,\n                            \"dimensions\": null,\n                            \"copyright\": null,\n                            \"author\": null,\n                            \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\",\n                            \"categoryIds\": [],\n                            \"croppedWidth\": 0,\n                            \"type\": \"image\",\n                            \"isSampler\": false,\n                            \"medium\": null,\n                            \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\",\n                            \"description\": null,\n                            \"name\": \"Earth\",\n                            \"isPublic\": false,\n                            \"croppedX1\": 0,\n                            \"slug\": \"earth\",\n                            \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/20x20/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\",\n                            \"categoryNames\": [],\n                            \"croppedHeight\": 0,\n                            \"originalHeight\": 1600,\n                            \"artistName\": null,\n                            \"isDetailed\": false\n                        }\n                    }\n                },\n                {\n                    \"type\": \"image\",\n                    \"content\": {\n                        \"caption\": \"Interesting pose from the artist\",\n                        \"url\": \"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/O%27Keeffe-%28hands%29.jpg/1280px-O%27Keeffe-%28hands%29.jpg\",\n                        \"name\": \"Okeeffe by Steiglitz\",\n                        \"highres\": \"\"\n                    }\n                },\n                {\n                    \"type\": \"video\",\n                    \"content\": {\n                        \"caption\": \"a video\",\n                        \"url\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.mp4\",\n                        \"name\": \"Okeeffe video\",\n                        \"duration\": \"445\",\n                        \"thumbnailUrl\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\"\n                    }\n                },\n                {\n                    \"type\": \"audio\",\n                    \"content\": {\n                        \"url\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.wav\",\n                        \"duration\": \"783\",\n                        \"name\": \"An interview with Georgia Okeeffe\"\n                    }\n                }\n            ],\n            \"object\": {\n                \"id\": 242,\n\"order\": 1,\n\"name\": \"The Metropolitan Museum of Art, New York City, USA\",\n\"description\": \"\",\n\"avatar\": {\n\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/2jwjhbhcnglvczy.thumb.jpg\",\n\"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/rh5fw3y6rrpw1jz.optimized.thumb.jpg\",\n\"year\": \"1899\",\n\"userId\": 2224,\n\"artistId\": 79,\n\"sortedOrder\": null,\n\"originalWidth\": 2000,\n\"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/40x40/rh5fw3y6rrpw1jz.optimized.thumb.jpg\",\n\"id\": 39839,\n\"croppedY1\": 0,\n\"dimensions\": null,\n\"copyright\": null,\n\"author\": \"Claude Monet\",\n\"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/1000x500/rh5fw3y6rrpw1jz.optimized.thumb.jpg\",\n\"categoryIds\": [\n72,\n65,\n86,\n242,\n29,\n148\n],\n\"croppedWidth\": 1414,\n\"type\": \"image\",\n\"isSampler\": false,\n\"medium\": \"Oil on canvas\",\n\"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/1000x500/rh5fw3y6rrpw1jz.optimized.thumb.jpg\",\n\"description\": \"As the leading founder of the French Impressionists, Claude Monet's inspiring talent and personality were crucial in bringing the movement, and it's members, together. Monet was influenced by the Realist painters, and so, like those before him, he often depicted the landscapes and leisurely activities of Paris society and the Normandy coast. He developed a unique style of painting depth through light and shadows, seeking to capture, on canvas, the very act of perceiving nature. Monet lead a fulfilling career—creating some of the world's most beloved pieces of art—and set a benchmark for decades of abstract and modernist artists to come.\",\n\"name\": \"The Water-Lily Pond\",\n\"isPublic\": true,\n\"croppedX1\": 261,\n\"slug\": \"the-water-lily-pond\",\n\"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/20x20/rh5fw3y6rrpw1jz.optimized.thumb.jpg\",\n\"categoryNames\": [\n\"Nineteenth Century\",\n\"Modernism\",\n\"Painting\",\n\"The Metropolitan Museum of Art, New York City, USA\",\n\"Landscape\",\n\"Impressionism\"\n],\n\"croppedHeight\": 2514,\n\"originalHeight\": 2514,\n\"artistName\": \"Claude Monet\",\n\"isDetailed\": false\n},\n\"hero\": {\n\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/nmlb3R2fMVJtTg9S5UOEfYAjN0qaezOA.jpeg\",\n\"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/zlLv62UngVuTzXJPG7sz9yAvFXJXlYj8.jpeg\",\n\"year\": \"1904\",\n\"userId\": 2214,\n\"artistId\": 153,\n\"sortedOrder\": null,\n\"originalWidth\": 3751,\n\"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/40x40/zlLv62UngVuTzXJPG7sz9yAvFXJXlYj8.jpeg\",\n\"id\": 234259,\n\"croppedY1\": 289,\n\"dimensions\": \"17.5 x 24.8cm\",\n\"copyright\": null,\n\"author\": \"Henri-Edmond Cross\",\n\"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/zlLv62UngVuTzXJPG7sz9yAvFXJXlYj8.jpeg\",\n\"categoryIds\": [\n65,\n86,\n242,\n29,\n169,\n148\n],\n\"croppedWidth\": 3654,\n\"type\": \"image\",\n\"isSampler\": false,\n\"medium\": \"Watercolor and crayon on paper\",\n\"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/zlLv62UngVuTzXJPG7sz9yAvFXJXlYj8.jpeg\",\n\"description\": \"French painter and printmaker Henri-Edmond Cross was a key exponent of Neo-Impressionism—a distinct group within the Impressionist movement that focused on the technical aspects of design and color forms. Cross went on to influence many artists, including the works of Henri Matisse, and his style became an integral part in the development of Fauvism.\",\n\"name\": \"Landscape\",\n\"isPublic\": true,\n\"croppedX1\": 38,\n\"slug\": \"landscape\",\n\"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/20x20/zlLv62UngVuTzXJPG7sz9yAvFXJXlYj8.jpeg\",\n\"categoryNames\": [\n\"Modernism\",\n\"Painting\",\n\"The Metropolitan Museum of Art, New York City, USA\",\n\"Landscape\",\n\"Post-Impressionism\",\n\"Impressionism\"\n],\n\"croppedHeight\": 2056,\n\"originalHeight\": 2634,\n\"artistName\": \"Henri-Edmond Cross\",\n\"isDetailed\": false\n},\n\"itemCount\": 625\n            },\n            \"type\": \"category\",\n            \"categoryIds\": [\n                65,\n                37\n            ],\n            \"categoryNames\": [\n                \"Modernism\",\n                \"Conceptual\"\n            ],\n            \"artistIds\": [\n                268,\n                265\n            ],\n            \"artistNames\": [\n                \"Alfred Stieglitz\",\n                \"Georgia O'Keeffe\"\n            ],\n            \"author\": {\n                \"id\": 1,\n                \"name\": \"Poppy Simpson\"\n            }\n        }\n    ],\n    \"isLast\": true,\n    \"isPaginated\": true\n}"}],"_postman_id":"cc87f85d-6c46-d665-fc64-375b7990060c"},{"name":"/categories/:id/items","id":"cc84889c-13b7-1347-2939-9aa1e9ef6365","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/categories/:id/items?page={{page}}&count={{count}}&sort={{sortParameter}}","description":"<p>Retrieve the items that are memebers of this category.</p>\n","urlObject":{"path":["categories",":id","items"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[{"key":"page","value":"{{page}}"},{"key":"count","value":"{{count}}"},{"key":"sort","value":"{{sortParameter}}"}],"variable":[{"description":{"content":"<p>The category's id</p>\n","type":"text/plain"},"type":"any","value":"{{categoryId}}","key":"id"}]}},"response":[{"id":"42300cb6-c7d2-a2cd-7ccb-225a8afbcad2","name":"/categories/:id/items","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{API_ORIGIN}}{{VERSION}}/categories/:id/items?page=1&count=10&sort=date_added__dsc","host":["{{API_ORIGIN}}{{VERSION}}"],"path":["categories",":id","items"],"query":[{"key":"page","value":"1"},{"key":"count","value":"10"},{"key":"sort","value":"date_added__dsc"}],"variable":[{"key":"id","value":"74","description":"The artist's id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"allow","key":"allow","value":"GET, HEAD, OPTIONS","description":""},{"name":"content-encoding","key":"content-encoding","value":"gzip","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:08:43 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"238","body":"{\"count\": 710, \"message\": \"\", \"data\": [{\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/bvppz6GWJ616diBj6Ext2V2BzfJoVzpE.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/9Fsv8izhTVzrUXM23BApcIT9tQECd5jh.jpeg\", \"year\": \"1518-20\", \"userId\": 2214, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 1914, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/40x40/9Fsv8izhTVzrUXM23BApcIT9tQECd5jh.jpeg\", \"id\": 205788, \"croppedY1\": 37, \"dimensions\": \"41.9 \\u00d7 27.9 cm\", \"copyright\": null, \"author\": \"Lucas Cranach the Elder\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/9Fsv8izhTVzrUXM23BApcIT9tQECd5jh.jpeg\", \"categoryIds\": [14, 74], \"croppedWidth\": 1656, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil on linden panel\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/9Fsv8izhTVzrUXM23BApcIT9tQECd5jh.jpeg\", \"description\": null, \"name\": \"Saint Christopher\", \"isPublic\": true, \"croppedX1\": 129, \"slug\": \"saint-christopher\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/20x20/9Fsv8izhTVzrUXM23BApcIT9tQECd5jh.jpeg\", \"categoryNames\": [\"Renaissance\", \"Renaissance\"], \"croppedHeight\": 2944, \"originalHeight\": 3000, \"artistName\": null, \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/WdzGgwQVBdj8zvfMgor3GslGuZiSaJRJ.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/3vna4zlUvABnP6e64LCODPJMV9KfAcHB.jpeg\", \"year\": \"1532-34\", \"userId\": 2214, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 2000, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/40x40/3vna4zlUvABnP6e64LCODPJMV9KfAcHB.jpeg\", \"id\": 205791, \"croppedY1\": 0, \"dimensions\": \"23.4 \\u00d7 18.8 cm\", \"copyright\": null, \"author\": \"Hans Holbein\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/3vna4zlUvABnP6e64LCODPJMV9KfAcHB.jpeg\", \"categoryIds\": [14, 74], \"croppedWidth\": 1458, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil and tempera on oak\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/3vna4zlUvABnP6e64LCODPJMV9KfAcHB.jpeg\", \"description\": null, \"name\": \"A Woman\", \"isPublic\": true, \"croppedX1\": 335, \"slug\": \"a-woman\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/20x20/3vna4zlUvABnP6e64LCODPJMV9KfAcHB.jpeg\", \"categoryNames\": [\"Renaissance\", \"Renaissance\"], \"croppedHeight\": 2590, \"originalHeight\": 2590, \"artistName\": null, \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/cqiZotukQKzPzfR50DEEL1jJcfaJVwUT.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/THiXUGYJH45xPWij6sZgg4sSHe3g6Ijm.jpeg\", \"year\": \"1550\", \"userId\": 2214, \"artistId\": 300, \"sortedOrder\": null, \"originalWidth\": 4096, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/40x40/THiXUGYJH45xPWij6sZgg4sSHe3g6Ijm.jpeg\", \"id\": 225109, \"croppedY1\": 0, \"dimensions\": \"106.7 x 79.4 cm\", \"copyright\": null, \"author\": \"Paolo Veronese\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/THiXUGYJH45xPWij6sZgg4sSHe3g6Ijm.jpeg\", \"categoryIds\": [14, 32, 74], \"croppedWidth\": 3122, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil on canvas\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/THiXUGYJH45xPWij6sZgg4sSHe3g6Ijm.jpeg\", \"description\": null, \"name\": \"Baptism of Christ\", \"isPublic\": true, \"croppedX1\": 841, \"slug\": \"baptism-of-christ\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/20x20/THiXUGYJH45xPWij6sZgg4sSHe3g6Ijm.jpeg\", \"categoryNames\": [\"Renaissance\", \"Religion\", \"Renaissance\"], \"croppedHeight\": 5547, \"originalHeight\": 5547, \"artistName\": \"Paolo Veronese\", \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/o3M9GjGHOkFpbf2mihf7zYX4Xfg0ll5o.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/obLpg2IT5wQSVwo9J1p7NWS7yu9VjJf0.jpeg\", \"year\": \"1450-70\", \"userId\": 2214, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 4096, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/40x40/obLpg2IT5wQSVwo9J1p7NWS7yu9VjJf0.jpeg\", \"id\": 225117, \"croppedY1\": 0, \"dimensions\": \"113 x 62.2 cm\", \"copyright\": null, \"author\": \"Central German Master\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/obLpg2IT5wQSVwo9J1p7NWS7yu9VjJf0.jpeg\", \"categoryIds\": [14, 32, 74], \"croppedWidth\": 4096, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil and gold on panel\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/obLpg2IT5wQSVwo9J1p7NWS7yu9VjJf0.jpeg\", \"description\": null, \"name\": \"The Last Supper\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"the-last-supper\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/20x20/obLpg2IT5wQSVwo9J1p7NWS7yu9VjJf0.jpeg\", \"categoryNames\": [\"Renaissance\", \"Religion\", \"Renaissance\"], \"croppedHeight\": 7276, \"originalHeight\": 7482, \"artistName\": null, \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/3PKY9k85uJi43Z9EBSBj6hp1tIYvnXDO.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/croGVnL4Q5ZPgGwb4h2RGrhvA4KJ1BXr.jpeg\", \"year\": \"1508\", \"userId\": 2224, \"artistId\": 142, \"sortedOrder\": null, \"originalWidth\": 2681, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/40x40/croGVnL4Q5ZPgGwb4h2RGrhvA4KJ1BXr.jpeg\", \"id\": 227974, \"croppedY1\": 64, \"dimensions\": null, \"copyright\": null, \"author\": \"Albrecht Du\\u0308rer\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/croGVnL4Q5ZPgGwb4h2RGrhvA4KJ1BXr.jpeg\", \"categoryIds\": [24, 14, 74], \"croppedWidth\": 2127, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Brush, gray and white ink, gray wash, on blue prepared paper\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/croGVnL4Q5ZPgGwb4h2RGrhvA4KJ1BXr.jpeg\", \"description\": null, \"name\": \"Praying Hands\", \"isPublic\": true, \"croppedX1\": 56, \"slug\": \"praying-hands\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/20x20/croGVnL4Q5ZPgGwb4h2RGrhvA4KJ1BXr.jpeg\", \"categoryNames\": [\"Figurative\", \"Renaissance\", \"Renaissance\"], \"croppedHeight\": 3781, \"originalHeight\": 3901, \"artistName\": \"Albrecht D\\u00fcrer\", \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/SuaPRLMC30g6b88zufKjphcPWCE2HLoI.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/hAHm51rtenDJWSgkxjBKymECkZDrx38y.jpeg\", \"year\": \"1519-20\", \"userId\": 2214, \"artistId\": 144, \"sortedOrder\": null, \"originalWidth\": 2639, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/40x40/hAHm51rtenDJWSgkxjBKymECkZDrx38y.jpeg\", \"id\": 227976, \"croppedY1\": 21, \"dimensions\": null, \"copyright\": null, \"author\": \"Raphael Sanzio da Urbino\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/hAHm51rtenDJWSgkxjBKymECkZDrx38y.jpeg\", \"categoryIds\": [21, 14, 74], \"croppedWidth\": 1875, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Black chalk on paper over traces of a metal-stylus drawing\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/hAHm51rtenDJWSgkxjBKymECkZDrx38y.jpeg\", \"description\": null, \"name\": \"Head of An Apostle in the Transfiguration\", \"isPublic\": true, \"croppedX1\": 110, \"slug\": \"head-of-an-apostle-in-the-transfiguration\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/20x20/hAHm51rtenDJWSgkxjBKymECkZDrx38y.jpeg\", \"categoryNames\": [\"Portraiture\", \"Renaissance\", \"Renaissance\"], \"croppedHeight\": 3332, \"originalHeight\": 3391, \"artistName\": \"Raphael Sanzio da Urbino\", \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/NqoqeSNiuUgw0pYLwjwfwM69egVTB7LL.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/mhezn7xbHeZ5P9DnUyfqS62ta0Htmsub.jpeg\", \"year\": \"1493-95\", \"userId\": 2214, \"artistId\": 141, \"sortedOrder\": null, \"originalWidth\": 3655, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/40x40/mhezn7xbHeZ5P9DnUyfqS62ta0Htmsub.jpeg\", \"id\": 229249, \"croppedY1\": 48, \"dimensions\": null, \"copyright\": null, \"author\": \"Leonardo da Vinci\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/mhezn7xbHeZ5P9DnUyfqS62ta0Htmsub.jpeg\", \"categoryIds\": [21, 14, 74], \"croppedWidth\": 2574, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Silverpoint, pen and brown ink on blue prepared paper\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/mhezn7xbHeZ5P9DnUyfqS62ta0Htmsub.jpeg\", \"description\": null, \"name\": \"Half-Length Figure of an Apostle\", \"isPublic\": true, \"croppedX1\": 435, \"slug\": \"half-length-figure-of-an-apostle\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/20x20/mhezn7xbHeZ5P9DnUyfqS62ta0Htmsub.jpeg\", \"categoryNames\": [\"Portraiture\", \"Renaissance\", \"Renaissance\"], \"croppedHeight\": 4575, \"originalHeight\": 4661, \"artistName\": \"Leonardo da Vinci\", \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/efWluDsAgiu25ypsbkoBxsRQB0LPkOLw.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/kGU0X1z41SwigEfr54d7o2omvP3drE5k.jpeg\", \"year\": \"1690-1720\", \"userId\": 4480, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 2936, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/40x40/kGU0X1z41SwigEfr54d7o2omvP3drE5k.jpeg\", \"id\": 249416, \"croppedY1\": 0, \"dimensions\": \"179.8 x 149.3\", \"copyright\": null, \"author\": \"Anonymous Cusco School\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/1000x500/kGU0X1z41SwigEfr54d7o2omvP3drE5k.jpeg\", \"categoryIds\": [14, 32, 74], \"croppedWidth\": 2250, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil on canvas\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/1000x500/kGU0X1z41SwigEfr54d7o2omvP3drE5k.jpeg\", \"description\": null, \"name\": \"Adoration of the Magi\", \"isPublic\": true, \"croppedX1\": 597, \"slug\": \"adoration-of-the-magi\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/20x20/kGU0X1z41SwigEfr54d7o2omvP3drE5k.jpeg\", \"categoryNames\": [\"Renaissance\", \"Religion\", \"Renaissance\"], \"croppedHeight\": 4001, \"originalHeight\": 4001, \"artistName\": null, \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/LV6Ll7KsiiPSwgPQVPfbpUBBsdSfNBcp.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/R1SmZLqzD84qGABka0MdICurEE6Vch81.jpeg\", \"year\": \"1575\", \"userId\": 2214, \"artistId\": 300, \"sortedOrder\": null, \"originalWidth\": 3000, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/40x40/R1SmZLqzD84qGABka0MdICurEE6Vch81.jpeg\", \"id\": 261157, \"croppedY1\": 729, \"dimensions\": \"189.9 x 189.9 cm\", \"copyright\": null, \"author\": \"Paolo Veronese\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/R1SmZLqzD84qGABka0MdICurEE6Vch81.jpeg\", \"categoryIds\": [52, 14, 74], \"croppedWidth\": 3000, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil on canvas\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/R1SmZLqzD84qGABka0MdICurEE6Vch81.jpeg\", \"description\": \"The dominant theory is that the picture represents a classical love triangle, with a secret letter being passed between one of the men and the nude woman. Cupid is on the left. [National Gallery](https://www.nationalgallery.org.uk/paintings/paolo-veronese-four-allegories-of-love)\", \"name\": \"Unfaithfulness\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"unfaithfulness\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/20x20/R1SmZLqzD84qGABka0MdICurEE6Vch81.jpeg\", \"categoryNames\": [\"Mythology\", \"Renaissance\", \"Renaissance\"], \"croppedHeight\": 1688, \"originalHeight\": 2998, \"artistName\": \"Paolo Veronese\", \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/b8RrtujuLbltM8t4yqoGrWvVlWmZQLMJ.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/8ZY9bdOy4st0shTMZ0uYnMZuVDyyueV6.jpeg\", \"year\": \"1575\", \"userId\": 2214, \"artistId\": 300, \"sortedOrder\": null, \"originalWidth\": 3000, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/40x40/8ZY9bdOy4st0shTMZ0uYnMZuVDyyueV6.jpeg\", \"id\": 261158, \"croppedY1\": 524, \"dimensions\": \"186.1 x 194.3 cm\", \"copyright\": null, \"author\": \"Paolo Veronese\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/8ZY9bdOy4st0shTMZ0uYnMZuVDyyueV6.jpeg\", \"categoryIds\": [52, 14, 74], \"croppedWidth\": 2993, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil on canvas\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/1000x500/8ZY9bdOy4st0shTMZ0uYnMZuVDyyueV6.jpeg\", \"description\": \"The dominant interpretation of the image is that the armored man is tempted by Cupid, but withdraws from the sleeping nude in respect. [National Gallery](https://www.nationalgallery.org.uk/paintings/paolo-veronese-four-allegories-of-love)\", \"name\": \"Respect\", \"isPublic\": true, \"croppedX1\": 7, \"slug\": \"respect\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f3d9de86462c28781cbe5c47ef22c3e5/20x20/8ZY9bdOy4st0shTMZ0uYnMZuVDyyueV6.jpeg\", \"categoryNames\": [\"Mythology\", \"Renaissance\", \"Renaissance\"], \"croppedHeight\": 1689, \"originalHeight\": 2921, \"artistName\": \"Paolo Veronese\", \"isDetailed\": false}], \"isLast\": false, \"isPaginated\": true}"}],"_postman_id":"cc84889c-13b7-1347-2939-9aa1e9ef6365"}],"id":"8dac3211-c642-140b-33a5-e56151450584","description":"<p>Items, artists, and galleries are all organized by category. These endpoints allow the user to retrieve categories and their artists, items, and galleries.</p>\n","_postman_id":"8dac3211-c642-140b-33a5-e56151450584"},{"name":"Channels","item":[{"name":"/channels","id":"82c9ae5a-5b5d-ff6e-0453-c45141849eb8","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/channels?page={{page}}&count={{count}}","description":"<p>Retrieve channels.</p>\n","urlObject":{"path":["channels"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[{"description":{"content":"<p>The page number</p>\n","type":"text/plain"},"key":"page","value":"{{page}}"},{"description":{"content":"<p>The number of objects per page</p>\n","type":"text/plain"},"key":"count","value":"{{count}}"}],"variable":[]}},"response":[{"id":"56fe3d78-85a4-6913-4487-5686e2b33e6e","name":"/channels","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{API_ORIGIN}}{{VERSION}}/channels?page=1&count=10","host":["{{API_ORIGIN}}{{VERSION}}"],"path":["channels"],"query":[{"key":"page","value":"1","description":"The page number"},{"key":"count","value":"10","description":"The number of objects per page"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"allow","key":"allow","value":"GET, POST, HEAD, OPTIONS","description":""},{"name":"content-encoding","key":"content-encoding","value":"gzip","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:08:56 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"207","body":"{\"count\": 17, \"message\": \"\", \"data\": [{\"id\": 1, \"order\": 0, \"name\": \"Art&Found\", \"description\": \"[Art&Found](https://www.artandfound.co/) is a curated platform for quality affordable art by emerging Indian artists, for a new generation of art buyers.\", \"logo\": \"https://d3qmok6r0qa65b.cloudfront.net/media/6adf97f83acf6453d4a6a4b1070f3754/Ayawg5EFsvd38sdR9URhLyQtPxbjpnue.jpg\", \"avatar\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/DbOx4EOYiey1BcwfehnwYp2HJRoOqgiD.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/DbOx4EOYiey1BcwfehnwYp2HJRoOqgiD.jpeg\", \"year\": null, \"userId\": 2224, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 2004, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/40x40/DbOx4EOYiey1BcwfehnwYp2HJRoOqgiD.jpeg\", \"id\": 321760, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": \"Courtesy of Art&Found\", \"author\": \"Malay Bargali\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/DbOx4EOYiey1BcwfehnwYp2HJRoOqgiD.jpeg\", \"categoryIds\": [10, 70], \"croppedWidth\": 0, \"type\": \"image\", \"isSampler\": false, \"medium\": \"192 gsm Epson Enhanced Matte\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/DbOx4EOYiey1BcwfehnwYp2HJRoOqgiD.jpeg\", \"description\": \"Simple images that are a mix of ordinary and surreal expressed by concealed feelings and desires through reduced, figurative line work. One can see a genuine emotion and a sense of self-expression through storytelling. From exaggerated and disproportionately stylized figures to witty pen-drawn line work through to explorations of abstract mark-making, Malay isn't afraid to experiment in conveying his own feelings.\", \"name\": \"Fall 02\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"fall-02\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/20x20/DbOx4EOYiey1BcwfehnwYp2HJRoOqgiD.jpeg\", \"categoryNames\": [\"Contemporary\", \"Contemporary\"], \"croppedHeight\": 0, \"originalHeight\": 3562, \"artistName\": null, \"isDetailed\": false}, \"hero\": null, \"featuredAt\": null}, {\"id\": 2, \"order\": 0, \"name\": \"The Sketchbook Project\", \"description\": \"[The Sketchbook Project](http://www.sketchbookproject.com) is a crowd-sourced library that features 35,253 artists' books, contributed by creative people from 135+ countries. The collection is on view to the public at the\\u00a0Brooklyn Art Library, a\\u00a0storefront exhibition space in the heart of Williamsburg, Brooklyn, NY.\", \"logo\": \"https://d3qmok6r0qa65b.cloudfront.net/media/13111c20aee51aeb480ecbd988cd8cc9/TtTUeBgN9FYsFSc8mnsvGST79XI56t86.png\", \"avatar\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/AeKld5ChOXr9Hl1VFunZk6eIm3oX6Bbl.png\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/Z0WOUluNDkIDgcY4NkXCurRQg69D9cnA.png\", \"year\": null, \"userId\": 2224, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 3000, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/40x40/Z0WOUluNDkIDgcY4NkXCurRQg69D9cnA.png\", \"id\": 194426, \"croppedY1\": 149, \"dimensions\": null, \"copyright\": \"Courtesy of The Sketchbook Project\", \"author\": \"Sain Robertson\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/Z0WOUluNDkIDgcY4NkXCurRQg69D9cnA.png\", \"categoryIds\": [], \"croppedWidth\": 3000, \"type\": \"image\", \"isSampler\": false, \"medium\": null, \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/Z0WOUluNDkIDgcY4NkXCurRQg69D9cnA.png\", \"description\": null, \"name\": \"Provincetown, MA\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"provincetown-ma\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/20x20/Z0WOUluNDkIDgcY4NkXCurRQg69D9cnA.png\", \"categoryNames\": [], \"croppedHeight\": 1689, \"originalHeight\": 2000, \"artistName\": null, \"isDetailed\": false}, \"hero\": null, \"featuredAt\": null}, {\"id\": 3, \"order\": 0, \"name\": \"NYPL\", \"description\": \"Dive into The New York Public Library's vast [digitized archive](https://digitalcollections.nypl.org/)\\u2014featuring menus, photographs, maps, manuscripts, and printed rarities spanning centuries of history and culture.\", \"logo\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2220/jnkz55incpge74v.jpg\", \"avatar\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/r3JOeGQLiSPpf0K5CaOlfEeyIzYfFKUz.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/r3JOeGQLiSPpf0K5CaOlfEeyIzYfFKUz.jpeg\", \"year\": \"1902\", \"userId\": 2224, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 1080, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/40x40/r3JOeGQLiSPpf0K5CaOlfEeyIzYfFKUz.jpeg\", \"id\": 173883, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": \"Henri Boutet\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/1000x500/r3JOeGQLiSPpf0K5CaOlfEeyIzYfFKUz.jpeg\", \"categoryIds\": [38, 72], \"croppedWidth\": 0, \"type\": \"image\", \"isSampler\": false, \"medium\": null, \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/1000x500/r3JOeGQLiSPpf0K5CaOlfEeyIzYfFKUz.jpeg\", \"description\": null, \"name\": \"1897\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"1897\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/20x20/r3JOeGQLiSPpf0K5CaOlfEeyIzYfFKUz.jpeg\", \"categoryNames\": [\"Fashion\", \"Nineteenth Century\"], \"croppedHeight\": 0, \"originalHeight\": 1920, \"artistName\": null, \"isDetailed\": false}, \"hero\": null, \"featuredAt\": null}, {\"id\": 4, \"order\": 0, \"name\": \"bridgeman\", \"description\": \"[Bridgeman Images](http://bridgemanimages.com/en-US/) works with museums, galleries, collections and artists to provide a central resource of fine art and archive footage for reproduction to creative professionals. Every subject, concept, style and medium is represented, from the masterpieces of national museums to the hidden treasures of private collections.\", \"logo\": \"https://d3qmok6r0qa65b.cloudfront.net/media/4ae67a7dd7e491f8fb6f9ea0cf25dfdb/YdzCHt0qECD3GXARk8AA6lvjASjQYDqA.jpg\", \"avatar\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/j1ohff198z2b4in.thumb.jpg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/tlld5gmrxlmovzw.optimized.thumb.jpg\", \"year\": \"1890\", \"userId\": 2224, \"artistId\": 120, \"sortedOrder\": null, \"originalWidth\": 2528, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/40x40/tlld5gmrxlmovzw.optimized.thumb.jpg\", \"id\": 20975, \"croppedY1\": 151, \"dimensions\": null, \"copyright\": null, \"author\": \"Paul Signac\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/1000x500/tlld5gmrxlmovzw.optimized.thumb.jpg\", \"categoryIds\": [24, 72], \"croppedWidth\": 2528, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil on canvas\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/1000x500/tlld5gmrxlmovzw.optimized.thumb.jpg\", \"description\": null, \"name\": \"Portrait of Felix Feneon\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"portrait-of-felix-feneon\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/20x20/tlld5gmrxlmovzw.optimized.thumb.jpg\", \"categoryNames\": [\"Figurative\", \"Nineteenth Century\"], \"croppedHeight\": 1422, \"originalHeight\": 2000, \"artistName\": \"Paul Signac\", \"isDetailed\": false}, \"hero\": null, \"featuredAt\": null}, {\"id\": 5, \"order\": 0, \"name\": \"Flixel\", \"description\": \"[Flixel Photos](https://flixel.com/) is the cinemagraph software company. Their family of apps are used by top photographers, global brands and digital agencies to create cinemagraphs\\u2015a magical blend of photo and video that some call Living Photos. Straight out of Harry Potter, cinemagraphs have been described as the world\\u2019s most exciting new visual medium and have quickly taken their place as a new art form.\", \"logo\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f7ae58c7f1a1cc4abe9273a0f971ba2a/HbrWnHhQYaTHQmqeoTgCctvbJL4Vhvgq.jpg\", \"avatar\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f7ae58c7f1a1cc4abe9273a0f971ba2a/n6FVA9chcaqqSMbHgRgrj4g0v6MQkss2.gif\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f7ae58c7f1a1cc4abe9273a0f971ba2a/n6FVA9chcaqqSMbHgRgrj4g0v6MQkss2.gif\", \"year\": null, \"userId\": 2224, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 1080, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f7ae58c7f1a1cc4abe9273a0f971ba2a/40x40/n6FVA9chcaqqSMbHgRgrj4g0v6MQkss2.gif\", \"id\": 361532, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": \"Courtesy of Flixel Photos\", \"author\": \"Kitchen Ghosts\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f7ae58c7f1a1cc4abe9273a0f971ba2a/1000x500/n6FVA9chcaqqSMbHgRgrj4g0v6MQkss2.gif\", \"categoryIds\": [66], \"croppedWidth\": 0, \"type\": \"video\", \"isSampler\": false, \"medium\": null, \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f7ae58c7f1a1cc4abe9273a0f971ba2a/1000x500/n6FVA9chcaqqSMbHgRgrj4g0v6MQkss2.gif\", \"description\": \"\\\"Fig season brings cold winds, colorful leaves, plum pies and a special kind of hearty coziness that only comes to your home during autumn.\\\" - Kitchen Ghosts\", \"name\": \"Still Life with Figs\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"still-life-with-figs\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/f7ae58c7f1a1cc4abe9273a0f971ba2a/20x20/n6FVA9chcaqqSMbHgRgrj4g0v6MQkss2.gif\", \"categoryNames\": [\"Motion\"], \"croppedHeight\": 0, \"originalHeight\": 1920, \"artistName\": null, \"isDetailed\": false}, \"hero\": null, \"featuredAt\": null}, {\"id\": 6, \"order\": 0, \"name\": \"stillreel\", \"description\": \"\", \"logo\": \"https://d3qmok6r0qa65b.cloudfront.net/media/1645/c20wh9e1ubq8p66.png\", \"avatar\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/yqPkhX4EDOXick7rMoDtvv9INSNsrXmY.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/yqPkhX4EDOXick7rMoDtvv9INSNsrXmY.jpeg\", \"year\": null, \"userId\": 2224, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 2400, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/40x40/yqPkhX4EDOXick7rMoDtvv9INSNsrXmY.jpeg\", \"id\": 190044, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": \"Richard Dana\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/yqPkhX4EDOXick7rMoDtvv9INSNsrXmY.jpeg\", \"categoryIds\": [], \"croppedWidth\": 0, \"type\": \"image\", \"isSampler\": false, \"medium\": null, \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/yqPkhX4EDOXick7rMoDtvv9INSNsrXmY.jpeg\", \"description\": null, \"name\": \"Gem Melt #2\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"gem-melt-2\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/20x20/yqPkhX4EDOXick7rMoDtvv9INSNsrXmY.jpeg\", \"categoryNames\": [], \"croppedHeight\": 0, \"originalHeight\": 1350, \"artistName\": null, \"isDetailed\": false}, \"hero\": null, \"featuredAt\": null}, {\"id\": 8, \"order\": 0, \"name\": \"The Lumen Prize\", \"description\": \"[The Lumen Prize](http://lumenprize.com/) celebrates the very best art created digitally. As a not-for-profit social enterprise our goal is to focus the world\\u2019s attention on this exciting genre through an annual competition, a global tour and associated activities including workshops, seminars and special events.\", \"logo\": \"https://d3qmok6r0qa65b.cloudfront.net/media/831caa1b600f852b7844499430ecac17/VGTGtQ3GqH4HwIWxhPngfNmCmM5FCF1K.png\", \"avatar\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/Owx9PpZqVn9taUAauu9RHt3l2nWaBrg8.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/Owx9PpZqVn9taUAauu9RHt3l2nWaBrg8.jpeg\", \"year\": null, \"userId\": 2224, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 2000, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/40x40/Owx9PpZqVn9taUAauu9RHt3l2nWaBrg8.jpeg\", \"id\": 174243, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": \"Harvey Goldman\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/Owx9PpZqVn9taUAauu9RHt3l2nWaBrg8.jpeg\", \"categoryIds\": [10, 70], \"croppedWidth\": 0, \"type\": \"image\", \"isSampler\": false, \"medium\": null, \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/Owx9PpZqVn9taUAauu9RHt3l2nWaBrg8.jpeg\", \"description\": null, \"name\": \"Tropics 031\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"tropics-031\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/20x20/Owx9PpZqVn9taUAauu9RHt3l2nWaBrg8.jpeg\", \"categoryNames\": [\"Contemporary\", \"Contemporary\"], \"croppedHeight\": 0, \"originalHeight\": 1125, \"artistName\": null, \"isDetailed\": false}, \"hero\": null, \"featuredAt\": null}, {\"id\": 10, \"order\": 0, \"name\": \"Creative Action Network\", \"description\": \"[Creative Action Network](https://creativeaction.network/) is a global community of artists and designers, making Art With Purpose. They run crowdsourced campaigns around causes, and anyone and everyone is welcome to contribute their own original, visual, meaningful work. They then develop those designs into print, apparel, and other products, and sell them in their online store and through retail partners, supporting artists and causes with every purchase.\", \"logo\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2222/x33fvymhqzesgh6.jpg\", \"avatar\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/caM8OnGDzosIRpYzACuuLsaeRJDVvaNk.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/5KrTVrvxGD1iNB47AA6zpztuWjMSPR90.jpeg\", \"year\": null, \"userId\": 2224, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 2000, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/40x40/5KrTVrvxGD1iNB47AA6zpztuWjMSPR90.jpeg\", \"id\": 218727, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": \"Roberlan Borges\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/5KrTVrvxGD1iNB47AA6zpztuWjMSPR90.jpeg\", \"categoryIds\": [], \"croppedWidth\": 1689, \"type\": \"image\", \"isSampler\": false, \"medium\": null, \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/5KrTVrvxGD1iNB47AA6zpztuWjMSPR90.jpeg\", \"description\": \"From Creative Action Network's ['Recovering the Classics' campaign](https://creativeaction.network/collections/recovering-the-classics).\", \"name\": \"Little Women\", \"isPublic\": true, \"croppedX1\": 151, \"slug\": \"little-women\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/20x20/5KrTVrvxGD1iNB47AA6zpztuWjMSPR90.jpeg\", \"categoryNames\": [], \"croppedHeight\": 3000, \"originalHeight\": 3000, \"artistName\": null, \"isDetailed\": false}, \"hero\": null, \"featuredAt\": null}, {\"id\": 13, \"order\": 0, \"name\": \"The Art Story\", \"description\": \"[The Art Story\\u2019s](https://www.theartstory.org/) vision is a world where the ideas and aspirations behind the wondrous art works are accessible to everyone to explore and be inspired by. Their dedicated staff of writers, art professors, and graphic artists help over 10 million people each year understand and enjoy every style of art from Impressionism to Conceptual art. Meural has partnered with The Art Story on a series of playlists exploring the key works of the twentieth century's most renowned artists.\", \"logo\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2311/oq1h1yk7vbwp7rl.jpg\", \"avatar\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/dzveyvaq870rk7y.thumb.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/x04p0qeh6rdyamg.optimized.thumb.jpeg\", \"year\": \"1910\", \"userId\": 254, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 3000, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/40x40/x04p0qeh6rdyamg.optimized.thumb.jpeg\", \"id\": 99546, \"croppedY1\": 18, \"dimensions\": null, \"copyright\": null, \"author\": \"Umberto Boccioni\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/1000x500/x04p0qeh6rdyamg.optimized.thumb.jpeg\", \"categoryIds\": [12, 65], \"croppedWidth\": 3000, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil on canvas\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/1000x500/x04p0qeh6rdyamg.optimized.thumb.jpeg\", \"description\": \"This is considered by many to be the very first truly Futurist painting. Boccioni took a year to complete it and it was exhibited throughout Europe shortly after it was finished. It testifies to the hold that Neo-Impressionism and Symbolism maintained on the movement's artists even after Futurism was inaugurated in 1909. It was not until around 1911 that Boccioni adapted elements of Cubism to create a distinct Futurist style. Nevertheless, The City Rises does capture the group's love of dynamism and their fondness for the modern city. A large horse races into the foreground while several workers struggle to gain control of it, suggesting a primeval conflict between humanity and beasts. The horse and figures are blurred, communicating rapid movement while other elements, such as the buildings in the background, are rendered more realistically. At the same time, the perspective teeters dramatically in different sections of the painting. [The Art Story](https://www.theartstory.org/artist-boccioni-umberto.htm)\", \"name\": \"The City Rises\", \"isPublic\": false, \"croppedX1\": 0, \"slug\": \"the-city-rises\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/20x20/x04p0qeh6rdyamg.optimized.thumb.jpeg\", \"categoryNames\": [\"Modernism\", \"Modernism\"], \"croppedHeight\": 1688, \"originalHeight\": 1992, \"artistName\": null, \"isDetailed\": false}, \"hero\": null, \"featuredAt\": null}, {\"id\": 14, \"order\": 0, \"name\": \"1X\", \"description\": \"[1x](https://1x.com/) is the world's biggest curated photo gallery online. Each photo is selected by professional curators.\", \"logo\": \"https://d3qmok6r0qa65b.cloudfront.net/media/819/4sx75gbe7akx5do.png\", \"avatar\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/lzCk1dmoU65BCrmeaJD4EaczIYxm4O8K.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/yYSH1peeKi3C1uY42Pj0ziKO1NPMRD2W.jpeg\", \"year\": \"2017\", \"userId\": 2224, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 3000, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/40x40/yYSH1peeKi3C1uY42Pj0ziKO1NPMRD2W.jpeg\", \"id\": 318844, \"croppedY1\": 175, \"dimensions\": null, \"copyright\": \"Courtesy of 1x\", \"author\": \"Juan Pablo de Miguel\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/1000x500/yYSH1peeKi3C1uY42Pj0ziKO1NPMRD2W.jpeg\", \"categoryIds\": [9, 36, 73], \"croppedWidth\": 3000, \"type\": \"image\", \"isSampler\": false, \"medium\": null, \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/1000x500/yYSH1peeKi3C1uY42Pj0ziKO1NPMRD2W.jpeg\", \"description\": null, \"name\": \"Paris I\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"paris-i\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/20x20/yYSH1peeKi3C1uY42Pj0ziKO1NPMRD2W.jpeg\", \"categoryNames\": [\"Photography\", \"City\", \"Photography\"], \"croppedHeight\": 1689, \"originalHeight\": 2000, \"artistName\": null, \"isDetailed\": false}, \"hero\": null, \"featuredAt\": null}], \"isLast\": false, \"isPaginated\": true}"}],"_postman_id":"82c9ae5a-5b5d-ff6e-0453-c45141849eb8"},{"name":"/channels/:id","id":"6b5075e6-8450-4dd9-1ff4-b865ce21985a","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/channels/:id","description":"<p>Retrieve a specific channel.</p>\n","urlObject":{"path":["channels",":id"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[{"description":{"content":"<p>The channel's id</p>\n","type":"text/plain"},"type":"any","value":"{{channelId}}","key":"id"}]}},"response":[{"id":"bc67763c-9b03-193d-2c58-988bd7aa351a","name":"/channels/:id","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{API_ORIGIN}}{{VERSION}}/channels/:id","host":["{{API_ORIGIN}}{{VERSION}}"],"path":["channels",":id"],"variable":[{"key":"id","value":"20","description":"The category's id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"allow","key":"allow","value":"GET, PUT, PATCH, DELETE, HEAD, OPTIONS","description":""},{"name":"content-encoding","key":"content-encoding","value":"gzip","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:09:02 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"150","body":"{\"count\": null, \"message\": \"\", \"data\": {\"id\": 20, \"order\": 0, \"name\": \"Retronaut\", \"description\": \"[Retronaut](http://www.retronaut.com/) scours the world's archives and museums, physical and digital, looking for material that just doesn't fit and is dedicated to hunting down pictures, film, sound, stories and songs that are not on our maps. Things that appear to be anachronistic - but are not. The goal is to demonstrate that, in the words of William Faulkner: \\u201cThe past is never dead. It is not even past...\\\"\", \"logo\": \"https://d3qmok6r0qa65b.cloudfront.net/media/598920e11d1eb2a49501d59fce5ecbb7/fGr8ztOvct4FRtE9heWWKb6xxyYXIM3r.jpg\", \"avatar\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/aaw8U9W3vf1VCzARBJ3UuO3QT8m07yGB.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/5MYMTB2OoIWLrnS1xMCbo80AqRD8aKNI.jpeg\", \"year\": \"1976\", \"userId\": 2224, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 3744, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/40x40/5MYMTB2OoIWLrnS1xMCbo80AqRD8aKNI.jpeg\", \"id\": 181267, \"croppedY1\": 177, \"dimensions\": null, \"copyright\": \"Courtesy of Getty Images\", \"author\": null, \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/1000x500/5MYMTB2OoIWLrnS1xMCbo80AqRD8aKNI.jpeg\", \"categoryIds\": [9, 46, 73], \"croppedWidth\": 3744, \"type\": \"image\", \"isSampler\": false, \"medium\": null, \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/1000x500/5MYMTB2OoIWLrnS1xMCbo80AqRD8aKNI.jpeg\", \"description\": \"Ali shouts \\\"Come on Inoki,\\\" as the Japanese wrestler remains on the floor during the second round of their 15-round fight.\", \"name\": \"Ali vs. Inoki\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"ali-vs-inoki\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/20x20/5MYMTB2OoIWLrnS1xMCbo80AqRD8aKNI.jpeg\", \"categoryNames\": [\"Photography\", \"Sports\", \"Photography\"], \"croppedHeight\": 2109, \"originalHeight\": 2463, \"artistName\": null, \"isDetailed\": false}, \"hero\": null, \"featuredAt\": null}, \"isLast\": null, \"isPaginated\": false}"}],"_postman_id":"6b5075e6-8450-4dd9-1ff4-b865ce21985a"},{"name":"/channels/:id/galleries","id":"92d73613-7b28-f346-68e0-ad5dda505905","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/categories/:id/galleries?page={{page}}&count={{count}}","description":"<p>Retrieve the galleries that are members of this category.</p>\n","urlObject":{"path":["categories",":id","galleries"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[{"key":"page","value":"{{page}}"},{"key":"count","value":"{{count}}"}],"variable":[{"type":"any","value":"{{channelId}}","key":"id"}]}},"response":[{"id":"ff8530c1-aeb0-c6dd-14de-864c3912af08","name":"/channels/:id/galleries","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{API_ORIGIN}}{{VERSION}}/categories/:id/galleries?page=1&count=10","host":["{{API_ORIGIN}}{{VERSION}}"],"path":["categories",":id","galleries"],"query":[{"key":"page","value":"1"},{"key":"count","value":"10"}],"variable":[{"key":"id","value":"75"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"allow","key":"allow","value":"GET, HEAD, OPTIONS","description":""},{"name":"content-encoding","key":"content-encoding","value":"gzip","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:09:07 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"235","body":"{\"count\": 24, \"message\": \"\", \"data\": [{\"username\": \"sxsw\", \"isSampler\": false, \"slug\": \"a-history-of-art-in-8-hours-baroque-and-rococo\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/610x344/oivx772yxav2gsb.optimized.thumb.jpg\", \"categoryNames\": [\"Baroque and Rococo\", \"Recently Added\"], \"itemIds\": [383311, 383310, 111799, 111794, 111806, 111800, 136482, 45647, 17576, 212468, 33671, 17592, 17586, 17483, 211880, 17447, 383251, 12730, 15187, 17459, 15175, 16563, 17436, 111801, 309754, 17460, 45648, 45629, 45637, 15192, 45628, 11753, 248388, 15185, 221814, 221808, 11746, 38936, 205795, 221815, 212465, 15193, 221717, 38914, 221724, 64162, 221728, 131353, 38917, 111802], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/1000x500/oivx772yxav2gsb.optimized.thumb.jpg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/305x172/oivx772yxav2gsb.optimized.thumb.jpg\", \"id\": 37358, \"featuredAt\": null, \"orientation\": \"horizontal\", \"coverId\": 64162, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/40x40/oivx772yxav2gsb.optimized.thumb.jpg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/1000x500/oivx772yxav2gsb.optimized.thumb.jpg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/20x20/oivx772yxav2gsb.optimized.thumb.jpg\", \"name\": \"The History of Art in 8 Hours: Baroque and Rococo\", \"categoryIds\": [62, 75], \"userId\": 8268, \"description\": \"Meural brings you a playlist from our curated installation at the 2018 [SXSW Art Program](https://www.sxsw.com/news/2018/start-your-sxsw-art-experience-with-meurals-the-history-of-art-in-8-hours/) in Austin, Texas.\\n\\n\\\"The History of Art in 8 Hours\\\" takes viewers on a visual journey from the Renaissance, moving chronologically through the Western canon, with interludes into Asia, South America, and beyond.\\n\\nEnjoy Baroque and Rococo, with classical and highly ornate works from the 17th to 18th century, from Europe to Asia. \\n\\nThis playlist is also available in [vertical](https://my.meural.com/playlist/37359).\"}, {\"username\": \"sxsw\", \"isSampler\": false, \"slug\": \"a-history-of-art-in-8-hours-baroque-and-rococo\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/344x610/r3ImmkCW81DGTrOJQ4tUuq71SPXcTkXh.jpeg\", \"categoryNames\": [\"Baroque and Rococo\", \"Recently Added\"], \"itemIds\": [212467, 17583, 17585, 17582, 17593, 17590, 45630, 17474, 45640, 12724, 211875, 15191, 211873, 12737, 33629, 211848, 45633, 221811, 221720, 15194, 236533, 15195, 227738, 38915, 227737, 111788, 127894, 111786, 111787, 111789, 212464, 38933, 38939, 38942], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/1000x500/r3ImmkCW81DGTrOJQ4tUuq71SPXcTkXh.jpeg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/172x305/r3ImmkCW81DGTrOJQ4tUuq71SPXcTkXh.jpeg\", \"id\": 37359, \"featuredAt\": null, \"orientation\": \"vertical\", \"coverId\": 211873, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/40x40/r3ImmkCW81DGTrOJQ4tUuq71SPXcTkXh.jpeg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/1000x500/r3ImmkCW81DGTrOJQ4tUuq71SPXcTkXh.jpeg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/20x20/r3ImmkCW81DGTrOJQ4tUuq71SPXcTkXh.jpeg\", \"name\": \"The History of Art in 8 Hours: Baroque and Rococo\", \"categoryIds\": [62, 75], \"userId\": 8268, \"description\": \"Meural brings you a playlist from our curated installation at the 2018 [SXSW Art Program](https://www.sxsw.com/news/2018/start-your-sxsw-art-experience-with-meurals-the-history-of-art-in-8-hours/) in Austin, Texas.\\n\\n\\\"The History of Art in 8 Hours\\\" takes viewers on a visual journey from the Renaissance, moving chronologically through the Western canon, with interludes into Asia, South America, and beyond.\\n\\nEnjoy Baroque and Rococo, with classical and highly ornate works from the 17th to 18th century, from Europe to Asia. \\n\\nThis playlist is also available in [horizontal](https://my.meural.com/playlist/37358).\"}, {\"username\": \"sxsw\", \"isSampler\": false, \"slug\": \"a-history-of-art-in-8-hours-the-golden-age\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/344x610/r57gokr0jb4zijb.optimized.thumb.jpg\", \"categoryNames\": [\"Baroque and Rococo\", \"Recently Added\"], \"itemIds\": [11150, 11073, 11346, 45730, 10907, 11098, 11129, 11156, 234346, 382758, 382750, 10905, 382756, 15161, 10522, 11319, 15167, 234353, 15160, 234351, 11330, 10647, 99228, 383225, 27363, 9669, 9682, 20950, 9667, 9693, 9671, 158092, 20947, 10931], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/r57gokr0jb4zijb.optimized.thumb.jpg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/172x305/r57gokr0jb4zijb.optimized.thumb.jpg\", \"id\": 37356, \"featuredAt\": null, \"orientation\": \"vertical\", \"coverId\": 9667, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/40x40/r57gokr0jb4zijb.optimized.thumb.jpg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/r57gokr0jb4zijb.optimized.thumb.jpg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/20x20/r57gokr0jb4zijb.optimized.thumb.jpg\", \"name\": \"The History of Art in 8 Hours: The Golden Age\", \"categoryIds\": [62, 75], \"userId\": 8268, \"description\": \"Meural brings you a playlist from our curated installation at the 2018 [SXSW Art Program](https://www.sxsw.com/news/2018/start-your-sxsw-art-experience-with-meurals-the-history-of-art-in-8-hours/) in Austin, Texas.\\n\\n\\\"The History of Art in 8 Hours\\\" takes viewers on a visual journey from the Renaissance, moving chronologically through the Western canon, with interludes into Asia, South America, and beyond.\\n\\nEnjoy the Golden Age, spanning the 17th century, with works from the Dutch, Spanish, French, and more.\\n\\nThis playlist is also available in [horizontal](https://my.meural.com/playlist/37355).\"}, {\"username\": \"sxsw\", \"isSampler\": false, \"slug\": \"a-history-of-art-in-8-hours-the-golden-age\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/610x344/szmxbm7z7ir7nu5.optimized.thumb.jpg\", \"categoryNames\": [\"Baroque and Rococo\", \"Recently Added\"], \"itemIds\": [11140, 11074, 11152, 11077, 11154, 11147, 11347, 234356, 383220, 382761, 10560, 99274, 99270, 99240, 33648, 11109, 383211, 383228, 15157, 229354, 382749, 11132, 10530, 33634, 15153, 99266, 15173, 99264, 99250, 15172, 15174, 20874, 11318, 234354, 15156, 382754, 11527, 99225, 383215, 15154, 99224, 20949, 68669, 68670, 374203, 11088, 20952, 374202, 20923, 158090], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/1000x500/szmxbm7z7ir7nu5.optimized.thumb.jpg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/305x172/szmxbm7z7ir7nu5.optimized.thumb.jpg\", \"id\": 37355, \"featuredAt\": null, \"orientation\": \"horizontal\", \"coverId\": 20952, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/40x40/szmxbm7z7ir7nu5.optimized.thumb.jpg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/1000x500/szmxbm7z7ir7nu5.optimized.thumb.jpg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/20x20/szmxbm7z7ir7nu5.optimized.thumb.jpg\", \"name\": \"The History of Art in 8 Hours: The Golden Age\", \"categoryIds\": [62, 75], \"userId\": 8268, \"description\": \"Meural brings you a playlist from our curated installation at the 2018 [SXSW Art Program](https://www.sxsw.com/news/2018/start-your-sxsw-art-experience-with-meurals-the-history-of-art-in-8-hours/) in Austin, Texas.\\n\\n\\\"The History of Art in 8 Hours\\\" takes viewers on a visual journey from the Renaissance, moving chronologically through the Western canon, with interludes into Asia, South America, and beyond.\\n\\nEnjoy the Golden Age, spanning the 17th century, with works from the Dutch, Spanish, French and more.\\n\\nThis playlist is also available in [vertical](https://my.meural.com/playlist/37356).\"}, {\"username\": \"sxsw\", \"isSampler\": false, \"slug\": \"a-history-of-art-in-8-hours-late-renaissance\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/46a4378f835dc8040c8057beb6a2da52/610x344/0na0tg42PSStUODi2wDTQD2HjRsJm7M2.jpeg\", \"categoryNames\": [\"Recently Added\", \"Renaissance\"], \"itemIds\": [114534, 127984, 127983, 27439, 17682, 15134, 127982, 114536, 114535, 17718, 11507, 116535, 121060, 258031, 51589, 68671, 11496, 15106, 258032, 258030, 261051, 382600, 11488, 11489, 41632, 41623, 10972, 374282, 41629, 41627, 41630, 121106, 114532, 261159, 261157, 128064, 214286, 10894, 155100, 12783, 382618, 382616, 329852, 383309, 211889, 329868, 382604, 329835, 10899, 211968], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/46a4378f835dc8040c8057beb6a2da52/1000x500/0na0tg42PSStUODi2wDTQD2HjRsJm7M2.jpeg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/46a4378f835dc8040c8057beb6a2da52/305x172/0na0tg42PSStUODi2wDTQD2HjRsJm7M2.jpeg\", \"id\": 37297, \"featuredAt\": null, \"orientation\": \"horizontal\", \"coverId\": 383309, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/46a4378f835dc8040c8057beb6a2da52/40x40/0na0tg42PSStUODi2wDTQD2HjRsJm7M2.jpeg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/46a4378f835dc8040c8057beb6a2da52/1000x500/0na0tg42PSStUODi2wDTQD2HjRsJm7M2.jpeg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/46a4378f835dc8040c8057beb6a2da52/20x20/0na0tg42PSStUODi2wDTQD2HjRsJm7M2.jpeg\", \"name\": \"The History of Art in 8 Hours: Late Renaissance\", \"categoryIds\": [75, 74], \"userId\": 8268, \"description\": \"Meural brings you a playlist from our curated installation at the 2018 [SXSW Art Program](https://www.sxsw.com/news/2018/start-your-sxsw-art-experience-with-meurals-the-history-of-art-in-8-hours/) in Austin, Texas.\\n\\n\\\"The History of Art in 8 Hours\\\" takes viewers on a visual journey from the Renaissance, moving chronologically through the Western canon, with interludes into Asia, South America, and beyond.\\n\\nEnjoy the Late Renaissance, beginning with works created in the 1500s and ending in the beginning of the 17th century. \\n\\nThis playlist is also available in [vertical](https://my.meural.com/playlist/37298).\"}, {\"username\": \"sxsw\", \"isSampler\": false, \"slug\": \"a-history-of-art-in-8-hours-late-renaissance\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/344x610/yprcnkujbnoa8d2.optimized.thumb.jpg\", \"categoryNames\": [\"Recently Added\", \"Renaissance\"], \"itemIds\": [4691, 27437, 4700, 17698, 227802, 17690, 17705, 17684, 11497, 10465, 221826, 51580, 122687, 51576, 122685, 116534, 221833, 100525, 121062, 11482, 24596, 11008, 24598, 24594, 383245, 12766, 33626, 211892, 10855, 10904, 211962, 12793, 214338, 12778], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/1000x500/yprcnkujbnoa8d2.optimized.thumb.jpg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/172x305/yprcnkujbnoa8d2.optimized.thumb.jpg\", \"id\": 37298, \"featuredAt\": null, \"orientation\": \"vertical\", \"coverId\": 33626, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/40x40/yprcnkujbnoa8d2.optimized.thumb.jpg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/1000x500/yprcnkujbnoa8d2.optimized.thumb.jpg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/20x20/yprcnkujbnoa8d2.optimized.thumb.jpg\", \"name\": \"The History of Art in 8 Hours: Late Renaissance\", \"categoryIds\": [75, 74], \"userId\": 8268, \"description\": \"Meural brings you a playlist from our curated installation at the 2018 [SXSW Art Program](https://www.sxsw.com/news/2018/start-your-sxsw-art-experience-with-meurals-the-history-of-art-in-8-hours/) in Austin, Texas.\\n\\n\\\"The History of Art in 8 Hours\\\" takes viewers on a visual journey from the Renaissance, moving chronologically through the Western canon, with interludes into Asia, South America, and beyond.\\n\\nEnjoy the Late Renaissance, beginning with works created in the 1500s and ending in the beginning of the 17th century. \\n\\nThis playlist is also available in [horizontal](https://my.meural.com/playlist/37302).\"}, {\"username\": \"sxsw\", \"isSampler\": false, \"slug\": \"a-history-of-art-early-renaissance\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/344x610/fx0u9bpsmplomcx.optimized.thumb.jpg\", \"categoryNames\": [\"Recently Added\", \"Renaissance\"], \"itemIds\": [382735, 373574, 380959, 373612, 14429, 14420, 14428, 14432, 33624, 15040, 374492, 373577, 373582, 373614, 373609, 10632, 46508, 373611, 46507, 10611, 46509, 7831, 227940, 46505, 10489, 10487, 15142, 114542, 46504, 10484, 10517, 373607, 227974, 46510], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/1000x500/fx0u9bpsmplomcx.optimized.thumb.jpg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/172x305/fx0u9bpsmplomcx.optimized.thumb.jpg\", \"id\": 37301, \"featuredAt\": null, \"orientation\": \"vertical\", \"coverId\": 46509, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/40x40/fx0u9bpsmplomcx.optimized.thumb.jpg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/1000x500/fx0u9bpsmplomcx.optimized.thumb.jpg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/20x20/fx0u9bpsmplomcx.optimized.thumb.jpg\", \"name\": \"The History of Art in 8 Hours: Early Renaissance\", \"categoryIds\": [75, 74], \"userId\": 8268, \"description\": \"Meural brings you a playlist from our curated installation at the 2018 [SXSW Art Program](https://www.sxsw.com/news/2018/start-your-sxsw-art-experience-with-meurals-the-history-of-art-in-8-hours/) in Austin, Texas.\\n\\n\\\"The History of Art in 8 Hours\\\" takes viewers on a visual journey from the Renaissance, moving chronologically through the Western canon, with interludes into Asia, South America, and beyond.\\n\\nEnjoy the Early Renaissance, beginning with works created in the 1300s and ending in the end of the 15th century. \\n\\nThis playlist is also available in [horizontal](https://my.meural.com/playlist/37302).\"}, {\"username\": \"sxsw\", \"isSampler\": false, \"slug\": \"a-history-of-art-early-renaissance\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/610x344/pnaw9vyv2o4rlrq.optimized.thumb.jpeg\", \"categoryNames\": [\"Recently Added\", \"Renaissance\"], \"itemIds\": [372841, 364646, 382532, 382524, 15013, 374494, 15016, 15030, 15032, 14424, 236004, 236024, 14590, 14422, 14433, 15036, 15027, 373617, 15029, 373618, 373616, 380902, 10595, 46511, 10651, 10604, 10649, 10594, 10624, 112543, 10629, 4721, 10512, 10519, 10515, 31128, 10518, 10494, 46506, 10591, 10612, 121057, 4719, 4710, 4712, 4718, 17714, 15086, 374177], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/pnaw9vyv2o4rlrq.optimized.thumb.jpeg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/305x172/pnaw9vyv2o4rlrq.optimized.thumb.jpeg\", \"id\": 37302, \"featuredAt\": null, \"orientation\": \"horizontal\", \"coverId\": 10649, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/40x40/pnaw9vyv2o4rlrq.optimized.thumb.jpeg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/pnaw9vyv2o4rlrq.optimized.thumb.jpeg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/20x20/pnaw9vyv2o4rlrq.optimized.thumb.jpeg\", \"name\": \"The History of Art in 8 Hours: Early Renaissance\", \"categoryIds\": [75, 74], \"userId\": 8268, \"description\": \"Meural brings you a playlist from our curated installation at the 2018 [SXSW Art Program](https://www.sxsw.com/news/2018/start-your-sxsw-art-experience-with-meurals-the-history-of-art-in-8-hours/) in Austin, Texas.\\n\\n\\\"The History of Art in 8 Hours\\\" takes viewers on a visual journey from the Renaissance, moving chronologically through the Western canon, with interludes into Asia, South America, and beyond.\\n\\nEnjoy the Early Renaissance, beginning with works created in the late 1300s and ending in the end of the 15th century. \\n\\nThis playlist is also available in [vertical](https://my.meural.com/playlist/37301).\"}, {\"username\": \"kelvin\", \"isSampler\": false, \"slug\": \"impasto\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/610x344/p4rpk8otgu6ggyp.optimized.thumb.jpg\", \"categoryNames\": [\"Recently Added\", \"Painting\"], \"itemIds\": [127819, 353483, 346079, 251950, 127818, 346196], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/1000x500/p4rpk8otgu6ggyp.optimized.thumb.jpg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/305x172/p4rpk8otgu6ggyp.optimized.thumb.jpg\", \"id\": 33502, \"featuredAt\": null, \"orientation\": \"horizontal\", \"coverId\": 127818, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/40x40/p4rpk8otgu6ggyp.optimized.thumb.jpg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/1000x500/p4rpk8otgu6ggyp.optimized.thumb.jpg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/20x20/p4rpk8otgu6ggyp.optimized.thumb.jpg\", \"name\": \"Impasto\", \"categoryIds\": [75, 86], \"userId\": 2214, \"description\": \"Impasto is a painting technique where the artist would layer paint or pigment in thick doses to achieve a \\\"painterly\\\" aesthetic. The brushstrokes gain depth and begin to protrude outward to give a three-dimensional appearance. The impasto technique has been prevalent since the Italian Renaissance era where it was used to amplify details in their paintings to represent folds on garments or wrinkles on skin. In modern times, the technique now is used in an array of proficiency showcased in our collection.\\n\\nThis playlist is available in [vertical](https://my.meural.com/playlist/33503).\"}, {\"username\": \"kelvin\", \"isSampler\": false, \"slug\": \"impasto\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/344x610/u8mjnu1yknkutsl.optimized.thumb.jpeg\", \"categoryNames\": [\"Fusion\", \"Recently Added\", \"Painting\"], \"itemIds\": [354793, 345666, 227762, 108926, 170952, 637, 354276, 157878], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/1000x500/u8mjnu1yknkutsl.optimized.thumb.jpeg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/172x305/u8mjnu1yknkutsl.optimized.thumb.jpeg\", \"id\": 33503, \"featuredAt\": null, \"orientation\": \"vertical\", \"coverId\": 108926, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/40x40/u8mjnu1yknkutsl.optimized.thumb.jpeg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/1000x500/u8mjnu1yknkutsl.optimized.thumb.jpeg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/2214/20x20/u8mjnu1yknkutsl.optimized.thumb.jpeg\", \"name\": \"Impasto\", \"categoryIds\": [59, 75, 86], \"userId\": 2214, \"description\": \"Impasto is a painting technique where the artist would layer paint or pigment in thick doses to achieve a \\\"painterly\\\" aesthetic. The brushstrokes gain depth and begin to protrude outward to give a three-dimensional appearance. The impasto technique has been prevalent since the Italian Renaissance era where it was used to amplify details in their paintings to represent folds on garments or wrinkles on skin. In modern times, the technique now is used in an array of proficiency showcased in our collection.\\n\\nThis playlist is available in [horizontal](https://my.meural.com/playlist/33502).\"}], \"isLast\": false, \"isPaginated\": true}"}],"_postman_id":"92d73613-7b28-f346-68e0-ad5dda505905"},{"name":"/channels/:id/artists","id":"fbd62181-9c92-e783-534f-0fb3ee743966","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/channels/:id/artists?page={{page}}&count={{count}}","description":"<p>Retrieve the artists that are members of this channel.</p>\n","urlObject":{"path":["channels",":id","artists"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[{"key":"page","value":"{{page}}"},{"key":"count","value":"{{count}}"}],"variable":[{"description":{"content":"<p>The channel's id</p>\n","type":"text/plain"},"type":"any","value":"{{channelId}}","key":"id"}]}},"response":[{"id":"9f830fe1-2074-1843-867d-0c8be9259f15","name":"/channels/:id/artists","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{API_ORIGIN}}{{VERSION}}/channels/:id/artists?page=1&count=10","host":["{{API_ORIGIN}}{{VERSION}}"],"path":["channels",":id","artists"],"query":[{"key":"page","value":"1"},{"key":"count","value":"10"}],"variable":[{"key":"id","value":"10","description":"The channel's id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"allow","key":"allow","value":"GET, HEAD, OPTIONS","description":""},{"name":"content-length","key":"content-length","value":"76","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:09:11 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"154","body":"{\"count\": 0, \"message\": \"\", \"data\": [], \"isLast\": true, \"isPaginated\": true}"}],"_postman_id":"fbd62181-9c92-e783-534f-0fb3ee743966"},{"name":"/channels/:id/items","id":"da0b3974-b41c-b776-b097-a9ec36888181","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/channels/:id/items?page={{page}}&count={{count}}&sort={{sortParameter}}","description":"<p>Retrieve the items that are memebers of this channel.</p>\n","urlObject":{"path":["channels",":id","items"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[{"key":"page","value":"{{page}}"},{"key":"count","value":"{{count}}"},{"key":"sort","value":"{{sortParameter}}"}],"variable":[{"description":{"content":"<p>The channel's id</p>\n","type":"text/plain"},"type":"any","value":"{{channelId}}","key":"id"}]}},"response":[{"id":"0564d866-9623-6c7f-2879-a2bae636b6b4","name":"/channels/:id/items","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{API_ORIGIN}}{{VERSION}}/channels/:id/items?page=1&count=10&sort=date_added__dsc","host":["{{API_ORIGIN}}{{VERSION}}"],"path":["channels",":id","items"],"query":[{"key":"page","value":"1"},{"key":"count","value":"10"},{"key":"sort","value":"date_added__dsc"}],"variable":[{"key":"id","value":"10","description":"The artist's id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"allow","key":"allow","value":"GET, HEAD, OPTIONS","description":""},{"name":"content-encoding","key":"content-encoding","value":"gzip","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:09:18 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"325","body":"{\"count\": 142, \"message\": \"\", \"data\": [{\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/GYMA4JZrGmBv1Lq1tZ6hI6t2LrgCQdr6.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/2kKHgvKwMaalf7FBGQl4imUdoJGL1jdV.jpeg\", \"year\": null, \"userId\": 2224, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 2000, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/40x40/2kKHgvKwMaalf7FBGQl4imUdoJGL1jdV.jpeg\", \"id\": 218719, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": \"Roberlan Borges\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/2kKHgvKwMaalf7FBGQl4imUdoJGL1jdV.jpeg\", \"categoryIds\": [], \"croppedWidth\": 1690, \"type\": \"image\", \"isSampler\": false, \"medium\": null, \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/2kKHgvKwMaalf7FBGQl4imUdoJGL1jdV.jpeg\", \"description\": \"From Creative Action Network's ['Recovering the Classics' campaign](https://creativeaction.network/collections/recovering-the-classics).\", \"name\": \"Oliver Twist\", \"isPublic\": true, \"croppedX1\": 155, \"slug\": \"oliver-twist\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/20x20/2kKHgvKwMaalf7FBGQl4imUdoJGL1jdV.jpeg\", \"categoryNames\": [], \"croppedHeight\": 3000, \"originalHeight\": 3000, \"artistName\": null, \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/smfH0tkhsyv8xtoWr2cPqLHLyzOQB89y.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/aeBJpwKk8b5TJo8BBLjLN4dqoGqOY1zo.jpeg\", \"year\": null, \"userId\": 2224, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 2000, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/40x40/aeBJpwKk8b5TJo8BBLjLN4dqoGqOY1zo.jpeg\", \"id\": 218720, \"croppedY1\": 294, \"dimensions\": null, \"copyright\": null, \"author\": \"Roberlan Borges\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/aeBJpwKk8b5TJo8BBLjLN4dqoGqOY1zo.jpeg\", \"categoryIds\": [], \"croppedWidth\": 1246, \"type\": \"image\", \"isSampler\": false, \"medium\": null, \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/aeBJpwKk8b5TJo8BBLjLN4dqoGqOY1zo.jpeg\", \"description\": \"From Creative Action Network's ['See America' campaign](https://creativeaction.network/collections/see-america).\", \"name\": \"National Park of American Samoa\", \"isPublic\": true, \"croppedX1\": 87, \"slug\": \"national-park-of-american-samoa\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/20x20/aeBJpwKk8b5TJo8BBLjLN4dqoGqOY1zo.jpeg\", \"categoryNames\": [], \"croppedHeight\": 2216, \"originalHeight\": 2667, \"artistName\": null, \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/mNyiB0YU2JBCSDDSOEkZLBzQ1rbZWU9b.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/bQof6LK9RjKWYrTotCbwNI6MISLKURlG.jpeg\", \"year\": null, \"userId\": 2224, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 2000, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/40x40/bQof6LK9RjKWYrTotCbwNI6MISLKURlG.jpeg\", \"id\": 218721, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": \"Roberlan Borges\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/bQof6LK9RjKWYrTotCbwNI6MISLKURlG.jpeg\", \"categoryIds\": [], \"croppedWidth\": 1689, \"type\": \"image\", \"isSampler\": false, \"medium\": null, \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/bQof6LK9RjKWYrTotCbwNI6MISLKURlG.jpeg\", \"description\": \"From Creative Action Network's ['Recovering the Classics' campaign](https://creativeaction.network/collections/recovering-the-classics).\", \"name\": \"Picture of Dorian Gray\", \"isPublic\": true, \"croppedX1\": 146, \"slug\": \"picture-of-dorian-gray\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/20x20/bQof6LK9RjKWYrTotCbwNI6MISLKURlG.jpeg\", \"categoryNames\": [], \"croppedHeight\": 3000, \"originalHeight\": 3000, \"artistName\": null, \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/9su6VdxwDdgZL0C8GXqGXbYBN9l5HYSc.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/rywwa8joUzsq2GhknVVdrMRBSdBo32Ai.jpeg\", \"year\": null, \"userId\": 2224, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 2000, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/40x40/rywwa8joUzsq2GhknVVdrMRBSdBo32Ai.jpeg\", \"id\": 218722, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": \"Roberlan Borges\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/rywwa8joUzsq2GhknVVdrMRBSdBo32Ai.jpeg\", \"categoryIds\": [], \"croppedWidth\": 1689, \"type\": \"image\", \"isSampler\": false, \"medium\": null, \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/rywwa8joUzsq2GhknVVdrMRBSdBo32Ai.jpeg\", \"description\": \"From Creative Action Network's ['Recovering the Classics' campaign](https://creativeaction.network/collections/recovering-the-classics).\", \"name\": \"The Adventures of Sherlock Holmes\", \"isPublic\": true, \"croppedX1\": 165, \"slug\": \"the-adventures-of-sherlock-holmes\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/20x20/rywwa8joUzsq2GhknVVdrMRBSdBo32Ai.jpeg\", \"categoryNames\": [], \"croppedHeight\": 3000, \"originalHeight\": 3000, \"artistName\": null, \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/6sEfqlizydLwIFhcg5zqk6CBtAjKW3AB.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/wovnau7ccOUzHGYgidfOQHPrFu1ywhop.jpeg\", \"year\": null, \"userId\": 2224, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 2000, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/40x40/wovnau7ccOUzHGYgidfOQHPrFu1ywhop.jpeg\", \"id\": 218723, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": \"Roberlan Borges\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/wovnau7ccOUzHGYgidfOQHPrFu1ywhop.jpeg\", \"categoryIds\": [], \"croppedWidth\": 1690, \"type\": \"image\", \"isSampler\": false, \"medium\": null, \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/wovnau7ccOUzHGYgidfOQHPrFu1ywhop.jpeg\", \"description\": \"From Creative Action Network's ['Recovering the Classics' campaign](https://creativeaction.network/collections/recovering-the-classics).\", \"name\": \"A Room with a View\", \"isPublic\": true, \"croppedX1\": 155, \"slug\": \"a-room-with-a-view\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/20x20/wovnau7ccOUzHGYgidfOQHPrFu1ywhop.jpeg\", \"categoryNames\": [], \"croppedHeight\": 3000, \"originalHeight\": 3000, \"artistName\": null, \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/QH0s0JqAbVzqY8nIb48zOUJYD40FTrnU.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/rHQCGVLt3weziNdaodDeRmBLEmoXwpEG.jpeg\", \"year\": null, \"userId\": 2224, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 2000, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/40x40/rHQCGVLt3weziNdaodDeRmBLEmoXwpEG.jpeg\", \"id\": 218724, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": \"Roberlan Borges\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/rHQCGVLt3weziNdaodDeRmBLEmoXwpEG.jpeg\", \"categoryIds\": [], \"croppedWidth\": 1689, \"type\": \"image\", \"isSampler\": false, \"medium\": null, \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/rHQCGVLt3weziNdaodDeRmBLEmoXwpEG.jpeg\", \"description\": \"From Creative Action Network's ['Recovering the Classics' campaign](https://creativeaction.network/collections/recovering-the-classics).\", \"name\": \"A Tale of Two Cities\", \"isPublic\": true, \"croppedX1\": 151, \"slug\": \"a-tale-of-two-cities\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/20x20/rHQCGVLt3weziNdaodDeRmBLEmoXwpEG.jpeg\", \"categoryNames\": [], \"croppedHeight\": 3000, \"originalHeight\": 3000, \"artistName\": null, \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/JH9U2unTvv73CkgGIVeZwkQtXYMiB105.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/aDrxEGXcQhhRB11tICuEJyyeM3WRBRIB.jpeg\", \"year\": null, \"userId\": 2224, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 2000, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/40x40/aDrxEGXcQhhRB11tICuEJyyeM3WRBRIB.jpeg\", \"id\": 218726, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": \"Roberlan Borges\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/aDrxEGXcQhhRB11tICuEJyyeM3WRBRIB.jpeg\", \"categoryIds\": [], \"croppedWidth\": 1690, \"type\": \"image\", \"isSampler\": false, \"medium\": null, \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/aDrxEGXcQhhRB11tICuEJyyeM3WRBRIB.jpeg\", \"description\": \"From Creative Action Network's ['Recovering the Classics' campaign](https://creativeaction.network/collections/recovering-the-classics).\", \"name\": \"Peter Pan\", \"isPublic\": true, \"croppedX1\": 155, \"slug\": \"peter-pan\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/20x20/aDrxEGXcQhhRB11tICuEJyyeM3WRBRIB.jpeg\", \"categoryNames\": [], \"croppedHeight\": 3000, \"originalHeight\": 3000, \"artistName\": null, \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/caM8OnGDzosIRpYzACuuLsaeRJDVvaNk.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/5KrTVrvxGD1iNB47AA6zpztuWjMSPR90.jpeg\", \"year\": null, \"userId\": 2224, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 2000, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/40x40/5KrTVrvxGD1iNB47AA6zpztuWjMSPR90.jpeg\", \"id\": 218727, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": \"Roberlan Borges\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/5KrTVrvxGD1iNB47AA6zpztuWjMSPR90.jpeg\", \"categoryIds\": [], \"croppedWidth\": 1689, \"type\": \"image\", \"isSampler\": false, \"medium\": null, \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/5KrTVrvxGD1iNB47AA6zpztuWjMSPR90.jpeg\", \"description\": \"From Creative Action Network's ['Recovering the Classics' campaign](https://creativeaction.network/collections/recovering-the-classics).\", \"name\": \"Little Women\", \"isPublic\": true, \"croppedX1\": 151, \"slug\": \"little-women\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/20x20/5KrTVrvxGD1iNB47AA6zpztuWjMSPR90.jpeg\", \"categoryNames\": [], \"croppedHeight\": 3000, \"originalHeight\": 3000, \"artistName\": null, \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/xPbP6N2xu5d2zEfAaLqt6JVzniprcPIL.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/xPbP6N2xu5d2zEfAaLqt6JVzniprcPIL.jpeg\", \"year\": null, \"userId\": 2224, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 1080, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/40x40/xPbP6N2xu5d2zEfAaLqt6JVzniprcPIL.jpeg\", \"id\": 246688, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": \"Alyssa Winans\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/xPbP6N2xu5d2zEfAaLqt6JVzniprcPIL.jpeg\", \"categoryIds\": [], \"croppedWidth\": 0, \"type\": \"image\", \"isSampler\": false, \"medium\": null, \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/xPbP6N2xu5d2zEfAaLqt6JVzniprcPIL.jpeg\", \"description\": \"From Creative Action Network's [Vote the Environment Campaign](https://creativeaction.network/collections/vote-the-environment).\", \"name\": \"Vote the Environment\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"vote-the-environment\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/20x20/xPbP6N2xu5d2zEfAaLqt6JVzniprcPIL.jpeg\", \"categoryNames\": [], \"croppedHeight\": 0, \"originalHeight\": 1920, \"artistName\": null, \"isDetailed\": false}, {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/QRX6RqwKHmN6HFLB8xHI4vmvxLsyXfaa.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/QRX6RqwKHmN6HFLB8xHI4vmvxLsyXfaa.jpeg\", \"year\": null, \"userId\": 2224, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 1080, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/40x40/QRX6RqwKHmN6HFLB8xHI4vmvxLsyXfaa.jpeg\", \"id\": 246689, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": \"Alyssa Winans\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/QRX6RqwKHmN6HFLB8xHI4vmvxLsyXfaa.jpeg\", \"categoryIds\": [], \"croppedWidth\": 0, \"type\": \"image\", \"isSampler\": false, \"medium\": null, \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/QRX6RqwKHmN6HFLB8xHI4vmvxLsyXfaa.jpeg\", \"description\": \"From Creative Action Network's [Vote Libraries Campaign](https://creativeaction.network/collections/vote-libraries).\", \"name\": \"Vote Libraries\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"vote-libraries\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/20x20/QRX6RqwKHmN6HFLB8xHI4vmvxLsyXfaa.jpeg\", \"categoryNames\": [], \"croppedHeight\": 0, \"originalHeight\": 1920, \"artistName\": null, \"isDetailed\": false}], \"isLast\": false, \"isPaginated\": true}"}],"_postman_id":"da0b3974-b41c-b776-b097-a9ec36888181"},{"name":"/channels/:id/articles","id":"466d4834-580f-4805-92a9-a52691e44898","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/channels/:id/items?page={{page}}&count={{count}}&sort={{sortParameter}}","description":"<p>Retrieve the items that are memebers of this channel.</p>\n","urlObject":{"path":["channels",":id","items"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[{"key":"page","value":"{{page}}"},{"key":"count","value":"{{count}}"},{"key":"sort","value":"{{sortParameter}}"}],"variable":[{"description":{"content":"<p>The channel's id</p>\n","type":"text/plain"},"type":"any","value":"{{channelId}}","key":"id"}]}},"response":[{"id":"92f00915-dd1a-41a3-8df2-6f10487f2666","name":"/channels/:id/articles","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{API_ORIGIN}}{{VERSION}}/channels/:id/articles?page={{page}}&count={{count}}","host":["{{API_ORIGIN}}{{VERSION}}"],"path":["channels",":id","articles"],"query":[{"key":"page","value":"{{page}}"},{"key":"count","value":"{{count}}"}],"variable":[{"key":"id","value":"{{channelId}}","description":"The channel's id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"count\": 1,\n    \"message\": \"\",\n    \"data\": [\n        {\n            \"name\": \"Stieglitz and O'Keeffe: A Love Story\",\n            \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/1000x500/dyy6gii7f86mh0m.optimized.thumb.jpeg\",\n            \"publishedAt\": \"2017-04-07T19:02:13.312371+00:00\",\n            \"body\": [\n                {\n                    \"type\": \"paragraph\",\n                    \"content\": {\n                        \"text\": \"When [Alfred Stieglitz](https://my.meural.com/browse/artists/268) and [Georgia O'Keeffe](https://my.meural.com/browse/artists/265) met in 1916, he was in his 50s—an internationally acclaimed photographer as well as a gallerist and dealer, while she was an unknown 28-year-old schoolteacher from Texas. They had been corresponding for a year, after Stieglitz had exhibited some of O'Keeffe's paintings in his influential gallery, 291. On meeting, their relationship developed quickly—Stieglitz left his wife and the couple married in 1924. Theirs was a passionate, unconventional and tumultuous marriage—one that saw O'Keeffe's emergence as America's leading Modernist painter, weathered infidelity and survived long periods of living apart. Throughout their relationship, the couple continued to correspond, and their combined letters, between 1915 and 1946, make up 25,000 sheets of paper.\"\n                    }\n                },\n                {\n                    \"type\": \"item\",\n                    \"content\": {\n                        \"caption\": \"Look at this beautiful item\",\n                        \"item\": {\n                            \"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\",\n                            \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\",\n                            \"year\": null,\n                            \"userId\": 8429,\n                            \"artistId\": null,\n                            \"sortedOrder\": null,\n                            \"originalWidth\": 2560,\n                            \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/40x40/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\",\n                            \"id\": 398483,\n                            \"croppedY1\": 0,\n                            \"dimensions\": null,\n                            \"copyright\": null,\n                            \"author\": null,\n                            \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\",\n                            \"categoryIds\": [],\n                            \"croppedWidth\": 0,\n                            \"type\": \"image\",\n                            \"isSampler\": false,\n                            \"medium\": null,\n                            \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\",\n                            \"description\": null,\n                            \"name\": \"Earth\",\n                            \"isPublic\": false,\n                            \"croppedX1\": 0,\n                            \"slug\": \"earth\",\n                            \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/20x20/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\",\n                            \"categoryNames\": [],\n                            \"croppedHeight\": 0,\n                            \"originalHeight\": 1600,\n                            \"artistName\": null,\n                            \"isDetailed\": false\n                        }\n                    }\n                },\n                {\n                    \"type\": \"image\",\n                    \"content\": {\n                        \"caption\": \"Interesting pose from the artist\",\n                        \"url\": \"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/O%27Keeffe-%28hands%29.jpg/1280px-O%27Keeffe-%28hands%29.jpg\",\n                        \"name\": \"Okeeffe by Steiglitz\",\n                        \"highres\": \"\"\n                    }\n                },\n                {\n                    \"type\": \"video\",\n                    \"content\": {\n                        \"caption\": \"a video\",\n                        \"url\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.mp4\",\n                        \"name\": \"Okeeffe video\",\n                        \"duration\": \"445\",\n                        \"thumbnailUrl\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\"\n                    }\n                },\n                {\n                    \"type\": \"audio\",\n                    \"content\": {\n                        \"url\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.wav\",\n                        \"duration\": \"783\",\n                        \"name\": \"An interview with Georgia Okeeffe\"\n                    }\n                }\n            ],\n            \"object\": {\n             \"id\": 6,\n\"order\": 0,\n\"name\": \"stillreel\",\n\"description\": \"\",\n\"logo\": \"https://d3qmok6r0qa65b.cloudfront.net/media/1645/c20wh9e1ubq8p66.png\",\n\"avatar\": {\n\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/yqPkhX4EDOXick7rMoDtvv9INSNsrXmY.jpeg\",\n\"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/yqPkhX4EDOXick7rMoDtvv9INSNsrXmY.jpeg\",\n\"year\": null,\n\"userId\": 2224,\n\"artistId\": null,\n\"sortedOrder\": null,\n\"originalWidth\": 2400,\n\"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/40x40/yqPkhX4EDOXick7rMoDtvv9INSNsrXmY.jpeg\",\n\"id\": 190044,\n\"croppedY1\": 0,\n\"dimensions\": null,\n\"copyright\": null,\n\"author\": \"Richard Dana\",\n\"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/yqPkhX4EDOXick7rMoDtvv9INSNsrXmY.jpeg\",\n\"categoryIds\": [],\n\"croppedWidth\": 0,\n\"type\": \"image\",\n\"isSampler\": false,\n\"medium\": null,\n\"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/yqPkhX4EDOXick7rMoDtvv9INSNsrXmY.jpeg\",\n\"description\": null,\n\"name\": \"Gem Melt #2\",\n\"isPublic\": true,\n\"croppedX1\": 0,\n\"slug\": \"gem-melt-2\",\n\"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/20x20/yqPkhX4EDOXick7rMoDtvv9INSNsrXmY.jpeg\",\n\"categoryNames\": [],\n\"croppedHeight\": 0,\n\"originalHeight\": 1350,\n\"artistName\": null,\n\"isDetailed\": false\n},\n\"hero\": {\n\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1UMkbPTiUTMMvb71pGyfqUZoXTQEzL65.jpeg\",\n\"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1UMkbPTiUTMMvb71pGyfqUZoXTQEzL65.jpeg\",\n\"year\": null,\n\"userId\": 2224,\n\"artistId\": null,\n\"sortedOrder\": null,\n\"originalWidth\": 2880,\n\"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/40x40/1UMkbPTiUTMMvb71pGyfqUZoXTQEzL65.jpeg\",\n\"id\": 173914,\n\"croppedY1\": 0,\n\"dimensions\": null,\n\"copyright\": null,\n\"author\": \"Stefan Saalfeld\",\n\"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/1UMkbPTiUTMMvb71pGyfqUZoXTQEzL65.jpeg\",\n\"categoryIds\": [\n70\n],\n\"croppedWidth\": 0,\n\"type\": \"image\",\n\"isSampler\": false,\n\"medium\": null,\n\"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/1UMkbPTiUTMMvb71pGyfqUZoXTQEzL65.jpeg\",\n\"description\": \"\\\"[Stefan Saalfeld’s](http://www.stefansaalfeld.de/about.html) works are inspired by classical painting and the possibilities of digital technology. Similar works are split into their component parts, and taken into pieces to be reassembled as multilayered models. This process lays bare contour and form and dissolves structure and context, only to ultimately allow these elements to reform in new combinations.\\\" [Still Reel](https://my.meural.com/browse/partners/2229/stillreel)\",\n\"name\": \"Abstract 411\",\n\"isPublic\": true,\n\"croppedX1\": 0,\n\"slug\": \"abstract-411\",\n\"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/20x20/1UMkbPTiUTMMvb71pGyfqUZoXTQEzL65.jpeg\",\n\"categoryNames\": [\n\"Contemporary\"\n],\n\"croppedHeight\": 0,\n\"originalHeight\": 1620,\n\"artistName\": null,\n\"isDetailed\": false\n},\n\"featuredAt\": null,\n\"itemCount\": 20\n            },\n            \"type\": \"channel\",\n            \"categoryIds\": [\n                65,\n                37\n            ],\n            \"categoryNames\": [\n                \"Modernism\",\n                \"Conceptual\"\n            ],\n            \"artistIds\": [\n                268,\n                265\n            ],\n            \"artistNames\": [\n                \"Alfred Stieglitz\",\n                \"Georgia O'Keeffe\"\n            ],\n            \"author\": {\n                \"id\": 1,\n                \"name\": \"Poppy Simpson\"\n            }\n        }\n    ],\n    \"isLast\": true,\n    \"isPaginated\": true\n}"}],"_postman_id":"466d4834-580f-4805-92a9-a52691e44898"}],"id":"4b795269-af8c-df7f-b6ae-d4e46d57c886","description":"<p>Channels are used to surface content from Meural's collection and to arrange content around ideas, sources, or other curatoral topics of interest. They are like categories in that they also have galleries, artists, and items. However, they are not part of Meural's content hierarchy.</p>\n","_postman_id":"4b795269-af8c-df7f-b6ae-d4e46d57c886"},{"name":"Groups","item":[{"name":"/groups","id":"2a11a3a0-b358-fe99-4524-af677e2abd88","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/groups","description":"<p>Retrieve groups.</p>\n","urlObject":{"path":["groups"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[]}},"response":[{"id":"9483b0e7-488b-22b1-082f-05952234b571","name":"/groups","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/groups"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"allow","key":"allow","value":"GET, POST, HEAD, OPTIONS","description":""},{"name":"content-length","key":"content-length","value":"190","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:09:27 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"156","body":"{\"count\": 3, \"message\": \"\", \"data\": [{\"id\": 2, \"name\": \"Movement, Period, Style\"}, {\"id\": 4, \"name\": \"Types\"}, {\"id\": 5, \"name\": \"Subject and Content\"}], \"isLast\": true, \"isPaginated\": true}"}],"_postman_id":"2a11a3a0-b358-fe99-4524-af677e2abd88"},{"name":"/groups/:id","id":"35b28e58-f1a1-dbe9-ed83-c04eaed7fdaa","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/groups/:id","description":"<p>Retrieve a specific group.</p>\n","urlObject":{"path":["groups",":id"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[{"type":"any","value":"{{groupId}}","key":"id"}]}},"response":[{"id":"ad8918af-719a-b5fb-87d1-2ca73a87bdb2","name":"/groups/:id","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{API_ORIGIN}}{{VERSION}}/groups/:id","host":["{{API_ORIGIN}}{{VERSION}}"],"path":["groups",":id"],"variable":[{"key":"id","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"allow","key":"allow","value":"GET, PUT, PATCH, DELETE, HEAD, OPTIONS","description":""},{"name":"content-length","key":"content-length","value":"122","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:09:32 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"165","body":"{\"count\": null, \"message\": \"\", \"data\": {\"id\": 2, \"name\": \"Movement, Period, Style\"}, \"isLast\": null, \"isPaginated\": false}"}],"_postman_id":"35b28e58-f1a1-dbe9-ed83-c04eaed7fdaa"},{"name":"/groups/:id/categories","id":"a2669390-691c-a872-e5ab-0a6ee4ed1227","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/groups/:id/categories","description":"<p>Retrieve a specific group's categories.</p>\n","urlObject":{"path":["groups",":id","categories"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[{"type":"any","value":"{{groupId}}","key":"id"}]}},"response":[{"id":"0f755490-cfba-9d3f-a322-b56fbaf70478","name":"/groups/:id/categories","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{API_ORIGIN}}{{VERSION}}/groups/:id/categories","host":["{{API_ORIGIN}}{{VERSION}}"],"path":["groups",":id","categories"],"variable":[{"key":"id","value":"2"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"allow","key":"allow","value":"GET, HEAD, OPTIONS","description":""},{"name":"content-encoding","key":"content-encoding","value":"gzip","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:09:37 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"323","body":"{\"count\": 7, \"message\": \"\", \"data\": [{\"id\": 27, \"order\": 0, \"name\": \"Abstract\", \"description\": \"\", \"avatar\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/p3qfb0tc0c2leyy.thumb.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/y6395f6vlh6p580.optimized.thumb.jpeg\", \"year\": \"1926\", \"userId\": 2224, \"artistId\": 203, \"sortedOrder\": null, \"originalWidth\": 1964, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/40x40/y6395f6vlh6p580.optimized.thumb.jpeg\", \"id\": 109253, \"croppedY1\": 0, \"dimensions\": \"140.3 x 140.7 cm\", \"copyright\": null, \"author\": \"Wassily Kandinsky\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/1000x500/y6395f6vlh6p580.optimized.thumb.jpeg\", \"categoryIds\": [27, 12, 65], \"croppedWidth\": 1125, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil on canvas\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/1000x500/y6395f6vlh6p580.optimized.thumb.jpeg\", \"description\": \"Kandinsky painted this work in his sixtieth year and it demonstrates his lifelong search for the ideal form of spiritual expression in art. Created as part of his experimentation with a linear style of painting, this work shows his interest in the form of the circle. \\\"The circle,\\\" claimed Kandinsky, \\\"is the synthesis of the greatest oppositions. It combines the concentric and the eccentric in a single form and in equilibrium. Of the three primary forms, it points most clearly to the fourth dimension.\\\" The diverse dimensions and bright hues of each circle bubble up through the canvas and are balanced through Kandinsky's careful juxtapositions of proportion and color. The dynamic movement of the round forms evokes their universality - from the stars in the cosmos to drops of dew; the circle a shape integral to life. [The Art Story-Kandinsky](http://www.theartstory.org/artist-kandinsky-wassily.htm)\", \"name\": \"Several Circles\", \"isPublic\": true, \"croppedX1\": 144, \"slug\": \"several-circles\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/20x20/y6395f6vlh6p580.optimized.thumb.jpeg\", \"categoryNames\": [\"Abstract\", \"Modernism\", \"Modernism\"], \"croppedHeight\": 2000, \"originalHeight\": 2000, \"artistName\": \"Wassily Kandinsky\", \"isDetailed\": false}, \"hero\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/fi1wcqrl3wfftc3.thumb.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/a0p903kfrubomlc.optimized.thumb.jpeg\", \"year\": \"1922\", \"userId\": 254, \"artistId\": 267, \"sortedOrder\": null, \"originalWidth\": 1906, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/40x40/a0p903kfrubomlc.optimized.thumb.jpeg\", \"id\": 131937, \"croppedY1\": 42, \"dimensions\": null, \"copyright\": null, \"author\": \"Paul Klee\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/1000x500/a0p903kfrubomlc.optimized.thumb.jpeg\", \"categoryIds\": [27, 12, 65], \"croppedWidth\": 1618, \"type\": \"image\", \"isSampler\": false, \"medium\": null, \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/1000x500/a0p903kfrubomlc.optimized.thumb.jpeg\", \"description\": \"Klee \\u00a9 2016 Artists Rights Society (ARS), New York\", \"name\": \"Little Painting with Pine Tree\", \"isPublic\": true, \"croppedX1\": 137, \"slug\": \"little-painting-with-pine-tree\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/20x20/a0p903kfrubomlc.optimized.thumb.jpeg\", \"categoryNames\": [\"Abstract\", \"Modernism\", \"Modernism\"], \"croppedHeight\": 2875, \"originalHeight\": 3000, \"artistName\": \"Paul Klee\", \"isDetailed\": false}}, {\"id\": 62, \"order\": 1, \"name\": \"Baroque and Rococo\", \"description\": \"Baroque and Rococo artworks are characterized by their opulent use of decorative elements and flourishes to create a sense of grandeur. The Baroque period began at the end of the Renaissance, and elaborated on its classical motifs with an emphasis on dramatic lighting and composition. In the Rococo, which followed, the palette turned to lighter, softer colors to depict idyllic genre scenes, typically of court life or mythology.\", \"avatar\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/21svesqlinjojti.thumb.jpg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/uqzrqgf51j87v3e.optimized.thumb.jpg\", \"year\": \"c. 1738\", \"userId\": 2224, \"artistId\": 19, \"sortedOrder\": null, \"originalWidth\": 0, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/40x40/uqzrqgf51j87v3e.optimized.thumb.jpg\", \"id\": 17483, \"croppedY1\": 143, \"dimensions\": \"124.5 x 204.6 cm\", \"copyright\": null, \"author\": \"Canaletto\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/uqzrqgf51j87v3e.optimized.thumb.jpg\", \"categoryIds\": [36, 11, 62], \"croppedWidth\": 3000, \"type\": \"image\", \"isSampler\": true, \"medium\": \"Oil on canvas\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/uqzrqgf51j87v3e.optimized.thumb.jpg\", \"description\": null, \"name\": \"The Grand Canal in Venice with San Simeone Piccolo\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"the-grand-canal-in-venice-with-san-simeone-piccolo\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/20x20/uqzrqgf51j87v3e.optimized.thumb.jpg\", \"categoryNames\": [\"City\", \"Baroque and Rococo\", \"Baroque and Rococo\"], \"croppedHeight\": 1687, \"originalHeight\": 0, \"artistName\": \"Giovanni Canaletto\", \"isDetailed\": false}, \"hero\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/vai5a8j2knkhoxj.thumb.jpg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/4u5051eoyly6yyq.optimized.thumb.jpg\", \"year\": null, \"userId\": 2224, \"artistId\": null, \"sortedOrder\": null, \"originalWidth\": 3000, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/40x40/4u5051eoyly6yyq.optimized.thumb.jpg\", \"id\": 117291, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": \"Gabriel de Saint-Aubin\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/1000x500/4u5051eoyly6yyq.optimized.thumb.jpg\", \"categoryIds\": [11, 62], \"croppedWidth\": 2760, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Watercolor on paper\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/1000x500/4u5051eoyly6yyq.optimized.thumb.jpg\", \"description\": null, \"name\": \"Sketch for The Salon of 1765\", \"isPublic\": true, \"croppedX1\": 28, \"slug\": \"sketch-for-the-salon-of-1765\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/20x20/4u5051eoyly6yyq.optimized.thumb.jpg\", \"categoryNames\": [\"Baroque and Rococo\", \"Baroque and Rococo\"], \"croppedHeight\": 1553, \"originalHeight\": 1553, \"artistName\": null, \"isDetailed\": false}}, {\"id\": 74, \"order\": 2, \"name\": \"Renaissance\", \"description\": \"The Renaissance was a European intellectual movement that began around 1400 in Italy. The term \\u2018renaissance\\u2019 means \\u2018rebirth,\\u2019 in reference to the movement\\u2019s revival of classical Greco-Roman values of order and idealized realism. The patronage of the Catholic Church and wealthy Italian families drew a high concentration of artistic talent to Florence and Rome. This period saw artistic geniuses like Michelangelo, Donatello, and Titian take on monumental commissions that yielded many of the masterpieces of the Western Canon.\", \"avatar\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/g34fj25vi489jls.thumb.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/pnaw9vyv2o4rlrq.optimized.thumb.jpeg\", \"year\": \"1484\\u201386\", \"userId\": 2224, \"artistId\": 138, \"sortedOrder\": null, \"originalWidth\": 2435, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/40x40/pnaw9vyv2o4rlrq.optimized.thumb.jpeg\", \"id\": 10649, \"croppedY1\": 39, \"dimensions\": null, \"copyright\": null, \"author\": \"Sandro Botticelli\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/pnaw9vyv2o4rlrq.optimized.thumb.jpeg\", \"categoryIds\": [14, 32, 74], \"croppedWidth\": 2435, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Tempera on panel\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/pnaw9vyv2o4rlrq.optimized.thumb.jpeg\", \"description\": \"Uffizi Gallery, Florence, Italy\", \"name\": \"Birth of Venus\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"birth-of-venus\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/20x20/pnaw9vyv2o4rlrq.optimized.thumb.jpeg\", \"categoryNames\": [\"Renaissance\", \"Religion\", \"Renaissance\"], \"croppedHeight\": 1369, \"originalHeight\": 1560, \"artistName\": \"Sandro Botticelli\", \"isDetailed\": false}, \"hero\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/ce40arm0xbsaxem.thumb.jpg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/u40lx1an81ay6cj.optimized.thumb.jpg\", \"year\": \"1511\", \"userId\": 2224, \"artistId\": 140, \"sortedOrder\": null, \"originalWidth\": 2591, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/40x40/u40lx1an81ay6cj.optimized.thumb.jpg\", \"id\": 15086, \"croppedY1\": 71, \"dimensions\": null, \"copyright\": null, \"author\": \"Michelangelo Buonarroti\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/1000x500/u40lx1an81ay6cj.optimized.thumb.jpg\", \"categoryIds\": [14, 32, 74], \"croppedWidth\": 2591, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Fresco\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/1000x500/u40lx1an81ay6cj.optimized.thumb.jpg\", \"description\": \"From The Creation of Adam, from the Sistine Ceiling\", \"name\": \"Hands of God and Adam\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"hands-of-god-and-adam\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/20x20/u40lx1an81ay6cj.optimized.thumb.jpg\", \"categoryNames\": [\"Renaissance\", \"Religion\", \"Renaissance\"], \"croppedHeight\": 1457, \"originalHeight\": 2000, \"artistName\": \"Michelangelo Buonarroti\", \"isDetailed\": true}}, {\"id\": 148, \"order\": 2, \"name\": \"Impressionism\", \"description\": \"Impressionism can be considered the first distinctly modern movement in painting. Developing in Paris in the 1860s, its influence spread throughout Europe and eventually the United States. Its originators were artists who rejected the official, government-sanctioned exhibitions, or salons, and were consequently shunned by powerful academic art institutions. In turning away from the fine finish and detail to which most artists of their day aspired, the Impressionists aimed to capture the momentary, sensory effect of a scene - the impression objects made on the eye in a fleeting instant. To achieve this effect, many Impressionist artists moved from the studio to the streets and countryside, painting en plein air. (The Art Story)\", \"avatar\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/9u4zv956ccjf1hy.thumb.jpg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/oqcg24p66djrlj2.optimized.thumb.jpg\", \"year\": \"1914-26\", \"userId\": 2224, \"artistId\": 79, \"sortedOrder\": null, \"originalWidth\": 3000, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/40x40/oqcg24p66djrlj2.optimized.thumb.jpg\", \"id\": 9297, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": \"Claude Monet\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/1000x500/oqcg24p66djrlj2.optimized.thumb.jpg\", \"categoryIds\": [29, 72, 148], \"croppedWidth\": 2474, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil on canvas\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/1000x500/oqcg24p66djrlj2.optimized.thumb.jpg\", \"description\": \"When Monet moved to the village of Giverny in 1890, he set about remodeling the landscape surrounding his home, including a Japanese style water-lily pond. Indeed, Monet referred to his garden as his most \\\"beautiful masterpiece\\\". The pond and its lilies are the central subject of Monet\\u2019s monumental, almost abstract, late works. The artist said that he aimed, with his large-scale Water Lilies paintings, to create \\\"the illusion of an endless whole, of water without horizon or bank\\\" and to offer \\\"the refuge of a peaceful meditation in the center of a flowering aquarium\\\".\", \"name\": \"The Waterlilies: The Clouds (left section)\", \"isPublic\": true, \"croppedX1\": 478, \"slug\": \"the-waterlilies-the-clouds-left-section\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/20x20/oqcg24p66djrlj2.optimized.thumb.jpg\", \"categoryNames\": [\"Landscape\", \"Nineteenth Century\", \"Impressionism\"], \"croppedHeight\": 1391, \"originalHeight\": 1391, \"artistName\": \"Claude Monet\", \"isDetailed\": false}, \"hero\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/pxwok083g4fa191.thumb.jpg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/9jbc9y8571273jz.optimized.thumb.jpg\", \"year\": \"1863\", \"userId\": 2224, \"artistId\": 108, \"sortedOrder\": null, \"originalWidth\": 2569, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/40x40/9jbc9y8571273jz.optimized.thumb.jpg\", \"id\": 43877, \"croppedY1\": 518, \"dimensions\": null, \"copyright\": null, \"author\": \"\\u00c9douard Manet\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/1000x500/9jbc9y8571273jz.optimized.thumb.jpg\", \"categoryIds\": [24, 72, 148], \"croppedWidth\": 2569, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil on canvas\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/1000x500/9jbc9y8571273jz.optimized.thumb.jpg\", \"description\": \"As the most talked about main attraction of the The Salon des Refus\\u00e9s in 1863, it\\u2019s pretty evident why this painting shocked the bourgeois patrons in attendance as well as Emperor Napoleon III himself. Manet\\u2019s composition has Renaissance influence however, his complete disregard for perspective and use of unnatural light sources diminishes the core values of the Renaissance style. In fact, it was the inclusion of an unidealized female nude, casually engaging with two well dressed men, that was the cause of such public outrage. Her confrontational gaze engages the viewer on a sensual level, but through her Manet is confronting society as well, challenging what it considered appropriate ethical and artistic boundaries. [The Art Story-Manet](https://www.theartstory.org/artist-manet-edouard.htm)\", \"name\": \"Dejeuner sur l'Herbe\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"dejeuner-sur-lherbe\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/8/20x20/9jbc9y8571273jz.optimized.thumb.jpg\", \"categoryNames\": [\"Figurative\", \"Nineteenth Century\", \"Impressionism\"], \"croppedHeight\": 1444, \"originalHeight\": 2000, \"artistName\": \"\\u00c9douard Manet\", \"isDetailed\": false}}, {\"id\": 65, \"order\": 3, \"name\": \"Modernism\", \"description\": \"Modern Art represented a break with the past, and its conservative, Victorian ideals. \\r\\nThe spread of photography challenged painting and sculptures\\u2019 claim to realism, leading to increased abstraction and experimentation with form, color, and line. Modernists were interested in a more active interpretive experience for the viewer, due in part to the attention Freud\\u2019s Theory of the Subconscious called to the roles symbolism and individual perception play in constructing reality. Individualism and experimentation overtook idealised realism, paving the way for abstraction to flourish.\", \"avatar\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/adpvgzapszwqgke.thumb.jpg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/qy928fm8pgjok1s.optimized.thumb.jpg\", \"year\": null, \"userId\": 254, \"artistId\": 63, \"sortedOrder\": null, \"originalWidth\": 2000, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/40x40/qy928fm8pgjok1s.optimized.thumb.jpg\", \"id\": 24620, \"croppedY1\": 434, \"dimensions\": null, \"copyright\": null, \"author\": \"Hilma af Klint\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/1000x500/qy928fm8pgjok1s.optimized.thumb.jpg\", \"categoryIds\": [27, 12, 65], \"croppedWidth\": 2000, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Oil and tempura\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/1000x500/qy928fm8pgjok1s.optimized.thumb.jpg\", \"description\": null, \"name\": \"The Swan No. 17\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"the-swan-no-17\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/20x20/qy928fm8pgjok1s.optimized.thumb.jpg\", \"categoryNames\": [\"Abstract\", \"Modernism\", \"Modernism\"], \"croppedHeight\": 1125, \"originalHeight\": 1985, \"artistName\": \"Hilma af Klint\", \"isDetailed\": false}, \"hero\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/dlusyn1202dqd3k.thumb.jpg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/dlusyn1202dqd3k.thumb.jpg\", \"year\": \"1923\", \"userId\": 2224, \"artistId\": 203, \"sortedOrder\": null, \"originalWidth\": 1920, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/40x40/dlusyn1202dqd3k.thumb.jpg\", \"id\": 316, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": \"Wassily Kandinsky\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/dlusyn1202dqd3k.thumb.jpg\", \"categoryIds\": [27, 12, 65], \"croppedWidth\": 0, \"type\": \"image\", \"isSampler\": true, \"medium\": \"Oil on canvas\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/dlusyn1202dqd3k.thumb.jpg\", \"description\": \"The rational, geometric order of Composition VIII is a polar opposite of the operatic composition of Composition VII (1913). Painted while he taught at the Bauhaus, this work illustrates how Kandinsky synthesized elements from Suprematism, Constructivism, and the school's own ethos. By combining aspects of all three movements, he arrived at the flat planes of color and the clear, linear quality seen in this work. Form, as opposed to color, structured the painting in a dynamic balance that pulses throughout the canvas. This work is an expression of Kandinsky's clarified ideas about modern, non-objective art, particularly the significance of shapes like triangles, circles, and the checkerboard. Kandinsky relied upon a hard-edged style to communicate the deeper content of his work for the rest of his career. [The Art Story-Kandinsky](http://www.theartstory.org/artist-kandinsky-wassily.htm)\", \"name\": \"Composition 8\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"composition-8\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/20x20/dlusyn1202dqd3k.thumb.jpg\", \"categoryNames\": [\"Abstract\", \"Modernism\", \"Modernism\"], \"croppedHeight\": 0, \"originalHeight\": 1080, \"artistName\": \"Wassily Kandinsky\", \"isDetailed\": false}}, {\"id\": 70, \"order\": 4, \"name\": \"Contemporary\", \"description\": \"Contemporary Art is marked not by a dominant movement or \\u201c-ism,\\u201d but rather by the blossoming of countless trajectories of exploration occurring in the 21st century. This expansion has been driven forward by new mediums of expression such as video and virtual reality art, as well as by developing theories of identity and perception. Contemporary artists strive to respond to the political, social, and aesthetic conditions of living in an increasingly complex world.\", \"avatar\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/9/xdntsf7r56bqahp.thumb.jpg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/9/ugqxom95c7knylk.optimized.thumb.jpg\", \"year\": \"1997\", \"userId\": 2224, \"artistId\": 50, \"sortedOrder\": null, \"originalWidth\": 1080, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/9/40x40/ugqxom95c7knylk.optimized.thumb.jpg\", \"id\": 45734, \"croppedY1\": 3, \"dimensions\": null, \"copyright\": null, \"author\": \"Richard Parker\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/9/1000x500/ugqxom95c7knylk.optimized.thumb.jpg\", \"categoryIds\": [27, 10, 70], \"croppedWidth\": 1078, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Pastel on paper\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/9/1000x500/ugqxom95c7knylk.optimized.thumb.jpg\", \"description\": \"Pastels are both the subject and medium in artist Richard Parker\\u2019s \\u2018Pastel Sticks\\u2019 series. Parker began the series in the late 1990s, attracted by the sculptural quality and compositional possibilities of the colorful sticks. The series contains over 200 paintings and drawings. Says Parker: \\u201cVisual art is like music without lyrics, as it is more about feeling than words. My hope is that my work, whether it is of pastel sticks, a wall, landscape or light switch, will take viewers beyond worlds to a contemplative state within themselves.\\u201d\", \"name\": \"Pastel Sticks #20\", \"isPublic\": true, \"croppedX1\": 1, \"slug\": \"pastel-sticks-20\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/9/20x20/ugqxom95c7knylk.optimized.thumb.jpg\", \"categoryNames\": [\"Abstract\", \"Contemporary\", \"Contemporary\"], \"croppedHeight\": 1917, \"originalHeight\": 1920, \"artistName\": \"Richard Parker\", \"isDetailed\": true}, \"hero\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/6m9tfqfdlt55ndq.thumb.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/6m9tfqfdlt55ndq.thumb.jpeg\", \"year\": null, \"userId\": 254, \"artistId\": 305, \"sortedOrder\": null, \"originalWidth\": 3840, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/40x40/6m9tfqfdlt55ndq.thumb.jpeg\", \"id\": 115597, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": \"Nacho Frades\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/1000x500/6m9tfqfdlt55ndq.thumb.jpeg\", \"categoryIds\": [10, 70, 160], \"croppedWidth\": 0, \"type\": \"image\", \"isSampler\": false, \"medium\": null, \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/1000x500/6m9tfqfdlt55ndq.thumb.jpeg\", \"description\": null, \"name\": \"Bath with Galaxy\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"bath-with-galaxy\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/20x20/6m9tfqfdlt55ndq.thumb.jpeg\", \"categoryNames\": [\"Contemporary\", \"Contemporary\", \"Digital Art\"], \"croppedHeight\": 0, \"originalHeight\": 2160, \"artistName\": \"Nacho Frades\", \"isDetailed\": false}}, {\"id\": 23, \"order\": 22, \"name\": \"Pop\", \"description\": \"\", \"avatar\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/oz8j2lcioacehtq.thumb.jpeg\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/99jk3rgz8b774kc.optimized.thumb.jpeg\", \"year\": null, \"userId\": 2224, \"artistId\": 46, \"sortedOrder\": null, \"originalWidth\": 2228, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/40x40/99jk3rgz8b774kc.optimized.thumb.jpeg\", \"id\": 13745, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": \"Nikolina Kovalenko\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/99jk3rgz8b774kc.optimized.thumb.jpeg\", \"categoryIds\": [23, 10, 70, 86], \"croppedWidth\": 1535, \"type\": \"image\", \"isSampler\": false, \"medium\": null, \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/99jk3rgz8b774kc.optimized.thumb.jpeg\", \"description\": \"This work blinds us with dozens of too-sweet-to-be-true smiles and shiny, recognizable symbols. It is apotheosis of everything designed to make a first impression - a visual equivalent of sugar- something that appeals to everybody\\u2019s taste and what you\\u2019re easily hooked up on until you develop visual diabetes.\", \"name\": \"Miss America\", \"isPublic\": true, \"croppedX1\": 306, \"slug\": \"miss-america\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/20x20/99jk3rgz8b774kc.optimized.thumb.jpeg\", \"categoryNames\": [\"Pop\", \"Contemporary\", \"Contemporary\", \"Painting\"], \"croppedHeight\": 2732, \"originalHeight\": 2732, \"artistName\": \"Nikolina Kovalenko\", \"isDetailed\": false}, \"hero\": {\"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/hicbv5wyxwnpzms.thumb.png\", \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/3t9e4q9dtksndqh.optimized.thumb.png\", \"year\": null, \"userId\": 2224, \"artistId\": 44, \"sortedOrder\": null, \"originalWidth\": 2000, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/40x40/3t9e4q9dtksndqh.optimized.thumb.png\", \"id\": 16991, \"croppedY1\": 0, \"dimensions\": null, \"copyright\": null, \"author\": \"Damon Johnson\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/3t9e4q9dtksndqh.optimized.thumb.png\", \"categoryIds\": [23, 10, 70, 138], \"croppedWidth\": 1991, \"type\": \"image\", \"isSampler\": false, \"medium\": \"Mixed media\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/3t9e4q9dtksndqh.optimized.thumb.png\", \"description\": \"These explosions of color and imagery can be described as urban surrealism: a melting pot of style and art movements. His paintings draw influence from pop culture, comic book art, the streets, cartoons, tattoos and skateboard style graphics, as well as traditional and non-traditional art movements such as abstract and neo-expressionism, op-art, graffiti and surrealism. http://212arts.com/damon-johnson\", \"name\": \"Untitled\", \"isPublic\": true, \"croppedX1\": 0, \"slug\": \"untitled\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/20x20/3t9e4q9dtksndqh.optimized.thumb.png\", \"categoryNames\": [\"Pop\", \"Contemporary\", \"Contemporary\", \"Street Art\"], \"croppedHeight\": 1120, \"originalHeight\": 2006, \"artistName\": \"Damon Johnson\", \"isDetailed\": false}}], \"isLast\": true, \"isPaginated\": true}"}],"_postman_id":"a2669390-691c-a872-e5ab-0a6ee4ed1227"}],"id":"f217b85a-cb7a-fed5-df87-acdd660c862f","description":"<p>Groups are collections of categories.</p>\n","_postman_id":"f217b85a-cb7a-fed5-df87-acdd660c862f"},{"name":"Feed","item":[{"name":"/feed","id":"cd419b85-a1de-7092-f338-2c7d398122f7","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/feed?page={{page}}&count={{count}}","description":"<p>Retrieve the feed.</p>\n","urlObject":{"path":["feed"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[{"key":"page","value":"{{page}}"},{"key":"count","value":"{{count}}"}],"variable":[]}},"response":[{"id":"03090945-240e-6722-cd42-c89f2549a9d3","name":"/feed","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{API_ORIGIN}}{{VERSION}}/feed?page=1&count=10","host":["{{API_ORIGIN}}{{VERSION}}"],"path":["feed"],"query":[{"key":"page","value":"1"},{"key":"count","value":"10"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"name":"allow","key":"allow","value":"GET, HEAD, OPTIONS","description":""},{"name":"content-encoding","key":"content-encoding","value":"gzip","description":""},{"name":"content-type","key":"content-type","value":"application/json; charset=utf-8","description":""},{"name":"date","key":"date","value":"Tue, 13 Mar 2018 23:09:43 GMT","description":""},{"name":"server","key":"server","value":"nginx/1.13.9","description":""},{"name":"status","key":"status","value":"200","description":""},{"name":"x-frame-options","key":"x-frame-options","value":"SAMEORIGIN","description":""}],"cookie":[],"responseTime":"322","body":"{\"count\": 500, \"message\": \"\", \"data\": [{\"post\": {\"slug\": \"russell-lee\", \"death\": \"1986\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/1000x500/wkg15imkifc5mp6.optimized.thumb.jpg\", \"categoryNames\": [\"Photography\"], \"firstName\": \"Russell\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/1000x500/wkg15imkifc5mp6.optimized.thumb.jpg\", \"gender\": \"Male\", \"name\": \"Russell Lee\", \"avatar2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/800x800/wkg15imkifc5mp6.optimized.thumb.jpg\", \"featuredAt\": \"2018-03-08 20:39:12.018000+00:00\", \"avatar\": \"https://d3qmok6r0qa65b.cloudfront.net/media/257/400x400/wkg15imkifc5mp6.optimized.thumb.jpg\", \"birth\": \"1903\", \"lastName\": \"Lee\", \"id\": 8, \"nationality\": \"American\", \"categoryIds\": [73], \"description\": \"Renowned photographer for the Farm Security Administration (FSA) - implemented in 1935 as part of President Franklin D. Roosevelt's New Deal in an effort to alleviate American rural poverty. Photographs taken from NYPL Archives.\"}, \"postType\": \"artist\"}, {\"post\": {\"slug\": \"dorothea-lange\", \"death\": \"1965\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/wsukkc8x9oqpb7y.thumb.jpg\", \"categoryNames\": [\"Photography\"], \"firstName\": \"Dorothea\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/wsukkc8x9oqpb7y.thumb.jpg\", \"gender\": \"Female\", \"name\": \"Dorothea Lange\", \"avatar2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/800x800/xk3in6ulu7knfvw.thumb.jpg\", \"featuredAt\": \"2018-03-08 20:38:02.635000+00:00\", \"avatar\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/400x400/xk3in6ulu7knfvw.thumb.jpg\", \"birth\": \"1895\", \"lastName\": \"Lange\", \"id\": 7, \"nationality\": \"American\", \"categoryIds\": [73], \"description\": \"Between 1935 and 1939 Dorothea Lange worked for the Farm Security Administration (FSA), which was set up as part of the 'New Deal' to combat rural poverty. Lange's iconic pictures of migrant workers, displaced families and sharecroppers were distributed for free to US newspapers and publications and opened the eyes of many to the plight of the rural poor. Lange's style and approach also greatly influenced the development of documentary photography. From The New York Public Library: http://digitalcollections.nypl.org/\"}, \"postType\": \"artist\"}, {\"post\": {\"username\": \"meural\", \"isSampler\": false, \"slug\": \"canyons-of-the-world\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/610x344/uYfBnskm8bHmCE8iw5ib8BchMa0wzVq3.jpeg\", \"categoryNames\": [\"Photography\", \"Landscape\", \"Photography\", \"Recently Added\", \"Photograph\"], \"itemIds\": [374302, 374301, 374299, 374298, 374297, 374296, 374295], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/1000x500/uYfBnskm8bHmCE8iw5ib8BchMa0wzVq3.jpeg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/305x172/uYfBnskm8bHmCE8iw5ib8BchMa0wzVq3.jpeg\", \"id\": 35844, \"featuredAt\": \"2018-03-05 16:20:36.275492+00:00\", \"orientation\": \"horizontal\", \"coverId\": 374298, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/40x40/uYfBnskm8bHmCE8iw5ib8BchMa0wzVq3.jpeg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/1000x500/uYfBnskm8bHmCE8iw5ib8BchMa0wzVq3.jpeg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/20x20/uYfBnskm8bHmCE8iw5ib8BchMa0wzVq3.jpeg\", \"name\": \"Canyons of the World\", \"categoryIds\": [9, 29, 73, 75, 88], \"userId\": 2224, \"description\": \"Wander through the bends and grooves of this canyon-inspired playlist.\\r\\n\\r\\nAlso featured in [vertical](https://my.meural.com/playlist/35843).\"}, \"postType\": \"gallery\"}, {\"post\": {\"username\": \"meural\", \"isSampler\": false, \"slug\": \"canyons-of-the-world\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/344x610/yohjubL77rZS2G38ow5R8pnFk7pCtg1v.jpeg\", \"categoryNames\": [\"Photography\", \"Landscape\", \"Photography\", \"Recently Added\", \"Photograph\"], \"itemIds\": [374305, 374304, 374294, 374303, 374300], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/1000x500/yohjubL77rZS2G38ow5R8pnFk7pCtg1v.jpeg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/172x305/yohjubL77rZS2G38ow5R8pnFk7pCtg1v.jpeg\", \"id\": 35843, \"featuredAt\": \"2018-03-05 16:16:56.163074+00:00\", \"orientation\": \"vertical\", \"coverId\": 374303, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/40x40/yohjubL77rZS2G38ow5R8pnFk7pCtg1v.jpeg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/1000x500/yohjubL77rZS2G38ow5R8pnFk7pCtg1v.jpeg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d96409bf894217686ba124d7356686c9/20x20/yohjubL77rZS2G38ow5R8pnFk7pCtg1v.jpeg\", \"name\": \"Canyons of the World\", \"categoryIds\": [9, 29, 73, 75, 88], \"userId\": 2224, \"description\": \"Wander through the bends and grooves of this canyon-inspired playlist.\\r\\n\\r\\nAlso featured in [horizontal](https://my.meural.com/playlist/35844).\"}, \"postType\": \"gallery\"}, {\"post\": {\"username\": \"Meural\\u00a0\", \"isSampler\": false, \"slug\": \"meural-exclusive-lia\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/610x344/aMZHeZLRZW34nvbgoZWOSkyvMKGfpUV2.thumb.png\", \"categoryNames\": [\"Motion\", \"Recently Added\"], \"itemIds\": [398078], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/aMZHeZLRZW34nvbgoZWOSkyvMKGfpUV2.thumb.png\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/305x172/aMZHeZLRZW34nvbgoZWOSkyvMKGfpUV2.thumb.png\", \"id\": 36699, \"featuredAt\": \"2018-03-05 15:41:24.071409+00:00\", \"orientation\": \"horizontal\", \"coverId\": 398078, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/40x40/aMZHeZLRZW34nvbgoZWOSkyvMKGfpUV2.thumb.png\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/1000x500/aMZHeZLRZW34nvbgoZWOSkyvMKGfpUV2.thumb.png\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/c52f1bd66cc19d05628bd8bf27af3ad6/20x20/aMZHeZLRZW34nvbgoZWOSkyvMKGfpUV2.thumb.png\", \"name\": \"Meural Exclusive: LIA\", \"categoryIds\": [66, 75], \"userId\": 254, \"description\": \"A special Meural commissioned video piece by software and net artist, [LIA](https://my.meural.com/browse/artists/332/lia).\"}, \"postType\": \"gallery\"}, {\"post\": {\"username\": \"meural\", \"isSampler\": false, \"slug\": \"nineteenth-century-american-quilts\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/610x344/vZMaB1XmywCLQUaaBFIPvu78DPN11ukg.jpeg\", \"categoryNames\": [\"Nineteenth Century\"], \"itemIds\": [383993, 384003, 383998, 384002], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/1000x500/vZMaB1XmywCLQUaaBFIPvu78DPN11ukg.jpeg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/305x172/vZMaB1XmywCLQUaaBFIPvu78DPN11ukg.jpeg\", \"id\": 36489, \"featuredAt\": \"2018-03-05 15:35:29.756817+00:00\", \"orientation\": \"horizontal\", \"coverId\": 383993, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/40x40/vZMaB1XmywCLQUaaBFIPvu78DPN11ukg.jpeg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/1000x500/vZMaB1XmywCLQUaaBFIPvu78DPN11ukg.jpeg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/20x20/vZMaB1XmywCLQUaaBFIPvu78DPN11ukg.jpeg\", \"name\": \"Nineteenth-century American Quilts\", \"categoryIds\": [72], \"userId\": 2224, \"description\": \"Some choice highlights from the Metropolitan Museum\\u2019s superb collection of 151 American quilts and coverlets, most hailing from the nineteenth entry. Included in the selection is Adeline Harris Sears\\u2019 stunning \\u201cAutographs Quilt\\u201d, a wonderful trompe l\\u2019oeil tumbling block design which incorporates signatures from such luminaries as Jacob Grimm, Alexander von Humboldt, Charles Dickens, Ralph Waldo Emerson, and Abraham Lincoln (one of eight American presidents represented).\"}, \"postType\": \"gallery\"}, {\"post\": {\"username\": \"meural\", \"isSampler\": false, \"slug\": \"nineteenth-century-american-quilts\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/344x610/hJgyRu7jARdH3csSDGdusBPTUvy8RrWE.jpeg\", \"categoryNames\": [\"Nineteenth Century\"], \"itemIds\": [384001, 384000, 383999, 383997, 383996, 383995, 383994], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/1000x500/hJgyRu7jARdH3csSDGdusBPTUvy8RrWE.jpeg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/172x305/hJgyRu7jARdH3csSDGdusBPTUvy8RrWE.jpeg\", \"id\": 36490, \"featuredAt\": \"2018-03-05 15:34:40.513293+00:00\", \"orientation\": \"vertical\", \"coverId\": 383994, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/40x40/hJgyRu7jARdH3csSDGdusBPTUvy8RrWE.jpeg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/1000x500/hJgyRu7jARdH3csSDGdusBPTUvy8RrWE.jpeg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/20x20/hJgyRu7jARdH3csSDGdusBPTUvy8RrWE.jpeg\", \"name\": \"Nineteenth-century American Quilts\", \"categoryIds\": [72], \"userId\": 2224, \"description\": \"Some choice highlights from the Metropolitan Museum\\u2019s superb collection of 151 American quilts and coverlets, most hailing from the nineteenth century. Included in the selection is Adeline Harris Sears\\u2019 stunning \\u201cAutographs Quilt\\u201d, a wonderful trompe l\\u2019oeil tumbling block design which incorporates signatures from such luminaries as Jacob Grimm, Alexander von Humboldt, Charles Dickens, Ralph Waldo Emerson, and Abraham Lincoln (one of eight American presidents represented).\"}, \"postType\": \"gallery\"}, {\"post\": {\"username\": \"alessandrav\", \"isSampler\": false, \"slug\": \"christian-jacksons-fairy-tale-covers\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/344x610/UMNAePDVBxyRehO5Uyc3wbLSG8gcyVYA.jpeg\", \"categoryNames\": [\"Design and Illustration\"], \"itemIds\": [383363, 383367, 383358, 383364, 383365, 383362, 383360, 383361, 383359, 383357], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/1000x500/UMNAePDVBxyRehO5Uyc3wbLSG8gcyVYA.jpeg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/172x305/UMNAePDVBxyRehO5Uyc3wbLSG8gcyVYA.jpeg\", \"id\": 36410, \"featuredAt\": \"2018-03-02 16:47:32.100073+00:00\", \"orientation\": \"vertical\", \"coverId\": 383360, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/40x40/UMNAePDVBxyRehO5Uyc3wbLSG8gcyVYA.jpeg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/1000x500/UMNAePDVBxyRehO5Uyc3wbLSG8gcyVYA.jpeg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/20x20/UMNAePDVBxyRehO5Uyc3wbLSG8gcyVYA.jpeg\", \"name\": \"Christian Jackson: Fairy Tale Covers\", \"categoryIds\": [58], \"userId\": 4480, \"description\": \"Christian Jackson is an illustrator and designer who\\u2019s minimal stylings have been featured in a wide spectrum. From TV and films by 20th Century Fox, Lion\\u2019s Gate and ABC, to best selling books by Penguin Random House. With a commitment to creating clever art Christian draws inspiration from geometry, symbolism, and story telling, while operating within a simple code, \\u201cIf it\\u2019s not beautiful or useful, than it\\u2019s not worth it\\u201d. Christian currently lives in the burbs of Chicago with his muse, which is embodied by his family of six.\"}, \"postType\": \"gallery\"}, {\"post\": {\"slug\": \"christian-jackson\", \"death\": \"Present\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/1000x500/4HjWlPEtPjr53kk3sczVlhanyUbE5LiR.jpeg\", \"categoryNames\": [\"Design and Illustration\"], \"firstName\": \"Christian\", \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/1000x500/4HjWlPEtPjr53kk3sczVlhanyUbE5LiR.jpeg\", \"gender\": \"Male\", \"name\": \"Christian Jackson\", \"avatar2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/800x800/GLnSn2y8Mm4OXVCFRW91h9hp0N8sPk3G.jpeg\", \"featuredAt\": \"2018-03-02 16:46:10.301983+00:00\", \"avatar\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/400x400/GLnSn2y8Mm4OXVCFRW91h9hp0N8sPk3G.jpeg\", \"birth\": \"N/A\", \"lastName\": \"Jackson\", \"id\": 526, \"nationality\": \"American\", \"categoryIds\": [58], \"description\": \"Christian Jackson is an illustrator and designer who\\u2019s minimal stylings have been featured in a wide spectrum. From TV and films by 20th Century Fox, Lion\\u2019s Gate and ABC, to best selling books by Penguin Random House. With a commitment to creating clever art Christian draws inspiration from geometry, symbolism, and story telling, while operating within a simple code, \\u201cIf it\\u2019s not beautiful or useful, than it\\u2019s not worth it\\u201d. Christian currently lives in the burbs of Chicago with his muse, which is embodied by his family of six.\"}, \"postType\": \"artist\"}, {\"post\": {\"username\": \"meural\", \"isSampler\": false, \"slug\": \"shahnama\", \"cover2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/344x610/RHO3kpkBH5gkcuQn6H7Uujnbqkv41ikW.jpeg\", \"categoryNames\": [\"Design and Illustration\"], \"itemIds\": [330513, 330512, 330511, 330510, 330509, 330508, 330507, 330506, 330505, 330504, 330503, 330502, 330501, 330500], \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/1000x500/RHO3kpkBH5gkcuQn6H7Uujnbqkv41ikW.jpeg\", \"isPurchased\": false, \"isPublic\": true, \"cover\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/172x305/RHO3kpkBH5gkcuQn6H7Uujnbqkv41ikW.jpeg\", \"id\": 32071, \"featuredAt\": \"2018-03-01 21:24:50.930617+00:00\", \"orientation\": \"vertical\", \"coverId\": 330500, \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/40x40/RHO3kpkBH5gkcuQn6H7Uujnbqkv41ikW.jpeg\", \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/1000x500/RHO3kpkBH5gkcuQn6H7Uujnbqkv41ikW.jpeg\", \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/34f9a343f945196b66f807e0eb6249fd/20x20/RHO3kpkBH5gkcuQn6H7Uujnbqkv41ikW.jpeg\", \"name\": \"Shahnama\", \"categoryIds\": [58], \"userId\": 2224, \"description\": \"Consisting of more than 50,000 rhyming couplets, the Shahnama is one of the most extensive epics in literature. These rhyming poems tell of the accomplishments and honors of the Iranian kings from the creation of the world to the Arab conquest of Iran in 642 AD. The poet, Abu'l Qasim Firdausi, is responsible for the creation of this book. He commenced this project by collecting all of the stories and writing them to verse. It was completed around 1010 AD.\"}, \"postType\": \"gallery\"}], \"isLast\": false, \"isPaginated\": true}"}],"_postman_id":"cd419b85-a1de-7092-f338-2c7d398122f7"}],"id":"677e6657-6eb9-4988-de45-1a0d17ad61cd","description":"<p>The feed is a chronological list of featued content from Meural's collection.</p>\n","_postman_id":"677e6657-6eb9-4988-de45-1a0d17ad61cd"},{"name":"Articles","item":[{"name":"/articles/:id","id":"2b58c415-5b01-4d36-bb53-5c4ce5054040","request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":"{{API_ORIGIN}}{{VERSION}}/articles/:id","description":"<p>Retrieve an article.</p>\n","urlObject":{"path":["articles",":id"],"host":["{{API_ORIGIN}}{{VERSION}}"],"query":[],"variable":[{"type":"any","value":"","key":"id"}]}},"response":[{"id":"d3eed8e6-1d7d-4f82-b8e7-2a1985349486","name":"/articles/:id","originalRequest":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[]},"url":{"raw":"{{API_ORIGIN}}{{VERSION}}/articles/:id","host":["{{API_ORIGIN}}{{VERSION}}"],"path":["articles",":id"],"variable":[{"key":"id","value":""}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[],"cookie":[],"responseTime":null,"body":"        {\n            \"name\": \"Stieglitz and O'Keeffe: A Love Story\",\n            \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/254/1000x500/dyy6gii7f86mh0m.optimized.thumb.jpeg\",\n            \"publishedAt\": \"2017-04-07T19:02:13.312371+00:00\",\n            \"body\": [\n                {\n                    \"type\": \"paragraph\",\n                    \"content\": {\n                        \"text\": \"When [Alfred Stieglitz](https://my.meural.com/browse/artists/268) and [Georgia O'Keeffe](https://my.meural.com/browse/artists/265) met in 1916, he was in his 50s—an internationally acclaimed photographer as well as a gallerist and dealer, while she was an unknown 28-year-old schoolteacher from Texas. They had been corresponding for a year, after Stieglitz had exhibited some of O'Keeffe's paintings in his influential gallery, 291. On meeting, their relationship developed quickly—Stieglitz left his wife and the couple married in 1924. Theirs was a passionate, unconventional and tumultuous marriage—one that saw O'Keeffe's emergence as America's leading Modernist painter, weathered infidelity and survived long periods of living apart. Throughout their relationship, the couple continued to correspond, and their combined letters, between 1915 and 1946, make up 25,000 sheets of paper.\"\n                    }\n                },\n                {\n                    \"type\": \"item\",\n                    \"content\": {\n                        \"caption\": \"Look at this beautiful item\",\n                        \"item\": {\n                            \"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\",\n                            \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\",\n                            \"year\": null,\n                            \"userId\": 8429,\n                            \"artistId\": null,\n                            \"sortedOrder\": null,\n                            \"originalWidth\": 2560,\n                            \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/40x40/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\",\n                            \"id\": 398483,\n                            \"croppedY1\": 0,\n                            \"dimensions\": null,\n                            \"copyright\": null,\n                            \"author\": null,\n                            \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\",\n                            \"categoryIds\": [],\n                            \"croppedWidth\": 0,\n                            \"type\": \"image\",\n                            \"isSampler\": false,\n                            \"medium\": null,\n                            \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/1000x500/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\",\n                            \"description\": null,\n                            \"name\": \"Earth\",\n                            \"isPublic\": false,\n                            \"croppedX1\": 0,\n                            \"slug\": \"earth\",\n                            \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/20x20/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\",\n                            \"categoryNames\": [],\n                            \"croppedHeight\": 0,\n                            \"originalHeight\": 1600,\n                            \"artistName\": null,\n                            \"isDetailed\": false\n                        }\n                    }\n                },\n                {\n                    \"type\": \"image\",\n                    \"content\": {\n                        \"caption\": \"Interesting pose from the artist\",\n                        \"url\": \"https://upload.wikimedia.org/wikipedia/commons/thumb/b/b4/O%27Keeffe-%28hands%29.jpg/1280px-O%27Keeffe-%28hands%29.jpg\",\n                        \"name\": \"Okeeffe by Steiglitz\",\n                        \"highres\": \"\"\n                    }\n                },\n                {\n                    \"type\": \"video\",\n                    \"content\": {\n                        \"caption\": \"a video\",\n                        \"url\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.mp4\",\n                        \"name\": \"Okeeffe video\",\n                        \"duration\": \"445\",\n                        \"thumbnailUrl\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.jpeg\"\n                    }\n                },\n                {\n                    \"type\": \"audio\",\n                    \"content\": {\n                        \"url\": \"https://d3qmok6r0qa65b.cloudfront.net/media/d34a281acc62c6bec66425f0ad6dd645/AC7RiPQNueOcqAZyOqu4dVsFCKXlYYnp.wav\",\n                        \"duration\": \"783\",\n                        \"name\": \"An interview with Georgia Okeeffe\"\n                    }\n                }\n            ],\n            \"object\": {\n                \"originalImage\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/4sefapq33zd7yvz.thumb.jpeg\",\n                \"image\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/4sefapq33zd7yvz.thumb.jpeg\",\n                \"year\": \"2016\",\n                \"userId\": 2224,\n                \"artistId\": 155,\n                \"sortedOrder\": null,\n                \"originalWidth\": 1080,\n                \"icon2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/40x40/4sefapq33zd7yvz.thumb.jpeg\",\n                \"id\": 49512,\n                \"croppedY1\": 0,\n                \"dimensions\": null,\n                \"copyright\": null,\n                \"author\": \"Eric Corriel\",\n                \"hero2x\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/4sefapq33zd7yvz.thumb.jpeg\",\n                \"categoryIds\": [\n                    70,\n                    160\n                ],\n                \"croppedWidth\": 0,\n                \"type\": \"image\",\n                \"isSampler\": false,\n                \"medium\": \"Programmatically generated digital file\",\n                \"hero\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/1000x500/4sefapq33zd7yvz.thumb.jpeg\",\n                \"description\": \"Imagine you could shrink yourself down, swim around your hard drive, and meet your files face to face—what would they look like? Enter The Machine aims to provide a new way of seeing our digital files, one that does justice to their uniqueness, the diversity of the data they contain, and the complexity by which they are structured.\",\n                \"name\": \"Portrait of 71325.jpg (Waterlilies - Morning by Claude Monet)\",\n                \"isPublic\": true,\n                \"croppedX1\": 0,\n                \"slug\": \"portrait-of-71325jpg-waterlilies-morning-by-claude-monet\",\n                \"icon\": \"https://d3qmok6r0qa65b.cloudfront.net/media/7/20x20/4sefapq33zd7yvz.thumb.jpeg\",\n                \"categoryNames\": [\n                    \"Contemporary\",\n                    \"Digital Art\"\n                ],\n                \"croppedHeight\": 0,\n                \"originalHeight\": 1920,\n                \"artistName\": \"Eric Corriel\",\n                \"isDetailed\": false\n            },\n            \"type\": \"item\",\n            \"categoryIds\": [\n                65,\n                37\n            ],\n            \"categoryNames\": [\n                \"Modernism\",\n                \"Conceptual\"\n            ],\n            \"artistIds\": [\n                268,\n                265\n            ],\n            \"artistNames\": [\n                \"Alfred Stieglitz\",\n                \"Georgia O'Keeffe\"\n            ],\n            \"author\": {\n                \"id\": 1,\n                \"name\": \"Poppy Simpson\"\n            }\n        }"}],"_postman_id":"2b58c415-5b01-4d36-bb53-5c4ce5054040"}],"id":"980846a2-da33-494a-bb10-8d4c6228b3a0","description":"<p>These endpoints allow you to retrieve articles and content that is related to them.</p>\n","event":[{"listen":"prerequest","script":{"id":"3eb634ce-423a-43d5-8047-76c810c215c9","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"fd362ab8-2ce1-4579-8865-2af6814ce8ad","type":"text/javascript","exec":[""]}}],"_postman_id":"980846a2-da33-494a-bb10-8d4c6228b3a0"}]}