Spaces:
Runtime error
Runtime error
File size: 37,261 Bytes
4a51346 |
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 1001 1002 1003 1004 1005 |
{
"vinos": [
{
"name": "Antinori Badia a Passignano Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/1999461",
"thumb": "https://images.vivino.com/thumbs/hxzM5LQaQEmv24npsUIXfQ_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.2,
"ratings": 26000,
"price": 60.99
},
{
"name": "Antinori Badia a Passignano Chianti Classico Riserva",
"link": "https://www.vivino.com/US-CA/en/wines/156392074",
"thumb": "https://images.vivino.com/thumbs/zZcm154iRACZP_G9JFt9Zw_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.3,
"ratings": 406,
"price": 57.99
},
{
"name": "Antinori Badia A Passignano Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/163863524",
"thumb": "https://images.vivino.com/thumbs/sMxJWxb5RT6kXocSWh-vYA_375x500.jpg",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.2,
"ratings": 69,
"price": null
},
{
"name": "Villa a Sesta Sorleone Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/11390003",
"thumb": "https://images.vivino.com/thumbs/yqc1xnrKQyStUB3dHGHImQ_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.1,
"ratings": 371,
"price": null
},
{
"name": "Poggio a Campoli Campolaia Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/155040932",
"thumb": "https://images.vivino.com/thumbs/lqx9P23SQfeeymzmW9ZXoQ_375x500.jpg",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.3,
"ratings": 45,
"price": null
},
{
"name": "San Giorgio a Lapi Empathia Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/172664794",
"thumb": "https://images.vivino.com/thumbs/zEAmKY76Ty2t-KVGjgrhzw_375x500.jpg",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": null,
"price": null
},
{
"name": "Ruffino Riserva Ducale Oro Chianti Classico (Gran Selezione Gold)",
"link": "https://www.vivino.com/US-CA/en/wines/1665547",
"thumb": "https://images.vivino.com/thumbs/1Zm-dCKKSIel4Wf49Zo4sA_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4,
"ratings": 13138,
"price": 39.99
},
{
"name": "Castello di Ama Chianti Classico Vigneto Gran Selezione San Lorenzo",
"link": "https://www.vivino.com/US-CA/en/wines/10357735",
"thumb": "https://images.vivino.com/thumbs/aPD4NlkPSwOBr0TJff1gyg_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.2,
"ratings": 12174,
"price": 61.59
},
{
"name": "Fonterutoli Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/1579639",
"thumb": "https://images.vivino.com/thumbs/bpFi9nVNRsu-771KAuK3ig_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.1,
"ratings": 12640,
"price": 91
},
{
"name": "Ricasoli Castello di Brolio Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/146900050",
"thumb": "https://images.vivino.com/thumbs/INL5ietHSACYWjeuJfU84A_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.2,
"ratings": 10570,
"price": 74.64
},
{
"name": "San Felice Il Grigio Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/5055701",
"thumb": "https://images.vivino.com/thumbs/DSijig70Q8-vleh0NkXXmQ_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.1,
"ratings": 5172,
"price": 46.99
},
{
"name": "Fontodi Vigna del Sorbo Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/1895608",
"thumb": "https://images.vivino.com/thumbs/tfFnZomGTou-nv29pWNRIg_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.2,
"ratings": 5961,
"price": 107.47
},
{
"name": "Rocca delle Macìe Riserva Di Fizzano Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/1469881",
"thumb": "https://images.vivino.com/thumbs/49xuPfzdRVOD6PYfZXp5yQ_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.1,
"ratings": 3207,
"price": 28.49
},
{
"name": "Ricasoli Colledilà Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/4721311",
"thumb": "https://images.vivino.com/thumbs/-NZDxxGZR-6lx6IEGQ5Ghw_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.2,
"ratings": 3490,
"price": null
},
{
"name": "Castello di Monsanto Vigneto Il Poggio Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/2296778",
"thumb": "https://images.vivino.com/thumbs/UimWkpoiT2C8K9gN6K-O_w_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.2,
"ratings": 3511,
"price": 180
},
{
"name": "Valiano 6.38 Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/19439911",
"thumb": "https://images.vivino.com/thumbs/-dn25pSnT4m5Ug6AWkJ06w_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 3.9,
"ratings": 2153,
"price": 29.08
},
{
"name": "Vicchiomaggio Vigna La Prima Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/4166843",
"thumb": "https://images.vivino.com/thumbs/wzx4x0PeTYGHj22yk2y1IA_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.2,
"ratings": 1810,
"price": null
},
{
"name": "Tolaini Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/41087733",
"thumb": "https://images.vivino.com/thumbs/_xJlaFIkSO6oVJiqALRo8w_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.1,
"ratings": 1764,
"price": 43.95
},
{
"name": "Castello di Querceto Chianti Classico Gran Selezione Il Picchio",
"link": "https://www.vivino.com/US-CA/en/wines/1490705",
"thumb": "https://images.vivino.com/thumbs/l-Ba9TpCQYi4wC_ArT2Maw_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.1,
"ratings": 1941,
"price": 60.83
},
{
"name": "Il Molino di Grace Chianti Classico Gran Selezione Il Margone",
"link": "https://www.vivino.com/US-CA/en/wines/10565865",
"thumb": "https://images.vivino.com/thumbs/eMMRL9gnSI27mTjN7T2pMg_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.2,
"ratings": 2215,
"price": 61.99
},
{
"name": "Tenuta di Nozzole La Forra Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/1492580",
"thumb": "https://images.vivino.com/thumbs/3O1vCL2rRKaVi5oQU9R7cg_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 3.9,
"ratings": 2056,
"price": null
},
{
"name": "Lamole di Lamole Vigneto di Campolungo Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/66196165",
"thumb": "https://images.vivino.com/thumbs/t2cCnl09RoKlBN9WHZsciA_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.1,
"ratings": 1533,
"price": 23.99
},
{
"name": "Castello di Gabbiano Chianti Classico Bellezza Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/1988285",
"thumb": "https://images.vivino.com/thumbs/cX6a2yzeRZ2RKU-EuFY7Rw_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4,
"ratings": 1426,
"price": 51
},
{
"name": "Verrazzano Chianti Classico Gran Selezione Sassello",
"link": "https://www.vivino.com/US-CA/en/wines/9647539",
"thumb": "https://images.vivino.com/thumbs/QBgqIsC1T8eMtf6lUbvsjw_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.2,
"ratings": 1348,
"price": 75
},
{
"name": "Rocca di Montegrossi Vigneto San Marcellino Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/1809172",
"thumb": "https://images.vivino.com/thumbs/jm1c8xOiTaOUD9tydoDvXw_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.1,
"ratings": 1916,
"price": 56.99
},
{
"name": "San Fabiano Calcinaia Cellole Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/88554198",
"thumb": "https://images.vivino.com/thumbs/WQqc-WeYRjuvDUAkvV-o8A_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4,
"ratings": 1653,
"price": 46.7
},
{
"name": "Renzo Marinai Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/7924787",
"thumb": "https://images.vivino.com/thumbs/Ar906u_-TkeAqvO2G93_kA_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.2,
"ratings": 1336,
"price": null
},
{
"name": "Tenuta di Renieri Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/158831971",
"thumb": "https://images.vivino.com/thumbs/vq3FCupcS5qPnyXrsTKJ2Q_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4,
"ratings": 845,
"price": 36.99
},
{
"name": "Castello di Albola Il Solatio Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/7934792",
"thumb": "https://images.vivino.com/thumbs/TsZS2vOVR3ODcxO9zgsvAw_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4,
"ratings": 1404,
"price": null
},
{
"name": "Vignamaggio Monna Lisa Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/157208724",
"thumb": "https://images.vivino.com/thumbs/YTF55YLPRZ2bf0C8igxBnw_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.1,
"ratings": 936,
"price": null
},
{
"name": "Rocca delle Macìe Sergio Zingarelli Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/9506773",
"thumb": "https://images.vivino.com/thumbs/9lo4fR3NSya1GiRxwBp4Fw_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.2,
"ratings": 1339,
"price": null
},
{
"name": "Volpaia Coltassala Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/4912574",
"thumb": "https://images.vivino.com/thumbs/rW4XbjkPQEC-ugP8mvFIhg_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.2,
"ratings": 1525,
"price": 93.99
},
{
"name": "Castello di Albola Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/147293390",
"thumb": "https://images.vivino.com/thumbs/tVoqsFxXTBi-f3nwdh0Ybw_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 3.9,
"ratings": 1248,
"price": null
},
{
"name": "Castello di Ama Vigneto La Casuccia Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/2463146",
"thumb": "https://images.vivino.com/thumbs/34FFmMySRSKAKvovGlcipg_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.2,
"ratings": 1097,
"price": 195
},
{
"name": "San Felice Poggio Rosso Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/153170433",
"thumb": "https://images.vivino.com/thumbs/rZdVZq-BT6654ohiMQLHsg_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.3,
"ratings": 972,
"price": null
},
{
"name": "Lornano Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/10330675",
"thumb": "https://images.vivino.com/thumbs/es2KclMdQAWDXGiQBNTvMg_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.2,
"ratings": 838,
"price": null
},
{
"name": "Castello di Albola Santa Caterina Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/158271750",
"thumb": "https://images.vivino.com/thumbs/cgkLkqw4SCSewVmOoUZWiw_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.2,
"ratings": 770,
"price": null
},
{
"name": "Castello di Meleto Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/3375034",
"thumb": "https://images.vivino.com/thumbs/WDUK4b4vRaaGjSfYGhJOEQ_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.2,
"ratings": 835,
"price": null
},
{
"name": "Viticcio Prunaio Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/145685052",
"thumb": "https://images.vivino.com/thumbs/phtslhVyT-yITFzOOFQLHw_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.2,
"ratings": 803,
"price": null
},
{
"name": "Rocca di Castagnoli Stielle Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/27926831",
"thumb": "https://images.vivino.com/thumbs/1_QYxMOZQzSO4aQeld9XyQ_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.1,
"ratings": 896,
"price": null
},
{
"name": "Arceno Strada al Sasso Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/160698551",
"thumb": "https://images.vivino.com/thumbs/T3z_Cc4FQtK3OZfxHcU2jQ_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.3,
"ratings": 676,
"price": null
},
{
"name": "Monteraponi Chianti Classico Badia a San Michele",
"link": "https://www.vivino.com/US-CA/en/wines/3013437",
"thumb": "https://images.vivino.com/thumbs/Glt90pbYRc2J6oHS8Czb5w_375x500.jpg",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 3.6,
"ratings": 1265,
"price": null
},
{
"name": "Tenuta Perano Rialzi Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/159467338",
"thumb": "https://images.vivino.com/thumbs/bqJ-yNh-R6magFVE1VbrEQ_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.2,
"ratings": 641,
"price": 69
},
{
"name": "Banfi Fonte Alla Selva Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/141961397",
"thumb": "https://images.vivino.com/thumbs/Jz2os0fESxKqD-YZ7j_J5w_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4,
"ratings": 671,
"price": 19.99
},
{
"name": "Ricasoli CeniPrimo Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/160613871",
"thumb": "https://images.vivino.com/thumbs/gY8Lxiu4QxGdEPmPjSc3Qw_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.4,
"ratings": 857,
"price": 110
},
{
"name": "Poggio Al Sole Casasilia Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/1914449",
"thumb": "https://images.vivino.com/thumbs/kdkCZtrZTkiuApzmrh_9iQ_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.1,
"ratings": 1031,
"price": null
},
{
"name": "Principe Corsini Don Tommaso Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/88513416",
"thumb": "https://images.vivino.com/thumbs/kRZNtUF7SXa7l8hQO2PBQA_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4,
"ratings": 780,
"price": null
},
{
"name": "Trambusti Tenuta Poggio ai Mandorli Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/37110109",
"thumb": "https://images.vivino.com/thumbs/O8YvRqYyRrq88Hv-V0lIAg_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 3.9,
"ratings": 437,
"price": null
},
{
"name": "Machiavelli Vigna di Fontalle Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/161996279",
"thumb": "https://images.vivino.com/thumbs/a7xuYHWeRWunnFTh_mKUNg_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.1,
"ratings": 610,
"price": null
},
{
"name": "Vignamaggio Gran Selezione Riserva di Monna Lisa Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/81771536",
"thumb": "https://images.vivino.com/thumbs/NfC5OQ8aR_69DXKWanuymw_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.1,
"ratings": 881,
"price": null
},
{
"name": "Dievole Vigna di Sessina Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/4734752",
"thumb": "https://images.vivino.com/thumbs/pAMZG10PTdqlxmDZ1SUdxg_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.2,
"ratings": 512,
"price": 39.99
},
{
"name": "Villa Trasqua Nerento Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/19857968",
"thumb": "https://images.vivino.com/thumbs/cofrASoYRUix6_KHgZVB0g_pb_300x300.png",
"country": "Italy",
"region": "Chianti",
"average_rating": 4.2,
"ratings": 586,
"price": null
},
{
"name": "Castelvecchi Madonnino della Pieve Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/26093544",
"thumb": "https://images.vivino.com/thumbs/FCHXe8dJQO-avyKL_BqMMw_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.4,
"ratings": 736,
"price": null
},
{
"name": "Fèlsina Colonia Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/7924792",
"thumb": "https://images.vivino.com/thumbs/E86ktqNiTaWqx3uPsjfPuA_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.2,
"ratings": 833,
"price": null
},
{
"name": "San Leonino Salivolpe Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/157317320",
"thumb": "https://images.vivino.com/thumbs/ER1gGWVkT5WBVD9QWekUEg_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.2,
"ratings": 410,
"price": null
},
{
"name": "Castello di Meleto Principe Nuri Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/19566167",
"thumb": "https://images.vivino.com/thumbs/p-EGeOH9QpCXV26jd-lcew_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.1,
"ratings": 394,
"price": null
},
{
"name": "Bibbiano Vigna del Capannino Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/159467635",
"thumb": "https://images.vivino.com/thumbs/gPPNJHzMTmS-rcrQPrP4Og_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.2,
"ratings": 568,
"price": 38.81
},
{
"name": "Casa Emma Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/20996463",
"thumb": "https://images.vivino.com/thumbs/huSBLsNaQNmzKsoUMYgupg_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.3,
"ratings": 589,
"price": 53
},
{
"name": "Bindi Sergardi Mocenni Numero 89 Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/10037835",
"thumb": "https://images.vivino.com/thumbs/VRpzAoOAQ32uZqPZ7yQV5g_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.3,
"ratings": 702,
"price": 87.99
},
{
"name": "Cecchi Valore di Famiglia Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/158840533",
"thumb": "https://images.vivino.com/thumbs/erwWGcqVR9-Qk1CUSorrYg_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 3.9,
"ratings": 324,
"price": null
},
{
"name": "Bibbiano Vigne di Montornello Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/156458713",
"thumb": "https://images.vivino.com/thumbs/Myk-U7euQPODq_USC01E5w_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4,
"ratings": 495,
"price": null
},
{
"name": "Querceto di Castellina Sei Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/50788640",
"thumb": "https://images.vivino.com/thumbs/lHrBFVkLTSe95yOkrbaxgA_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.3,
"ratings": 720,
"price": 49.99
},
{
"name": "Vallepicciola Lapina Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/166262997",
"thumb": "https://images.vivino.com/thumbs/UEXfjir4Qw23jw2qZ5zlwg_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.3,
"ratings": 366,
"price": null
},
{
"name": "Ricasoli Roncicone Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/160489078",
"thumb": "https://images.vivino.com/thumbs/Xb0w6TJcRZC41w8A8uTfwg_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.3,
"ratings": 517,
"price": null
},
{
"name": "Castelli del Grevepesa Clemente VII Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/155404513",
"thumb": "https://images.vivino.com/thumbs/H5IUGT9GQaqGPhZTvwdXYg_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4,
"ratings": 367,
"price": null
},
{
"name": "Casa Sola Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/3051738",
"thumb": "https://images.vivino.com/thumbs/1H_lOh_3Rga_BW8w-J61Dg_375x500.jpg",
"country": "Italy",
"region": "Chianti",
"average_rating": 4,
"ratings": 521,
"price": null
},
{
"name": "Castelli del Grevepesa Chianti Classico Panzano Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/4820753",
"thumb": "https://images.vivino.com/thumbs/W2IZ-aoZSXebgUE-_9TWRw_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 3.8,
"ratings": 476,
"price": null
},
{
"name": "Castello di Bossi Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/156509334",
"thumb": "https://images.vivino.com/thumbs/lV6-fdW1R6W7L2h5ptk-jg_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.2,
"ratings": 572,
"price": 45.99
},
{
"name": "Cacchiano Millennio Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/4751780",
"thumb": "https://images.vivino.com/thumbs/0hG0lSmnSdC2iKag4YrMnw_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.2,
"ratings": 508,
"price": null
},
{
"name": "Castelli del Grevepesa Castelgreve Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/152449973",
"thumb": "https://images.vivino.com/thumbs/6Yzy433-RSmCj40GLPa4Hw_375x500.jpg",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 3.7,
"ratings": 134,
"price": null
},
{
"name": "Castelli del Grevepesa Lamole Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/150070970",
"thumb": "https://images.vivino.com/thumbs/nAJqYQV6TPK2FEy42NDCFQ_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 3.9,
"ratings": 274,
"price": null
},
{
"name": "Colle Bereto Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/21124529",
"thumb": "https://images.vivino.com/thumbs/M6xnrXkNR7izsv_Jf1kewg_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.2,
"ratings": 563,
"price": null
},
{
"name": "Capraia Effe 55 Chianti Classico (Gran Selezione)",
"link": "https://www.vivino.com/US-CA/en/wines/141940977",
"thumb": "https://images.vivino.com/thumbs/pxNceJe8RC6Dc3x9227lfA_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4,
"ratings": 443,
"price": 33.99
},
{
"name": "Capannelle Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/152242795",
"thumb": "https://images.vivino.com/thumbs/4yTwdXiQQ7quDCQV3Mlf2w_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4,
"ratings": 520,
"price": null
},
{
"name": "Castelli del Grevepesa Chianti Classico Castello di Bibbione Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/145714483",
"thumb": "https://images.vivino.com/thumbs/2P_WAfjkQPyD8aMt0uXfng_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 3.8,
"ratings": 268,
"price": null
},
{
"name": "Tenuta di Lilliano Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/4874998",
"thumb": "https://images.vivino.com/thumbs/ghOKdQCqSiqtGshMJrOovw_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 3.9,
"ratings": 498,
"price": 27.99
},
{
"name": "Principe Corsini Zac Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/2577867",
"thumb": "https://images.vivino.com/thumbs/dJkpqU67Q-C1RXHesr0tiw_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.3,
"ratings": 477,
"price": null
},
{
"name": "Famiglia Losi Millennium Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/2350503",
"thumb": "https://images.vivino.com/thumbs/GuMBd7hhSJaabXIPM6qJmw_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.1,
"ratings": 423,
"price": null
},
{
"name": "Castello di Radda Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/9892528",
"thumb": "https://images.vivino.com/thumbs/cVsdvuUrS7Gy7mwKe7A8VA_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.1,
"ratings": 393,
"price": null
},
{
"name": "Triacca Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/146778700",
"thumb": "https://images.vivino.com/thumbs/WgA6W-VxR5C6qiht0aCrdw_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 3.9,
"ratings": 233,
"price": 29.99
},
{
"name": "Fattoria Campoperi - Casale dello Sparviero Vigna Paronza Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/109256890",
"thumb": "https://images.vivino.com/thumbs/wDzJm5-VRfeIAs_NxVzQ7w_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4,
"ratings": 354,
"price": null
},
{
"name": "Conti Capponi - Villa Calcinaia Vigna Bastignano Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/5437296",
"thumb": "https://images.vivino.com/thumbs/rlxoXHQjSZqRWKFjE22y8Q_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.2,
"ratings": 396,
"price": null
},
{
"name": "Villa Montepaldi Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/135627417",
"thumb": "https://images.vivino.com/thumbs/yU_u8RKLRRiwSjqvKVnJ_w_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4,
"ratings": 263,
"price": null
},
{
"name": "Fonterutoli Vicoregio 36 Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/165424321",
"thumb": "https://images.vivino.com/thumbs/ZkuawU7VTsSEd_24XSK0_A_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.3,
"ratings": 373,
"price": null
},
{
"name": "Ruffino Romitorio di Santedame Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/158937280",
"thumb": "https://images.vivino.com/thumbs/lLCAvkMvQlWhlIxaQqu88Q_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.3,
"ratings": 230,
"price": null
},
{
"name": "Carpineto Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/160426262",
"thumb": "https://images.vivino.com/thumbs/6EUeXhj-Sa22VgyxclW82w_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.2,
"ratings": 253,
"price": 71.49
},
{
"name": "Ormanni Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/100268474",
"thumb": "https://images.vivino.com/thumbs/cVTkOXGGQMC1DvfrnN4efw_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.2,
"ratings": 368,
"price": null
},
{
"name": "La Castellina Squarcialupi Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/39805050",
"thumb": "https://images.vivino.com/thumbs/bVQgZ1hyQxeJcidOqUncMA_375x500.jpg",
"country": "Italy",
"region": "Chianti",
"average_rating": 3.9,
"ratings": 280,
"price": null
},
{
"name": "Tenuta Cappellina Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/152498028",
"thumb": "https://images.vivino.com/thumbs/xlavM9omQIimPtNoOk2XbA_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.4,
"ratings": 229,
"price": null
},
{
"name": "Fonterutoli Badiòla Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/165434709",
"thumb": "https://images.vivino.com/thumbs/x4J4a7WSR5228N3cL1U0Zg_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.3,
"ratings": 251,
"price": null
},
{
"name": "Cinciano Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/146903073",
"thumb": "https://images.vivino.com/thumbs/CqpN1LtxRFKSR_B7CIzDxA_375x500.jpg",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.1,
"ratings": 279,
"price": null
},
{
"name": "La Sala Il Torriano Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/159802594",
"thumb": "https://images.vivino.com/thumbs/jXCckeQARM6Lk1LBysFqJw_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.4,
"ratings": 314,
"price": 82.49
},
{
"name": "Fattoria di Lamole Vigna Grospoli Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/1746641",
"thumb": "https://images.vivino.com/thumbs/yYKbh7ttSwCHzC8tFXrvkg_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.1,
"ratings": 294,
"price": null
},
{
"name": "Tenuta Orsumella Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/158272546",
"thumb": "https://images.vivino.com/thumbs/pghVRKCiQJyrO_t4TucQ4A_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.1,
"ratings": 138,
"price": null
},
{
"name": "Castello di Radda Vigna Il Corno Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/169396389",
"thumb": "https://images.vivino.com/thumbs/3RQWsPiATmKxOokbDuP_MQ_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.2,
"ratings": 243,
"price": null
},
{
"name": "Medici Riccardi Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/162251736",
"thumb": "https://images.vivino.com/thumbs/o9EmY-olQLCVSzthYVKtpg_375x500.jpg",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 3.7,
"ratings": 57,
"price": null
},
{
"name": "Famiglia Nunzi Conti Vigna Elisa Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/150860139",
"thumb": "https://images.vivino.com/thumbs/CoS2Cpj8RAmvk9HumQGn1A_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.2,
"ratings": 224,
"price": 54.99
},
{
"name": "Volpaia Casanova Il Puro Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/4912575",
"thumb": "https://images.vivino.com/thumbs/sn2tzJkiRfWnoh-kkLd7oQ_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.3,
"ratings": 338,
"price": 222.99
},
{
"name": "Castello La Leccia Bruciagna Gran Selezione Chianti Classico",
"link": "https://www.vivino.com/US-CA/en/wines/10168833",
"thumb": "https://images.vivino.com/thumbs/6nBgzRTSSNG_6DsQizcWYg_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4.2,
"ratings": 210,
"price": null
},
{
"name": "Villa Rosa Chianti Classico Gran Selezione",
"link": "https://www.vivino.com/US-CA/en/wines/158521501",
"thumb": "https://images.vivino.com/thumbs/r2hzw-AOQWmvEmibd1v1YQ_pb_300x300.png",
"country": "Italy",
"region": "Chianti Classico",
"average_rating": 4,
"ratings": 218,
"price": null
}
],
"status": "SOME_EXCEPTION",
"message": {}
} |