Spaces:
Running
Running
File size: 42,848 Bytes
b15516f | 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 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 | {
"generated_at": "2026-01-19T23:07:10.328076+00:00",
"items": [
{
"id": 1,
"category": "ending_soon",
"label": "Ending Soon",
"data": {
"title": "What will be the #2 US Netflix show this week?",
"slug": "what-will-be-the-2-us-netflix-show-this-week-958",
"closedTime": "2026-01-20T00:00:00+00:00",
"volume": 137152.593218,
"liquidity": 30093.29776,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/what-will-be-the-top-global-netflix-show-this-week-tqta8s5DpycA.jpg",
"time_remaining": "53m"
},
"url": "https://polymarket.com/event/what-will-be-the-2-us-netflix-show-this-week-958"
},
{
"id": 2,
"category": "ending_soon",
"label": "Ending Soon",
"data": {
"title": "Billboard Hot 100 #1 Song Week of January 24",
"slug": "billboard-hot-100-1-song-week-of-january-24",
"closedTime": "2026-01-20T00:00:00+00:00",
"volume": 62518.918199,
"liquidity": 30704.73803,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/billboard-1-song-week-of-january-17-u0CI4DynKjnP.jpg",
"time_remaining": "53m"
},
"url": "https://polymarket.com/event/billboard-hot-100-1-song-week-of-january-24"
},
{
"id": 3,
"category": "ending_soon",
"label": "Ending Soon",
"data": {
"title": "What will be the top global Netflix show this week?",
"slug": "what-will-be-the-top-global-netflix-show-this-week-725",
"closedTime": "2026-01-20T00:00:00+00:00",
"volume": 98834.147213,
"liquidity": 27502.35202,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/what-will-be-the-top-global-netflix-show-this-week-tqta8s5DpycA.jpg",
"time_remaining": "53m"
},
"url": "https://polymarket.com/event/what-will-be-the-top-global-netflix-show-this-week-725"
},
{
"id": 4,
"category": "ending_soon",
"label": "Ending Soon",
"data": {
"title": "What will be the top US Netflix show this week?",
"slug": "what-will-be-the-top-us-netflix-show-this-week-299",
"closedTime": "2026-01-20T00:00:00+00:00",
"volume": 54192.925455,
"liquidity": 42324.90147,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/what-will-be-the-top-global-netflix-show-this-week-tqta8s5DpycA.jpg",
"time_remaining": "53m"
},
"url": "https://polymarket.com/event/what-will-be-the-top-us-netflix-show-this-week-299"
},
{
"id": 5,
"category": "ending_soon",
"label": "Ending Soon",
"data": {
"title": "What will be the top US Netflix movie this week?",
"slug": "what-will-be-the-top-us-netflix-movie-this-week-298",
"closedTime": "2026-01-20T00:00:00+00:00",
"volume": 97309.218559,
"liquidity": 12729.84377,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/what-will-be-the-top-global-netflix-show-this-week-03202025-Emhch748WJBP.jpg",
"time_remaining": "53m"
},
"url": "https://polymarket.com/event/what-will-be-the-top-us-netflix-movie-this-week-298"
},
{
"id": 6,
"category": "ending_soon",
"label": "Ending Soon",
"data": {
"title": "What will be the #2 global Netflix show this week?",
"slug": "what-will-be-the-2-global-netflix-show-this-week-774",
"closedTime": "2026-01-20T00:00:00+00:00",
"volume": 34056.445531,
"liquidity": 25630.1892,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/what-will-be-the-top-global-netflix-show-this-week-tqta8s5DpycA.jpg",
"time_remaining": "53m"
},
"url": "https://polymarket.com/event/what-will-be-the-2-global-netflix-show-this-week-774"
},
{
"id": 7,
"category": "ending_soon",
"label": "Ending Soon",
"data": {
"title": "What will be the #2 global Netflix movie this week?",
"slug": "what-will-be-the-2-global-netflix-movie-this-week-841",
"closedTime": "2026-01-20T00:00:00+00:00",
"volume": 16389.698015,
"liquidity": 15491.21001,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/what-will-be-the-top-global-netflix-show-this-week-03202025-Emhch748WJBP.jpg",
"time_remaining": "53m"
},
"url": "https://polymarket.com/event/what-will-be-the-2-global-netflix-movie-this-week-841"
},
{
"id": 8,
"category": "ending_soon",
"label": "Ending Soon",
"data": {
"title": "What will Netflix say during their next earnings call?",
"slug": "earnings-mentions-netflix-2026-01-20",
"closedTime": "2026-01-20T21:45:00+00:00",
"volume": 40076.293732,
"liquidity": 12336.17268,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/earnings-mentions-netflix-2026-01-20-WaOLEFhez9PQ.png",
"time_remaining": "22h"
},
"url": "https://polymarket.com/event/earnings-mentions-netflix-2026-01-20"
},
{
"id": 9,
"category": "ending_soon",
"label": "Ending Soon",
"data": {
"title": "Will anyone audibly fart during Trump's WEF 2026 speech?",
"slug": "will-anyone-audibly-fart-during-trumps-wef-2026-speech",
"closedTime": "2026-01-21T00:00:00+00:00",
"volume": 137296.858777,
"liquidity": 17116.42038,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/will-anyone-audibly-fart-during-trumps-wef-2026-speech-37bsH3fp299H.jpg",
"time_remaining": "1d"
},
"url": "https://polymarket.com/event/will-anyone-audibly-fart-during-trumps-wef-2026-speech"
},
{
"id": 10,
"category": "ending_soon",
"label": "Ending Soon",
"data": {
"title": "Han Duck-soo Prison Time?",
"slug": "han-duck-soo-prison-time",
"closedTime": "2026-01-21T00:00:00+00:00",
"volume": 421528.42128,
"liquidity": 35679.7276,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/han-duck-soo-prison-time-KV5dKR7YLrET.jpg",
"time_remaining": "1d"
},
"url": "https://polymarket.com/event/han-duck-soo-prison-time"
},
{
"id": 11,
"category": "ending_soon",
"label": "Ending Soon",
"data": {
"title": "What will Trump say during WEF Address on January 21?",
"slug": "what-will-trump-say-during-wef-address-on-january-21",
"closedTime": "2026-01-21T00:00:00+00:00",
"volume": 29730.132021,
"liquidity": 21668.897,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/what-will-trump-say-during-wef-address-on-january-21-WxAmpFIa9u_A.jpg",
"time_remaining": "1d"
},
"url": "https://polymarket.com/event/what-will-trump-say-during-wef-address-on-january-21"
},
{
"id": 12,
"category": "ending_soon",
"label": "Ending Soon",
"data": {
"title": "Oscars 2026: Best Picture Nominations ",
"slug": "oscars-2026-best-picture-nominations",
"closedTime": "2026-01-22T00:00:00+00:00",
"volume": 1601622.135658,
"liquidity": 221696.24326,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/oscars-2026-best-picture-nominations-uExlgIhppb3W.jpg",
"time_remaining": "2d"
},
"url": "https://polymarket.com/event/oscars-2026-best-picture-nominations"
},
{
"id": 13,
"category": "ending_soon",
"label": "Ending Soon",
"data": {
"title": "Oscars 2026: Best Actor Nominations ",
"slug": "oscars-2026-best-actor-nominations",
"closedTime": "2026-01-22T00:00:00+00:00",
"volume": 719053.506121,
"liquidity": 101229.12738,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/oscars-2026-best-picture-nominations-uExlgIhppb3W.jpg",
"time_remaining": "2d"
},
"url": "https://polymarket.com/event/oscars-2026-best-actor-nominations"
},
{
"id": 14,
"category": "ending_soon",
"label": "Ending Soon",
"data": {
"title": "Oscars 2026: Best Supporting Actress Nominations",
"slug": "oscars-2026-best-supporting-actress-nominations",
"closedTime": "2026-01-22T00:00:00+00:00",
"volume": 547323.507456,
"liquidity": 112348.513,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/oscars-2026-best-picture-nominations-uExlgIhppb3W.jpg",
"time_remaining": "2d"
},
"url": "https://polymarket.com/event/oscars-2026-best-supporting-actress-nominations"
},
{
"id": 15,
"category": "ending_soon",
"label": "Ending Soon",
"data": {
"title": "Bank of Japan decision in January?",
"slug": "bank-of-japan-decision-in-december-425",
"closedTime": "2026-01-23T00:00:00+00:00",
"volume": 2236979.457983,
"liquidity": 213253.00957,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/boj-emergency-rate-cut-in-august-K4KcXEDWiliA.jpg",
"time_remaining": "3d"
},
"url": "https://polymarket.com/event/bank-of-japan-decision-in-december-425"
},
{
"id": 16,
"category": "just_listed",
"label": "New",
"data": {
"title": "Will Don Lemon be criminally charged?",
"slug": "will-don-lemon-be-criminally-charged",
"createdAt": "2026-01-19T20:04:49.142132Z",
"volume": 1336.623458,
"liquidity": 15351.7318,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/will-don-lemon-be-criminally-charged-Jb4DoxcTM_0Z.jpg",
"time_since": "3h ago"
},
"url": "https://polymarket.com/event/will-don-lemon-be-criminally-charged"
},
{
"id": 17,
"category": "just_listed",
"label": "New",
"data": {
"title": "What will Trump say during NewsNation interview?",
"slug": "what-will-trump-say-during-newsnation-interview",
"createdAt": "2026-01-19T18:41:27.383553Z",
"volume": 231.723624,
"liquidity": 5212.9841,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/what-will-trump-say-during-newsnation-interview-WmczorY-JpWG.jpg",
"time_since": "4h ago"
},
"url": "https://polymarket.com/event/what-will-trump-say-during-newsnation-interview"
},
{
"id": 18,
"category": "just_listed",
"label": "New",
"data": {
"title": "Top performing Magnificent 7 company week of January 19?",
"slug": "top-performing-magnificent-7-company-week-of-january-19",
"createdAt": "2026-01-19T17:57:58.238516Z",
"volume": 381.179487,
"liquidity": 1504.2339,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/top-performing-magnificent-7-company-week-of-november-17-cfx_x_pc89Fv.png",
"time_since": "5h ago"
},
"url": "https://polymarket.com/event/top-performing-magnificent-7-company-week-of-january-19"
},
{
"id": 19,
"category": "just_listed",
"label": "New",
"data": {
"title": "North Korea missile launch by February 28?",
"slug": "north-korea-missile-launch-by-february-28",
"createdAt": "2026-01-19T17:23:28.902316Z",
"volume": 49.752053,
"liquidity": 4684.9533,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/north-korea-missile-launch-by-november-15-zwBNKi5pUPJh.jpg",
"time_since": "5h ago"
},
"url": "https://polymarket.com/event/north-korea-missile-launch-by-february-28"
},
{
"id": 20,
"category": "just_listed",
"label": "New",
"data": {
"title": "Who will Trump talk to in Februrary?",
"slug": "who-will-trump-talk-to-in-februrary",
"createdAt": "2026-01-19T17:16:54.915215Z",
"volume": 295.783325,
"liquidity": 4950.5531,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/who-will-trump-talk-to-in-august-5cRGa2yUPMwu.jpg",
"time_since": "5h ago"
},
"url": "https://polymarket.com/event/who-will-trump-talk-to-in-februrary"
},
{
"id": 21,
"category": "just_listed",
"label": "New",
"data": {
"title": "Who will Trump meet with in February?",
"slug": "who-will-trump-meet-with-in-february",
"createdAt": "2026-01-19T17:12:04.938039Z",
"volume": 269.364982,
"liquidity": 10601.93506,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/who-will-trump-meet-with-in-february-jAKCxFBNmZ39.jpg",
"time_since": "5h ago"
},
"url": "https://polymarket.com/event/who-will-trump-meet-with-in-february"
},
{
"id": 22,
"category": "just_listed",
"label": "New",
"data": {
"title": "CDC issues Level 4 warning by December 31?",
"slug": "cdc-issues-level-4-warning-by-december-31-647",
"createdAt": "2026-01-19T14:14:16.157476Z",
"volume": 0.0,
"liquidity": 144.6824,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/will-the-cdc-issue-a-level-3-warning-by-dec-31-2025-CAG97CPYu69L.png",
"time_since": "8h ago"
},
"url": "https://polymarket.com/event/cdc-issues-level-4-warning-by-december-31-647"
},
{
"id": 23,
"category": "just_listed",
"label": "New",
"data": {
"title": "CDC issues Level 3 warning by December 31?",
"slug": "cdc-issues-level-3-warning-by-december-31",
"createdAt": "2026-01-19T14:09:04.683567Z",
"volume": 0.0,
"liquidity": 134.3184,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/will-the-cdc-issue-a-level-3-warning-by-dec-31-2025-CAG97CPYu69L.png",
"time_since": "8h ago"
},
"url": "https://polymarket.com/event/cdc-issues-level-3-warning-by-december-31"
},
{
"id": 24,
"category": "just_listed",
"label": "New",
"data": {
"title": "Anthony Albanese out as Prime Minister of Australia by...? ",
"slug": "anthony-albanese-out-as-prime-minister-of-australia-by",
"createdAt": "2026-01-19T13:43:30.118371Z",
"volume": 0.0,
"liquidity": 237.3494,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/anthony-albanese-out-as-prime-minister-of-australia-in-2026-i8jNDHfaQCqs.jpg",
"time_since": "9h ago"
},
"url": "https://polymarket.com/event/anthony-albanese-out-as-prime-minister-of-australia-by"
},
{
"id": 25,
"category": "just_listed",
"label": "New",
"data": {
"title": "Jacob Elordi and Olivia Jade confirmed relationship by June 30?",
"slug": "jacob-elordi-and-olivia-jade-confirmed-relationship-by-june-30",
"createdAt": "2026-01-18T19:08:32.141306Z",
"volume": 357.073088,
"liquidity": 657.0144,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/jacob-elordi-and-olivia-jade-confirmed-relationship-by-june-30-sqX_VITD_vHu.jpg",
"time_since": "1d ago"
},
"url": "https://polymarket.com/event/jacob-elordi-and-olivia-jade-confirmed-relationship-by-june-30"
},
{
"id": 26,
"category": "breaking_news",
"label": "Breaking News",
"data": {
"title": "Will the US strike Somalia next?",
"slug": "next-country-us-strikes-918",
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/next-country-us-strikes-33B5vAP0Ah_C.jpg",
"current_price": 69,
"price_change": 14,
"volume": 0.0
},
"url": "https://polymarket.com/event/next-country-us-strikes-918"
},
{
"id": 27,
"category": "hot_markets",
"label": "Hot Markets",
"data": {
"title": "Fed decision in January?",
"slug": "fed-decision-in-january",
"volume24hr": 12744364.150021993,
"liquidity": 21630696.38553,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/jerome+powell+glasses1.png"
},
"url": "https://polymarket.com/event/fed-decision-in-january"
},
{
"id": 28,
"category": "hot_markets",
"label": "Hot Markets",
"data": {
"title": "Portugal Presidential Election",
"slug": "portugal-presidential-election",
"volume24hr": 5309239.553484001,
"liquidity": 4977995.43812,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/portugal-presidential-election-_h_A97vllNOX.png"
},
"url": "https://polymarket.com/event/portugal-presidential-election"
},
{
"id": 29,
"category": "hot_markets",
"label": "Hot Markets",
"data": {
"title": "Who will Trump nominate as Fed Chair?",
"slug": "who-will-trump-nominate-as-fed-chair",
"volume24hr": 4680100.405277999,
"liquidity": 6086551.02135,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/who-will-trump-nominate-as-fed-chair-9p19ttRwsbKL.png"
},
"url": "https://polymarket.com/event/who-will-trump-nominate-as-fed-chair"
},
{
"id": 30,
"category": "hot_markets",
"label": "Hot Markets",
"data": {
"title": "Democratic Presidential Nominee 2028",
"slug": "democratic-presidential-nominee-2028",
"volume24hr": 4371247.8422759995,
"liquidity": 26115262.01638,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/democrats+2028+donkey.png"
},
"url": "https://polymarket.com/event/democratic-presidential-nominee-2028"
},
{
"id": 31,
"category": "hot_markets",
"label": "Hot Markets",
"data": {
"title": "What will Melania say during AI talk on January 16?",
"slug": "what-will-melania-say-during-ai-talk-on-january-16",
"volume24hr": 3343298.775599,
"liquidity": 1655537.65548,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/what-will-melania-say-during-ai-talk-on-january-16-VbOwqq7ALghu.jpg"
},
"url": "https://polymarket.com/event/what-will-melania-say-during-ai-talk-on-january-16"
},
{
"id": 32,
"category": "hot_markets",
"label": "Hot Markets",
"data": {
"title": "US strikes Iran by...?",
"slug": "us-strikes-iran-by",
"volume24hr": 3143758.0051659998,
"liquidity": 428757.9929,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/us-strikes-iran-by-october-3-2sVnIHq3sjqF.jpg"
},
"url": "https://polymarket.com/event/us-strikes-iran-by"
},
{
"id": 33,
"category": "hot_markets",
"label": "Hot Markets",
"data": {
"title": "Presidential Election Winner 2028",
"slug": "presidential-election-winner-2028",
"volume24hr": 2404008.547012,
"liquidity": 15158273.11107,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/presidential-election-winner-2024-afdda358-219d-448a-abb5-ba4d14118d71.png"
},
"url": "https://polymarket.com/event/presidential-election-winner-2028"
},
{
"id": 34,
"category": "hot_markets",
"label": "Hot Markets",
"data": {
"title": "Republican Presidential Nominee 2028",
"slug": "republican-presidential-nominee-2028",
"volume24hr": 1954643.9210919999,
"liquidity": 12013348.08864,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/republicans+2028.png"
},
"url": "https://polymarket.com/event/republican-presidential-nominee-2028"
},
{
"id": 35,
"category": "hot_markets",
"label": "Hot Markets",
"data": {
"title": "Will Trump acquire Greenland before 2027?",
"slug": "will-trump-acquire-greenland-before-2027",
"volume24hr": 1867122.961951997,
"liquidity": 1557490.8011,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/will-trump-acquire-greenland-in-2025-5ZDkcIGhdBMW.jpg"
},
"url": "https://polymarket.com/event/will-trump-acquire-greenland-before-2027"
},
{
"id": 36,
"category": "hot_markets",
"label": "Hot Markets",
"data": {
"title": "Venezuela leader end of 2026?",
"slug": "venezuela-leader-end-of-2026",
"volume24hr": 1488816.622456,
"liquidity": 1275539.71177,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/venezuela-leader-end-of-2026-lOfqbUxiKAsg.png"
},
"url": "https://polymarket.com/event/venezuela-leader-end-of-2026"
},
{
"id": 37,
"category": "whale_moves",
"label": "Whale Moves",
"data": {
"title": "\"No\" Fed decreases interest rates by 50+ bps after January 2026 meeting?",
"market": "Fed decreases interest rates by 50+ bps after January 2026 meeting?",
"event": "Fed decreases interest rates by 50+ bps after January 2026 meeting?",
"slug": "fed-decision-in-january",
"amount": 1755901.7540699998,
"outcome": "No",
"side": "BUY",
"user_name": "scottxia1988",
"user_profile_url": "scottxia1988",
"distinct_positions": 2,
"timestamp": "2026-01-19T23:06:59.654583+00:00",
"market_image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/jerome+powell+glasses1.png",
"user_image": "https://polymarket.com/images/default-profile.png"
},
"url": "https://polymarket.com/event/fed-decision-in-january"
},
{
"id": 38,
"category": "whale_moves",
"label": "Whale Moves",
"data": {
"title": "\"Yes\" No change in Fed interest rates after January 2026 meeting?",
"market": "No change in Fed interest rates after January 2026 meeting?",
"event": "No change in Fed interest rates after January 2026 meeting?",
"slug": "fed-decision-in-january",
"amount": 230877.86672,
"outcome": "Yes",
"side": "BUY",
"user_name": "bongo",
"user_profile_url": "bongo",
"distinct_positions": 2,
"timestamp": "2026-01-19T23:06:59.024398+00:00",
"market_image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/jerome+powell+glasses1.png",
"user_image": "https://polymarket.com/images/default-profile.png"
},
"url": "https://polymarket.com/event/fed-decision-in-january"
},
{
"id": 39,
"category": "whale_moves",
"label": "Whale Moves",
"data": {
"title": "\"No\" Will Trump acquire Greenland before 2027?",
"market": "Will Trump acquire Greenland before 2027?",
"event": "Will Trump acquire Greenland before 2027?",
"slug": "will-trump-acquire-greenland-before-2027",
"amount": 191823.5682,
"outcome": "No",
"side": "BUY",
"user_name": "onekey09",
"user_profile_url": "onekey09",
"distinct_positions": 1,
"timestamp": "2026-01-19T23:06:57.965675+00:00",
"market_image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/will-trump-acquire-greenland-in-2025-5ZDkcIGhdBMW.jpg",
"user_image": "https://polymarket.com/images/default-profile.png"
},
"url": "https://polymarket.com/event/will-trump-acquire-greenland-before-2027"
},
{
"id": 40,
"category": "whale_moves",
"label": "Whale Moves",
"data": {
"title": "\"No\" Khamenei out as Supreme Leader of Iran by March 31?",
"market": "Khamenei out as Supreme Leader of Iran by March 31?",
"event": "Khamenei out as Supreme Leader of Iran by March 31?",
"slug": "khamenei-out-as-supreme-leader-of-iran-by-march-31",
"amount": 148750.6251,
"outcome": "No",
"side": "SELL",
"user_name": "0x40e1D00D3A43aF1C4f215bD7A1039cc792AD973f-1757776033081",
"user_profile_url": "0x40e1D00D3A43aF1C4f215bD7A1039cc792AD973f-1757776033081",
"distinct_positions": 2,
"timestamp": "2026-01-19T23:07:00.166976+00:00",
"market_image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/khamenei-out-as-supreme-leader-of-iran-in-2025-VNDMf5RqFLwB.jpg",
"user_image": "https://polymarket.com/images/default-profile.png"
},
"url": "https://polymarket.com/event/khamenei-out-as-supreme-leader-of-iran-by-march-31"
},
{
"id": 41,
"category": "whale_moves",
"label": "Whale Moves",
"data": {
"title": "\"No\" Will Melania say \"Career\" during AI talk on Friday?",
"market": "Will Melania say \"Career\" during AI talk on Friday?",
"event": "Will Melania say \"Career\" during AI talk on Friday?",
"slug": "what-will-melania-say-during-ai-talk-on-january-16",
"amount": 124568.18097,
"outcome": "No",
"side": "BUY",
"user_name": "scout",
"user_profile_url": "scout",
"distinct_positions": 1,
"timestamp": "2026-01-19T23:06:53.291872+00:00",
"market_image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/what-will-melania-say-during-ai-talk-on-january-16-VbOwqq7ALghu.jpg",
"user_image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/profile-image-528263-17356800-3eb5-4b47-8835-3355232a47f7.png"
},
"url": "https://polymarket.com/event/what-will-melania-say-during-ai-talk-on-january-16"
},
{
"id": 42,
"category": "whale_moves",
"label": "Whale Moves",
"data": {
"title": "\"No\" Will Trump acquire Greenland before 2027?",
"market": "Will Trump acquire Greenland before 2027?",
"event": "Will Trump acquire Greenland before 2027?",
"slug": "will-trump-acquire-greenland-before-2027",
"amount": 100000.0,
"outcome": "No",
"side": "BUY",
"user_name": "Macks22",
"user_profile_url": "Macks22",
"distinct_positions": 1,
"timestamp": "2026-01-19T23:06:58.199784+00:00",
"market_image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/will-trump-acquire-greenland-in-2025-5ZDkcIGhdBMW.jpg",
"user_image": "https://polymarket.com/images/default-profile.png"
},
"url": "https://polymarket.com/event/will-trump-acquire-greenland-before-2027"
},
{
"id": 43,
"category": "whale_moves",
"label": "Whale Moves",
"data": {
"title": "\"No\" Will Melania say \"Career\" during AI talk on Friday?",
"market": "Will Melania say \"Career\" during AI talk on Friday?",
"event": "Will Melania say \"Career\" during AI talk on Friday?",
"slug": "what-will-melania-say-during-ai-talk-on-january-16",
"amount": 99900.0,
"outcome": "No",
"side": "BUY",
"user_name": "Official-Spokesperson",
"user_profile_url": "Official-Spokesperson",
"distinct_positions": 1,
"timestamp": "2026-01-19T23:06:58.199751+00:00",
"market_image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/what-will-melania-say-during-ai-talk-on-january-16-VbOwqq7ALghu.jpg",
"user_image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/profile-image-4784424-312f8538-7f26-4221-81ce-76de4d842722.png"
},
"url": "https://polymarket.com/event/what-will-melania-say-during-ai-talk-on-january-16"
},
{
"id": 44,
"category": "whale_moves",
"label": "Whale Moves",
"data": {
"title": "\"No\" Will the US next strike Iran on January 19, 2026 (ET)?",
"market": "Will the US next strike Iran on January 19, 2026 (ET)?",
"event": "Will the US next strike Iran on January 19, 2026 (ET)?",
"slug": "us-next-strikes-iran-on",
"amount": 99600.0,
"outcome": "No",
"side": "BUY",
"user_name": "Gtno",
"user_profile_url": "Gtno",
"distinct_positions": 1,
"timestamp": "2026-01-19T23:06:58.537058+00:00",
"market_image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/us-strikes-iran-next-on-i8O7r2SBkycN.jpg",
"user_image": "https://polymarket.com/images/default-profile.png"
},
"url": "https://polymarket.com/event/us-next-strikes-iran-on"
},
{
"id": 45,
"category": "whale_moves",
"label": "Whale Moves",
"data": {
"title": "\"No\" Will the US next strike Iran on January 19, 2026 (ET)?",
"market": "Will the US next strike Iran on January 19, 2026 (ET)?",
"event": "Will the US next strike Iran on January 19, 2026 (ET)?",
"slug": "us-next-strikes-iran-on",
"amount": 76416.95031,
"outcome": "No",
"side": "BUY",
"user_name": "hersodolphi",
"user_profile_url": "hersodolphi",
"distinct_positions": 1,
"timestamp": "2026-01-19T23:06:53.053778+00:00",
"market_image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/us-strikes-iran-next-on-i8O7r2SBkycN.jpg",
"user_image": "https://polymarket.com/images/default-profile.png"
},
"url": "https://polymarket.com/event/us-next-strikes-iran-on"
},
{
"id": 46,
"category": "whale_moves",
"label": "Whale Moves",
"data": {
"title": "\"Yes\" No change in Fed interest rates after January 2026 meeting?",
"market": "No change in Fed interest rates after January 2026 meeting?",
"event": "No change in Fed interest rates after January 2026 meeting?",
"slug": "fed-decision-in-january",
"amount": 72607.65347,
"outcome": "Yes",
"side": "BUY",
"user_name": "BowlOfPunch",
"user_profile_url": "BowlOfPunch",
"distinct_positions": 1,
"timestamp": "2026-01-19T23:06:59.024327+00:00",
"market_image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/jerome+powell+glasses1.png",
"user_image": "https://polymarket.com/images/default-profile.png"
},
"url": "https://polymarket.com/event/fed-decision-in-january"
},
{
"id": 47,
"category": "top_comments",
"label": "Top Comments",
"data": {
"comment": "I consider this market a precedent, and I want it to be resolved at the highest level in the Oval Office, with the President",
"author": "matedickins",
"market_title": "What will Melania say during AI talk on January 16?",
"slug": "what-will-melania-say-during-ai-talk-on-january-16",
"likes": 29,
"createdAt": "2026-01-19T18:25:40.262181Z",
"age_days": 0.1953936015625,
"weighted_score": 48.51958377909013
},
"url": "https://polymarket.com/event/what-will-melania-say-during-ai-talk-on-january-16"
},
{
"id": 48,
"category": "top_comments",
"label": "Top Comments",
"data": {
"comment": "If it’s NO polymarket should Shut Down for manipulation",
"author": "TryingToMake1k",
"market_title": "What will Melania say during AI talk on January 16?",
"slug": "what-will-melania-say-during-ai-talk-on-january-16",
"likes": 25,
"createdAt": "2026-01-19T19:01:25.849731Z",
"age_days": 0.17056041232638888,
"weighted_score": 42.71458309497181
},
"url": "https://polymarket.com/event/what-will-melania-say-during-ai-talk-on-january-16"
},
{
"id": 49,
"category": "top_comments",
"label": "Top Comments",
"data": {
"comment": "Ventura at 5% is extremely undervalued",
"author": "0x83d43706909c0a36103cdCdDe954880516Cf060c-1760971973084",
"market_title": "Portugal Presidential Election",
"slug": "portugal-presidential-election",
"likes": 20,
"createdAt": "2026-01-18T22:17:02.174731Z",
"age_days": 1.0347233174189814,
"weighted_score": 19.658692490308436
},
"url": "https://polymarket.com/event/portugal-presidential-election"
},
{
"id": 50,
"category": "top_comments",
"label": "Top Comments",
"data": {
"comment": "By Ventura before it's too late! Only a fool wouldn't take advantage of this opportunity! He is so undervalued right now",
"author": "TheBestBets",
"market_title": "Portugal Presidential Election",
"slug": "portugal-presidential-election",
"likes": 17,
"createdAt": "2026-01-18T21:24:45.526147Z",
"age_days": 1.071027120474537,
"weighted_score": 16.416974777331518
},
"url": "https://polymarket.com/event/portugal-presidential-election"
},
{
"id": 51,
"category": "top_comments",
"label": "Top Comments",
"data": {
"comment": "Kevin Warsh is too Beta for Trump's taste. Why would Trump wait so long to announce Warsh following Rieder interview?",
"author": "LordBets",
"market_title": "Who will Trump nominate as Fed Chair?",
"slug": "who-will-trump-nominate-as-fed-chair",
"likes": 4,
"createdAt": "2026-01-19T21:16:44.854114Z",
"age_days": 0.1,
"weighted_score": 3.6363636363636362
},
"url": "https://polymarket.com/event/who-will-trump-nominate-as-fed-chair"
},
{
"id": 52,
"category": "top_comments",
"label": "Top Comments",
"data": {
"comment": "Oh F off clown, nobody here forced Trump to say he didn't want to pick Hassett as Fed Chair. Trump said that all by himself. It turns out that smiling bimbo is better off lying on TV on Fox News daily instead of trying to apply his pea brain to leading a highly sophisticated central bank.",
"author": "ImJustKen",
"market_title": "Who will Trump nominate as Fed Chair?",
"slug": "who-will-trump-nominate-as-fed-chair",
"likes": 11,
"createdAt": "2026-01-16T16:44:10.36105Z",
"age_days": 3.2658785683564813,
"weighted_score": 2.5786012948413535
},
"url": "https://polymarket.com/event/who-will-trump-nominate-as-fed-chair"
},
{
"id": 53,
"category": "top_comments",
"label": "Top Comments",
"data": {
"comment": "Mark Kelly is a combat veteran. A war hero. An astronaut. And he will be the first bald POTUS since Eisenhower. Anyone overlooking Eisenhower for a guy whose wife got shagged by Harvey Weinstein is stupid.",
"author": "Koyack",
"market_title": "Democratic Presidential Nominee 2028",
"slug": "democratic-presidential-nominee-2028",
"likes": 3,
"createdAt": "2026-01-15T18:51:17.583524Z",
"age_days": 4.177600530462962,
"weighted_score": 0.5794189764832535
},
"url": "https://polymarket.com/event/democratic-presidential-nominee-2028"
},
{
"id": 54,
"category": "top_comments",
"label": "Top Comments",
"data": {
"comment": "I am a young Venezuelan man facing financial hardship. Today I am asking for your help to buy some food for my family. We are in a difficult situation here; inflation and the lack of work are killing us. God bless you, and may you and your family have a long and healthy life. Any contribution will be greatly appreciated and blessed.",
"author": "Rastafari1",
"market_title": "Democratic Presidential Nominee 2028",
"slug": "democratic-presidential-nominee-2028",
"likes": 2,
"createdAt": "2026-01-16T19:42:56.586974Z",
"age_days": 3.141732434976852,
"weighted_score": 0.48288971617529847
},
"url": "https://polymarket.com/event/democratic-presidential-nominee-2028"
},
{
"id": 55,
"category": "top_comments",
"label": "Top Comments",
"data": {
"comment": "You’re fake I’m the real young man from Venezuela",
"author": "Papichul0",
"market_title": "Presidential Election Winner 2028",
"slug": "presidential-election-winner-2028",
"likes": 1,
"createdAt": "2026-01-17T04:10:34.326062Z",
"age_days": 2.7892123066435186,
"weighted_score": 0.2639070917844134
},
"url": "https://polymarket.com/event/presidential-election-winner-2028"
},
{
"id": 56,
"category": "top_comments",
"label": "Top Comments",
"data": {
"comment": "I just learned that you can get profit by buying impossible bet. Look for impossible bet that has long resolution time like this one. buy using limit order when it's hype. when the hype is over, no one buys anymore, they start selling because they realize 2028 is still way too long, and the yes holder get reasonable gain like this guy \"risk-manager\" on betting yes on Kim",
"author": "polmark001",
"market_title": "Presidential Election Winner 2028",
"slug": "presidential-election-winner-2028",
"likes": 1,
"createdAt": "2026-01-16T18:02:57.684695Z",
"age_days": 3.2111641743171297,
"weighted_score": 0.23746402624213936
},
"url": "https://polymarket.com/event/presidential-election-winner-2028"
},
{
"id": 57,
"category": "sports_events",
"label": "Top Sports",
"data": {
"title": "Super Bowl Champion 2026",
"slug": "super-bowl-champion-2026-731",
"startTime": "2026-02-08T12:00:00Z",
"time_to_start": "19d",
"volume": 683813209.653358,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/football-logo.png",
"sport": "NFL"
},
"url": "https://polymarket.com/event/super-bowl-champion-2026-731"
},
{
"id": 58,
"category": "sports_events",
"label": "Top Sports",
"data": {
"title": "English Premier League Winner ",
"slug": "english-premier-league-winner",
"startTime": "2026-05-27T00:00:00Z",
"time_to_start": "127d",
"volume": 174127310.561323,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/english-premier-league-winner-VFcNkpZeA9Sz.jpg",
"sport": "Soccer"
},
"url": "https://polymarket.com/event/english-premier-league-winner"
},
{
"id": 59,
"category": "sports_events",
"label": "Top Sports",
"data": {
"title": "2026 NBA Champion",
"slug": "2026-nba-champion",
"startTime": "2026-07-01T00:00:00Z",
"time_to_start": "162d",
"volume": 176555519.923511,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/nba-finals-points-leader-7g2ZEZvMXxLb.jpg",
"sport": "NBA"
},
"url": "https://polymarket.com/event/2026-nba-champion"
},
{
"id": 60,
"category": "sports_events",
"label": "Top Sports",
"data": {
"title": "2026 FIFA World Cup Winner ",
"slug": "2026-fifa-world-cup-winner-595",
"startTime": "2026-07-20T00:00:00Z",
"time_to_start": "181d",
"volume": 73367409.156338,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/2026-fifa-world-cup-winner-ITPKPUTc8QkB.jpg",
"sport": "Soccer"
},
"url": "https://polymarket.com/event/2026-fifa-world-cup-winner-595"
},
{
"id": 61,
"category": "sports_events",
"label": "Top Sports",
"data": {
"title": "UEFA Champions League Winner ",
"slug": "uefa-champions-league-winner",
"startTime": "2026-05-31T00:00:00Z",
"time_to_start": "131d",
"volume": 181373075.942424,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/uefa-champions-league-2025-26-which-teams-qualify-StbSIjaEx2St.png",
"sport": "Soccer"
},
"url": "https://polymarket.com/event/uefa-champions-league-winner"
},
{
"id": 62,
"category": "sports_events",
"label": "Top Sports",
"data": {
"title": "2026 Men's Australian Open Winner",
"slug": "2026-mens-australian-open-winner",
"startTime": "2026-02-01T00:00:00Z",
"time_to_start": "12d",
"volume": 11131771.17664,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/2026-mens-australian-open-winner-0qYpn3OBLJPP.png",
"sport": "Tennis"
},
"url": "https://polymarket.com/event/2026-mens-australian-open-winner"
},
{
"id": 63,
"category": "sports_events",
"label": "Top Sports",
"data": {
"title": "Miami vs. Indiana",
"slug": "cfb-mia-ind-2026-01-19",
"startTime": "2026-01-20T00:30:00Z",
"time_to_start": "1h",
"volume": 5068396.05066,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/cfb-mia-ind-2026-01-19-Aarve4abkTld.jpg",
"sport": "Sports"
},
"url": "https://polymarket.com/event/cfb-mia-ind-2026-01-19"
},
{
"id": 64,
"category": "sports_events",
"label": "Top Sports",
"data": {
"title": "La Liga Winner ",
"slug": "la-liga-winner-114",
"startTime": "2026-05-30T00:00:00Z",
"time_to_start": "130d",
"volume": 60296940.473319,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/la-liga-winner-885-D1lKS37jyqsm.png",
"sport": "Sports"
},
"url": "https://polymarket.com/event/la-liga-winner-114"
},
{
"id": 65,
"category": "sports_events",
"label": "Top Sports",
"data": {
"title": "Capitals vs. Avalanche",
"slug": "nhl-wsh-col-2026-01-19",
"startTime": "2026-01-19T21:00:00Z",
"time_to_start": "21h",
"volume": 1577287.907485,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/nhl.png",
"sport": "Sports"
},
"url": "https://polymarket.com/event/nhl-wsh-col-2026-01-19"
},
{
"id": 66,
"category": "sports_events",
"label": "Top Sports",
"data": {
"title": "Jazz vs. Spurs",
"slug": "nba-uta-sas-2026-01-19",
"startTime": "2026-01-19T22:00:00Z",
"time_to_start": "22h",
"volume": 1311365.026387,
"image": "https://polymarket-upload.s3.us-east-2.amazonaws.com/super+cool+basketball+in+red+and+blue+wow.png",
"sport": "Sports"
},
"url": "https://polymarket.com/event/nba-uta-sas-2026-01-19"
}
]
} |