forked from NikolaiT/GoogleScraper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
marketing.json
12169 lines (12169 loc) · 476 KB
/
marketing.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[{
"effective_query": "",
"id": "3206",
"no_results": "True",
"num_results": "0",
"num_results_for_query": "0",
"page_number": "1",
"query": "Viggo Jonasson Levi Strauss",
"requested_at": "2018-08-27 13:13:56.035880",
"requested_by": "localhost",
"results": [],
"scrape_method": "http-async",
"search_engine_name": "yahoo",
"status": "successful"
},{
"effective_query": "",
"id": "3207",
"no_results": "False",
"num_results": "0",
"num_results_for_query": "0",
"page_number": "1",
"query": "Victor Nylander LVMH",
"requested_at": "2018-08-27 13:11:45.316055",
"requested_by": "localhost",
"results": [],
"scrape_method": "http-async",
"search_engine_name": "bing",
"status": "successful"
},{
"effective_query": "",
"id": "3208",
"no_results": "True",
"num_results": "0",
"num_results_for_query": "0",
"page_number": "1",
"query": "Victor Nylander LVMH",
"requested_at": "2018-08-27 13:13:56.085093",
"requested_by": "localhost",
"results": [],
"scrape_method": "http-async",
"search_engine_name": "yahoo",
"status": "successful"
},{
"effective_query": "",
"id": "3209",
"no_results": "True",
"num_results": "10",
"num_results_for_query": "1.150.000 results",
"page_number": "1",
"query": "Victor Nylander H&M",
"requested_at": "2018-08-27 13:11:45.392389",
"requested_by": "localhost",
"results": [
{
"domain": "www.instagram.com",
"id": "32799",
"link": "https://www.instagram.com/victorenylander/",
"link_type": "results",
"rank": "1",
"serp_id": "3209",
"snippet": "3,241 Followers, 330 Following, 364 Posts - See Instagram photos and videos from Victor Nylander (@victorenylander)",
"title": "Victor Nylander (@victorenylander) \u2022 Instagram photos \u2026",
"visible_link": "https://www.instagram.com/victorenylander"
},
{
"domain": "www.thefashionisto.com",
"id": "32800",
"link": "https://www.thefashionisto.com/victor-nylander-john-hein-rock-hm-divideds-october-looks/",
"link_type": "results",
"rank": "2",
"serp_id": "3209",
"snippet": "October Looks\u2013H&M enlists models Victor Nylander and John Hein for October looks from their Divided line. Paired with skinny jeans and sneakers, a lineup of relaxed shirting and knitwear tackle a cool on-trend urban appeal.",
"title": "H&M Divided October Looks - The Fashionisto",
"visible_link": "https://www.thefashionisto.com/victor-nylander-john-hein-rock-hm..."
},
{
"domain": "models.com",
"id": "32801",
"link": "https://models.com/models/victor-nylander",
"link_type": "results",
"rank": "3",
"serp_id": "3209",
"snippet": "Login or register to personalize your Models.com account and searches Register or Login. Log In; Sign-up; Masthead; ... Victor Nylander Victor Nylander on ...",
"title": "Victor Nylander - Model Profile - MODELS.com",
"visible_link": "https://models.com/models/victor-nylander"
},
{
"domain": "www.instagram.com",
"id": "32802",
"link": "https://www.instagram.com/viktornyylander/",
"link_type": "results",
"rank": "4",
"serp_id": "3209",
"snippet": "4,734 Followers, 656 Following, 52 Posts - See Instagram photos and videos from Viktor Nylander (@viktornyylander)",
"title": "Viktor Nylander (@viktornyylander) \u2022 Instagram photos \u2026",
"visible_link": "https://www.instagram.com/viktornyylander"
},
{
"domain": "viewmanagement.com",
"id": "32803",
"link": "http://viewmanagement.com/models/victor-nylander/",
"link_type": "results",
"rank": "5",
"serp_id": "3209",
"snippet": "Victor Nylander for Willy Vanderperre for Dior Homme Fall 2011",
"title": "Victor Nylander View Management",
"visible_link": "viewmanagement.com/models/victor-nylander"
},
{
"domain": "ftape.com",
"id": "32804",
"link": "http://ftape.com/media/victor-norlander-for-hm/",
"link_type": "results",
"rank": "6",
"serp_id": "3209",
"snippet": "Handsome Swedish model Victor Norlander showcases laid-back casual looks of t-shirts, knitwear, shorts and shirts for H&M\u2018s latest summer fashion update shot by Peter \u2026",
"title": "Victor Norlander for H&M | FTAPE.COM - FASHION TAPE",
"visible_link": "ftape.com/media/victor-norlander-for-hm"
},
{
"domain": "www.hm.com",
"id": "32805",
"link": "http://www.hm.com/",
"link_type": "results",
"rank": "7",
"serp_id": "3209",
"snippet": "Welcome to H&M. Select your region to enter our site.",
"title": "H&M - Choose Your Region",
"visible_link": "www.hm.com"
},
{
"domain": "www.youtube.com",
"id": "32806",
"link": "https://www.youtube.com/watch?v=H_M9XulBu0M",
"link_type": "results",
"rank": "8",
"serp_id": "3209",
"snippet": "25.08.2013\u00a0\u00b7 S/S 2014 | Milano Moda Uomo | Showlists \u00b7 Robin Ahrens \u00b7 Victor Nylander \u00b7 Matthew Bell \u00b7 Benjamin Jarvis",
"title": "S/S 2014 | Milan | Robin Ahrens | Victor Nylander ...",
"visible_link": "https://www.youtube.com/watch?v=H_M9XulBu0M"
},
{
"domain": "twitter.com",
"id": "32807",
"link": "https://twitter.com/victorenylander",
"link_type": "results",
"rank": "9",
"serp_id": "3209",
"snippet": "The latest Tweets from Victor Nylander (@VictorENylander). Modello og fodbold entusiast. Mine tanker om stort og sm\u00e5t i korte s\u00e6tninger \u26bd\ufe0f \ufe0f.",
"title": "Victor Nylander (@VictorENylander) | Twitter",
"visible_link": "https://twitter.com/victorenylander"
},
{
"domain": "www.youtube.com",
"id": "32808",
"link": "https://www.youtube.com/watch?v=TmcMoRMwSMw",
"link_type": "results",
"rank": "10",
"serp_id": "3209",
"snippet": "12.10.2017\u00a0\u00b7 Zara MAN 'Neutrals' Fall/Winter 2017.18 Collection ft. David Trulik and Victor Nylander ... H&M, UNIQLO, Collective Haul - Duration: 9:16.",
"title": "Zara MAN 'Neutrals' Fall/Winter 2017.18 Collection ft ...",
"visible_link": "https://www.youtube.com/watch?v=TmcMoRMwSMw"
}
],
"scrape_method": "http-async",
"search_engine_name": "bing",
"status": "successful"
},{
"effective_query": "",
"id": "3210",
"no_results": "True",
"num_results": "0",
"num_results_for_query": "0",
"page_number": "1",
"query": "Victor Nylander H&M",
"requested_at": "2018-08-27 13:13:56.225086",
"requested_by": "localhost",
"results": [],
"scrape_method": "http-async",
"search_engine_name": "yahoo",
"status": "successful"
},{
"effective_query": "",
"id": "3211",
"no_results": "False",
"num_results": "0",
"num_results_for_query": "0",
"page_number": "1",
"query": "Victor Nylander Kering",
"requested_at": "2018-08-27 13:11:45.307025",
"requested_by": "localhost",
"results": [],
"scrape_method": "http-async",
"search_engine_name": "bing",
"status": "successful"
},{
"effective_query": "",
"id": "3212",
"no_results": "True",
"num_results": "0",
"num_results_for_query": "0",
"page_number": "1",
"query": "Victor Nylander Kering",
"requested_at": "2018-08-27 13:13:56.090652",
"requested_by": "localhost",
"results": [],
"scrape_method": "http-async",
"search_engine_name": "yahoo",
"status": "successful"
},{
"effective_query": "",
"id": "3213",
"no_results": "True",
"num_results": "9",
"num_results_for_query": "12.300 results",
"page_number": "1",
"query": "Victor Nylander The Gap",
"requested_at": "2018-08-27 13:11:45.295550",
"requested_by": "localhost",
"results": [
{
"domain": "www.youtube.com",
"id": "32809",
"link": "https://www.youtube.com/watch?v=9z31DccrdX4",
"link_type": "results",
"rank": "1",
"serp_id": "3213",
"snippet": "12.03.2016\u00a0\u00b7 For the Dior Homme Summer 2016 campaign, Oliver Sim, Alain-Fabien Delon, Rinus Van de Velde and Victor Nylander express the diversity of the Dior men, as captured by photographer Willy Vanderperre.",
"title": "Dior Stranger in a Room - YouTube",
"visible_link": "https://www.youtube.com/watch?v=9z31DccrdX4"
},
{
"domain": "www.hautfashion.com",
"id": "32810",
"link": "http://www.hautfashion.com/fashion-photography/liu-wen-and-victor-nylander-massimo-dutti-equestrian",
"link_type": "results",
"rank": "2",
"serp_id": "3213",
"snippet": "Top models Victor Nylander and Liu Wen stars in Massimo Dutti\u2018s Equestrian Fall Winter 2014-2015 collection. Massimo Dutti Equestrian collection is inspired the Equestrian sport. You can almost feel the passion and elegance. This collection has everything you need to look stylish and chic for the holiday season.",
"title": "Liu Wen and Victor Nylander for Massimo Dutti \u2026",
"visible_link": "www.hautfashion.com/...and-victor-nylander-massimo-dutti-equestrian"
},
{
"domain": "models.com",
"id": "32811",
"link": "https://models.com/work/gap-gap-ss-12-presentation",
"link_type": "results",
"rank": "3",
"serp_id": "3213",
"snippet": "Gap Gap S/S 12 presentation Source: style.com Published: September 2011. All people in this show: ... Victor Nylander - Model; Vika Falileeva - Model;",
"title": "Gap S/S 12 presentation (Gap) - MODELS.com",
"visible_link": "https://models.com/work/gap-gap-ss-12-presentation"
},
{
"domain": "ftape.com",
"id": "32812",
"link": "http://ftape.com/media/zara-mens-fw16-campaign/",
"link_type": "results",
"rank": "4",
"serp_id": "3213",
"snippet": "Willy Vanderperre captures portraits of Victor Nylander, Elias de Poot, Julius Gerhardt, Jan Carlos Diaz and Tillman for the Zara Menswear Fall/Winter 2016 \u2026",
"title": "Zara Mens FW16 Campaign | FTAPE.COM - FASHION TAPE",
"visible_link": "ftape.com/media/zara-mens-fw16-campaign"
},
{
"domain": "www.facebook.com",
"id": "32813",
"link": "https://www.facebook.com/Haute-Fashion-123832994363626/",
"link_type": "results",
"rank": "5",
"serp_id": "3213",
"snippet": "Haute Fashion. 785 likes ... Top models Victor Nylander and Liu Wen stars in Massimo ... GAP partnered with Hollywood director Sofia Coppola ...",
"title": "Haute Fashion - Home | Facebook",
"visible_link": "https://www.facebook.com/Haute-Fashion-123832994363626"
},
{
"domain": "www.malemodelscene.net",
"id": "32814",
"link": "https://www.malemodelscene.net/models/pay-gap-models/",
"link_type": "results",
"rank": "6",
"serp_id": "3213",
"snippet": "Although the gender pay gap has been making headlines for over a decade now, it still appears to be a major issue in many regions, despite reported improvements being made. According to the Business Insider, women in the US earn on average 79 cents for every dollar a man earns. However, when it comes to fashion, this is certainly not the case.",
"title": "The Gender Pay Gap for Models - Male Model Scene",
"visible_link": "https://www.malemodelscene.net/models/pay-gap-models"
},
{
"domain": "www.designscene.net",
"id": "32815",
"link": "https://www.designscene.net/2017/02/gap-ss17-tyrone-lebon.html",
"link_type": "results",
"rank": "7",
"serp_id": "3213",
"snippet": "None",
"title": "I am GAP Spring Summer 2017 by Tyrone Lebon - \u2026",
"visible_link": "https://www.designscene.net/2017/02/gap-ss17-tyrone-lebon.html"
},
{
"domain": "www.models.com",
"id": "32816",
"link": "https://www.models.com/rankings/ui/MoneyGuys/8473",
"link_type": "results",
"rank": "8",
"serp_id": "3213",
"snippet": "A spot in Mikael Jansson\u2019s latest Gap ads demonstrates his big-brand potential. ... Victor Nylander. profile. Ph: Simon James Lee for Nicole Farhi S/S 17.",
"title": "MODELS.com's The Money Guys",
"visible_link": "https://www.models.com/rankings/ui/MoneyGuys/8473"
},
{
"domain": "www.designscene.net",
"id": "32817",
"link": "https://www.designscene.net/2017/10/janelle-monae-gap-holiday-2017.html",
"link_type": "results",
"rank": "9",
"serp_id": "3213",
"snippet": "None",
"title": "Perfect Harmony: Janelle Monae & Gap team up for \u2026",
"visible_link": "https://www.designscene.net/2017/10/janelle-monae-gap-holiday-\u2026"
}
],
"scrape_method": "http-async",
"search_engine_name": "bing",
"status": "successful"
},{
"effective_query": "",
"id": "3214",
"no_results": "True",
"num_results": "0",
"num_results_for_query": "0",
"page_number": "1",
"query": "Victor Nylander The Gap",
"requested_at": "2018-08-27 13:13:56.022947",
"requested_by": "localhost",
"results": [],
"scrape_method": "http-async",
"search_engine_name": "yahoo",
"status": "successful"
},{
"effective_query": "",
"id": "3215",
"no_results": "True",
"num_results": "9",
"num_results_for_query": "276.000 results",
"page_number": "1",
"query": "Victor Nylander Christian Dior",
"requested_at": "2018-08-27 13:11:45.393408",
"requested_by": "localhost",
"results": [
{
"domain": "www.malemodelscene.net",
"id": "32818",
"link": "https://www.malemodelscene.net/agencies/wilhelmina-models/victor-nylander-dior-homme/",
"link_type": "results",
"rank": "1",
"serp_id": "3215",
"snippet": "Breakthrough star on the modeling scene Victor Nylander featured in Willy Vanderperre's Dior Homme The Wanderer short film accompanied by following images:",
"title": "Victor Nylander for Dior Homme - Male Model Portfolios",
"visible_link": "https://www.malemodelscene.net/.../victor-nylander-dior-homme"
},
{
"domain": "imageamplified.com",
"id": "32819",
"link": "https://imageamplified.com/numero-homme-china-adrien-sahores-victor-nylander-max-rendell-in-dior-homme-special-by-bruno-staub-mauricio-nardi-wwwim/",
"link_type": "results",
"rank": "2",
"serp_id": "3215",
"snippet": "Continue reading \"NUMERO HOMME CHINA: Adrien Sahores, Victor Nylander & Max Rendell in \u201cDior Homme Special\u201d by Photographer Bruno Staub\" Skip to content.",
"title": "NUMERO HOMME CHINA: Adrien Sahores, Victor Nylander \u2026",
"visible_link": "https://imageamplified.com/numero-homme-china-adrien-sahores..."
},
{
"domain": "nymag.com",
"id": "32820",
"link": "http://nymag.com/fashion/models/vnylander/victornylander/",
"link_type": "results",
"rank": "3",
"serp_id": "3215",
"snippet": "A guide to the career of Victor Nylander including cover shots, party photos, runway images, backstage photos, quotes, and more.",
"title": "Victor Nylander - Fashion Model - Profile on New York \u2026",
"visible_link": "nymag.com/fashion/models/vnylander/victornylander"
},
{
"domain": "kultmodels.wordpress.com",
"id": "32821",
"link": "https://kultmodels.wordpress.com/portfolio/victor-nylander-for-dior/",
"link_type": "results",
"rank": "4",
"serp_id": "3215",
"snippet": "VICTOR NYLANDER for Dior click for ...",
"title": "VICTOR NYLANDER for Dior - \u2026",
"visible_link": "https://kultmodels.wordpress.com/portfolio/victor-nylander-for-dior"
},
{
"domain": "www.youtube.com",
"id": "32822",
"link": "https://www.youtube.com/watch?v=N8n2VRO6oyU",
"link_type": "results",
"rank": "5",
"serp_id": "3215",
"snippet": "None",
"title": "Victor Nylander for Willy Vanderperre for Dior Homme \u2026",
"visible_link": "https://www.youtube.com/watch?v=N8n2VRO6oyU"
},
{
"domain": "www.pinterest.de",
"id": "32823",
"link": "https://www.pinterest.de/pin/410531322274877958/",
"link_type": "results",
"rank": "6",
"serp_id": "3215",
"snippet": "Ethan James and Victor Nylander photographed by Sybille Walter for Dior Homme. Ethan James and Victor Nylander photographed by Sybille Walter for Dior ...",
"title": "Ethan James and Victor Nylander \u2026",
"visible_link": "https://www.pinterest.de/pin/410531322274877958"
},
{
"domain": "www.bing.com",
"id": "32824",
"link": "https://www.bing.com/aclick?ld=d3O8H_sE7ZFVXgQuY4Pom0LjVUCUwg9x6q2T0dXfmbewf4IrsWvfRr84n26wxtaYO2F3ew5IaU4JrvbCtNfP80bYns6tUYPu9g1J-iLLvpX6YYm57kg-9qkEwOSZ6ZrIQYI-VNO_UmmdVmaDnBg5CYH1d8dxo1F55nw-q12gMkycvgNhoO&u=https%3a%2f%2fwww.douglas.de%2fdouglas%2findex_b0690.html%3fwt_cc4%3dmarin_bid%26wt_cc1%3ddior%26mkwid%3ds_dc%26pcrid%3d%7bcreative%7d%26pkw%3ddior%26pmt%3dp%26trac%3dde.01pma.yah.bing.265644966.1162183873589831.000000",
"link_type": "ads_main",
"rank": "1",
"serp_id": "3215",
"snippet": "None",
"title": "Dior bei Douglas | Parf\u00fcm, Kosmetik & Lifestyle | Inkl",
"visible_link": "www.douglas.de"
},
{
"domain": "www.bing.com",
"id": "32825",
"link": "https://www.bing.com/aclick?ld=d3TCMirZpZCsW4KOYtjZDJyzVUCUyT8o70poQVdsD4ykS8eDXTVXwj1lWF0PwE40UcY4OxhyllJ3Lg_YRV9d4D7CcFkdV4SWEqzIK5T7Gi5R1UV_kmNjPnPjzOE9tURm_5hQ0Qs3nyAZYGA_HdbcVypVpv7rG_YqLLZsSKMDiXTRTbttDE&u=http%3a%2f%2fwww.dior.com%2fhome%2fde_de%3fmsclkid%3d%7bmsclkid%7d%26utm_source%3dbing%26utm_medium%3dcpc%26utm_campaign%3dDE-One%2520Dior-%2520DIOR%2520-SEARCH-MARQUE%26utm_term%3dchristian%2520dior%26utm_content%3dDior",
"link_type": "ads_main",
"rank": "2",
"serp_id": "3215",
"snippet": "None",
"title": "Dior | Offizielle Online-Boutique",
"visible_link": "www.dior.com"
},
{
"domain": "www.bing.com",
"id": "32826",
"link": "https://www.bing.com/aclick?ld=d35jLhxhUg6Pvlf9RQjX8RTTVUCUx8PtIBdZfQP_9pZ5nQUX1pA43nlLjuse1dtp9NAibCdpIoQPx0rH6Ry97hHciCHsYxVKvd14i-7H2Z9899PNH6Rt7obp3-ZeZUfpPWOz3eyaZwjE_GKI0ikCBI75X0weeJFOK5jLpFQ54fFF8r6U3A&u=http%3a%2f%2fwww.amazon.de%2fs%2f%3fie%3dUTF8%26keywords%3dchristian%2bdior%2bmiss%2bdior%26tag%3dhyddemsn-21%26index%3daps%26hvadid%3d79852063649035%26hvqmt%3db%26hvbmt%3dbb%26hvdev%3dc%26ref%3dpd_sl_2blc5fuds5_b",
"link_type": "ads_main",
"rank": "3",
"serp_id": "3215",
"snippet": "None",
"title": "Kosmetik bei Amazon.de | Top Beauty-Marken bei Amazon",
"visible_link": "www.amazon.de/kosmetik"
}
],
"scrape_method": "http-async",
"search_engine_name": "bing",
"status": "successful"
},{
"effective_query": "",
"id": "3216",
"no_results": "True",
"num_results": "0",
"num_results_for_query": "0",
"page_number": "1",
"query": "Victor Nylander Christian Dior",
"requested_at": "2018-08-27 13:13:56.045685",
"requested_by": "localhost",
"results": [],
"scrape_method": "http-async",
"search_engine_name": "yahoo",
"status": "successful"
},{
"effective_query": "",
"id": "3217",
"no_results": "False",
"num_results": "1",
"num_results_for_query": "1 results",
"page_number": "1",
"query": "Victor Nylander Richemont",
"requested_at": "2018-08-27 13:11:45.308079",
"requested_by": "localhost",
"results": [
{
"domain": "www.onelook.com",
"id": "32827",
"link": "https://www.onelook.com/pm/",
"link_type": "results",
"rank": "1",
"serp_id": "3217",
"snippet": "Port Manteaux churns out silly new words when you feed it an idea or two. Enter a word (or two) above and you'll get back a bunch of portmanteaux created ...",
"title": "Port Manteaux Word Maker - OneLook",
"visible_link": "https://www.onelook.com/pm"
}
],
"scrape_method": "http-async",
"search_engine_name": "bing",
"status": "successful"
},{
"effective_query": "",
"id": "3218",
"no_results": "True",
"num_results": "0",
"num_results_for_query": "0",
"page_number": "1",
"query": "Victor Nylander Richemont",
"requested_at": "2018-08-27 13:13:55.997979",
"requested_by": "localhost",
"results": [],
"scrape_method": "http-async",
"search_engine_name": "yahoo",
"status": "successful"
},{
"effective_query": "",
"id": "3219",
"no_results": "False",
"num_results": "0",
"num_results_for_query": "0",
"page_number": "1",
"query": "Victor Nylander Est\u00e9e Lauder",
"requested_at": "2018-08-27 13:11:45.737653",
"requested_by": "localhost",
"results": [],
"scrape_method": "http-async",
"search_engine_name": "bing",
"status": "successful"
},{
"effective_query": "",
"id": "3220",
"no_results": "True",
"num_results": "0",
"num_results_for_query": "0",
"page_number": "1",
"query": "Victor Nylander Est\u00e9e Lauder",
"requested_at": "2018-08-27 13:13:55.972665",
"requested_by": "localhost",
"results": [],
"scrape_method": "http-async",
"search_engine_name": "yahoo",
"status": "successful"
},{
"effective_query": "",
"id": "3221",
"no_results": "False",
"num_results": "0",
"num_results_for_query": "0",
"page_number": "1",
"query": "Victor Nylander Phillips-Van Heusen",
"requested_at": "2018-08-27 13:11:45.451320",
"requested_by": "localhost",
"results": [],
"scrape_method": "http-async",
"search_engine_name": "bing",
"status": "successful"
},{
"effective_query": "",
"id": "3222",
"no_results": "True",
"num_results": "0",
"num_results_for_query": "0",
"page_number": "1",
"query": "Victor Nylander Phillips-Van Heusen",
"requested_at": "2018-08-27 13:13:56.049984",
"requested_by": "localhost",
"results": [],
"scrape_method": "http-async",
"search_engine_name": "yahoo",
"status": "successful"
},{
"effective_query": "",
"id": "3223",
"no_results": "False",
"num_results": "10",
"num_results_for_query": "28 results",
"page_number": "1",
"query": "Victor Nylander Coach",
"requested_at": "2018-08-27 13:11:45.297212",
"requested_by": "localhost",
"results": [
{
"domain": "www.rsssf.com",
"id": "32828",
"link": "http://www.rsssf.com/tablesn/nkrumah.html",
"link_type": "results",
"rank": "1",
"serp_id": "3223",
"snippet": "Origins. In a meeting with Dr Kwame Nkrumah in 1958 Mr Ohene Djan, chairman of the Ghana Amateur Football Association, announced the intention of his ...",
"title": "Dr Kwame Nkrumah Gold Cup - West African Soccer \u2026",
"visible_link": "www.rsssf.com/tablesn/nkrumah.html"
},
{
"domain": "www.stamfordtwinrinks.com",
"id": "32829",
"link": "http://www.stamfordtwinrinks.com/STR-HockeySummerCamps-2018-web.pdf",
"link_type": "results",
"rank": "2",
"serp_id": "3223",
"snippet": "FEATURING JONATHAN QUICK of the L.A. Kings CAM ATKINSON of the Columbus Blue Jackets MATT MOULSON of the Ontario Reign VICTOR \u2026",
"title": "TRAIN WITH THE BEST TO BECOME THE BEST",
"visible_link": "www.stamfordtwinrinks.com/STR-HockeySummerCamps-2018-web.pdf"
},
{
"domain": "www.foxsports.com",
"id": "32830",
"link": "https://www.foxsports.com/nhl",
"link_type": "results",
"rank": "3",
"serp_id": "3223",
"snippet": "Find live NHL scores, NHL player & team news, NHL videos, rumors, stats, standings, team schedules & fantasy games on FOX Sports.",
"title": "NHL | FOX Sports",
"visible_link": "https://www.foxsports.com/nhl"
},
{
"domain": "www.buffalohockeybeat.com",
"id": "32831",
"link": "http://www.buffalohockeybeat.com/sabres-upset-nhl-didnt-suspend-scott-hartnell-hit/",
"link_type": "results",
"rank": "4",
"serp_id": "3223",
"snippet": "TORONTO \u2013 A seething Phil Housley paused before answering the question. The Buffalo Sabres coach clearly wanted to choose his words carefully while still ...",
"title": "Sabres upset NHL didn\u2019t suspend Scott Hartnell for hit ...",
"visible_link": "www.buffalohockeybeat.com/sabres-upset-nhl-didnt-suspend-scott..."
},
{
"domain": "www.buffalohockeybeat.com",
"id": "32832",
"link": "http://www.buffalohockeybeat.com/sabres-hudson-fasching-wants-showcase-heavy-style/",
"link_type": "results",
"rank": "5",
"serp_id": "3223",
"snippet": "PITTSBURGH \u2013 Instead of battling for an NHL roster spot during training camp, Sabres prospect Hudson Fasching started slowly before Buffalo demoted him ...",
"title": "Sabres\u2019 Hudson Fasching wants to showcase heavy \u2026",
"visible_link": "www.buffalohockeybeat.com/sabres-hudson-fasching-wants-showcase..."
},
{
"domain": "www.nhl.com",
"id": "32833",
"link": "http://www.nhl.com/ice/draftprospectbrowse.htm",
"link_type": "results",
"rank": "6",
"serp_id": "3223",
"snippet": "Rankings from NHL Central Scouting for all 2016 NHL Draft prospects.",
"title": "2018 Draft Prospect Rankings | NHL Draft Prospect Rankings",
"visible_link": "www.nhl.com/ice/draftprospectbrowse.htm"
},
{
"domain": "www.diebytheblade.com",
"id": "32834",
"link": "https://www.diebytheblade.com/2018/3/26/17162394/its-time-for-a-change-buffalo-sabres-rasmus-ristolainen-ryan-oreilly-kyle-okposo",
"link_type": "results",
"rank": "7",
"serp_id": "3223",
"snippet": "It\u2019s not working and it\u2019s time for Jason Botterill to change the makeup of the foundation of the Sabres roster",
"title": "It\u2019s Time for a Change - Die By The Blade",
"visible_link": "https://www.diebytheblade.com/2018/3/26/17162394/its-time-for-a..."
},
{
"domain": "www.tsn.ca",
"id": "32835",
"link": "https://www.tsn.ca/by-the-numbers-nhl-awards-1.1118192",
"link_type": "results",
"rank": "8",
"serp_id": "3223",
"snippet": "Unlike the Hart Trophy, this year's version of the Norris Trophy has some familiar faces in contention. Tampa Bay Lightning blueliner Victor Hedman ...",
"title": "By The Numbers: NHL Awards - TSN.ca",
"visible_link": "https://www.tsn.ca/by-the-numbers-nhl-awards-1.1118192"
},
{
"domain": "www.prohockeyrumors.com",
"id": "32836",
"link": "https://www.prohockeyrumors.com/detroit-red-wings",
"link_type": "results",
"rank": "9",
"serp_id": "3223",
"snippet": "Detroit Red Wings trade and free agent rumors from ProHockeyRumors.com.",
"title": "Detroit Red Wings - ProHockeyRumors.com",
"visible_link": "https://www.prohockeyrumors.com/detroit-red-wings"
},
{
"domain": "nationalpost.com",
"id": "32837",
"link": "https://nationalpost.com/sports/hockey/nhl/tampa-bay-lightning-get-back-into-eastern-conference-final-by-beating-washington-capitals-4-2",
"link_type": "results",
"rank": "10",
"serp_id": "3223",
"snippet": "WASHINGTON \u2014 It was about an hour before the start of Game 3 when Nikita Kucherov grabbed a ball and glove and began to play catch in the middle of a ...",
"title": "Tampa Bay Lightning get back into Eastern Conference \u2026",
"visible_link": "https://nationalpost.com/sports/hockey/nhl/tampa-bay-lightning-get..."
}
],
"scrape_method": "http-async",
"search_engine_name": "bing",
"status": "successful"
},{
"effective_query": "",
"id": "3224",
"no_results": "True",
"num_results": "0",
"num_results_for_query": "0",
"page_number": "1",
"query": "Victor Nylander Coach",
"requested_at": "2018-08-27 13:13:55.977074",
"requested_by": "localhost",
"results": [],
"scrape_method": "http-async",
"search_engine_name": "yahoo",
"status": "successful"
},{
"effective_query": "",
"id": "3225",
"no_results": "False",
"num_results": "10",
"num_results_for_query": "14 results",
"page_number": "1",
"query": "Victor Nylander Levi Strauss",
"requested_at": "2018-08-27 13:11:45.469856",
"requested_by": "localhost",
"results": [
{
"domain": "www.surrounddiscography.com",
"id": "32838",
"link": "http://www.surrounddiscography.com/sacd/sacddisc.htm",
"link_type": "results",
"rank": "1",
"serp_id": "3225",
"snippet": "This list was created out of the need to help surround sound enthusiasts, find Multi-Channel SACD Surround Sound recordings. This list does not include ...",
"title": "SACD Surround Sound Discography",
"visible_link": "www.surrounddiscography.com/sacd/sacddisc.htm"
},
{
"domain": "www.pocketochbok.se",
"id": "32839",
"link": "http://www.pocketochbok.se/",
"link_type": "results",
"rank": "2",
"serp_id": "3225",
"snippet": "Pocketnyheter, pockettopplistor, pockettips, pocketinformation, pocketbloggar fr\u00e5n Sveriges st\u00f6rsta pocketbutik Pocket&Bok",
"title": "Billiga b\u00f6cker fr\u00e5n Media-Fyndets \u2026",
"visible_link": "www.pocketochbok.se"
},
{
"domain": "www.onelook.com",
"id": "32840",
"link": "https://www.onelook.com/pm/",
"link_type": "results",
"rank": "3",
"serp_id": "3225",
"snippet": "Port Manteaux churns out silly new words when you feed it an idea or two. Enter a word (or two) above and you'll get back a bunch of portmanteaux created ...",
"title": "Port Manteaux Word Maker - OneLook",
"visible_link": "https://www.onelook.com/pm"
},
{
"domain": "kuvasto.fi",
"id": "32841",
"link": "http://kuvasto.fi/taiteilijaluettelo/",
"link_type": "results",
"rank": "4",
"serp_id": "3225",
"snippet": "Taiteilijaluettelossa ovat mukana Kuvastoon kuuluvat kotimaiset taiteilijat sek\u00e4 ulkomaiset kuvataiteilijat, joita Kuvasto edustaa Suomessa ...",
"title": "Taiteilijaluettelo \u2013 Kuvasto",
"visible_link": "kuvasto.fi/taiteilijaluettelo"
},
{
"domain": "www.spokeo.com",
"id": "32842",
"link": "https://www.spokeo.com/reverse-phone-lookup",
"link_type": "results",
"rank": "5",
"serp_id": "3225",
"snippet": "Spokeo searches thousands of sources across 12 billion public records to look up the most recent owner of that number, whether it\u2019s a landline or cell ...",
"title": "Reverse Phone Lookup | Phone Number Search | Spokeo",
"visible_link": "https://www.spokeo.com/reverse-phone-lookup"
},
{
"domain": "www.borguez.com",
"id": "32843",
"link": "http://www.borguez.com/uabab/various-artists-mobilisation-generale-protest-and-spirit-jazz-from-france-1970-1976/",
"link_type": "results",
"rank": "6",
"serp_id": "3225",
"snippet": "Various Artists Mobilisation Generale: Protest and Spirit Jazz From France 1970-1976 (Born Bad Records, 2013) more detailsno Jazz",
"title": "Various Artists Mobilisation Generale: Protest and \u2026",
"visible_link": "www.borguez.com/uabab/various-artists-mobilisation-generale..."
},
{
"domain": "www.rugbookshop.com",
"id": "32844",
"link": "http://www.rugbookshop.com/",
"link_type": "results",
"rank": "7",
"serp_id": "3225",
"snippet": "The Rug Book Shop 2603 Talbot Road Baltimore, Maryland 21216-1621 (410) 367-8194 E-Mail: [email protected] Web Site: www.rugbookshop.com Prices ...",
"title": "Rug Book Shop - RBS Catalog",
"visible_link": "www.rugbookshop.com"
},
{
"domain": "srtfuneral.com",
"id": "32845",
"link": "http://srtfuneral.com/obits-search-results.php",
"link_type": "results",
"rank": "8",
"serp_id": "3225",
"snippet": "Mildred M. Munson 12/13/1901-04/21/1918 Mildred M. Munson, 93 of Aitkin, formerly of Minneapolis died Monday, May 16 2011 at ...",
"title": "Sorensen-Root-Thompson Funeral Home website",
"visible_link": "srtfuneral.com/obits-search-results.php"
},
{
"domain": "www.ito-ex.co.jp",
"id": "32846",
"link": "http://www.ito-ex.co.jp/seihin/specialpipenozzle-2.html",
"link_type": "results",
"rank": "9",
"serp_id": "3225",
"snippet": "\u4f0a\u85e4\u88fd\u4f5c\u6240\u306f\u6db2\u4f53\u3001\u6c17\u4f53\u306e\u5438\u5f15\u304b\u3089\u5410\u51fa\u307e\u3067\u306e\u6d41\u8def\u306b\u95a2\u4fc2\u3059\u308b\u90e8\u54c1\u306e\u88fd\u9020\u8ca9\u58f2\u3092\u3057\u3066\u3044\u307e\u3059\u3002\u30ce\u30ba\u30eb\u3001\u30dd\u30f3\u30d7 ...",
"title": "\u7279\u6b8a\u91d1\u5c5e\u52a0\u5de5\uff08Ti\u3001Co-Ni\uff09",
"visible_link": "www.ito-ex.co.jp/seihin/specialpipenozzle-2.html"
},
{
"domain": "www.danskernesnavne.navneforskning.ku.dk",
"id": "32847",
"link": "http://www.danskernesnavne.navneforskning.ku.dk/topnavne/topnavn_reg10_s2_l.asp",
"link_type": "results",
"rank": "10",
"serp_id": "3225",
"snippet": "Placering: Antal: Navn: 1: 460470: Jensen: 2: 446646: Nielsen: 3: 382215: Hansen: 4: 271012: Pedersen: 5: 255078: Andersen: 6: 200309: Christensen: 7 ...",
"title": "Efternavne - Danskernes Navne",
"visible_link": "www.danskernesnavne.navneforskning.ku.dk/topnavne/topnavn_reg10_s2..."
}
],
"scrape_method": "http-async",
"search_engine_name": "bing",
"status": "successful"
},{
"effective_query": "",
"id": "3226",
"no_results": "True",
"num_results": "0",
"num_results_for_query": "0",
"page_number": "1",
"query": "Victor Nylander Levi Strauss",
"requested_at": "2018-08-27 13:13:56.145921",
"requested_by": "localhost",
"results": [],
"scrape_method": "http-async",
"search_engine_name": "yahoo",
"status": "successful"
},{
"effective_query": "",
"id": "3227",
"no_results": "False",
"num_results": "10",
"num_results_for_query": "25 results",
"page_number": "1",
"query": "Travis Smith LVMH",
"requested_at": "2018-08-27 13:11:45.452417",
"requested_by": "localhost",
"results": [
{
"domain": "www.justjared.com",
"id": "32848",
"link": "http://www.justjared.com/2018/06/07/emma-stone-jaden-smith-attend-lvmh-prize-2018-final/",
"link_type": "results",
"rank": "1",
"serp_id": "3227",
"snippet": "07.06.2018\u00a0\u00b7 Emma Stone & Jaden Smith Attend LVMH Prize 2018 Final! Emma Stone and Jaden Smith are looking chic at the LVMH Prize 2018 Edition at Fondation ...",
"title": "Emma Stone & Jaden Smith Attend LVMH Prize 2018 \u2026",
"visible_link": "www.justjared.com/2018/06/07/emma-stone-jaden-smith-attend-lvmh..."
},
{
"domain": "models.com",
"id": "32849",
"link": "https://models.com/mdx/model-of-the-year-awards-2017/",
"link_type": "results",
"rank": "2",
"serp_id": "3227",
"snippet": "The Models.com Model of the Year Industry Awards are the voice of over 250 voters representing a wide range of the industry\u2019s top professionals ...",
"title": "Model of the Year Awards 2017 | models.com MDX",
"visible_link": "https://models.com/mdx/model-of-the-year-awards-2017"
},
{
"domain": "nl.wikipedia.org",
"id": "32850",
"link": "https://nl.wikipedia.org/wiki/Reed_Elsevier",
"link_type": "results",
"rank": "3",
"serp_id": "3227",
"snippet": "RELX, ook nog bekend onder de oude naam Reed Elsevier, is een Engels-Nederlands bedrijf, ontstaan uit de fusie in 1993 tussen de uitgeverijen Reed en Elsevier.",
"title": "RELX - Wikipedia",
"visible_link": "https://nl.wikipedia.org/wiki/Reed_Elsevier"
},
{
"domain": "ru.wikipedia.org",
"id": "32851",
"link": "https://ru.wikipedia.org/wiki/Unilever",
"link_type": "results",
"rank": "4",
"serp_id": "3227",
"snippet": "Unilever (\u043f\u0440\u043e\u0438\u0437\u043d\u043e\u0441\u0438\u0442\u0441\u044f \u044e\u043d\u0438\u043b\u0438\u0301\u0432\u044d\u0440) \u2014 \u0431\u0440\u0438\u0442\u0430\u043d\u0441\u043a\u0430\u044f \u0438 \u043d\u0438\u0434\u0435\u0440\u043b\u0430\u043d\u0434\u0441\u043a\u0430\u044f \u043a\u043e\u043c\u043f\u0430\u043d\u0438\u044f, \u043e\u0434\u0438\u043d \u0438\u0437 ...",
"title": "Unilever \u2014 \u0412\u0438\u043a\u0438\u043f\u0435\u0434\u0438\u044f",
"visible_link": "https://ru.wikipedia.org/wiki/Unilever"
},
{
"domain": "it.wikipedia.org",
"id": "32852",
"link": "https://it.wikipedia.org/wiki/Unilever",
"link_type": "results",
"rank": "5",
"serp_id": "3227",
"snippet": "contiene immagini o altri file su ; Collegamenti esterni. Unilever su tea certificato, su unilevr.com. Articolo di BBC su accusa di Greenpeace, su news.bbc ...",
"title": "Unilever - Wikipedia",
"visible_link": "https://it.wikipedia.org/wiki/Unilever"
},
{
"domain": "weeko.fr",
"id": "32853",
"link": "http://weeko.fr/2017/06/12/upside-potential-for-malaysia-is-not-a-given-says-hsbc/",
"link_type": "results",
"rank": "6",
"serp_id": "3227",
"snippet": "Source: Pixabay. The laggard argument to reposition part of asset allocation to Malaysia might be a mistake, according to HSBC\u2019s strategists. Investors ...",
"title": "Upside Potential For Malaysia Is Not A Given, Says \u2026",
"visible_link": "weeko.fr/2017/06/12/upside-potential-for-malaysia-is-not-a-given..."
},
{
"domain": "nl.wikipedia.org",
"id": "32854",
"link": "https://nl.wikipedia.org/wiki/Unilever",
"link_type": "results",
"rank": "7",
"serp_id": "3227",
"snippet": "Unilever is een multinationale onderneming op het gebied van voedingsmiddelen, persoonlijke verzorging en schoonmaakartikelen. Unilever heeft een duale ...",
"title": "Unilever - Wikipedia",
"visible_link": "https://nl.wikipedia.org/wiki/Unilever"
},
{
"domain": "www.ablogtowatch.com",
"id": "32855",
"link": "https://www.ablogtowatch.com/precision-engineering-ag-introduces-first-cylindrical-hairspring/",
"link_type": "results",
"rank": "8",
"serp_id": "3227",
"snippet": "Unless you\u2019ve started your journey down the rabbit hole of obscure watchmaking technologies, including but not limited to hairspring manufacture, you ...",
"title": "Precision Engineering AG Introduces Their First ...",
"visible_link": "https://www.ablogtowatch.com/precision-engineering-ag-introduces..."
},
{
"domain": "www.bloomberg.com",
"id": "32856",
"link": "https://www.bloomberg.com/markets/stocks",
"link_type": "results",
"rank": "9",
"serp_id": "3227",
"snippet": "Connecting decision makers to a dynamic network of information, people and ideas, Bloomberg quickly and accurately delivers business and financial ...",
"title": "Stocks - Bloomberg",
"visible_link": "https://www.bloomberg.com/markets/stocks"
},
{
"domain": "www.ablogtowatch.com",
"id": "32857",
"link": "https://www.ablogtowatch.com/mido-commander-icone-watch/",
"link_type": "results",
"rank": "10",
"serp_id": "3227",
"snippet": "Hands-on review & original photos of the Mido Commander Ic\u00f4ne watch with price, background, specs, & expert analysis.",
"title": "Mido Commander Ic\u00f4ne Watch Hands-On | \u2026",
"visible_link": "https://www.ablogtowatch.com/mido-commander-icone-watch"
}
],
"scrape_method": "http-async",
"search_engine_name": "bing",
"status": "successful"
},{
"effective_query": "",
"id": "3228",
"no_results": "True",
"num_results": "0",
"num_results_for_query": "0",
"page_number": "1",
"query": "Travis Smith LVMH",
"requested_at": "2018-08-27 13:13:56.204637",
"requested_by": "localhost",
"results": [],
"scrape_method": "http-async",
"search_engine_name": "yahoo",
"status": "successful"
},{
"effective_query": "",
"id": "3229",
"no_results": "False",
"num_results": "10",
"num_results_for_query": "26 results",
"page_number": "1",
"query": "Travis Smith H&M",
"requested_at": "2018-08-27 13:11:45.454308",
"requested_by": "localhost",
"results": [
{
"domain": "www.mybaseguide.com",
"id": "32858",
"link": "http://www.mybaseguide.com/directory/57/travis_afb",
"link_type": "results",
"rank": "1",
"serp_id": "3229",
"snippet": "Civil Engineer Mobile Installation and Repair Team. (707) 424-5211. VQ 3",
"title": "TRAVIS AFB Directory - MyBaseGuide",
"visible_link": "www.mybaseguide.com/directory/57/travis_afb"
},