shutterstock-v2 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +27 -0
- data/.rspec +3 -0
- data/.rubocop.yml +6 -0
- data/.travis.yml +6 -0
- data/Dockerfile +17 -0
- data/Gemfile +3 -0
- data/Guardfile +9 -0
- data/README.md +377 -0
- data/Rakefile +19 -0
- data/lib/client/auth.rb +48 -0
- data/lib/client/categories.rb +11 -0
- data/lib/client/category.rb +16 -0
- data/lib/client/client.rb +72 -0
- data/lib/client/collection.rb +151 -0
- data/lib/client/collections.rb +16 -0
- data/lib/client/configuration.rb +20 -0
- data/lib/client/contributor.rb +15 -0
- data/lib/client/driver.rb +38 -0
- data/lib/client/error.rb +20 -0
- data/lib/client/image.rb +139 -0
- data/lib/client/image_assets.rb +56 -0
- data/lib/client/image_size_details.rb +26 -0
- data/lib/client/images.rb +27 -0
- data/lib/client/license.rb +67 -0
- data/lib/client/licenses.rb +23 -0
- data/lib/client/model.rb +15 -0
- data/lib/client/models.rb +11 -0
- data/lib/client/request.rb +41 -0
- data/lib/client/subscription.rb +35 -0
- data/lib/client/subscription_allotment.rb +19 -0
- data/lib/client/subscription_license_format.rb +16 -0
- data/lib/client/subscription_license_formats.rb +12 -0
- data/lib/client/subscription_price.rb +13 -0
- data/lib/client/subscriptions.rb +37 -0
- data/lib/client/thumbnail.rb +17 -0
- data/lib/client/user.rb +68 -0
- data/lib/client/version.rb +3 -0
- data/lib/shutterstock-v2.rb +31 -0
- data/shutterstock-v2.gemspec +30 -0
- data/spec/cassettes/Shutterstock_Auth_get_access_token/returns_hash_with_access_token.yml +86 -0
- data/spec/cassettes/Shutterstock_Auth_get_authorize_url/returns_URL_to_redirect_user_to_passing_redirect_url_an.yml +48 -0
- data/spec/cassettes/Shutterstock_Categories/parses_params_correctly.yml +53 -0
- data/spec/cassettes/Shutterstock_Categories/returns_all_cats_for_an_image.yml +53 -0
- data/spec/cassettes/Shutterstock_Collection/add_image_adds_image_using_Image_new.yml +48 -0
- data/spec/cassettes/Shutterstock_Collection/add_image_adds_image_using_id.yml +48 -0
- data/spec/cassettes/Shutterstock_Collection/add_image_error_raises_error_if_collection_does_not_exist.yml +52 -0
- data/spec/cassettes/Shutterstock_Collection/create_creates_a_collection.yml +52 -0
- data/spec/cassettes/Shutterstock_Collection/destroy_destroys_a_collection.yml +93 -0
- data/spec/cassettes/Shutterstock_Collection/find_adds_an_image.yml +97 -0
- data/spec/cassettes/Shutterstock_Collection/find_converts_list_to_images.yml +101 -0
- data/spec/cassettes/Shutterstock_Collection/find_finds_a_collection_given_an_id.yml +52 -0
- data/spec/cassettes/Shutterstock_Collection/find_raises_error_for_invalid_collection_id.yml +50 -0
- data/spec/cassettes/Shutterstock_Collection/find_removes_an_image.yml +95 -0
- data/spec/cassettes/Shutterstock_Collection/list_returns_all_collections_for_the_current_user.yml +53 -0
- data/spec/cassettes/Shutterstock_Collection/remove_image_removes_image_using_Image_new.yml +46 -0
- data/spec/cassettes/Shutterstock_Collection/remove_image_removes_image_using_id.yml +46 -0
- data/spec/cassettes/Shutterstock_Collection/update_changes_the_name_of_a_collection.yml +97 -0
- data/spec/cassettes/Shutterstock_Collections/returns_all_collections_for_current_user.yml +53 -0
- data/spec/cassettes/Shutterstock_Image/fill_fills_all_details_of_current_image.yml +109 -0
- data/spec/cassettes/Shutterstock_Image/fills_all_details_of_current_image.yml +109 -0
- data/spec/cassettes/Shutterstock_Image/find_places_image_data_into_correct_fields.yml +56 -0
- data/spec/cassettes/Shutterstock_Image/find_places_more_image_data_into_correct_fields.yml +53 -0
- data/spec/cassettes/Shutterstock_Image/find_returns_an_Image_object.yml +56 -0
- data/spec/cassettes/Shutterstock_Image/finds_similar_images_given_an_image.yml +125 -0
- data/spec/cassettes/Shutterstock_Image/returns_an_Image_object.yml +56 -0
- data/spec/cassettes/Shutterstock_Image/returns_similar_images.yml +72 -0
- data/spec/cassettes/Shutterstock_Image/search_searches_for_images_based_on_searchterm.yml +73 -0
- data/spec/cassettes/Shutterstock_Image/search_searches_using_more_than_one_parameter.yml +77 -0
- data/spec/cassettes/Shutterstock_Image/searches_for_images_based_on_searchterm.yml +73 -0
- data/spec/cassettes/Shutterstock_Image/searches_using_more_than_one_parameter.yml +77 -0
- data/spec/cassettes/Shutterstock_Image/similar_finds_similar_images_given_an_image.yml +125 -0
- data/spec/cassettes/Shutterstock_Image/similar_returns_similar_images.yml +72 -0
- data/spec/cassettes/Shutterstock_ImageAssets/find_calculates_fields_correctly.yml +53 -0
- data/spec/cassettes/Shutterstock_ImageAssets/find_places_image_data_into_correct_fields.yml +53 -0
- data/spec/cassettes/Shutterstock_Images/fill_fills_details_of_all_images_in_list_all_images_now_have_keywords.yml +1144 -0
- data/spec/cassettes/Shutterstock_Images/returns_similar_images.yml +126 -0
- data/spec/cassettes/Shutterstock_License/license_editorial_acknowledgement_returns_error_if_requesting_an_image.yml +53 -0
- data/spec/cassettes/Shutterstock_License/license_editorial_acknowledgement_returns_licenced_image_if_ed_ack_is_.yml +52 -0
- data/spec/cassettes/Shutterstock_License/license_license_from_image_object_sends_editorial_acknowledgement_when.yml +160 -0
- data/spec/cassettes/Shutterstock_License/license_license_from_image_object_using_found_subscription.yml +108 -0
- data/spec/cassettes/Shutterstock_License/license_license_from_image_object_vector_image.yml +108 -0
- data/spec/cassettes/Shutterstock_License/license_multiple_licenses_multiple_images.yml +52 -0
- data/spec/cassettes/Shutterstock_License/license_multiple_licenses_multiple_images_from_Image_new.yml +52 -0
- data/spec/cassettes/Shutterstock_License/license_multiple_returns_error_in_Licenses_when_incorrect_image_used.yml +53 -0
- data/spec/cassettes/Shutterstock_License/license_single_licencing_same_image_twice_does_not_give_error.yml +101 -0
- data/spec/cassettes/Shutterstock_License/license_single_license_fails_when_subscription_doesn_t_allow.yml +49 -0
- data/spec/cassettes/Shutterstock_License/license_single_licenses_single_image.yml +52 -0
- data/spec/cassettes/Shutterstock_License/license_single_licenses_single_image_from_Image_new.yml +52 -0
- data/spec/cassettes/Shutterstock_License/license_single_licenses_single_image_from_hash.yml +52 -0
- data/spec/cassettes/Shutterstock_License/license_single_licenses_single_image_with_smaller_size.yml +52 -0
- data/spec/cassettes/Shutterstock_License/license_single_licenses_vector_image.yml +52 -0
- data/spec/cassettes/Shutterstock_License/license_single_licensing_same_image_twice_does_not_give_error.yml +101 -0
- data/spec/cassettes/Shutterstock_License/license_single_returns_error_when_incorrect_image_used.yml +103 -0
- data/spec/cassettes/Shutterstock_License/license_single_returns_error_when_incorrect_subscription_used.yml +53 -0
- data/spec/cassettes/Shutterstock_Models/parses_params_correctly.yml +53 -0
- data/spec/cassettes/Shutterstock_Models/returns_all_models_for_an_image.yml +53 -0
- data/spec/cassettes/Shutterstock_Subscription/allows_image_size_download_correctly_finds_if_image_size_is_possi.yml +59 -0
- data/spec/cassettes/Shutterstock_Subscription/new_parses_info_on_user_correctly.yml +59 -0
- data/spec/cassettes/Shutterstock_Subscription/new_returns_a_subscription_for_current_user.yml +59 -0
- data/spec/cassettes/Shutterstock_SubscriptionLicenseFormat/new_parses_info_correctly.yml +59 -0
- data/spec/cassettes/Shutterstock_SubscriptionLicenseFormat/new_returns_a_subscription_license_format_for_curren.yml +59 -0
- data/spec/cassettes/Shutterstock_Subscriptions/subscriptions_active_expired_total_subscriptions.yml +59 -0
- data/spec/cassettes/Shutterstock_Subscriptions/subscriptions_active_returns_only_active_subscriptions.yml +59 -0
- data/spec/cassettes/Shutterstock_Subscriptions/subscriptions_downloads_left_only_subscriptions_with_downloads_l.yml +59 -0
- data/spec/cassettes/Shutterstock_Subscriptions/subscriptions_expired_returns_only_expired_subscriptions.yml +59 -0
- data/spec/cassettes/Shutterstock_Subscriptions/subscriptions_find_subscription_for_image_size_finds_subs_to_use.yml +59 -0
- data/spec/cassettes/Shutterstock_Subscriptions/subscriptions_returns_all_subscriptions_for_current_user.yml +59 -0
- data/spec/cassettes/Shutterstock_User/find_parses_info_on_user_correctly.yml +52 -0
- data/spec/cassettes/Shutterstock_User/find_returns_object_for_current_user.yml +52 -0
- data/spec/client/auth_spec.rb +36 -0
- data/spec/client/categories_spec.rb +26 -0
- data/spec/client/category_spec.rb +16 -0
- data/spec/client/client_spec.rb +32 -0
- data/spec/client/collection_spec.rb +159 -0
- data/spec/client/collections_spec.rb +18 -0
- data/spec/client/configuration_spec.rb +10 -0
- data/spec/client/contributor_spec.rb +14 -0
- data/spec/client/driver_spec.rb +20 -0
- data/spec/client/image_assets_spec.rb +51 -0
- data/spec/client/image_size_details_spec.rb +33 -0
- data/spec/client/image_spec.rb +102 -0
- data/spec/client/images_spec.rb +31 -0
- data/spec/client/license_spec.rb +234 -0
- data/spec/client/model_spec.rb +14 -0
- data/spec/client/models_spec.rb +23 -0
- data/spec/client/request_spec.rb +79 -0
- data/spec/client/subscription_allotment_spec.rb +25 -0
- data/spec/client/subscription_license_format_spec.rb +29 -0
- data/spec/client/subscription_price_spec.rb +17 -0
- data/spec/client/subscription_spec.rb +60 -0
- data/spec/client/subscriptions_spec.rb +54 -0
- data/spec/client/thumbnail_spec.rb +21 -0
- data/spec/client/user_spec.rb +37 -0
- data/spec/spec_helper.rb +88 -0
- metadata +467 -0
@@ -0,0 +1,72 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://api.shutterstock.com/v2/images/118139110/similar
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- Faraday v0.10.1
|
12
|
+
Authorization:
|
13
|
+
- Bearer <SSTK_ACCESS_TOKEN>
|
14
|
+
Accept-Encoding:
|
15
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
16
|
+
Accept:
|
17
|
+
- "*/*"
|
18
|
+
response:
|
19
|
+
status:
|
20
|
+
code: 200
|
21
|
+
message: OK
|
22
|
+
headers:
|
23
|
+
Server:
|
24
|
+
- nginx
|
25
|
+
Date:
|
26
|
+
- Sat, 07 Jan 2017 13:22:04 GMT
|
27
|
+
Content-Type:
|
28
|
+
- application/json; charset=utf8
|
29
|
+
Content-Length:
|
30
|
+
- '15319'
|
31
|
+
Connection:
|
32
|
+
- keep-alive
|
33
|
+
X-End-User-Request-Id:
|
34
|
+
- '096e8a17-89f4-4d2a-8ef4-9519307115cd'
|
35
|
+
X-Shutterstock-Resource:
|
36
|
+
- "/v2/images/:id/similar"
|
37
|
+
X-Shutterstock-App-Version:
|
38
|
+
- apitwo-739
|
39
|
+
Cache-Control:
|
40
|
+
- 'private; max-age: 3600'
|
41
|
+
Etag:
|
42
|
+
- 68db6ff351e30da7c08a5313e0e1f730
|
43
|
+
X-End-User-User-Id:
|
44
|
+
- "<SSTK_USER_ID>"
|
45
|
+
X-End-User-Client-Id:
|
46
|
+
- "<SSTK_CLIENT_ID>"
|
47
|
+
body:
|
48
|
+
encoding: UTF-8
|
49
|
+
string: '{"page":1,"per_page":20,"total_count":200,"search_id":"","data":[{"id":"145400341","aspect":1.5002,"assets":{"preview":{"height":299,"url":"https://image.shutterstock.com/display_pic_with_logo/1306729/145400341/stock-photo-alert-labrador-puppy-with-toy-145400341.jpg","width":450},"small_thumb":{"height":67,"url":"https://thumb7.shutterstock.com/thumb_small/1306729/145400341/stock-photo-alert-labrador-puppy-with-toy-145400341.jpg","width":100},"large_thumb":{"height":100,"url":"https://thumb7.shutterstock.com/thumb_large/1306729/145400341/stock-photo-alert-labrador-puppy-with-toy-145400341.jpg","width":150}},"contributor":{"id":"1306729"},"description":"Alert
|
50
|
+
Labrador Puppy with Toy","image_type":"photo","media_type":"image"},{"id":"145400368","aspect":1.5,"assets":{"preview":{"height":300,"url":"https://image.shutterstock.com/display_pic_with_logo/1306729/145400368/stock-photo-cute-labrador-puppy-playing-with-a-toy-on-white-backdrop-145400368.jpg","width":450},"small_thumb":{"height":67,"url":"https://thumb1.shutterstock.com/thumb_small/1306729/145400368/stock-photo-cute-labrador-puppy-playing-with-a-toy-on-white-backdrop-145400368.jpg","width":100},"large_thumb":{"height":100,"url":"https://thumb1.shutterstock.com/thumb_large/1306729/145400368/stock-photo-cute-labrador-puppy-playing-with-a-toy-on-white-backdrop-145400368.jpg","width":150}},"contributor":{"id":"1306729"},"description":"Cute
|
51
|
+
Labrador Puppy Playing with a Toy on White Backdrop","image_type":"photo","media_type":"image"},{"id":"278945048","aspect":1.5099,"assets":{"preview":{"height":298,"url":"https://image.shutterstock.com/display_pic_with_logo/1135340/278945048/stock-photo-portrait-of-a-beagle-dog-lying-isolated-on-white-background-278945048.jpg","width":450},"small_thumb":{"height":66,"url":"https://thumb1.shutterstock.com/thumb_small/1135340/278945048/stock-photo-portrait-of-a-beagle-dog-lying-isolated-on-white-background-278945048.jpg","width":100},"large_thumb":{"height":99,"url":"https://thumb1.shutterstock.com/thumb_large/1135340/278945048/stock-photo-portrait-of-a-beagle-dog-lying-isolated-on-white-background-278945048.jpg","width":150}},"contributor":{"id":"1135340"},"description":"Portrait
|
52
|
+
of a beagle dog lying isolated on white background","image_type":"photo","media_type":"image"},{"id":"408004243","aspect":1.2822,"assets":{"preview":{"height":350,"url":"https://image.shutterstock.com/display_pic_with_logo/89296/408004243/stock-photo-sad-puppy-dog-isolated-over-white-background-408004243.jpg","width":450},"small_thumb":{"height":78,"url":"https://thumb10.shutterstock.com/thumb_small/89296/408004243/stock-photo-sad-puppy-dog-isolated-over-white-background-408004243.jpg","width":100},"large_thumb":{"height":117,"url":"https://thumb10.shutterstock.com/thumb_large/89296/408004243/stock-photo-sad-puppy-dog-isolated-over-white-background-408004243.jpg","width":150}},"contributor":{"id":"89296"},"description":"sad
|
53
|
+
puppy dog isolated over white background","image_type":"photo","media_type":"image"},{"id":"265616159","aspect":1.4998,"assets":{"preview":{"height":300,"url":"https://image.shutterstock.com/display_pic_with_logo/441070/265616159/stock-photo-a-portrait-of-a-golden-retriever-dog-laying-over-white-background-265616159.jpg","width":450},"small_thumb":{"height":67,"url":"https://thumb7.shutterstock.com/thumb_small/441070/265616159/stock-photo-a-portrait-of-a-golden-retriever-dog-laying-over-white-background-265616159.jpg","width":100},"large_thumb":{"height":100,"url":"https://thumb7.shutterstock.com/thumb_large/441070/265616159/stock-photo-a-portrait-of-a-golden-retriever-dog-laying-over-white-background-265616159.jpg","width":150}},"contributor":{"id":"441070"},"description":"A
|
54
|
+
portrait of a golden retriever dog laying over white background","image_type":"photo","media_type":"image"},{"id":"118139113","aspect":1.5,"assets":{"preview":{"height":300,"url":"https://image.shutterstock.com/display_pic_with_logo/1306729/118139113/stock-photo-adorable-labrador-puppy-playing-with-a-chew-toy-on-white-backdrop-118139113.jpg","width":450},"small_thumb":{"height":67,"url":"https://thumb10.shutterstock.com/thumb_small/1306729/118139113/stock-photo-adorable-labrador-puppy-playing-with-a-chew-toy-on-white-backdrop-118139113.jpg","width":100},"large_thumb":{"height":100,"url":"https://thumb10.shutterstock.com/thumb_large/1306729/118139113/stock-photo-adorable-labrador-puppy-playing-with-a-chew-toy-on-white-backdrop-118139113.jpg","width":150}},"contributor":{"id":"1306729"},"description":"Adorable
|
55
|
+
Labrador Puppy Playing with a Chew Toy on White Backdrop","image_type":"photo","media_type":"image"},{"id":"443698735","aspect":1.5939,"assets":{"preview":{"height":282,"url":"https://image.shutterstock.com/display_pic_with_logo/1450490/443698735/stock-photo-puppy-labrador-retriever-in-the-white-studio-443698735.jpg","width":450},"small_thumb":{"height":63,"url":"https://thumb7.shutterstock.com/thumb_small/1450490/443698735/stock-photo-puppy-labrador-retriever-in-the-white-studio-443698735.jpg","width":100},"large_thumb":{"height":94,"url":"https://thumb7.shutterstock.com/thumb_large/1450490/443698735/stock-photo-puppy-labrador-retriever-in-the-white-studio-443698735.jpg","width":150}},"contributor":{"id":"1450490"},"description":"Puppy
|
56
|
+
labrador retriever in the white studio","image_type":"photo","media_type":"image"},{"id":"400840462","aspect":1.6698,"assets":{"preview":{"height":269,"url":"https://image.shutterstock.com/display_pic_with_logo/89296/400840462/stock-photo-puppy-dog-isolated-over-white-background-400840462.jpg","width":450},"small_thumb":{"height":60,"url":"https://thumb9.shutterstock.com/thumb_small/89296/400840462/stock-photo-puppy-dog-isolated-over-white-background-400840462.jpg","width":100},"large_thumb":{"height":90,"url":"https://thumb9.shutterstock.com/thumb_large/89296/400840462/stock-photo-puppy-dog-isolated-over-white-background-400840462.jpg","width":150}},"contributor":{"id":"89296"},"description":"puppy
|
57
|
+
dog isolated over white background","image_type":"photo","media_type":"image"},{"id":"11220508","aspect":1.4595,"assets":{"preview":{"height":308,"url":"https://image.shutterstock.com/display_pic_with_logo/3053/3053,1204817287,1/stock-photo-a-golden-retriever-and-cocker-spaniel-puppy-in-the-studio-11220508.jpg","width":450},"small_thumb":{"height":69,"url":"https://thumb7.shutterstock.com/thumb_small/3053/3053,1204817287,1/stock-photo-a-golden-retriever-and-cocker-spaniel-puppy-in-the-studio-11220508.jpg","width":100},"large_thumb":{"height":103,"url":"https://thumb7.shutterstock.com/thumb_large/3053/3053,1204817287,1/stock-photo-a-golden-retriever-and-cocker-spaniel-puppy-in-the-studio-11220508.jpg","width":150}},"contributor":{"id":"3053"},"description":"A
|
58
|
+
golden retriever and cocker spaniel puppy in the studio","image_type":"photo","media_type":"image"},{"id":"11220493","aspect":1.4595,"assets":{"preview":{"height":308,"url":"https://image.shutterstock.com/display_pic_with_logo/3053/3053,1204813354,1/stock-photo-a-golden-retriever-and-cocker-spaniel-puppy-in-the-studio-11220493.jpg","width":450},"small_thumb":{"height":69,"url":"https://thumb7.shutterstock.com/thumb_small/3053/3053,1204813354,1/stock-photo-a-golden-retriever-and-cocker-spaniel-puppy-in-the-studio-11220493.jpg","width":100},"large_thumb":{"height":103,"url":"https://thumb7.shutterstock.com/thumb_large/3053/3053,1204813354,1/stock-photo-a-golden-retriever-and-cocker-spaniel-puppy-in-the-studio-11220493.jpg","width":150}},"contributor":{"id":"3053"},"description":"A
|
59
|
+
golden retriever and cocker spaniel puppy in the studio","image_type":"photo","media_type":"image"},{"id":"42056902","aspect":1.4704,"assets":{"preview":{"height":306,"url":"https://image.shutterstock.com/display_pic_with_logo/5487/5487,1259779912,1/stock-photo-studio-portrait-of-a-beautiful-and-cute-labrador-dog-breed-42056902.jpg","width":450},"small_thumb":{"height":68,"url":"https://thumb7.shutterstock.com/thumb_small/5487/5487,1259779912,1/stock-photo-studio-portrait-of-a-beautiful-and-cute-labrador-dog-breed-42056902.jpg","width":100},"large_thumb":{"height":102,"url":"https://thumb7.shutterstock.com/thumb_large/5487/5487,1259779912,1/stock-photo-studio-portrait-of-a-beautiful-and-cute-labrador-dog-breed-42056902.jpg","width":150}},"contributor":{"id":"5487"},"description":"Studio
|
60
|
+
portrait of a beautiful and cute labrador dog breed","image_type":"photo","media_type":"image"},{"id":"90493837","aspect":0.6667,"assets":{"preview":{"height":450,"url":"https://image.shutterstock.com/display_pic_with_logo/304216/304216,1323398590,1/stock-photo-golden-retriever-dog-puppy-isolated-on-white-background-90493837.jpg","width":300},"small_thumb":{"height":100,"url":"https://thumb7.shutterstock.com/thumb_small/304216/304216,1323398590,1/stock-photo-golden-retriever-dog-puppy-isolated-on-white-background-90493837.jpg","width":67},"large_thumb":{"height":150,"url":"https://thumb7.shutterstock.com/thumb_large/304216/304216,1323398590,1/stock-photo-golden-retriever-dog-puppy-isolated-on-white-background-90493837.jpg","width":100}},"contributor":{"id":"304216"},"description":"Golden
|
61
|
+
retriever dog puppy isolated on white background","image_type":"photo","media_type":"image"},{"id":"432433657","aspect":0.6667,"assets":{"preview":{"height":450,"url":"https://image.shutterstock.com/display_pic_with_logo/146/432433657/stock-photo-young-labrador-retriever-dog-on-white-background-432433657.jpg","width":300},"small_thumb":{"height":100,"url":"https://thumb10.shutterstock.com/thumb_small/146/432433657/stock-photo-young-labrador-retriever-dog-on-white-background-432433657.jpg","width":67},"large_thumb":{"height":150,"url":"https://thumb10.shutterstock.com/thumb_large/146/432433657/stock-photo-young-labrador-retriever-dog-on-white-background-432433657.jpg","width":100}},"contributor":{"id":"146"},"description":"Young
|
62
|
+
labrador retriever dog on white background","image_type":"photo","media_type":"image"},{"id":"41340892","aspect":1,"assets":{"preview":{"height":450,"url":"https://image.shutterstock.com/display_pic_with_logo/305215/305215,1258822612,61/stock-photo-seated-puppy-labrador-retriever-cream-in-front-of-white-background-41340892.jpg","width":450},"small_thumb":{"height":100,"url":"https://thumb7.shutterstock.com/thumb_small/305215/305215,1258822612,61/stock-photo-seated-puppy-labrador-retriever-cream-in-front-of-white-background-41340892.jpg","width":100},"large_thumb":{"height":150,"url":"https://thumb7.shutterstock.com/thumb_large/305215/305215,1258822612,61/stock-photo-seated-puppy-labrador-retriever-cream-in-front-of-white-background-41340892.jpg","width":150}},"contributor":{"id":"305215"},"description":"seated
|
63
|
+
Puppy Labrador retriever cream in front of white background","image_type":"photo","media_type":"image"},{"id":"89122411","aspect":1.5,"assets":{"preview":{"height":300,"url":"https://image.shutterstock.com/display_pic_with_logo/304216/304216,1321716617,1/stock-photo-golden-retriever-dog-puppy-isolated-on-white-background-89122411.jpg","width":450},"small_thumb":{"height":67,"url":"https://thumb7.shutterstock.com/thumb_small/304216/304216,1321716617,1/stock-photo-golden-retriever-dog-puppy-isolated-on-white-background-89122411.jpg","width":100},"large_thumb":{"height":100,"url":"https://thumb7.shutterstock.com/thumb_large/304216/304216,1321716617,1/stock-photo-golden-retriever-dog-puppy-isolated-on-white-background-89122411.jpg","width":150}},"contributor":{"id":"304216"},"description":"Golden
|
64
|
+
retriever dog puppy isolated on white background","image_type":"photo","media_type":"image"},{"id":"256149367","aspect":1.4633,"assets":{"preview":{"height":307,"url":"https://image.shutterstock.com/display_pic_with_logo/80789/256149367/stock-photo-young-golden-retriever-in-front-of-white-background-256149367.jpg","width":450},"small_thumb":{"height":68,"url":"https://thumb10.shutterstock.com/thumb_small/80789/256149367/stock-photo-young-golden-retriever-in-front-of-white-background-256149367.jpg","width":100},"large_thumb":{"height":103,"url":"https://thumb10.shutterstock.com/thumb_large/80789/256149367/stock-photo-young-golden-retriever-in-front-of-white-background-256149367.jpg","width":150}},"contributor":{"id":"80789"},"description":"young
|
65
|
+
golden retriever in front of white background","image_type":"photo","media_type":"image"},{"id":"408004390","aspect":1.4998,"assets":{"preview":{"height":300,"url":"https://image.shutterstock.com/display_pic_with_logo/89296/408004390/stock-photo-sad-puppy-dog-isolated-over-white-background-408004390.jpg","width":450},"small_thumb":{"height":67,"url":"https://thumb1.shutterstock.com/thumb_small/89296/408004390/stock-photo-sad-puppy-dog-isolated-over-white-background-408004390.jpg","width":100},"large_thumb":{"height":100,"url":"https://thumb1.shutterstock.com/thumb_large/89296/408004390/stock-photo-sad-puppy-dog-isolated-over-white-background-408004390.jpg","width":150}},"contributor":{"id":"89296"},"description":"sad
|
66
|
+
puppy dog isolated over white background","image_type":"photo","media_type":"image"},{"id":"214857589","aspect":1.5028,"assets":{"preview":{"height":299,"url":"https://image.shutterstock.com/display_pic_with_logo/89296/214857589/stock-photo-sad-puppy-dog-isolated-over-white-background-214857589.jpg","width":450},"small_thumb":{"height":67,"url":"https://thumb7.shutterstock.com/thumb_small/89296/214857589/stock-photo-sad-puppy-dog-isolated-over-white-background-214857589.jpg","width":100},"large_thumb":{"height":100,"url":"https://thumb7.shutterstock.com/thumb_large/89296/214857589/stock-photo-sad-puppy-dog-isolated-over-white-background-214857589.jpg","width":150}},"contributor":{"id":"89296"},"description":"sad
|
67
|
+
puppy dog isolated over white background","image_type":"photo","media_type":"image"},{"id":"96777595","aspect":1.5002,"assets":{"preview":{"height":299,"url":"https://image.shutterstock.com/display_pic_with_logo/80789/80789,1330954962,5/stock-photo--purebred-labrador-retriever-in-front-of-a-white-background-96777595.jpg","width":450},"small_thumb":{"height":67,"url":"https://thumb7.shutterstock.com/thumb_small/80789/80789,1330954962,5/stock-photo--purebred-labrador-retriever-in-front-of-a-white-background-96777595.jpg","width":100},"large_thumb":{"height":100,"url":"https://thumb7.shutterstock.com/thumb_large/80789/80789,1330954962,5/stock-photo--purebred-labrador-retriever-in-front-of-a-white-background-96777595.jpg","width":150}},"contributor":{"id":"80789"},"description":"
|
68
|
+
purebred labrador retriever in front of a white background","image_type":"photo","media_type":"image"},{"id":"189960602","aspect":1.5028,"assets":{"preview":{"height":299,"url":"https://image.shutterstock.com/display_pic_with_logo/948514/189960602/stock-photo-golden-retriever-dog-isolated-on-white-189960602.jpg","width":450},"small_thumb":{"height":67,"url":"https://thumb9.shutterstock.com/thumb_small/948514/189960602/stock-photo-golden-retriever-dog-isolated-on-white-189960602.jpg","width":100},"large_thumb":{"height":100,"url":"https://thumb9.shutterstock.com/thumb_large/948514/189960602/stock-photo-golden-retriever-dog-isolated-on-white-189960602.jpg","width":150}},"contributor":{"id":"948514"},"description":"Golden
|
69
|
+
retriever dog isolated on white","image_type":"photo","media_type":"image"}]}'
|
70
|
+
http_version:
|
71
|
+
recorded_at: Sat, 07 Jan 2017 13:22:04 GMT
|
72
|
+
recorded_with: VCR 3.0.3
|
@@ -0,0 +1,53 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://api.shutterstock.com/v2/images/402160099
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- Faraday v0.10.1
|
12
|
+
Authorization:
|
13
|
+
- Bearer <SSTK_ACCESS_TOKEN>
|
14
|
+
Accept-Encoding:
|
15
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
16
|
+
Accept:
|
17
|
+
- "*/*"
|
18
|
+
response:
|
19
|
+
status:
|
20
|
+
code: 200
|
21
|
+
message: OK
|
22
|
+
headers:
|
23
|
+
Server:
|
24
|
+
- nginx
|
25
|
+
Date:
|
26
|
+
- Sun, 08 Jan 2017 01:22:40 GMT
|
27
|
+
Content-Type:
|
28
|
+
- application/json; charset=utf8
|
29
|
+
Content-Length:
|
30
|
+
- '2018'
|
31
|
+
Connection:
|
32
|
+
- keep-alive
|
33
|
+
X-End-User-Request-Id:
|
34
|
+
- 7a1f70c1-bea3-4ec7-b029-103e12fe904c
|
35
|
+
X-Shutterstock-Resource:
|
36
|
+
- "/v2/images/:id"
|
37
|
+
X-Shutterstock-App-Version:
|
38
|
+
- apitwo-739
|
39
|
+
Cache-Control:
|
40
|
+
- 'private; max-age: 60'
|
41
|
+
Etag:
|
42
|
+
- d249dc29f7fe6f19d18286813e1b9182
|
43
|
+
X-End-User-User-Id:
|
44
|
+
- "<SSTK_USER_ID>"
|
45
|
+
X-End-User-Client-Id:
|
46
|
+
- "<SSTK_CLIENT_ID>"
|
47
|
+
body:
|
48
|
+
encoding: UTF-8
|
49
|
+
string: '{"id":"402160099","added_date":"2016-04-07","aspect":1.3333,"assets":{"small_jpg":{"display_name":"Small","dpi":72,"file_size":157696,"format":"jpg","height":375,"is_licensable":true,"width":500},"medium_jpg":{"display_name":"Med","dpi":300,"file_size":584704,"format":"jpg","height":750,"is_licensable":true,"width":1000},"huge_jpg":{"display_name":"Huge","dpi":300,"file_size":6538240,"format":"jpg","height":3000,"is_licensable":true,"width":4000},"supersize_jpg":{"display_name":"Super","dpi":300,"file_size":25655298,"format":"jpg","height":6000,"is_licensable":false,"width":8000},"huge_tiff":{"display_name":"Huge","dpi":300,"file_size":36000000,"format":"tiff","height":3000,"is_licensable":false,"width":4000},"supersize_tiff":{"display_name":"Super","dpi":300,"file_size":144000000,"format":"tiff","height":6000,"is_licensable":false,"width":8000},"preview":{"height":337,"url":"https://image.shutterstock.com/display_pic_with_logo/1200533/402160099/stock-photo-fashion-show-backstage-402160099.jpg","width":450},"small_thumb":{"height":75,"url":"https://thumb7.shutterstock.com/thumb_small/1200533/402160099/stock-photo-fashion-show-backstage-402160099.jpg","width":100},"large_thumb":{"height":113,"url":"https://thumb7.shutterstock.com/thumb_large/1200533/402160099/stock-photo-fashion-show-backstage-402160099.jpg","width":150}},"categories":[{"id":"20","name":"NOT-CATEGORIZED"},{"id":"27","name":"Beauty/Fashion"}],"contributor":{"id":"1200533"},"description":"Fashion
|
50
|
+
Show Backstage","image_type":"photo","is_adult":false,"keywords":["adult","background","backstage","beauty","black","catwalk","clothes","collection","couture","design","designer","dress","elegance","event","fashion","fashionable","finale","heels","high","industry","italian","legs","london","look","milan","milano","model","modern","new","now","paris","posing","red","row","runway","shoes","show","silhouettes","stage","style","stylish","trendy","unrecognizable","vertical","walk","week","white","woman","york"],"media_type":"image"}'
|
51
|
+
http_version:
|
52
|
+
recorded_at: Sun, 08 Jan 2017 01:22:40 GMT
|
53
|
+
recorded_with: VCR 3.0.3
|
@@ -0,0 +1,53 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://api.shutterstock.com/v2/images/402160099
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- Faraday v0.10.1
|
12
|
+
Authorization:
|
13
|
+
- Bearer <SSTK_ACCESS_TOKEN>
|
14
|
+
Accept-Encoding:
|
15
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
16
|
+
Accept:
|
17
|
+
- "*/*"
|
18
|
+
response:
|
19
|
+
status:
|
20
|
+
code: 200
|
21
|
+
message: OK
|
22
|
+
headers:
|
23
|
+
Server:
|
24
|
+
- nginx
|
25
|
+
Date:
|
26
|
+
- Sun, 08 Jan 2017 01:20:24 GMT
|
27
|
+
Content-Type:
|
28
|
+
- application/json; charset=utf8
|
29
|
+
Content-Length:
|
30
|
+
- '2018'
|
31
|
+
Connection:
|
32
|
+
- keep-alive
|
33
|
+
X-End-User-Request-Id:
|
34
|
+
- 9e7b4079-be40-4aa6-9df5-2bf5caaa7a91
|
35
|
+
X-Shutterstock-Resource:
|
36
|
+
- "/v2/images/:id"
|
37
|
+
X-Shutterstock-App-Version:
|
38
|
+
- apitwo-739
|
39
|
+
Cache-Control:
|
40
|
+
- 'private; max-age: 60'
|
41
|
+
Etag:
|
42
|
+
- d249dc29f7fe6f19d18286813e1b9182
|
43
|
+
X-End-User-User-Id:
|
44
|
+
- "<SSTK_USER_ID>"
|
45
|
+
X-End-User-Client-Id:
|
46
|
+
- "<SSTK_CLIENT_ID>"
|
47
|
+
body:
|
48
|
+
encoding: UTF-8
|
49
|
+
string: '{"id":"402160099","added_date":"2016-04-07","aspect":1.3333,"assets":{"small_jpg":{"display_name":"Small","dpi":72,"file_size":157696,"format":"jpg","height":375,"is_licensable":true,"width":500},"medium_jpg":{"display_name":"Med","dpi":300,"file_size":584704,"format":"jpg","height":750,"is_licensable":true,"width":1000},"huge_jpg":{"display_name":"Huge","dpi":300,"file_size":6538240,"format":"jpg","height":3000,"is_licensable":true,"width":4000},"supersize_jpg":{"display_name":"Super","dpi":300,"file_size":25655298,"format":"jpg","height":6000,"is_licensable":false,"width":8000},"huge_tiff":{"display_name":"Huge","dpi":300,"file_size":36000000,"format":"tiff","height":3000,"is_licensable":false,"width":4000},"supersize_tiff":{"display_name":"Super","dpi":300,"file_size":144000000,"format":"tiff","height":6000,"is_licensable":false,"width":8000},"preview":{"height":337,"url":"https://image.shutterstock.com/display_pic_with_logo/1200533/402160099/stock-photo-fashion-show-backstage-402160099.jpg","width":450},"small_thumb":{"height":75,"url":"https://thumb7.shutterstock.com/thumb_small/1200533/402160099/stock-photo-fashion-show-backstage-402160099.jpg","width":100},"large_thumb":{"height":113,"url":"https://thumb7.shutterstock.com/thumb_large/1200533/402160099/stock-photo-fashion-show-backstage-402160099.jpg","width":150}},"categories":[{"id":"20","name":"NOT-CATEGORIZED"},{"id":"27","name":"Beauty/Fashion"}],"contributor":{"id":"1200533"},"description":"Fashion
|
50
|
+
Show Backstage","image_type":"photo","is_adult":false,"keywords":["adult","background","backstage","beauty","black","catwalk","clothes","collection","couture","design","designer","dress","elegance","event","fashion","fashionable","finale","heels","high","industry","italian","legs","london","look","milan","milano","model","modern","new","now","paris","posing","red","row","runway","shoes","show","silhouettes","stage","style","stylish","trendy","unrecognizable","vertical","walk","week","white","woman","york"],"media_type":"image"}'
|
51
|
+
http_version:
|
52
|
+
recorded_at: Sun, 08 Jan 2017 01:20:24 GMT
|
53
|
+
recorded_with: VCR 3.0.3
|
@@ -0,0 +1,1144 @@
|
|
1
|
+
---
|
2
|
+
http_interactions:
|
3
|
+
- request:
|
4
|
+
method: get
|
5
|
+
uri: https://api.shutterstock.com/v2/images/32329852
|
6
|
+
body:
|
7
|
+
encoding: US-ASCII
|
8
|
+
string: ''
|
9
|
+
headers:
|
10
|
+
User-Agent:
|
11
|
+
- Faraday v0.10.1
|
12
|
+
Authorization:
|
13
|
+
- Bearer <SSTK_ACCESS_TOKEN>
|
14
|
+
Accept-Encoding:
|
15
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
16
|
+
Accept:
|
17
|
+
- "*/*"
|
18
|
+
response:
|
19
|
+
status:
|
20
|
+
code: 200
|
21
|
+
message: OK
|
22
|
+
headers:
|
23
|
+
Server:
|
24
|
+
- nginx
|
25
|
+
Date:
|
26
|
+
- Sat, 07 Jan 2017 13:53:47 GMT
|
27
|
+
Content-Type:
|
28
|
+
- application/json; charset=utf8
|
29
|
+
Content-Length:
|
30
|
+
- '2178'
|
31
|
+
Connection:
|
32
|
+
- keep-alive
|
33
|
+
X-End-User-Request-Id:
|
34
|
+
- 02b64a75-fec9-4298-a4be-fd4cd3f550d0
|
35
|
+
X-Shutterstock-Resource:
|
36
|
+
- "/v2/images/:id"
|
37
|
+
X-Shutterstock-App-Version:
|
38
|
+
- apitwo-739
|
39
|
+
Cache-Control:
|
40
|
+
- 'private; max-age: 60'
|
41
|
+
Etag:
|
42
|
+
- 3b68e77b47065984408d771b7b1af2bf
|
43
|
+
X-End-User-User-Id:
|
44
|
+
- "<SSTK_USER_ID>"
|
45
|
+
X-End-User-Client-Id:
|
46
|
+
- "<SSTK_CLIENT_ID>"
|
47
|
+
body:
|
48
|
+
encoding: UTF-8
|
49
|
+
string: '{"id":"32329852","added_date":"2009-06-19","aspect":0.6667,"assets":{"small_jpg":{"display_name":"Small","dpi":72,"file_size":147456,"format":"jpg","height":500,"is_licensable":true,"width":333},"medium_jpg":{"display_name":"Med","dpi":300,"file_size":424960,"format":"jpg","height":1000,"is_licensable":true,"width":667},"huge_jpg":{"display_name":"Huge","dpi":300,"file_size":2125824,"format":"jpg","height":3480,"is_licensable":true,"width":2320},"supersize_jpg":{"display_name":"Super","dpi":300,"file_size":5022216,"format":"jpg","height":6960,"is_licensable":false,"width":4640},"huge_tiff":{"display_name":"Huge","dpi":300,"file_size":24220800,"format":"tiff","height":3480,"is_licensable":false,"width":2320},"supersize_tiff":{"display_name":"Super","dpi":300,"file_size":96883200,"format":"tiff","height":6960,"is_licensable":false,"width":4640},"preview":{"height":450,"url":"https://image.shutterstock.com/display_pic_with_logo/130585/130585,1245447002,2/stock-photo-orange-beach-umbrella-over-blue-sky-background-space-for-copy-jpeg-file-with-clipping-path-32329852.jpg","width":300},"small_thumb":{"height":100,"url":"https://thumb9.shutterstock.com/thumb_small/130585/130585,1245447002,2/stock-photo-orange-beach-umbrella-over-blue-sky-background-space-for-copy-jpeg-file-with-clipping-path-32329852.jpg","width":67},"large_thumb":{"height":150,"url":"https://thumb9.shutterstock.com/thumb_large/130585/130585,1245447002,2/stock-photo-orange-beach-umbrella-over-blue-sky-background-space-for-copy-jpeg-file-with-clipping-path-32329852.jpg","width":100}},"categories":[{"id":"18","name":"Sports/Recreation"},{"id":"9","name":"Objects"}],"contributor":{"id":"130585"},"description":"Orange
|
50
|
+
beach umbrella over blue sky background. Space for copy. Jpeg file with clipping
|
51
|
+
path included.","image_type":"photo","is_adult":false,"keywords":["beach","blue","card","clear","copy","cut","fun","greeting","holiday","isolated","leisure","marine","object","orange","outdoor","parasol","relax","relaxation","sea","seashore","seaside","season","seasonal","sky","space","summer","sun","sunlight","tourism","travel","umbrella","vacation","vertical","yellow"],"media_type":"image"}'
|
52
|
+
http_version:
|
53
|
+
recorded_at: Sat, 07 Jan 2017 13:53:47 GMT
|
54
|
+
- request:
|
55
|
+
method: get
|
56
|
+
uri: https://api.shutterstock.com/v2/images/32329852/similar
|
57
|
+
body:
|
58
|
+
encoding: US-ASCII
|
59
|
+
string: ''
|
60
|
+
headers:
|
61
|
+
User-Agent:
|
62
|
+
- Faraday v0.10.1
|
63
|
+
Authorization:
|
64
|
+
- Bearer <SSTK_ACCESS_TOKEN>
|
65
|
+
Accept-Encoding:
|
66
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
67
|
+
Accept:
|
68
|
+
- "*/*"
|
69
|
+
response:
|
70
|
+
status:
|
71
|
+
code: 200
|
72
|
+
message: OK
|
73
|
+
headers:
|
74
|
+
Server:
|
75
|
+
- nginx
|
76
|
+
Date:
|
77
|
+
- Sat, 07 Jan 2017 13:53:48 GMT
|
78
|
+
Content-Type:
|
79
|
+
- application/json; charset=utf8
|
80
|
+
Content-Length:
|
81
|
+
- '15340'
|
82
|
+
Connection:
|
83
|
+
- keep-alive
|
84
|
+
X-End-User-Request-Id:
|
85
|
+
- 9cf1146c-7976-4728-84bb-43c04be63000
|
86
|
+
X-Shutterstock-Resource:
|
87
|
+
- "/v2/images/:id/similar"
|
88
|
+
X-Shutterstock-App-Version:
|
89
|
+
- apitwo-739
|
90
|
+
Cache-Control:
|
91
|
+
- 'private; max-age: 3600'
|
92
|
+
Etag:
|
93
|
+
- e0100d48cdc43982d2e054b0f8308045
|
94
|
+
X-End-User-User-Id:
|
95
|
+
- "<SSTK_USER_ID>"
|
96
|
+
X-End-User-Client-Id:
|
97
|
+
- "<SSTK_CLIENT_ID>"
|
98
|
+
body:
|
99
|
+
encoding: UTF-8
|
100
|
+
string: '{"page":1,"per_page":20,"total_count":200,"search_id":"","data":[{"id":"431539351","aspect":1,"assets":{"preview":{"height":450,"url":"https://image.shutterstock.com/display_pic_with_logo/4003009/431539351/stock-vector-hot-dog-fast-food-vector-illustration-flat-icon-431539351.jpg","width":450},"small_thumb":{"height":100,"url":"https://thumb7.shutterstock.com/thumb_small/4003009/431539351/stock-vector-hot-dog-fast-food-vector-illustration-flat-icon-431539351.jpg","width":100},"large_thumb":{"height":150,"url":"https://thumb7.shutterstock.com/thumb_large/4003009/431539351/stock-vector-hot-dog-fast-food-vector-illustration-flat-icon-431539351.jpg","width":150}},"contributor":{"id":"4003009"},"description":"Hot
|
101
|
+
dog fast food. Vector illustration. Flat icon.","image_type":"vector","media_type":"image"},{"id":"458743414","aspect":1,"assets":{"preview":{"height":450,"url":"https://image.shutterstock.com/display_pic_with_logo/1813235/458743414/stock-vector-isolated-roasted-chicken-retro-fast-food-vector-illustration-458743414.jpg","width":450},"small_thumb":{"height":100,"url":"https://thumb1.shutterstock.com/thumb_small/1813235/458743414/stock-vector-isolated-roasted-chicken-retro-fast-food-vector-illustration-458743414.jpg","width":100},"large_thumb":{"height":150,"url":"https://thumb1.shutterstock.com/thumb_large/1813235/458743414/stock-vector-isolated-roasted-chicken-retro-fast-food-vector-illustration-458743414.jpg","width":150}},"contributor":{"id":"1813235"},"description":"Isolated
|
102
|
+
roasted chicken, Retro fast food, Vector illustration","image_type":"vector","media_type":"image"},{"id":"46084678","aspect":1.2407,"assets":{"preview":{"height":362,"url":"https://image.shutterstock.com/display_pic_with_logo/10684/10684,1265484341,4/stock-vector-stylised-fish-skeleton-46084678.jpg","width":450},"small_thumb":{"height":81,"url":"https://thumb1.shutterstock.com/thumb_small/10684/10684,1265484341,4/stock-vector-stylised-fish-skeleton-46084678.jpg","width":100},"large_thumb":{"height":121,"url":"https://thumb1.shutterstock.com/thumb_large/10684/10684,1265484341,4/stock-vector-stylised-fish-skeleton-46084678.jpg","width":150}},"contributor":{"id":"10684"},"description":"Stylised
|
103
|
+
fish skeleton","image_type":"vector","media_type":"image"},{"id":"513129607","aspect":1,"assets":{"preview":{"height":450,"url":"https://image.shutterstock.com/display_pic_with_logo/161227930/513129607/stock-vector-croissant-icon-and-background-sunrise-style-on-pastel-light-brown-color-tone-513129607.jpg","width":450},"small_thumb":{"height":100,"url":"https://thumb10.shutterstock.com/thumb_small/161227930/513129607/stock-vector-croissant-icon-and-background-sunrise-style-on-pastel-light-brown-color-tone-513129607.jpg","width":100},"large_thumb":{"height":150,"url":"https://thumb10.shutterstock.com/thumb_large/161227930/513129607/stock-vector-croissant-icon-and-background-sunrise-style-on-pastel-light-brown-color-tone-513129607.jpg","width":150}},"contributor":{"id":"161227930"},"description":"Croissant
|
104
|
+
icon and background sunrise style on pastel light brown color tone","image_type":"vector","media_type":"image"},{"id":"481436413","aspect":1,"assets":{"preview":{"height":450,"url":"https://image.shutterstock.com/display_pic_with_logo/2861395/481436413/stock-vector-piece-salmon-fish-slice-isolated-on-white-background-and-freshness-cut-delicious-diet-eat-fish-481436413.jpg","width":450},"small_thumb":{"height":100,"url":"https://thumb10.shutterstock.com/thumb_small/2861395/481436413/stock-vector-piece-salmon-fish-slice-isolated-on-white-background-and-freshness-cut-delicious-diet-eat-fish-481436413.jpg","width":100},"large_thumb":{"height":150,"url":"https://thumb10.shutterstock.com/thumb_large/2861395/481436413/stock-vector-piece-salmon-fish-slice-isolated-on-white-background-and-freshness-cut-delicious-diet-eat-fish-481436413.jpg","width":150}},"contributor":{"id":"2861395"},"description":"Piece
|
105
|
+
salmon fish slice isolated on white background and freshness cut delicious
|
106
|
+
diet eat fish slice vector","image_type":"vector","media_type":"image"},{"id":"20769595","aspect":1.3332,"assets":{"preview":{"height":337,"url":"https://image.shutterstock.com/display_pic_with_logo/139573/139573,1227083509,2/stock-vector-crystal-flower-20769595.jpg","width":450},"small_thumb":{"height":75,"url":"https://thumb9.shutterstock.com/thumb_small/139573/139573,1227083509,2/stock-vector-crystal-flower-20769595.jpg","width":100},"large_thumb":{"height":113,"url":"https://thumb9.shutterstock.com/thumb_large/139573/139573,1227083509,2/stock-vector-crystal-flower-20769595.jpg","width":150}},"contributor":{"id":"139573"},"description":"Crystal
|
107
|
+
Flower","image_type":"vector","media_type":"image"},{"id":"133193405","aspect":1.1468,"assets":{"preview":{"height":392,"url":"https://image.shutterstock.com/display_pic_with_logo/615430/133193405/stock-vector-colorful-yellow-fish-with-red-stripes-isolated-vector-illustration-on-white-background-133193405.jpg","width":450},"small_thumb":{"height":87,"url":"https://thumb7.shutterstock.com/thumb_small/615430/133193405/stock-vector-colorful-yellow-fish-with-red-stripes-isolated-vector-illustration-on-white-background-133193405.jpg","width":100},"large_thumb":{"height":131,"url":"https://thumb7.shutterstock.com/thumb_large/615430/133193405/stock-vector-colorful-yellow-fish-with-red-stripes-isolated-vector-illustration-on-white-background-133193405.jpg","width":150}},"contributor":{"id":"615430"},"description":"Colorful
|
108
|
+
yellow fish with red stripes. Isolated vector illustration on white background","image_type":"vector","media_type":"image"},{"id":"1817649","aspect":0.8044,"assets":{"preview":{"height":450,"url":"https://image.shutterstock.com/display_pic_with_logo/5128/5128,1157852315,2/stock-vector-background-with-curved-lines-and-gradient-1817649.jpg","width":361},"small_thumb":{"height":100,"url":"https://thumb9.shutterstock.com/thumb_small/5128/5128,1157852315,2/stock-vector-background-with-curved-lines-and-gradient-1817649.jpg","width":80},"large_thumb":{"height":150,"url":"https://thumb9.shutterstock.com/thumb_large/5128/5128,1157852315,2/stock-vector-background-with-curved-lines-and-gradient-1817649.jpg","width":121}},"contributor":{"id":"5128"},"description":"Background
|
109
|
+
with curved lines and gradient","image_type":"vector","media_type":"image"},{"id":"310998512","aspect":1,"assets":{"preview":{"height":450,"url":"https://image.shutterstock.com/display_pic_with_logo/1569788/310998512/stock-vector-sushi-isolated-illustration-on-white-background-310998512.jpg","width":450},"small_thumb":{"height":100,"url":"https://thumb9.shutterstock.com/thumb_small/1569788/310998512/stock-vector-sushi-isolated-illustration-on-white-background-310998512.jpg","width":100},"large_thumb":{"height":150,"url":"https://thumb9.shutterstock.com/thumb_large/1569788/310998512/stock-vector-sushi-isolated-illustration-on-white-background-310998512.jpg","width":150}},"contributor":{"id":"1569788"},"description":"Sushi
|
110
|
+
isolated illustration on white background","image_type":"vector","media_type":"image"},{"id":"167873624","aspect":1.5,"assets":{"preview":{"height":300,"url":"https://image.shutterstock.com/display_pic_with_logo/462202/167873624/stock-photo-realistic-d-render-of-liver-167873624.jpg","width":450},"small_thumb":{"height":67,"url":"https://thumb1.shutterstock.com/thumb_small/462202/167873624/stock-photo-realistic-d-render-of-liver-167873624.jpg","width":100},"large_thumb":{"height":100,"url":"https://thumb1.shutterstock.com/thumb_large/462202/167873624/stock-photo-realistic-d-render-of-liver-167873624.jpg","width":150}},"contributor":{"id":"462202"},"description":"realistic
|
111
|
+
3d render of liver","image_type":"photo","media_type":"image"},{"id":"490162351","aspect":1,"assets":{"preview":{"height":450,"url":"https://image.shutterstock.com/display_pic_with_logo/968654/490162351/stock-vector-horizontal-seamless-pattern-of-sea-motif-stripes-hand-drawn-490162351.jpg","width":450},"small_thumb":{"height":100,"url":"https://thumb7.shutterstock.com/thumb_small/968654/490162351/stock-vector-horizontal-seamless-pattern-of-sea-motif-stripes-hand-drawn-490162351.jpg","width":100},"large_thumb":{"height":150,"url":"https://thumb7.shutterstock.com/thumb_large/968654/490162351/stock-vector-horizontal-seamless-pattern-of-sea-motif-stripes-hand-drawn-490162351.jpg","width":150}},"contributor":{"id":"968654"},"description":"Horizontal
|
112
|
+
seamless pattern of sea motif, stripes. Hand drawn.","image_type":"vector","media_type":"image"},{"id":"80503540","aspect":1.0118,"assets":{"preview":{"height":444,"url":"https://image.shutterstock.com/display_pic_with_logo/194326/194326,1309931804,2/stock-vector-vector-tropical-fish-80503540.jpg","width":450},"small_thumb":{"height":99,"url":"https://thumb9.shutterstock.com/thumb_small/194326/194326,1309931804,2/stock-vector-vector-tropical-fish-80503540.jpg","width":100},"large_thumb":{"height":148,"url":"https://thumb9.shutterstock.com/thumb_large/194326/194326,1309931804,2/stock-vector-vector-tropical-fish-80503540.jpg","width":150}},"contributor":{"id":"194326"},"description":"Vector
|
113
|
+
tropical fish","image_type":"vector","media_type":"image"},{"id":"490177678","aspect":1,"assets":{"preview":{"height":450,"url":"https://image.shutterstock.com/display_pic_with_logo/968654/490177678/stock-photo-horizontal-seamless-pattern-of-sea-motif-stripes-hand-drawn-490177678.jpg","width":450},"small_thumb":{"height":100,"url":"https://thumb1.shutterstock.com/thumb_small/968654/490177678/stock-photo-horizontal-seamless-pattern-of-sea-motif-stripes-hand-drawn-490177678.jpg","width":100},"large_thumb":{"height":150,"url":"https://thumb1.shutterstock.com/thumb_large/968654/490177678/stock-photo-horizontal-seamless-pattern-of-sea-motif-stripes-hand-drawn-490177678.jpg","width":150}},"contributor":{"id":"968654"},"description":"Horizontal
|
114
|
+
seamless pattern of sea motif, stripes. Hand drawn.","image_type":"photo","media_type":"image"},{"id":"41402194","aspect":1.3643,"assets":{"preview":{"height":329,"url":"https://image.shutterstock.com/display_pic_with_logo/350272/350272,1258905549,10/stock-photo-abstract-element-41402194.jpg","width":450},"small_thumb":{"height":73,"url":"https://thumb1.shutterstock.com/thumb_small/350272/350272,1258905549,10/stock-photo-abstract-element-41402194.jpg","width":100},"large_thumb":{"height":110,"url":"https://thumb1.shutterstock.com/thumb_large/350272/350272,1258905549,10/stock-photo-abstract-element-41402194.jpg","width":150}},"contributor":{"id":"350272"},"description":"Abstract
|
115
|
+
element","image_type":"photo","media_type":"image"},{"id":"13804285","aspect":1.1888,"assets":{"preview":{"height":378,"url":"https://image.shutterstock.com/display_pic_with_logo/78981/78981,1213446831,5/stock-vector-flaming-match-13804285.jpg","width":450},"small_thumb":{"height":84,"url":"https://thumb7.shutterstock.com/thumb_small/78981/78981,1213446831,5/stock-vector-flaming-match-13804285.jpg","width":100},"large_thumb":{"height":126,"url":"https://thumb7.shutterstock.com/thumb_large/78981/78981,1213446831,5/stock-vector-flaming-match-13804285.jpg","width":150}},"contributor":{"id":"78981"},"description":"flaming
|
116
|
+
match","image_type":"vector","media_type":"image"},{"id":"259360085","aspect":1.4981,"assets":{"preview":{"height":300,"url":"https://image.shutterstock.com/display_pic_with_logo/1377379/259360085/stock-photo-china-fan-isolated-on-white-background-259360085.jpg","width":450},"small_thumb":{"height":67,"url":"https://thumb7.shutterstock.com/thumb_small/1377379/259360085/stock-photo-china-fan-isolated-on-white-background-259360085.jpg","width":100},"large_thumb":{"height":100,"url":"https://thumb7.shutterstock.com/thumb_large/1377379/259360085/stock-photo-china-fan-isolated-on-white-background-259360085.jpg","width":150}},"contributor":{"id":"1377379"},"description":"China
|
117
|
+
fan isolated on white background","image_type":"photo","media_type":"image"},{"id":"231930946","aspect":1.0145,"assets":{"preview":{"height":443,"url":"https://image.shutterstock.com/display_pic_with_logo/2532697/231930946/stock-vector-color-of-autumn-leaf-on-white-background-231930946.jpg","width":450},"small_thumb":{"height":99,"url":"https://thumb9.shutterstock.com/thumb_small/2532697/231930946/stock-vector-color-of-autumn-leaf-on-white-background-231930946.jpg","width":100},"large_thumb":{"height":148,"url":"https://thumb9.shutterstock.com/thumb_large/2532697/231930946/stock-vector-color-of-autumn-leaf-on-white-background-231930946.jpg","width":150}},"contributor":{"id":"2532697"},"description":"Color
|
118
|
+
of Autumn leaf on white Background","image_type":"vector","media_type":"image"},{"id":"542327914","aspect":1,"assets":{"preview":{"height":450,"url":"https://image.shutterstock.com/display_pic_with_logo/615877/542327914/stock-photo-art-fairy-illustration-of-tree-stylized-eco-symbol-insight-image-on-season-idea-beautiful-plant-542327914.jpg","width":450},"small_thumb":{"height":100,"url":"https://thumb1.shutterstock.com/thumb_small/615877/542327914/stock-photo-art-fairy-illustration-of-tree-stylized-eco-symbol-insight-image-on-season-idea-beautiful-plant-542327914.jpg","width":100},"large_thumb":{"height":150,"url":"https://thumb1.shutterstock.com/thumb_large/615877/542327914/stock-photo-art-fairy-illustration-of-tree-stylized-eco-symbol-insight-image-on-season-idea-beautiful-plant-542327914.jpg","width":150}},"contributor":{"id":"615877"},"description":"Art
|
119
|
+
fairy illustration of tree, stylized eco symbol. Insight image on season idea,
|
120
|
+
beautiful plant.","image_type":"photo","media_type":"image"},{"id":"478781389","aspect":1,"assets":{"preview":{"height":450,"url":"https://image.shutterstock.com/display_pic_with_logo/615877/478781389/stock-vector-art-fairy-illustration-of-tree-stylized-eco-symbol-insight-vector-image-on-season-idea-beautiful-478781389.jpg","width":450},"small_thumb":{"height":100,"url":"https://thumb7.shutterstock.com/thumb_small/615877/478781389/stock-vector-art-fairy-illustration-of-tree-stylized-eco-symbol-insight-vector-image-on-season-idea-beautiful-478781389.jpg","width":100},"large_thumb":{"height":150,"url":"https://thumb7.shutterstock.com/thumb_large/615877/478781389/stock-vector-art-fairy-illustration-of-tree-stylized-eco-symbol-insight-vector-image-on-season-idea-beautiful-478781389.jpg","width":150}},"contributor":{"id":"615877"},"description":"Art
|
121
|
+
fairy illustration of tree, stylized eco symbol. Insight vector image on season
|
122
|
+
idea, beautiful plant.","image_type":"vector","media_type":"image"},{"id":"47854045","aspect":0.9306,"assets":{"preview":{"height":450,"url":"https://image.shutterstock.com/display_pic_with_logo/553351/553351,1267615340,6/stock-photo-illustration-of-isolated-an-umbrella-on-white-background-47854045.jpg","width":418},"small_thumb":{"height":100,"url":"https://thumb9.shutterstock.com/thumb_small/553351/553351,1267615340,6/stock-photo-illustration-of-isolated-an-umbrella-on-white-background-47854045.jpg","width":93},"large_thumb":{"height":150,"url":"https://thumb9.shutterstock.com/thumb_large/553351/553351,1267615340,6/stock-photo-illustration-of-isolated-an-umbrella-on-white-background-47854045.jpg","width":140}},"contributor":{"id":"553351"},"description":"illustration
|
123
|
+
of isolated an umbrella on white background","image_type":"photo","media_type":"image"}]}'
|
124
|
+
http_version:
|
125
|
+
recorded_at: Sat, 07 Jan 2017 13:53:49 GMT
|
126
|
+
- request:
|
127
|
+
method: get
|
128
|
+
uri: https://api.shutterstock.com/v2/images/431539351
|
129
|
+
body:
|
130
|
+
encoding: US-ASCII
|
131
|
+
string: ''
|
132
|
+
headers:
|
133
|
+
User-Agent:
|
134
|
+
- Faraday v0.10.1
|
135
|
+
Authorization:
|
136
|
+
- Bearer <SSTK_ACCESS_TOKEN>
|
137
|
+
Accept-Encoding:
|
138
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
139
|
+
Accept:
|
140
|
+
- "*/*"
|
141
|
+
response:
|
142
|
+
status:
|
143
|
+
code: 200
|
144
|
+
message: OK
|
145
|
+
headers:
|
146
|
+
Server:
|
147
|
+
- nginx
|
148
|
+
Date:
|
149
|
+
- Sat, 07 Jan 2017 13:53:50 GMT
|
150
|
+
Content-Type:
|
151
|
+
- application/json; charset=utf8
|
152
|
+
Content-Length:
|
153
|
+
- '1544'
|
154
|
+
Connection:
|
155
|
+
- keep-alive
|
156
|
+
X-End-User-Request-Id:
|
157
|
+
- 7af2ed8f-3452-49eb-84f4-97e4ab5ac955
|
158
|
+
X-Shutterstock-Resource:
|
159
|
+
- "/v2/images/:id"
|
160
|
+
X-Shutterstock-App-Version:
|
161
|
+
- apitwo-739
|
162
|
+
Cache-Control:
|
163
|
+
- 'private; max-age: 60'
|
164
|
+
Etag:
|
165
|
+
- 74a9c2c8811c2116d61a7c77d443b199
|
166
|
+
X-End-User-User-Id:
|
167
|
+
- "<SSTK_USER_ID>"
|
168
|
+
X-End-User-Client-Id:
|
169
|
+
- "<SSTK_CLIENT_ID>"
|
170
|
+
body:
|
171
|
+
encoding: UTF-8
|
172
|
+
string: '{"id":"431539351","added_date":"2016-06-05","aspect":1,"assets":{"huge_jpg":{"display_name":"Huge","dpi":300,"file_size":592896,"format":"jpg","height":5000,"is_licensable":false,"width":5000},"vector_eps":{"display_name":"Vector","format":"eps","is_licensable":true},"preview":{"height":450,"url":"https://image.shutterstock.com/display_pic_with_logo/4003009/431539351/stock-vector-hot-dog-fast-food-vector-illustration-flat-icon-431539351.jpg","width":450},"small_thumb":{"height":100,"url":"https://thumb7.shutterstock.com/thumb_small/4003009/431539351/stock-vector-hot-dog-fast-food-vector-illustration-flat-icon-431539351.jpg","width":100},"large_thumb":{"height":150,"url":"https://thumb7.shutterstock.com/thumb_large/4003009/431539351/stock-vector-hot-dog-fast-food-vector-illustration-flat-icon-431539351.jpg","width":150}},"categories":[{"id":"6","name":"Food
|
173
|
+
and Drink"},{"id":"9","name":"Objects"}],"contributor":{"id":"4003009"},"description":"Hot
|
174
|
+
dog fast food. Vector illustration. Flat icon.","image_type":"vector","is_adult":false,"is_illustration":true,"keywords":["american","appetizer","bar","barbecue","bread","bun","burger","cartoon","character","comic","consumer","delicious","dinner","drawing","eat","fast","flat","food","friends","graphic","grilled","hamburger","hot","hotdog","illustration","image","isolated","ketchup","lunch","meal","meat","menu","mustard","picnic","poster","restaurant","retro","sale","sandwich","sauce","sausage","sign","snack","strip","symbol","takeaway","template","tomato"],"media_type":"image"}'
|
175
|
+
http_version:
|
176
|
+
recorded_at: Sat, 07 Jan 2017 13:53:50 GMT
|
177
|
+
- request:
|
178
|
+
method: get
|
179
|
+
uri: https://api.shutterstock.com/v2/images/458743414
|
180
|
+
body:
|
181
|
+
encoding: US-ASCII
|
182
|
+
string: ''
|
183
|
+
headers:
|
184
|
+
User-Agent:
|
185
|
+
- Faraday v0.10.1
|
186
|
+
Authorization:
|
187
|
+
- Bearer <SSTK_ACCESS_TOKEN>
|
188
|
+
Accept-Encoding:
|
189
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
190
|
+
Accept:
|
191
|
+
- "*/*"
|
192
|
+
response:
|
193
|
+
status:
|
194
|
+
code: 200
|
195
|
+
message: OK
|
196
|
+
headers:
|
197
|
+
Server:
|
198
|
+
- nginx
|
199
|
+
Date:
|
200
|
+
- Sat, 07 Jan 2017 13:53:51 GMT
|
201
|
+
Content-Type:
|
202
|
+
- application/json; charset=utf8
|
203
|
+
Content-Length:
|
204
|
+
- '1466'
|
205
|
+
Connection:
|
206
|
+
- keep-alive
|
207
|
+
X-End-User-Request-Id:
|
208
|
+
- 0bef7293-9bbd-4290-aa25-4b0dbad4e835
|
209
|
+
X-Shutterstock-Resource:
|
210
|
+
- "/v2/images/:id"
|
211
|
+
X-Shutterstock-App-Version:
|
212
|
+
- apitwo-739
|
213
|
+
Cache-Control:
|
214
|
+
- 'private; max-age: 60'
|
215
|
+
Etag:
|
216
|
+
- 3c09f8d8f2ede51545309dbc4e006584
|
217
|
+
X-End-User-User-Id:
|
218
|
+
- "<SSTK_USER_ID>"
|
219
|
+
X-End-User-Client-Id:
|
220
|
+
- "<SSTK_CLIENT_ID>"
|
221
|
+
body:
|
222
|
+
encoding: UTF-8
|
223
|
+
string: '{"id":"458743414","added_date":"2016-07-26","aspect":1,"assets":{"huge_jpg":{"display_name":"Huge","dpi":300,"file_size":1775616,"format":"jpg","height":5315,"is_licensable":false,"width":5315},"vector_eps":{"display_name":"Vector","format":"eps","is_licensable":true},"preview":{"height":450,"url":"https://image.shutterstock.com/display_pic_with_logo/1813235/458743414/stock-vector-isolated-roasted-chicken-retro-fast-food-vector-illustration-458743414.jpg","width":450},"small_thumb":{"height":100,"url":"https://thumb1.shutterstock.com/thumb_small/1813235/458743414/stock-vector-isolated-roasted-chicken-retro-fast-food-vector-illustration-458743414.jpg","width":100},"large_thumb":{"height":150,"url":"https://thumb1.shutterstock.com/thumb_large/1813235/458743414/stock-vector-isolated-roasted-chicken-retro-fast-food-vector-illustration-458743414.jpg","width":150}},"categories":[{"id":"6","name":"Food
|
224
|
+
and Drink"},{"id":"20","name":"NOT-CATEGORIZED"}],"contributor":{"id":"1813235"},"description":"Isolated
|
225
|
+
roasted chicken, Retro fast food, Vector illustration","image_type":"vector","is_adult":false,"is_illustration":true,"keywords":["abstract","background","chicken","classic","cuisine","culinary","delicious","design","diet","dinner","fast","fat","food","grilled","icon","illustration","isolated","lifestyle","menu","nutrition","object","restaurant","retro","roasted","snack","style","tasty","texture","unhealthy","vector","vintage"],"media_type":"image"}'
|
226
|
+
http_version:
|
227
|
+
recorded_at: Sat, 07 Jan 2017 13:53:51 GMT
|
228
|
+
- request:
|
229
|
+
method: get
|
230
|
+
uri: https://api.shutterstock.com/v2/images/46084678
|
231
|
+
body:
|
232
|
+
encoding: US-ASCII
|
233
|
+
string: ''
|
234
|
+
headers:
|
235
|
+
User-Agent:
|
236
|
+
- Faraday v0.10.1
|
237
|
+
Authorization:
|
238
|
+
- Bearer <SSTK_ACCESS_TOKEN>
|
239
|
+
Accept-Encoding:
|
240
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
241
|
+
Accept:
|
242
|
+
- "*/*"
|
243
|
+
response:
|
244
|
+
status:
|
245
|
+
code: 200
|
246
|
+
message: OK
|
247
|
+
headers:
|
248
|
+
Server:
|
249
|
+
- nginx
|
250
|
+
Date:
|
251
|
+
- Sat, 07 Jan 2017 13:53:52 GMT
|
252
|
+
Content-Type:
|
253
|
+
- application/json; charset=utf8
|
254
|
+
Content-Length:
|
255
|
+
- '1151'
|
256
|
+
Connection:
|
257
|
+
- keep-alive
|
258
|
+
X-End-User-Request-Id:
|
259
|
+
- e8de69cd-8fde-40ee-9bdd-e72beb93ed8d
|
260
|
+
X-Shutterstock-Resource:
|
261
|
+
- "/v2/images/:id"
|
262
|
+
X-Shutterstock-App-Version:
|
263
|
+
- apitwo-739
|
264
|
+
Cache-Control:
|
265
|
+
- 'private; max-age: 60'
|
266
|
+
Etag:
|
267
|
+
- bfb5f1e6fda2bcad48ce8bfafccdd2e9
|
268
|
+
X-End-User-User-Id:
|
269
|
+
- "<SSTK_USER_ID>"
|
270
|
+
X-End-User-Client-Id:
|
271
|
+
- "<SSTK_CLIENT_ID>"
|
272
|
+
body:
|
273
|
+
encoding: UTF-8
|
274
|
+
string: '{"id":"46084678","added_date":"2010-02-06","aspect":1.2407,"assets":{"huge_jpg":{"display_name":"Small","dpi":72,"file_size":81920,"format":"jpg","height":403,"is_licensable":false,"width":500},"vector_eps":{"display_name":"Vector","format":"eps","is_licensable":true},"preview":{"height":362,"url":"https://image.shutterstock.com/display_pic_with_logo/10684/10684,1265484341,4/stock-vector-stylised-fish-skeleton-46084678.jpg","width":450},"small_thumb":{"height":81,"url":"https://thumb1.shutterstock.com/thumb_small/10684/10684,1265484341,4/stock-vector-stylised-fish-skeleton-46084678.jpg","width":100},"large_thumb":{"height":121,"url":"https://thumb1.shutterstock.com/thumb_large/10684/10684,1265484341,4/stock-vector-stylised-fish-skeleton-46084678.jpg","width":150}},"categories":[{"id":"9","name":"Objects"},{"id":"23","name":"Illustrations/Clip-Art"}],"contributor":{"id":"10684"},"description":"Stylised
|
275
|
+
fish skeleton","image_type":"vector","is_adult":false,"is_illustration":true,"keywords":["artwork","blue","bone","concept","design","elements","fish","illustration","reflection","shape","skeleton","style","vector"],"media_type":"image"}'
|
276
|
+
http_version:
|
277
|
+
recorded_at: Sat, 07 Jan 2017 13:53:52 GMT
|
278
|
+
- request:
|
279
|
+
method: get
|
280
|
+
uri: https://api.shutterstock.com/v2/images/513129607
|
281
|
+
body:
|
282
|
+
encoding: US-ASCII
|
283
|
+
string: ''
|
284
|
+
headers:
|
285
|
+
User-Agent:
|
286
|
+
- Faraday v0.10.1
|
287
|
+
Authorization:
|
288
|
+
- Bearer <SSTK_ACCESS_TOKEN>
|
289
|
+
Accept-Encoding:
|
290
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
291
|
+
Accept:
|
292
|
+
- "*/*"
|
293
|
+
response:
|
294
|
+
status:
|
295
|
+
code: 200
|
296
|
+
message: OK
|
297
|
+
headers:
|
298
|
+
Server:
|
299
|
+
- nginx
|
300
|
+
Date:
|
301
|
+
- Sat, 07 Jan 2017 13:53:53 GMT
|
302
|
+
Content-Type:
|
303
|
+
- application/json; charset=utf8
|
304
|
+
Content-Length:
|
305
|
+
- '1647'
|
306
|
+
Connection:
|
307
|
+
- keep-alive
|
308
|
+
X-End-User-Request-Id:
|
309
|
+
- 4e89cbdf-70ef-4672-adf5-00cc57b43b7a
|
310
|
+
X-Shutterstock-Resource:
|
311
|
+
- "/v2/images/:id"
|
312
|
+
X-Shutterstock-App-Version:
|
313
|
+
- apitwo-739
|
314
|
+
Cache-Control:
|
315
|
+
- 'private; max-age: 60'
|
316
|
+
Etag:
|
317
|
+
- '009639f7b80602e912f5aa2f4b2ee0c7'
|
318
|
+
X-End-User-User-Id:
|
319
|
+
- "<SSTK_USER_ID>"
|
320
|
+
X-End-User-Client-Id:
|
321
|
+
- "<SSTK_CLIENT_ID>"
|
322
|
+
body:
|
323
|
+
encoding: UTF-8
|
324
|
+
string: '{"id":"513129607","added_date":"2016-11-10","aspect":1,"assets":{"huge_jpg":{"display_name":"Huge","dpi":300,"file_size":4340736,"format":"jpg","height":12292,"is_licensable":false,"width":12292},"vector_eps":{"display_name":"Vector","format":"eps","is_licensable":true},"preview":{"height":450,"url":"https://image.shutterstock.com/display_pic_with_logo/161227930/513129607/stock-vector-croissant-icon-and-background-sunrise-style-on-pastel-light-brown-color-tone-513129607.jpg","width":450},"small_thumb":{"height":100,"url":"https://thumb10.shutterstock.com/thumb_small/161227930/513129607/stock-vector-croissant-icon-and-background-sunrise-style-on-pastel-light-brown-color-tone-513129607.jpg","width":100},"large_thumb":{"height":150,"url":"https://thumb10.shutterstock.com/thumb_large/161227930/513129607/stock-vector-croissant-icon-and-background-sunrise-style-on-pastel-light-brown-color-tone-513129607.jpg","width":150}},"categories":[{"id":"3","name":"Backgrounds/Textures"},{"id":"17","name":"Signs/Symbols"}],"contributor":{"id":"161227930"},"description":"Croissant
|
325
|
+
icon and background sunrise style on pastel light brown color tone","image_type":"vector","is_adult":false,"is_illustration":true,"keywords":["app","background","black","board","book","bubble","button","circle","collection","color","cook","cooking","design","dinner","flat","follow","food","hand","hat","hipster","icon","illustration","kitchen","like","long","media","message","office","outline","pastel","pattern","people","photo","restaurant","round","set","shadow","sign","social","speech","style","symbol","thumb","up","vector","web","white"],"media_type":"image"}'
|
326
|
+
http_version:
|
327
|
+
recorded_at: Sat, 07 Jan 2017 13:53:53 GMT
|
328
|
+
- request:
|
329
|
+
method: get
|
330
|
+
uri: https://api.shutterstock.com/v2/images/481436413
|
331
|
+
body:
|
332
|
+
encoding: US-ASCII
|
333
|
+
string: ''
|
334
|
+
headers:
|
335
|
+
User-Agent:
|
336
|
+
- Faraday v0.10.1
|
337
|
+
Authorization:
|
338
|
+
- Bearer <SSTK_ACCESS_TOKEN>
|
339
|
+
Accept-Encoding:
|
340
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
341
|
+
Accept:
|
342
|
+
- "*/*"
|
343
|
+
response:
|
344
|
+
status:
|
345
|
+
code: 200
|
346
|
+
message: OK
|
347
|
+
headers:
|
348
|
+
Server:
|
349
|
+
- nginx
|
350
|
+
Date:
|
351
|
+
- Sat, 07 Jan 2017 13:53:54 GMT
|
352
|
+
Content-Type:
|
353
|
+
- application/json; charset=utf8
|
354
|
+
Content-Length:
|
355
|
+
- '1790'
|
356
|
+
Connection:
|
357
|
+
- keep-alive
|
358
|
+
X-End-User-Request-Id:
|
359
|
+
- 7c88bfb1-bc74-4639-b237-24814093af0c
|
360
|
+
X-Shutterstock-Resource:
|
361
|
+
- "/v2/images/:id"
|
362
|
+
X-Shutterstock-App-Version:
|
363
|
+
- apitwo-739
|
364
|
+
Cache-Control:
|
365
|
+
- 'private; max-age: 60'
|
366
|
+
Etag:
|
367
|
+
- b1db3cb9d069c721ed81a74ea830a055
|
368
|
+
X-End-User-User-Id:
|
369
|
+
- "<SSTK_USER_ID>"
|
370
|
+
X-End-User-Client-Id:
|
371
|
+
- "<SSTK_CLIENT_ID>"
|
372
|
+
body:
|
373
|
+
encoding: UTF-8
|
374
|
+
string: '{"id":"481436413","added_date":"2016-09-11","aspect":1,"assets":{"huge_jpg":{"display_name":"Huge","dpi":300,"file_size":1406976,"format":"jpg","height":5665,"is_licensable":false,"width":5665},"vector_eps":{"display_name":"Vector","format":"eps","is_licensable":true},"preview":{"height":450,"url":"https://image.shutterstock.com/display_pic_with_logo/2861395/481436413/stock-vector-piece-salmon-fish-slice-isolated-on-white-background-and-freshness-cut-delicious-diet-eat-fish-481436413.jpg","width":450},"small_thumb":{"height":100,"url":"https://thumb10.shutterstock.com/thumb_small/2861395/481436413/stock-vector-piece-salmon-fish-slice-isolated-on-white-background-and-freshness-cut-delicious-diet-eat-fish-481436413.jpg","width":100},"large_thumb":{"height":150,"url":"https://thumb10.shutterstock.com/thumb_large/2861395/481436413/stock-vector-piece-salmon-fish-slice-isolated-on-white-background-and-freshness-cut-delicious-diet-eat-fish-481436413.jpg","width":150}},"categories":[{"id":"6","name":"Food
|
375
|
+
and Drink"},{"id":"9","name":"Objects"}],"contributor":{"id":"2861395"},"description":"Piece
|
376
|
+
salmon fish slice isolated on white background and freshness cut delicious
|
377
|
+
diet eat fish slice vector","image_type":"vector","is_adult":false,"is_illustration":true,"keywords":["cook","cooked","cooking","cuisine","cut","delicious","diet","dinner","dish","eat","fat","fillet","fish","fish
|
378
|
+
section","fish slice","food","food slice","fresh","freshness","gourmet","grilled","health
|
379
|
+
fish","healthy","illustration","ingredient","isolated","lunch slice","market","meal","meat","natural","nutrition
|
380
|
+
slice","omega","piece","plate","preparation","prepared","raw","ready","red","salmon","sashimi
|
381
|
+
fish","sea","seafood","slice","steak","trout","vector","view orange","white"],"media_type":"image"}'
|
382
|
+
http_version:
|
383
|
+
recorded_at: Sat, 07 Jan 2017 13:53:54 GMT
|
384
|
+
- request:
|
385
|
+
method: get
|
386
|
+
uri: https://api.shutterstock.com/v2/images/20769595
|
387
|
+
body:
|
388
|
+
encoding: US-ASCII
|
389
|
+
string: ''
|
390
|
+
headers:
|
391
|
+
User-Agent:
|
392
|
+
- Faraday v0.10.1
|
393
|
+
Authorization:
|
394
|
+
- Bearer <SSTK_ACCESS_TOKEN>
|
395
|
+
Accept-Encoding:
|
396
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
397
|
+
Accept:
|
398
|
+
- "*/*"
|
399
|
+
response:
|
400
|
+
status:
|
401
|
+
code: 200
|
402
|
+
message: OK
|
403
|
+
headers:
|
404
|
+
Server:
|
405
|
+
- nginx
|
406
|
+
Date:
|
407
|
+
- Sat, 07 Jan 2017 13:53:55 GMT
|
408
|
+
Content-Type:
|
409
|
+
- application/json; charset=utf8
|
410
|
+
Content-Length:
|
411
|
+
- '1440'
|
412
|
+
Connection:
|
413
|
+
- keep-alive
|
414
|
+
X-End-User-Request-Id:
|
415
|
+
- 69ccf1c8-b0ad-4be4-99b1-f27e953601dd
|
416
|
+
X-Shutterstock-Resource:
|
417
|
+
- "/v2/images/:id"
|
418
|
+
X-Shutterstock-App-Version:
|
419
|
+
- apitwo-739
|
420
|
+
Cache-Control:
|
421
|
+
- 'private; max-age: 60'
|
422
|
+
Etag:
|
423
|
+
- eae9b25347e95f04972ac53e257cc967
|
424
|
+
X-End-User-User-Id:
|
425
|
+
- "<SSTK_USER_ID>"
|
426
|
+
X-End-User-Client-Id:
|
427
|
+
- "<SSTK_CLIENT_ID>"
|
428
|
+
body:
|
429
|
+
encoding: UTF-8
|
430
|
+
string: '{"id":"20769595","added_date":"2008-11-19","aspect":1.3332,"assets":{"huge_jpg":{"display_name":"Huge","dpi":300,"file_size":386048,"format":"jpg","height":2500,"is_licensable":false,"width":3333},"vector_eps":{"display_name":"Vector","format":"eps","is_licensable":true},"preview":{"height":337,"url":"https://image.shutterstock.com/display_pic_with_logo/139573/139573,1227083509,2/stock-vector-crystal-flower-20769595.jpg","width":450},"small_thumb":{"height":75,"url":"https://thumb9.shutterstock.com/thumb_small/139573/139573,1227083509,2/stock-vector-crystal-flower-20769595.jpg","width":100},"large_thumb":{"height":113,"url":"https://thumb9.shutterstock.com/thumb_large/139573/139573,1227083509,2/stock-vector-crystal-flower-20769595.jpg","width":150}},"categories":[{"id":"26","name":"Abstract"},{"id":"23","name":"Illustrations/Clip-Art"}],"contributor":{"id":"139573"},"description":"Crystal
|
431
|
+
Flower","image_type":"vector","is_adult":false,"is_illustration":true,"keywords":["attractive","background","ball","beautiful","bloom","blossom","bud","calm","color","concept","crystal","design","dream","environment","flower","fresh","garden","illustration","landscape","life","meditation","mirror","morning","nature","orange","oriental","ornament","pad","pattern","petal","pink","plant","pond","romantic","shadow","spiritual","spring","stalk","tropical","unique","vector","water","waterlily","waves","white","wing"],"media_type":"image"}'
|
432
|
+
http_version:
|
433
|
+
recorded_at: Sat, 07 Jan 2017 13:53:55 GMT
|
434
|
+
- request:
|
435
|
+
method: get
|
436
|
+
uri: https://api.shutterstock.com/v2/images/133193405
|
437
|
+
body:
|
438
|
+
encoding: US-ASCII
|
439
|
+
string: ''
|
440
|
+
headers:
|
441
|
+
User-Agent:
|
442
|
+
- Faraday v0.10.1
|
443
|
+
Authorization:
|
444
|
+
- Bearer <SSTK_ACCESS_TOKEN>
|
445
|
+
Accept-Encoding:
|
446
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
447
|
+
Accept:
|
448
|
+
- "*/*"
|
449
|
+
response:
|
450
|
+
status:
|
451
|
+
code: 200
|
452
|
+
message: OK
|
453
|
+
headers:
|
454
|
+
Server:
|
455
|
+
- nginx
|
456
|
+
Date:
|
457
|
+
- Sat, 07 Jan 2017 13:53:56 GMT
|
458
|
+
Content-Type:
|
459
|
+
- application/json; charset=utf8
|
460
|
+
Content-Length:
|
461
|
+
- '1429'
|
462
|
+
Connection:
|
463
|
+
- keep-alive
|
464
|
+
X-End-User-Request-Id:
|
465
|
+
- 4dc010a2-d1ea-4755-95d9-6b02d974ae7e
|
466
|
+
X-Shutterstock-Resource:
|
467
|
+
- "/v2/images/:id"
|
468
|
+
X-Shutterstock-App-Version:
|
469
|
+
- apitwo-739
|
470
|
+
Cache-Control:
|
471
|
+
- 'private; max-age: 60'
|
472
|
+
Etag:
|
473
|
+
- 90ca93d2e94685459d3b3a6b4876d637
|
474
|
+
X-End-User-User-Id:
|
475
|
+
- "<SSTK_USER_ID>"
|
476
|
+
X-End-User-Client-Id:
|
477
|
+
- "<SSTK_CLIENT_ID>"
|
478
|
+
body:
|
479
|
+
encoding: UTF-8
|
480
|
+
string: '{"id":"133193405","added_date":"2013-03-28","aspect":1.1468,"assets":{"huge_jpg":{"display_name":"Small","dpi":72,"file_size":132096,"format":"jpg","height":545,"is_licensable":false,"width":625},"vector_eps":{"display_name":"Vector","format":"eps","is_licensable":true},"preview":{"height":392,"url":"https://image.shutterstock.com/display_pic_with_logo/615430/133193405/stock-vector-colorful-yellow-fish-with-red-stripes-isolated-vector-illustration-on-white-background-133193405.jpg","width":450},"small_thumb":{"height":87,"url":"https://thumb7.shutterstock.com/thumb_small/615430/133193405/stock-vector-colorful-yellow-fish-with-red-stripes-isolated-vector-illustration-on-white-background-133193405.jpg","width":100},"large_thumb":{"height":131,"url":"https://thumb7.shutterstock.com/thumb_large/615430/133193405/stock-vector-colorful-yellow-fish-with-red-stripes-isolated-vector-illustration-on-white-background-133193405.jpg","width":150}},"categories":[{"id":"1","name":"Animals/Wildlife"},{"id":"12","name":"Nature"}],"contributor":{"id":"615430"},"description":"Colorful
|
481
|
+
yellow fish with red stripes. Isolated vector illustration on white background","image_type":"vector","is_adult":false,"is_illustration":true,"keywords":["background","beautiful","cartoon","colorful","fish","flipper","food","illustration","isolated","lines","maritime","ocean","red","sea","stripes","vector","white","yellow"],"media_type":"image"}'
|
482
|
+
http_version:
|
483
|
+
recorded_at: Sat, 07 Jan 2017 13:53:56 GMT
|
484
|
+
- request:
|
485
|
+
method: get
|
486
|
+
uri: https://api.shutterstock.com/v2/images/1817649
|
487
|
+
body:
|
488
|
+
encoding: US-ASCII
|
489
|
+
string: ''
|
490
|
+
headers:
|
491
|
+
User-Agent:
|
492
|
+
- Faraday v0.10.1
|
493
|
+
Authorization:
|
494
|
+
- Bearer <SSTK_ACCESS_TOKEN>
|
495
|
+
Accept-Encoding:
|
496
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
497
|
+
Accept:
|
498
|
+
- "*/*"
|
499
|
+
response:
|
500
|
+
status:
|
501
|
+
code: 200
|
502
|
+
message: OK
|
503
|
+
headers:
|
504
|
+
Server:
|
505
|
+
- nginx
|
506
|
+
Date:
|
507
|
+
- Sat, 07 Jan 2017 13:53:57 GMT
|
508
|
+
Content-Type:
|
509
|
+
- application/json; charset=utf8
|
510
|
+
Content-Length:
|
511
|
+
- '1404'
|
512
|
+
Connection:
|
513
|
+
- keep-alive
|
514
|
+
X-End-User-Request-Id:
|
515
|
+
- 49fe78be-4f0a-4b4b-8621-6cb645ae8b55
|
516
|
+
X-Shutterstock-Resource:
|
517
|
+
- "/v2/images/:id"
|
518
|
+
X-Shutterstock-App-Version:
|
519
|
+
- apitwo-739
|
520
|
+
Cache-Control:
|
521
|
+
- 'private; max-age: 60'
|
522
|
+
Etag:
|
523
|
+
- 1578085b73ed7e0e7d0d03bf3ff40a70
|
524
|
+
X-End-User-User-Id:
|
525
|
+
- "<SSTK_USER_ID>"
|
526
|
+
X-End-User-Client-Id:
|
527
|
+
- "<SSTK_CLIENT_ID>"
|
528
|
+
body:
|
529
|
+
encoding: UTF-8
|
530
|
+
string: '{"id":"1817649","added_date":"2006-09-09","aspect":0.8044,"assets":{"huge_jpg":{"display_name":"Small","dpi":72,"file_size":510976,"format":"jpg","height":900,"is_licensable":false,"width":724},"vector_eps":{"display_name":"Vector","format":"eps","is_licensable":true},"preview":{"height":450,"url":"https://image.shutterstock.com/display_pic_with_logo/5128/5128,1157852315,2/stock-vector-background-with-curved-lines-and-gradient-1817649.jpg","width":361},"small_thumb":{"height":100,"url":"https://thumb9.shutterstock.com/thumb_small/5128/5128,1157852315,2/stock-vector-background-with-curved-lines-and-gradient-1817649.jpg","width":80},"large_thumb":{"height":150,"url":"https://thumb9.shutterstock.com/thumb_large/5128/5128,1157852315,2/stock-vector-background-with-curved-lines-and-gradient-1817649.jpg","width":121}},"categories":[{"id":"23","name":"Illustrations/Clip-Art"},{"id":"20","name":"NOT-CATEGORIZED"}],"contributor":{"id":"5128"},"description":"Background
|
531
|
+
with curved lines and gradient","image_type":"vector","is_adult":false,"is_illustration":true,"keywords":["abstract","abstraction","background","bright","color","colour","concept","curl","curve","curvy","decor","decorative","design","detail","ethereal","flourish","flow","flowing","illustration","light","lines","movement","pattern","ray","stream","template","trend","twirls","wallpaper","warm","web","whirl"],"media_type":"image"}'
|
532
|
+
http_version:
|
533
|
+
recorded_at: Sat, 07 Jan 2017 13:53:57 GMT
|
534
|
+
- request:
|
535
|
+
method: get
|
536
|
+
uri: https://api.shutterstock.com/v2/images/310998512
|
537
|
+
body:
|
538
|
+
encoding: US-ASCII
|
539
|
+
string: ''
|
540
|
+
headers:
|
541
|
+
User-Agent:
|
542
|
+
- Faraday v0.10.1
|
543
|
+
Authorization:
|
544
|
+
- Bearer <SSTK_ACCESS_TOKEN>
|
545
|
+
Accept-Encoding:
|
546
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
547
|
+
Accept:
|
548
|
+
- "*/*"
|
549
|
+
response:
|
550
|
+
status:
|
551
|
+
code: 200
|
552
|
+
message: OK
|
553
|
+
headers:
|
554
|
+
Server:
|
555
|
+
- nginx
|
556
|
+
Date:
|
557
|
+
- Sat, 07 Jan 2017 13:53:58 GMT
|
558
|
+
Content-Type:
|
559
|
+
- application/json; charset=utf8
|
560
|
+
Content-Length:
|
561
|
+
- '1415'
|
562
|
+
Connection:
|
563
|
+
- keep-alive
|
564
|
+
X-End-User-Request-Id:
|
565
|
+
- '081a4a61-84ab-48fc-afe0-9679eb841dc4'
|
566
|
+
X-Shutterstock-Resource:
|
567
|
+
- "/v2/images/:id"
|
568
|
+
X-Shutterstock-App-Version:
|
569
|
+
- apitwo-739
|
570
|
+
Cache-Control:
|
571
|
+
- 'private; max-age: 60'
|
572
|
+
Etag:
|
573
|
+
- 3f848a3ab65ec8484144371aba11ffb7
|
574
|
+
X-End-User-User-Id:
|
575
|
+
- "<SSTK_USER_ID>"
|
576
|
+
X-End-User-Client-Id:
|
577
|
+
- "<SSTK_CLIENT_ID>"
|
578
|
+
body:
|
579
|
+
encoding: UTF-8
|
580
|
+
string: '{"id":"310998512","added_date":"2015-08-29","aspect":1,"assets":{"huge_jpg":{"display_name":"Huge","dpi":300,"file_size":1501184,"format":"jpg","height":5000,"is_licensable":false,"width":5000},"vector_eps":{"display_name":"Vector","format":"eps","is_licensable":true},"preview":{"height":450,"url":"https://image.shutterstock.com/display_pic_with_logo/1569788/310998512/stock-vector-sushi-isolated-illustration-on-white-background-310998512.jpg","width":450},"small_thumb":{"height":100,"url":"https://thumb9.shutterstock.com/thumb_small/1569788/310998512/stock-vector-sushi-isolated-illustration-on-white-background-310998512.jpg","width":100},"large_thumb":{"height":150,"url":"https://thumb9.shutterstock.com/thumb_large/1569788/310998512/stock-vector-sushi-isolated-illustration-on-white-background-310998512.jpg","width":150}},"categories":[{"id":"6","name":"Food
|
581
|
+
and Drink"},{"id":"17","name":"Signs/Symbols"}],"contributor":{"id":"1569788"},"description":"Sushi
|
582
|
+
isolated illustration on white background","image_type":"vector","is_adult":false,"is_illustration":true,"keywords":["appetizing","art","asia","asian","background","bar","cuisine","culture","delicious","design","dinner","east","fish","food","fresh","healthy","icon","illustration","isolated","japan","japanese","meal","menu","restaurant","rice","sashimi","seafood","sign","sushi","symbol","template","traditional","vector"],"media_type":"image"}'
|
583
|
+
http_version:
|
584
|
+
recorded_at: Sat, 07 Jan 2017 13:53:58 GMT
|
585
|
+
- request:
|
586
|
+
method: get
|
587
|
+
uri: https://api.shutterstock.com/v2/images/167873624
|
588
|
+
body:
|
589
|
+
encoding: US-ASCII
|
590
|
+
string: ''
|
591
|
+
headers:
|
592
|
+
User-Agent:
|
593
|
+
- Faraday v0.10.1
|
594
|
+
Authorization:
|
595
|
+
- Bearer <SSTK_ACCESS_TOKEN>
|
596
|
+
Accept-Encoding:
|
597
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
598
|
+
Accept:
|
599
|
+
- "*/*"
|
600
|
+
response:
|
601
|
+
status:
|
602
|
+
code: 200
|
603
|
+
message: OK
|
604
|
+
headers:
|
605
|
+
Server:
|
606
|
+
- nginx
|
607
|
+
Date:
|
608
|
+
- Sat, 07 Jan 2017 13:53:59 GMT
|
609
|
+
Content-Type:
|
610
|
+
- application/json; charset=utf8
|
611
|
+
Content-Length:
|
612
|
+
- '1739'
|
613
|
+
Connection:
|
614
|
+
- keep-alive
|
615
|
+
X-End-User-Request-Id:
|
616
|
+
- ccb12804-53ac-4f9d-9807-e57e5570c60a
|
617
|
+
X-Shutterstock-Resource:
|
618
|
+
- "/v2/images/:id"
|
619
|
+
X-Shutterstock-App-Version:
|
620
|
+
- apitwo-739
|
621
|
+
Cache-Control:
|
622
|
+
- 'private; max-age: 60'
|
623
|
+
Etag:
|
624
|
+
- b9597723fa8030954da7f78e3b4041dd
|
625
|
+
X-End-User-User-Id:
|
626
|
+
- "<SSTK_USER_ID>"
|
627
|
+
X-End-User-Client-Id:
|
628
|
+
- "<SSTK_CLIENT_ID>"
|
629
|
+
body:
|
630
|
+
encoding: UTF-8
|
631
|
+
string: '{"id":"167873624","added_date":"2013-12-18","aspect":1.5,"assets":{"small_jpg":{"display_name":"Small","dpi":72,"file_size":67584,"format":"jpg","height":333,"is_licensable":true,"width":500},"medium_jpg":{"display_name":"Med","dpi":300,"file_size":201728,"format":"jpg","height":667,"is_licensable":true,"width":1000},"huge_jpg":{"display_name":"Huge","dpi":300,"file_size":359424,"format":"jpg","height":2000,"is_licensable":true,"width":3000},"supersize_jpg":{"display_name":"Super","dpi":300,"file_size":792763,"format":"jpg","height":4000,"is_licensable":false,"width":6000},"huge_tiff":{"display_name":"Huge","dpi":300,"file_size":18000000,"format":"tiff","height":2000,"is_licensable":false,"width":3000},"supersize_tiff":{"display_name":"Super","dpi":300,"file_size":72000000,"format":"tiff","height":4000,"is_licensable":false,"width":6000},"preview":{"height":300,"url":"https://image.shutterstock.com/display_pic_with_logo/462202/167873624/stock-photo-realistic-d-render-of-liver-167873624.jpg","width":450},"small_thumb":{"height":67,"url":"https://thumb1.shutterstock.com/thumb_small/462202/167873624/stock-photo-realistic-d-render-of-liver-167873624.jpg","width":100},"large_thumb":{"height":100,"url":"https://thumb1.shutterstock.com/thumb_large/462202/167873624/stock-photo-realistic-d-render-of-liver-167873624.jpg","width":150}},"categories":[{"id":"7","name":"Healthcare/Medical"},{"id":"20","name":"NOT-CATEGORIZED"}],"contributor":{"id":"462202"},"description":"realistic
|
632
|
+
3d render of liver","image_type":"illustration","is_adult":false,"is_illustration":true,"keywords":["3d","cartoon","digestive","graphics","human","illustration","image","liver","model","object","realistic","render","system"],"media_type":"image"}'
|
633
|
+
http_version:
|
634
|
+
recorded_at: Sat, 07 Jan 2017 13:53:59 GMT
|
635
|
+
- request:
|
636
|
+
method: get
|
637
|
+
uri: https://api.shutterstock.com/v2/images/490162351
|
638
|
+
body:
|
639
|
+
encoding: US-ASCII
|
640
|
+
string: ''
|
641
|
+
headers:
|
642
|
+
User-Agent:
|
643
|
+
- Faraday v0.10.1
|
644
|
+
Authorization:
|
645
|
+
- Bearer <SSTK_ACCESS_TOKEN>
|
646
|
+
Accept-Encoding:
|
647
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
648
|
+
Accept:
|
649
|
+
- "*/*"
|
650
|
+
response:
|
651
|
+
status:
|
652
|
+
code: 200
|
653
|
+
message: OK
|
654
|
+
headers:
|
655
|
+
Server:
|
656
|
+
- nginx
|
657
|
+
Date:
|
658
|
+
- Sat, 07 Jan 2017 13:54:00 GMT
|
659
|
+
Content-Type:
|
660
|
+
- application/json; charset=utf8
|
661
|
+
Content-Length:
|
662
|
+
- '1314'
|
663
|
+
Connection:
|
664
|
+
- keep-alive
|
665
|
+
X-End-User-Request-Id:
|
666
|
+
- 4d9ab261-08f2-4ad6-be4c-20b959f66d43
|
667
|
+
X-Shutterstock-Resource:
|
668
|
+
- "/v2/images/:id"
|
669
|
+
X-Shutterstock-App-Version:
|
670
|
+
- apitwo-739
|
671
|
+
Cache-Control:
|
672
|
+
- 'private; max-age: 60'
|
673
|
+
Etag:
|
674
|
+
- 80a92ef8b65f7600ff7b5c3aee4e1817
|
675
|
+
X-End-User-User-Id:
|
676
|
+
- "<SSTK_USER_ID>"
|
677
|
+
X-End-User-Client-Id:
|
678
|
+
- "<SSTK_CLIENT_ID>"
|
679
|
+
body:
|
680
|
+
encoding: UTF-8
|
681
|
+
string: '{"id":"490162351","added_date":"2016-09-28","aspect":1,"assets":{"huge_jpg":{"display_name":"Huge","dpi":300,"file_size":674816,"format":"jpg","height":2500,"is_licensable":false,"width":2500},"vector_eps":{"display_name":"Vector","format":"eps","is_licensable":true},"preview":{"height":450,"url":"https://image.shutterstock.com/display_pic_with_logo/968654/490162351/stock-vector-horizontal-seamless-pattern-of-sea-motif-stripes-hand-drawn-490162351.jpg","width":450},"small_thumb":{"height":100,"url":"https://thumb7.shutterstock.com/thumb_small/968654/490162351/stock-vector-horizontal-seamless-pattern-of-sea-motif-stripes-hand-drawn-490162351.jpg","width":100},"large_thumb":{"height":150,"url":"https://thumb7.shutterstock.com/thumb_large/968654/490162351/stock-vector-horizontal-seamless-pattern-of-sea-motif-stripes-hand-drawn-490162351.jpg","width":150}},"categories":[{"id":"20","name":"NOT-CATEGORIZED"},{"id":"22","name":"Miscellaneous"}],"contributor":{"id":"968654"},"description":"Horizontal
|
682
|
+
seamless pattern of sea motif, stripes. Hand drawn.","image_type":"vector","is_adult":false,"is_illustration":true,"keywords":["art","beige","color","colored","design","doodle","drawn","fish","hand","horizontal","object","ocher","pattern","seamless","shell","stripe","vector","white"],"media_type":"image"}'
|
683
|
+
http_version:
|
684
|
+
recorded_at: Sat, 07 Jan 2017 13:54:00 GMT
|
685
|
+
- request:
|
686
|
+
method: get
|
687
|
+
uri: https://api.shutterstock.com/v2/images/80503540
|
688
|
+
body:
|
689
|
+
encoding: US-ASCII
|
690
|
+
string: ''
|
691
|
+
headers:
|
692
|
+
User-Agent:
|
693
|
+
- Faraday v0.10.1
|
694
|
+
Authorization:
|
695
|
+
- Bearer <SSTK_ACCESS_TOKEN>
|
696
|
+
Accept-Encoding:
|
697
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
698
|
+
Accept:
|
699
|
+
- "*/*"
|
700
|
+
response:
|
701
|
+
status:
|
702
|
+
code: 200
|
703
|
+
message: OK
|
704
|
+
headers:
|
705
|
+
Server:
|
706
|
+
- nginx
|
707
|
+
Date:
|
708
|
+
- Sat, 07 Jan 2017 13:54:01 GMT
|
709
|
+
Content-Type:
|
710
|
+
- application/json; charset=utf8
|
711
|
+
Content-Length:
|
712
|
+
- '1477'
|
713
|
+
Connection:
|
714
|
+
- keep-alive
|
715
|
+
X-End-User-Request-Id:
|
716
|
+
- 65022708-4e03-4a21-8225-85b56cc2e3fd
|
717
|
+
X-Shutterstock-Resource:
|
718
|
+
- "/v2/images/:id"
|
719
|
+
X-Shutterstock-App-Version:
|
720
|
+
- apitwo-739
|
721
|
+
Cache-Control:
|
722
|
+
- 'private; max-age: 60'
|
723
|
+
Etag:
|
724
|
+
- d30bf4abd52e2de0e1009aed71352cfe
|
725
|
+
X-End-User-User-Id:
|
726
|
+
- "<SSTK_USER_ID>"
|
727
|
+
X-End-User-Client-Id:
|
728
|
+
- "<SSTK_CLIENT_ID>"
|
729
|
+
body:
|
730
|
+
encoding: UTF-8
|
731
|
+
string: '{"id":"80503540","added_date":"2011-07-06","aspect":1.0118,"assets":{"huge_jpg":{"display_name":"Small","dpi":72,"file_size":114688,"format":"jpg","height":593,"is_licensable":false,"width":600},"vector_eps":{"display_name":"Vector","format":"eps","is_licensable":true},"preview":{"height":444,"url":"https://image.shutterstock.com/display_pic_with_logo/194326/194326,1309931804,2/stock-vector-vector-tropical-fish-80503540.jpg","width":450},"small_thumb":{"height":99,"url":"https://thumb9.shutterstock.com/thumb_small/194326/194326,1309931804,2/stock-vector-vector-tropical-fish-80503540.jpg","width":100},"large_thumb":{"height":148,"url":"https://thumb9.shutterstock.com/thumb_large/194326/194326,1309931804,2/stock-vector-vector-tropical-fish-80503540.jpg","width":150}},"categories":[{"id":"1","name":"Animals/Wildlife"},{"id":"26","name":"Abstract"}],"contributor":{"id":"194326"},"description":"Vector
|
732
|
+
tropical fish","image_type":"vector","is_adult":false,"is_illustration":true,"keywords":["abstract","angel","animal","aquarium","aquatic","art","backdrop","background","beach","beautiful","blue","bottom","bubble","cartoon","collection","color","colorful","coral","cute","deep","design","dive","drawing","exotic","fish","funny","green","group","icon","illustration","isolated","life","marine","nature","ocean","plant","reef","sea","seaweed","south","sparse","summer","swimming","tropic","tropical","underwater","vector","water","wild","wildlife"],"media_type":"image"}'
|
733
|
+
http_version:
|
734
|
+
recorded_at: Sat, 07 Jan 2017 13:54:01 GMT
|
735
|
+
- request:
|
736
|
+
method: get
|
737
|
+
uri: https://api.shutterstock.com/v2/images/490177678
|
738
|
+
body:
|
739
|
+
encoding: US-ASCII
|
740
|
+
string: ''
|
741
|
+
headers:
|
742
|
+
User-Agent:
|
743
|
+
- Faraday v0.10.1
|
744
|
+
Authorization:
|
745
|
+
- Bearer <SSTK_ACCESS_TOKEN>
|
746
|
+
Accept-Encoding:
|
747
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
748
|
+
Accept:
|
749
|
+
- "*/*"
|
750
|
+
response:
|
751
|
+
status:
|
752
|
+
code: 200
|
753
|
+
message: OK
|
754
|
+
headers:
|
755
|
+
Server:
|
756
|
+
- nginx
|
757
|
+
Date:
|
758
|
+
- Sat, 07 Jan 2017 13:54:02 GMT
|
759
|
+
Content-Type:
|
760
|
+
- application/json; charset=utf8
|
761
|
+
Content-Length:
|
762
|
+
- '1900'
|
763
|
+
Connection:
|
764
|
+
- keep-alive
|
765
|
+
X-End-User-Request-Id:
|
766
|
+
- 9d50be2f-6cdb-4a63-9b96-f788b57eecaa
|
767
|
+
X-Shutterstock-Resource:
|
768
|
+
- "/v2/images/:id"
|
769
|
+
X-Shutterstock-App-Version:
|
770
|
+
- apitwo-739
|
771
|
+
Cache-Control:
|
772
|
+
- 'private; max-age: 60'
|
773
|
+
Etag:
|
774
|
+
- 9169af8c1fd36f0a3d608d3e5f7bfed2
|
775
|
+
X-End-User-User-Id:
|
776
|
+
- "<SSTK_USER_ID>"
|
777
|
+
X-End-User-Client-Id:
|
778
|
+
- "<SSTK_CLIENT_ID>"
|
779
|
+
body:
|
780
|
+
encoding: UTF-8
|
781
|
+
string: '{"id":"490177678","added_date":"2016-09-28","aspect":1,"assets":{"small_jpg":{"display_name":"Small","dpi":72,"file_size":95232,"format":"jpg","height":500,"is_licensable":true,"width":500},"medium_jpg":{"display_name":"Med","dpi":300,"file_size":256000,"format":"jpg","height":1000,"is_licensable":true,"width":1000},"huge_jpg":{"display_name":"Huge","dpi":300,"file_size":677888,"format":"jpg","height":2500,"is_licensable":true,"width":2500},"supersize_jpg":{"display_name":"Super","dpi":300,"file_size":1384005,"format":"jpg","height":5000,"is_licensable":false,"width":5000},"huge_tiff":{"display_name":"Huge","dpi":300,"file_size":18750000,"format":"tiff","height":2500,"is_licensable":false,"width":2500},"supersize_tiff":{"display_name":"Super","dpi":300,"file_size":75000000,"format":"tiff","height":5000,"is_licensable":false,"width":5000},"preview":{"height":450,"url":"https://image.shutterstock.com/display_pic_with_logo/968654/490177678/stock-photo-horizontal-seamless-pattern-of-sea-motif-stripes-hand-drawn-490177678.jpg","width":450},"small_thumb":{"height":100,"url":"https://thumb1.shutterstock.com/thumb_small/968654/490177678/stock-photo-horizontal-seamless-pattern-of-sea-motif-stripes-hand-drawn-490177678.jpg","width":100},"large_thumb":{"height":150,"url":"https://thumb1.shutterstock.com/thumb_large/968654/490177678/stock-photo-horizontal-seamless-pattern-of-sea-motif-stripes-hand-drawn-490177678.jpg","width":150}},"categories":[{"id":"20","name":"NOT-CATEGORIZED"},{"id":"22","name":"Miscellaneous"}],"contributor":{"id":"968654"},"description":"Horizontal
|
782
|
+
seamless pattern of sea motif, stripes. Hand drawn.","image_type":"illustration","is_adult":false,"is_illustration":true,"keywords":["art","beige","color","colored","design","doodle","drawn","fish","hand","horizontal","object","ocher","pattern","picture","seamless","shell","stripe","white"],"media_type":"image"}'
|
783
|
+
http_version:
|
784
|
+
recorded_at: Sat, 07 Jan 2017 13:54:02 GMT
|
785
|
+
- request:
|
786
|
+
method: get
|
787
|
+
uri: https://api.shutterstock.com/v2/images/41402194
|
788
|
+
body:
|
789
|
+
encoding: US-ASCII
|
790
|
+
string: ''
|
791
|
+
headers:
|
792
|
+
User-Agent:
|
793
|
+
- Faraday v0.10.1
|
794
|
+
Authorization:
|
795
|
+
- Bearer <SSTK_ACCESS_TOKEN>
|
796
|
+
Accept-Encoding:
|
797
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
798
|
+
Accept:
|
799
|
+
- "*/*"
|
800
|
+
response:
|
801
|
+
status:
|
802
|
+
code: 200
|
803
|
+
message: OK
|
804
|
+
headers:
|
805
|
+
Server:
|
806
|
+
- nginx
|
807
|
+
Date:
|
808
|
+
- Sat, 07 Jan 2017 13:54:03 GMT
|
809
|
+
Content-Type:
|
810
|
+
- application/json; charset=utf8
|
811
|
+
Content-Length:
|
812
|
+
- '2111'
|
813
|
+
Connection:
|
814
|
+
- keep-alive
|
815
|
+
X-End-User-Request-Id:
|
816
|
+
- d66f5a05-b1d7-4e0e-8538-f0ecfd644198
|
817
|
+
X-Shutterstock-Resource:
|
818
|
+
- "/v2/images/:id"
|
819
|
+
X-Shutterstock-App-Version:
|
820
|
+
- apitwo-739
|
821
|
+
Cache-Control:
|
822
|
+
- 'private; max-age: 60'
|
823
|
+
Etag:
|
824
|
+
- 1900bb24031b656f86ab23e49c2ee344
|
825
|
+
X-End-User-User-Id:
|
826
|
+
- "<SSTK_USER_ID>"
|
827
|
+
X-End-User-Client-Id:
|
828
|
+
- "<SSTK_CLIENT_ID>"
|
829
|
+
body:
|
830
|
+
encoding: UTF-8
|
831
|
+
string: '{"id":"41402194","added_date":"2009-11-22","aspect":1.3643,"assets":{"small_jpg":{"display_name":"Small","dpi":72,"file_size":69632,"format":"jpg","height":366,"is_licensable":true,"width":500},"medium_jpg":{"display_name":"Med","dpi":300,"file_size":218112,"format":"jpg","height":733,"is_licensable":true,"width":1000},"huge_jpg":{"display_name":"Huge","dpi":300,"file_size":1127424,"format":"jpg","height":2199,"is_licensable":true,"width":3000},"supersize_jpg":{"display_name":"Super","dpi":300,"file_size":3252326,"format":"jpg","height":4398,"is_licensable":false,"width":6000},"huge_tiff":{"display_name":"Huge","dpi":300,"file_size":19791000,"format":"tiff","height":2199,"is_licensable":false,"width":3000},"supersize_tiff":{"display_name":"Super","dpi":300,"file_size":79164000,"format":"tiff","height":4398,"is_licensable":false,"width":6000},"preview":{"height":329,"url":"https://image.shutterstock.com/display_pic_with_logo/350272/350272,1258905549,10/stock-photo-abstract-element-41402194.jpg","width":450},"small_thumb":{"height":73,"url":"https://thumb1.shutterstock.com/thumb_small/350272/350272,1258905549,10/stock-photo-abstract-element-41402194.jpg","width":100},"large_thumb":{"height":110,"url":"https://thumb1.shutterstock.com/thumb_large/350272/350272,1258905549,10/stock-photo-abstract-element-41402194.jpg","width":150}},"categories":[{"id":"3","name":"Backgrounds/Textures"},{"id":"23","name":"Illustrations/Clip-Art"}],"contributor":{"id":"350272"},"description":"Abstract
|
832
|
+
element","image_type":"illustration","is_adult":false,"is_illustration":true,"keywords":["abstract","action","arts","backdrop","backgrounds","banner","blurred","bright","color","computer","concepts","copy","creativity","curled","curve","decoration","design","digital","effects","elements","flowing","generated","glowing","graphic","ideas","illuminated","illustration","image","imagination","inspiration","modern","motions","ornament","pattern","red","render","rendering","saturated","shape","shiny","simplicity","sparse","style","swirl","textured","twisted","vibrant","wallpaper","wave"],"media_type":"image"}'
|
833
|
+
http_version:
|
834
|
+
recorded_at: Sat, 07 Jan 2017 13:54:03 GMT
|
835
|
+
- request:
|
836
|
+
method: get
|
837
|
+
uri: https://api.shutterstock.com/v2/images/13804285
|
838
|
+
body:
|
839
|
+
encoding: US-ASCII
|
840
|
+
string: ''
|
841
|
+
headers:
|
842
|
+
User-Agent:
|
843
|
+
- Faraday v0.10.1
|
844
|
+
Authorization:
|
845
|
+
- Bearer <SSTK_ACCESS_TOKEN>
|
846
|
+
Accept-Encoding:
|
847
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
848
|
+
Accept:
|
849
|
+
- "*/*"
|
850
|
+
response:
|
851
|
+
status:
|
852
|
+
code: 200
|
853
|
+
message: OK
|
854
|
+
headers:
|
855
|
+
Server:
|
856
|
+
- nginx
|
857
|
+
Date:
|
858
|
+
- Sat, 07 Jan 2017 13:54:04 GMT
|
859
|
+
Content-Type:
|
860
|
+
- application/json; charset=utf8
|
861
|
+
Content-Length:
|
862
|
+
- '1429'
|
863
|
+
Connection:
|
864
|
+
- keep-alive
|
865
|
+
X-End-User-Request-Id:
|
866
|
+
- 38c49f5c-4eb1-47c9-bbbe-5c204fcb57da
|
867
|
+
X-Shutterstock-Resource:
|
868
|
+
- "/v2/images/:id"
|
869
|
+
X-Shutterstock-App-Version:
|
870
|
+
- apitwo-739
|
871
|
+
Cache-Control:
|
872
|
+
- 'private; max-age: 60'
|
873
|
+
Etag:
|
874
|
+
- d94ff52e4371bad834605e25124a0cc5
|
875
|
+
X-End-User-User-Id:
|
876
|
+
- "<SSTK_USER_ID>"
|
877
|
+
X-End-User-Client-Id:
|
878
|
+
- "<SSTK_CLIENT_ID>"
|
879
|
+
body:
|
880
|
+
encoding: UTF-8
|
881
|
+
string: '{"id":"13804285","added_date":"2008-06-16","aspect":1.1888,"assets":{"huge_jpg":{"display_name":"Small","dpi":72,"file_size":179200,"format":"jpg","height":800,"is_licensable":false,"width":951},"vector_eps":{"display_name":"Vector","format":"eps","is_licensable":true},"preview":{"height":378,"url":"https://image.shutterstock.com/display_pic_with_logo/78981/78981,1213446831,5/stock-vector-flaming-match-13804285.jpg","width":450},"small_thumb":{"height":84,"url":"https://thumb7.shutterstock.com/thumb_small/78981/78981,1213446831,5/stock-vector-flaming-match-13804285.jpg","width":100},"large_thumb":{"height":126,"url":"https://thumb7.shutterstock.com/thumb_large/78981/78981,1213446831,5/stock-vector-flaming-match-13804285.jpg","width":150}},"categories":[{"id":"11","name":"The
|
882
|
+
Arts"},{"id":"3","name":"Backgrounds/Textures"}],"contributor":{"id":"78981"},"description":"flaming
|
883
|
+
match","image_type":"vector","is_adult":false,"is_illustration":true,"keywords":["abstract","art","background","bright","circle","color","colorful","concept","conceptual","curve","decorative","design","dot","element","fire","flame","fun","funky","graphics","groovy","hot","icon","illustration","match","matchtick","modern","orange","ornament","polka","pop","poster","print","red","retro","ring","round","shape","sign","signage","stick","stylize","symbol","texture","vector","vibrant","vivid","wallpaper","warm","yellow"],"media_type":"image"}'
|
884
|
+
http_version:
|
885
|
+
recorded_at: Sat, 07 Jan 2017 13:54:05 GMT
|
886
|
+
- request:
|
887
|
+
method: get
|
888
|
+
uri: https://api.shutterstock.com/v2/images/259360085
|
889
|
+
body:
|
890
|
+
encoding: US-ASCII
|
891
|
+
string: ''
|
892
|
+
headers:
|
893
|
+
User-Agent:
|
894
|
+
- Faraday v0.10.1
|
895
|
+
Authorization:
|
896
|
+
- Bearer <SSTK_ACCESS_TOKEN>
|
897
|
+
Accept-Encoding:
|
898
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
899
|
+
Accept:
|
900
|
+
- "*/*"
|
901
|
+
response:
|
902
|
+
status:
|
903
|
+
code: 200
|
904
|
+
message: OK
|
905
|
+
headers:
|
906
|
+
Server:
|
907
|
+
- nginx
|
908
|
+
Date:
|
909
|
+
- Sat, 07 Jan 2017 13:54:05 GMT
|
910
|
+
Content-Type:
|
911
|
+
- application/json; charset=utf8
|
912
|
+
Content-Length:
|
913
|
+
- '1719'
|
914
|
+
Connection:
|
915
|
+
- keep-alive
|
916
|
+
X-End-User-Request-Id:
|
917
|
+
- 3b84b0d5-4820-4154-b94c-044c8faf8a23
|
918
|
+
X-Shutterstock-Resource:
|
919
|
+
- "/v2/images/:id"
|
920
|
+
X-Shutterstock-App-Version:
|
921
|
+
- apitwo-739
|
922
|
+
Cache-Control:
|
923
|
+
- 'private; max-age: 60'
|
924
|
+
Etag:
|
925
|
+
- d8f57affd3abca63cbfad5f939975cfa
|
926
|
+
X-End-User-User-Id:
|
927
|
+
- "<SSTK_USER_ID>"
|
928
|
+
X-End-User-Client-Id:
|
929
|
+
- "<SSTK_CLIENT_ID>"
|
930
|
+
body:
|
931
|
+
encoding: UTF-8
|
932
|
+
string: '{"id":"259360085","added_date":"2015-03-10","aspect":1.4981,"assets":{"small_jpg":{"display_name":"Small","dpi":72,"file_size":134144,"format":"jpg","height":334,"is_licensable":true,"width":500},"medium_jpg":{"display_name":"Med","dpi":300,"file_size":481280,"format":"jpg","height":668,"is_licensable":true,"width":1000},"huge_jpg":{"display_name":"Huge","dpi":300,"file_size":9920512,"format":"jpg","height":3744,"is_licensable":true,"width":5609},"huge_tiff":{"display_name":"Huge","dpi":300,"file_size":63000288,"format":"tiff","height":3744,"is_licensable":false,"width":5609},"preview":{"height":300,"url":"https://image.shutterstock.com/display_pic_with_logo/1377379/259360085/stock-photo-china-fan-isolated-on-white-background-259360085.jpg","width":450},"small_thumb":{"height":67,"url":"https://thumb7.shutterstock.com/thumb_small/1377379/259360085/stock-photo-china-fan-isolated-on-white-background-259360085.jpg","width":100},"large_thumb":{"height":100,"url":"https://thumb7.shutterstock.com/thumb_large/1377379/259360085/stock-photo-china-fan-isolated-on-white-background-259360085.jpg","width":150}},"categories":[{"id":"9","name":"Objects"},{"id":"11","name":"The
|
933
|
+
Arts"}],"contributor":{"id":"1377379"},"description":"China fan isolated on
|
934
|
+
white background","image_type":"photo","is_adult":false,"keywords":["abstract","accessory","air","art","artistic","asia","asian","background","beautiful","beauty","china","chinese","color","cool","craft","culture","decoration","design","east","eastern","elegance","fan","fashion","isolated","japan","japanese","object","open","oriental","ornament","paper","pattern","summer","symbol","texture","traditional","vintage","white","wind","wood"],"media_type":"image"}'
|
935
|
+
http_version:
|
936
|
+
recorded_at: Sat, 07 Jan 2017 13:54:06 GMT
|
937
|
+
- request:
|
938
|
+
method: get
|
939
|
+
uri: https://api.shutterstock.com/v2/images/231930946
|
940
|
+
body:
|
941
|
+
encoding: US-ASCII
|
942
|
+
string: ''
|
943
|
+
headers:
|
944
|
+
User-Agent:
|
945
|
+
- Faraday v0.10.1
|
946
|
+
Authorization:
|
947
|
+
- Bearer <SSTK_ACCESS_TOKEN>
|
948
|
+
Accept-Encoding:
|
949
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
950
|
+
Accept:
|
951
|
+
- "*/*"
|
952
|
+
response:
|
953
|
+
status:
|
954
|
+
code: 200
|
955
|
+
message: OK
|
956
|
+
headers:
|
957
|
+
Server:
|
958
|
+
- nginx
|
959
|
+
Date:
|
960
|
+
- Sat, 07 Jan 2017 13:54:06 GMT
|
961
|
+
Content-Type:
|
962
|
+
- application/json; charset=utf8
|
963
|
+
Content-Length:
|
964
|
+
- '1634'
|
965
|
+
Connection:
|
966
|
+
- keep-alive
|
967
|
+
X-End-User-Request-Id:
|
968
|
+
- 31460bc7-1552-414d-bedb-b40e39abb09e
|
969
|
+
X-Shutterstock-Resource:
|
970
|
+
- "/v2/images/:id"
|
971
|
+
X-Shutterstock-App-Version:
|
972
|
+
- apitwo-739
|
973
|
+
Cache-Control:
|
974
|
+
- 'private; max-age: 60'
|
975
|
+
Etag:
|
976
|
+
- e9e33f47664bb483882409648e08dcf7
|
977
|
+
X-End-User-User-Id:
|
978
|
+
- "<SSTK_USER_ID>"
|
979
|
+
X-End-User-Client-Id:
|
980
|
+
- "<SSTK_CLIENT_ID>"
|
981
|
+
body:
|
982
|
+
encoding: UTF-8
|
983
|
+
string: '{"id":"231930946","added_date":"2014-11-20","aspect":1.0145,"assets":{"huge_jpg":{"display_name":"Huge","dpi":300,"file_size":6356992,"format":"jpg","height":12142,"is_licensable":false,"width":12318},"vector_eps":{"display_name":"Vector","format":"eps","is_licensable":true},"preview":{"height":443,"url":"https://image.shutterstock.com/display_pic_with_logo/2532697/231930946/stock-vector-color-of-autumn-leaf-on-white-background-231930946.jpg","width":450},"small_thumb":{"height":99,"url":"https://thumb9.shutterstock.com/thumb_small/2532697/231930946/stock-vector-color-of-autumn-leaf-on-white-background-231930946.jpg","width":100},"large_thumb":{"height":148,"url":"https://thumb9.shutterstock.com/thumb_large/2532697/231930946/stock-vector-color-of-autumn-leaf-on-white-background-231930946.jpg","width":150}},"categories":[{"id":"3","name":"Backgrounds/Textures"},{"id":"11","name":"The
|
984
|
+
Arts"}],"contributor":{"id":"2532697"},"description":"Color of Autumn leaf
|
985
|
+
on white Background","image_type":"vector","is_adult":false,"is_illustration":true,"keywords":["abstract","advertising","background","banner","beautiful","brochure","business","calendar","card","celebrate","celebration","chinese","christmas","concept","congratulation","creative","decoration","decorative","festival","flyer","gift","greeting","happiness","happy","holiday","horse","label","layout","love","luxury","merry","modern","new","occasion","of","ornament","party","poster","present","presentation","promotion","prosperity","sale","season","sticker","tag","tattoo","template","the","wallpaper","website","wishes","xmas","year","yule"],"media_type":"image"}'
|
986
|
+
http_version:
|
987
|
+
recorded_at: Sat, 07 Jan 2017 13:54:07 GMT
|
988
|
+
- request:
|
989
|
+
method: get
|
990
|
+
uri: https://api.shutterstock.com/v2/images/542327914
|
991
|
+
body:
|
992
|
+
encoding: US-ASCII
|
993
|
+
string: ''
|
994
|
+
headers:
|
995
|
+
User-Agent:
|
996
|
+
- Faraday v0.10.1
|
997
|
+
Authorization:
|
998
|
+
- Bearer <SSTK_ACCESS_TOKEN>
|
999
|
+
Accept-Encoding:
|
1000
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1001
|
+
Accept:
|
1002
|
+
- "*/*"
|
1003
|
+
response:
|
1004
|
+
status:
|
1005
|
+
code: 200
|
1006
|
+
message: OK
|
1007
|
+
headers:
|
1008
|
+
Server:
|
1009
|
+
- nginx
|
1010
|
+
Date:
|
1011
|
+
- Sat, 07 Jan 2017 13:54:08 GMT
|
1012
|
+
Content-Type:
|
1013
|
+
- application/json; charset=utf8
|
1014
|
+
Content-Length:
|
1015
|
+
- '2094'
|
1016
|
+
Connection:
|
1017
|
+
- keep-alive
|
1018
|
+
X-End-User-Request-Id:
|
1019
|
+
- 07d25cb6-3c91-423b-b3a4-cdc99e3cda84
|
1020
|
+
X-Shutterstock-Resource:
|
1021
|
+
- "/v2/images/:id"
|
1022
|
+
X-Shutterstock-App-Version:
|
1023
|
+
- apitwo-739
|
1024
|
+
Cache-Control:
|
1025
|
+
- 'private; max-age: 60'
|
1026
|
+
Etag:
|
1027
|
+
- 86724085d9cecfb9a8bd8779df9da2b2
|
1028
|
+
X-End-User-User-Id:
|
1029
|
+
- "<SSTK_USER_ID>"
|
1030
|
+
X-End-User-Client-Id:
|
1031
|
+
- "<SSTK_CLIENT_ID>"
|
1032
|
+
body:
|
1033
|
+
encoding: UTF-8
|
1034
|
+
string: '{"id":"542327914","added_date":"2016-12-24","aspect":1,"assets":{"small_jpg":{"display_name":"Small","dpi":72,"file_size":86016,"format":"jpg","height":500,"is_licensable":true,"width":500},"medium_jpg":{"display_name":"Med","dpi":300,"file_size":206848,"format":"jpg","height":1000,"is_licensable":true,"width":1000},"huge_jpg":{"display_name":"Huge","dpi":300,"file_size":1107968,"format":"jpg","height":5000,"is_licensable":true,"width":5000},"huge_tiff":{"display_name":"Huge","dpi":300,"file_size":75000000,"format":"tiff","height":5000,"is_licensable":false,"width":5000},"preview":{"height":450,"url":"https://image.shutterstock.com/display_pic_with_logo/615877/542327914/stock-photo-art-fairy-illustration-of-tree-stylized-eco-symbol-insight-image-on-season-idea-beautiful-plant-542327914.jpg","width":450},"small_thumb":{"height":100,"url":"https://thumb1.shutterstock.com/thumb_small/615877/542327914/stock-photo-art-fairy-illustration-of-tree-stylized-eco-symbol-insight-image-on-season-idea-beautiful-plant-542327914.jpg","width":100},"large_thumb":{"height":150,"url":"https://thumb1.shutterstock.com/thumb_large/615877/542327914/stock-photo-art-fairy-illustration-of-tree-stylized-eco-symbol-insight-image-on-season-idea-beautiful-plant-542327914.jpg","width":150}},"categories":[{"id":"11","name":"The
|
1035
|
+
Arts"},{"id":"12","name":"Nature"}],"contributor":{"id":"615877"},"description":"Art
|
1036
|
+
fairy illustration of tree, stylized eco symbol. Insight image on season idea,
|
1037
|
+
beautiful plant.","image_type":"illustration","is_adult":false,"is_illustration":true,"keywords":["abstract","art","artistic","autumn","beautiful","botanical","branch","branchy","bright","conceptual","conservation","decoration","decorative","dendrology","design","design
|
1038
|
+
element","eco","ecology","element","environment","environmental","fall","flora","floral","foliage","forest","garden","graphic","grass","herb","herbal","illustration","image","isolated","leaf","natural","nature","picture","plant","season","single","stylized","symbol","symbolic","tree","tree
|
1039
|
+
of life","vegetation","wood"],"media_type":"image"}'
|
1040
|
+
http_version:
|
1041
|
+
recorded_at: Sat, 07 Jan 2017 13:54:08 GMT
|
1042
|
+
- request:
|
1043
|
+
method: get
|
1044
|
+
uri: https://api.shutterstock.com/v2/images/478781389
|
1045
|
+
body:
|
1046
|
+
encoding: US-ASCII
|
1047
|
+
string: ''
|
1048
|
+
headers:
|
1049
|
+
User-Agent:
|
1050
|
+
- Faraday v0.10.1
|
1051
|
+
Authorization:
|
1052
|
+
- Bearer <SSTK_ACCESS_TOKEN>
|
1053
|
+
Accept-Encoding:
|
1054
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1055
|
+
Accept:
|
1056
|
+
- "*/*"
|
1057
|
+
response:
|
1058
|
+
status:
|
1059
|
+
code: 200
|
1060
|
+
message: OK
|
1061
|
+
headers:
|
1062
|
+
Server:
|
1063
|
+
- nginx
|
1064
|
+
Date:
|
1065
|
+
- Sat, 07 Jan 2017 13:54:09 GMT
|
1066
|
+
Content-Type:
|
1067
|
+
- application/json; charset=utf8
|
1068
|
+
Content-Length:
|
1069
|
+
- '1781'
|
1070
|
+
Connection:
|
1071
|
+
- keep-alive
|
1072
|
+
X-End-User-Request-Id:
|
1073
|
+
- 7e805ed3-cc1f-47f3-a10c-15c11b20de2a
|
1074
|
+
X-Shutterstock-Resource:
|
1075
|
+
- "/v2/images/:id"
|
1076
|
+
X-Shutterstock-App-Version:
|
1077
|
+
- apitwo-739
|
1078
|
+
Cache-Control:
|
1079
|
+
- 'private; max-age: 60'
|
1080
|
+
Etag:
|
1081
|
+
- ff4624f72f45bac7a8add6735a07fd97
|
1082
|
+
X-End-User-User-Id:
|
1083
|
+
- "<SSTK_USER_ID>"
|
1084
|
+
X-End-User-Client-Id:
|
1085
|
+
- "<SSTK_CLIENT_ID>"
|
1086
|
+
body:
|
1087
|
+
encoding: UTF-8
|
1088
|
+
string: '{"id":"478781389","added_date":"2016-09-05","aspect":1,"assets":{"huge_jpg":{"display_name":"Huge","dpi":300,"file_size":1103872,"format":"jpg","height":5000,"is_licensable":false,"width":5000},"vector_eps":{"display_name":"Vector","format":"eps","is_licensable":true},"preview":{"height":450,"url":"https://image.shutterstock.com/display_pic_with_logo/615877/478781389/stock-vector-art-fairy-illustration-of-tree-stylized-eco-symbol-insight-vector-image-on-season-idea-beautiful-478781389.jpg","width":450},"small_thumb":{"height":100,"url":"https://thumb7.shutterstock.com/thumb_small/615877/478781389/stock-vector-art-fairy-illustration-of-tree-stylized-eco-symbol-insight-vector-image-on-season-idea-beautiful-478781389.jpg","width":100},"large_thumb":{"height":150,"url":"https://thumb7.shutterstock.com/thumb_large/615877/478781389/stock-vector-art-fairy-illustration-of-tree-stylized-eco-symbol-insight-vector-image-on-season-idea-beautiful-478781389.jpg","width":150}},"categories":[{"id":"11","name":"The
|
1089
|
+
Arts"},{"id":"12","name":"Nature"}],"contributor":{"id":"615877"},"description":"Art
|
1090
|
+
fairy illustration of tree, stylized eco symbol. Insight vector image on season
|
1091
|
+
idea, beautiful plant.","image_type":"vector","is_adult":false,"is_illustration":true,"keywords":["abstract","art","artistic","autumn","beautiful","botanical","branch","branchy","bright","conceptual","conservation","decoration","decorative","dendrology","design","eco","ecology","element","environment","environmental","fall","flora","floral","foliage","forest","garden","graphic","grass","herb","herbal","illustration","image","isolated","leaf","life","natural","nature","of","picture","plant","season","single","stylized","symbol","symbolic","tree","vector","vegetation","wood"],"media_type":"image"}'
|
1092
|
+
http_version:
|
1093
|
+
recorded_at: Sat, 07 Jan 2017 13:54:09 GMT
|
1094
|
+
- request:
|
1095
|
+
method: get
|
1096
|
+
uri: https://api.shutterstock.com/v2/images/47854045
|
1097
|
+
body:
|
1098
|
+
encoding: US-ASCII
|
1099
|
+
string: ''
|
1100
|
+
headers:
|
1101
|
+
User-Agent:
|
1102
|
+
- Faraday v0.10.1
|
1103
|
+
Authorization:
|
1104
|
+
- Bearer <SSTK_ACCESS_TOKEN>
|
1105
|
+
Accept-Encoding:
|
1106
|
+
- gzip;q=1.0,deflate;q=0.6,identity;q=0.3
|
1107
|
+
Accept:
|
1108
|
+
- "*/*"
|
1109
|
+
response:
|
1110
|
+
status:
|
1111
|
+
code: 200
|
1112
|
+
message: OK
|
1113
|
+
headers:
|
1114
|
+
Server:
|
1115
|
+
- nginx
|
1116
|
+
Date:
|
1117
|
+
- Sat, 07 Jan 2017 13:54:10 GMT
|
1118
|
+
Content-Type:
|
1119
|
+
- application/json; charset=utf8
|
1120
|
+
Content-Length:
|
1121
|
+
- '1917'
|
1122
|
+
Connection:
|
1123
|
+
- keep-alive
|
1124
|
+
X-End-User-Request-Id:
|
1125
|
+
- 2555ed27-1ada-4598-8d51-3058b87e9463
|
1126
|
+
X-Shutterstock-Resource:
|
1127
|
+
- "/v2/images/:id"
|
1128
|
+
X-Shutterstock-App-Version:
|
1129
|
+
- apitwo-739
|
1130
|
+
Cache-Control:
|
1131
|
+
- 'private; max-age: 60'
|
1132
|
+
Etag:
|
1133
|
+
- 0f8e3cff4f4b206f7a94e373f997e3c9
|
1134
|
+
X-End-User-User-Id:
|
1135
|
+
- "<SSTK_USER_ID>"
|
1136
|
+
X-End-User-Client-Id:
|
1137
|
+
- "<SSTK_CLIENT_ID>"
|
1138
|
+
body:
|
1139
|
+
encoding: UTF-8
|
1140
|
+
string: '{"id":"47854045","added_date":"2010-03-03","aspect":0.9306,"assets":{"small_jpg":{"display_name":"Small","dpi":72,"file_size":93184,"format":"jpg","height":500,"is_licensable":true,"width":465},"medium_jpg":{"display_name":"Med","dpi":300,"file_size":214016,"format":"jpg","height":1000,"is_licensable":true,"width":931},"huge_jpg":{"display_name":"Huge","dpi":300,"file_size":1210368,"format":"jpg","height":5000,"is_licensable":true,"width":4653},"huge_tiff":{"display_name":"Huge","dpi":300,"file_size":69795000,"format":"tiff","height":5000,"is_licensable":false,"width":4653},"preview":{"height":450,"url":"https://image.shutterstock.com/display_pic_with_logo/553351/553351,1267615340,6/stock-photo-illustration-of-isolated-an-umbrella-on-white-background-47854045.jpg","width":418},"small_thumb":{"height":100,"url":"https://thumb9.shutterstock.com/thumb_small/553351/553351,1267615340,6/stock-photo-illustration-of-isolated-an-umbrella-on-white-background-47854045.jpg","width":93},"large_thumb":{"height":150,"url":"https://thumb9.shutterstock.com/thumb_large/553351/553351,1267615340,6/stock-photo-illustration-of-isolated-an-umbrella-on-white-background-47854045.jpg","width":140}},"categories":[{"id":"23","name":"Illustrations/Clip-Art"},{"id":"0","name":"Transportation"}],"contributor":{"id":"553351"},"description":"illustration
|
1141
|
+
of isolated an umbrella on white background","image_type":"illustration","is_adult":false,"is_illustration":true,"keywords":["accessory","art","autumn","background","care","cartoon","classic","climate","color","design","drawing","empty","equipment","fashion","graphic","handle","healthy","icon","illustration","isolated","object","open","outdoor","painting","protect","protection","rain","rainy","safety","season","seasonal","shelter","single","sketch","sky","storm","style","summer","sun","symbol","umbrella","water","weather","wet","white","yellow"],"media_type":"image"}'
|
1142
|
+
http_version:
|
1143
|
+
recorded_at: Sat, 07 Jan 2017 13:54:10 GMT
|
1144
|
+
recorded_with: VCR 3.0.3
|