File size: 39,956 Bytes
11d056e |
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 |
[
{
"position": 0,
"title": "IndianPremierLeague (@IPL) / X",
"snippet": "@IPL. \u00b7. Dec 19, 2023. That's a GRAND return to the IPL for Mitchell Starc DO NOT MISS the record-breaking bid of the left-arm pacer who will feature for.",
"highlighs": [
"IPL",
"IPL"
],
"link": "https://twitter.com/IPL",
"displayed_link": "https://twitter.com \u203a IPL"
},
{
"position": 1,
"title": "Mumbai Indians (@mipaltan) / X",
"snippet": "Official Twitter handle of 5-time IPL, WPL 2023, & 2-time CLT20 champions Mumbai Indians. Instagram: mumbaiindians Snapchat: mi_paltan #OneFamily #Mumbai.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/mipaltan",
"displayed_link": "https://twitter.com \u203a mipaltan"
},
{
"position": 2,
"title": "IndianPremierLeague",
"snippet": "@IPL. NEWS : Lucknow Super Giants name Shamar Joseph as replacement for Mark Wood. #TATAIPL Details. Lucknow Super Giants name Shamar\u00a0...",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/IPL/status/1756281116409958859",
"displayed_link": "https://twitter.com \u203a IPL \u203a status"
},
{
"position": 3,
"title": "IndianPremierLeague",
"snippet": "IPL 2024 Auction \ud83d\uddd3\ufe0f 19th December DUBAI ARE. YOU. READY \u2753 #IPLAuction | #IPL.",
"highlighs": [
"IPL",
"IPL"
],
"link": "https://twitter.com/IPL/status/1731167362140041292",
"displayed_link": "https://twitter.com \u203a IPL \u203a status"
},
{
"position": 4,
"title": "Here's the IPL 2024 Squad Summary ahead of the",
"snippet": "Here's the IPL 2024 Squad Summary ahead of the #IPL Player Auction.",
"highlighs": [
"IPL",
"IPL"
],
"link": "https://twitter.com/IPL/status/1728813410115338245",
"displayed_link": "https://twitter.com \u203a IPL \u203a status"
},
{
"position": 5,
"title": "SALARY OF SHAMAR JOSEPH IS 3 CRORE IN IPL 2024.",
"snippet": "SALARY OF SHAMAR JOSEPH IS 3 CRORE IN IPL 2024. - He will play under KL Rahul in LSG.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/CricCrazyJohns/status/1756282394871758900",
"displayed_link": "https://twitter.com \u203a CricCrazyJohns \u203a status"
},
{
"position": 6,
"title": "IPL",
"snippet": "Here are the Retained Players of all teams of #IPL 2024! Which side according to you is the strongest heading into the IPL Auction.",
"highlighs": [
"IPL",
"IPL"
],
"link": "https://twitter.com/IPL/status/1729066103601766714",
"displayed_link": "https://twitter.com \u203a IPL \u203a status"
},
{
"position": 7,
"title": "IndianPremierLeague (@IPL) / X",
"snippet": "It is heartening to see the impact that IPL is creating in the world of cricket. IPL has risen to become a remarkable platform for cricketers around the\u00a0...",
"highlighs": [
"IPL",
"IPL"
],
"link": "https://twitter.com/ipl?lang=zh-Hant",
"displayed_link": "https://twitter.com \u203a ipl"
},
{
"position": 8,
"title": "Highlights by IndianPremierLeague (@IPL) / X",
"snippet": "@IPL. Follow to get exclusive and real-time Indian Premier League news and updates ... @IPL. \u00b7. May 29, 2023. PRESENTING THE CHAMPIONS OF\u00a0...",
"highlighs": [
"IPL",
"IPL"
],
"link": "https://twitter.com/IPL/highlights?lang=id%3Flang%3Dar",
"displayed_link": "https://twitter.com \u203a IPL \u203a highlights"
},
{
"position": 9,
"title": "TATA IPL (@TATA_IPL) / X",
"snippet": "IPL2023 IPL Management Parody | Live Scores | Graphic Memes | World Cricket | Players | Team Profile | Stats | Advance Poll.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/TATA_IPL",
"displayed_link": "https://twitter.com \u203a TATA_IPL"
},
{
"position": 10,
"title": "IPL Fantasy League",
"snippet": "IPL Fantasy League's posts ... A look at the Top 5 Fantasy Players from the #KKRvLSG clash in #TATAIPL 2023 How many of them did you have in your Fantasy Team?",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/IPLFantasy",
"displayed_link": "https://twitter.com \u203a IPLFantasy"
},
{
"position": 11,
"title": "Shamar Joseph will be getting 3cr in IPL 2024.",
"snippet": "Shamar Joseph will be getting 3cr in IPL 2024. - He's the replacement of Mark Wood for Lucknow Supergiants.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/mufaddal_vohra/status/1756291294023000183",
"displayed_link": "https://twitter.com \u203a mufaddal_vohra \u203a status"
},
{
"position": 12,
"title": "Delhi Capitals (@DelhiCapitals) / ...",
"snippet": "100% Dilli. 200% Roars As seen in IPL & WPL.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/DelhiCapitals",
"displayed_link": "https://twitter.com \u203a DelhiCapitals"
},
{
"position": 13,
"title": "IPL POLLS (@pollsipl) / X",
"snippet": "Just polls related to #IPL. ... @IPL \u00b7 @ChennaiIPL \u00b7 @RCBTweets. CSK. 37.5%. RCB. 62.5%. 8 votes\u00b7Final results.",
"highlighs": [
"IPL",
"IPL"
],
"link": "https://twitter.com/pollsipl",
"displayed_link": "https://twitter.com \u203a pollsipl"
},
{
"position": 14,
"title": "KolkataKnightRiders (@KKRiders) / X",
"snippet": "Official Handle of the IPL team of Kolkata! #KorboLorboJeetbo.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/KKRiders",
"displayed_link": "https://twitter.com \u203a KKRiders"
},
{
"position": 15,
"title": "Rajasthan Royals (@rajasthanroyals) / X",
"snippet": "The Official Account of Rajasthan Royals | Champions of the Inaugural IPL season | #HallaBol.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/rajasthanroyals",
"displayed_link": "https://twitter.com \u203a rajasthanroyals"
},
{
"position": 16,
"title": "WOAH \ud83e\udd2f\ud83e\udd2f Pat Cummins is SOLD to Sunrisers Hyderabad ...",
"snippet": "... Cummins is SOLD to Sunrisers Hyderabad for a whopping INR 20.5 Crore Congratulations to the @SunRisers #IPLAuction | #IPL.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/IPL/status/1737031299603288253",
"displayed_link": "https://twitter.com \u203a IPL \u203a status"
},
{
"position": 17,
"title": "IndianPremierLeague",
"snippet": "That's a GRAND return to the IPL for Mitchell Starc DO NOT MISS the record-breaking bid of the left-arm pacer who will feature for\u00a0...",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/IPL/status/1737061294623080558",
"displayed_link": "https://twitter.com \u203a IPL \u203a status"
},
{
"position": 18,
"title": "IPL Selfie (@IPLselfie) / X",
"snippet": "Mumbai iplt20.com Joined April 2015. 34 Following \u00b7 32.8K Followers \u00b7 Posts \u00b7 Replies \u00b7 Media \u00b7 Likes. IPL Selfie's posts. IPL Selfie reposted.",
"highlighs": [
"IPL",
"IPL"
],
"link": "https://twitter.com/IPLselfie",
"displayed_link": "https://twitter.com \u203a IPLselfie"
},
{
"position": 19,
"title": "RCB the only IPL team which is in conversation throughout ...",
"snippet": "RCB the only IPL team which is in conversation throughout the year.. Image. 1:25 PM \u00b7 Feb 2, 2024. \u00b7. 508.5K. Views.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/mufaddal_vohra/status/1753409233431974356",
"displayed_link": "https://twitter.com \u203a mufaddal_vohra \u203a status"
},
{
"position": 20,
"title": "IPL",
"snippet": "@IPL. Ready to re-attend the #TATAIPL 2023 #Final today? Here's everything you need to know about your Physical tickets \ud83c\udf9f\ufe0f Note - There\u00a0...",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/IPL/status/1663040312674238464",
"displayed_link": "https://twitter.com \u203a IPL \u203a status"
},
{
"position": 21,
"title": "Johns.",
"snippet": "MS Dhoni's jersey for IPL 2024. - Thala is coming back. [Whistle Podu Army]",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/CricCrazyJohns/status/1755803355446718752",
"displayed_link": "https://twitter.com \u203a CricCrazyJohns \u203a status"
},
{
"position": 22,
"title": "IPL",
"snippet": "NEWS - IPL 2024 Player retention list and more details as the player retention window for the Indian Premier League 2024 season closed\u00a0...",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/IPL/status/1728813179218825412",
"displayed_link": "https://twitter.com \u203a IPL \u203a status"
},
{
"position": 23,
"title": "ItzThanesh - MSDian",
"snippet": "MS Dhoni visited the Deori Maa Temple to seek blessings of God ahead of IPL 2024. @MSDhoni \u00b7 #MSDhoni #WhistlePodu.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/ItzThanesh",
"displayed_link": "https://twitter.com \u203a ItzThanesh"
},
{
"position": 24,
"title": "yeh hoga dhoni ka aakhiri IPL Meanwhile Dhoni 2040 mein",
"snippet": "Media - yeh hoga dhoni ka aakhiri IPL Meanwhile Dhoni 2040 mein.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/desi_bhayo88/status/1755824732208079058",
"displayed_link": "https://twitter.com \u203a desi_bhayo88 \u203a status"
},
{
"position": 25,
"title": "Cameron Green",
"snippet": "Super excited to be joining RCB for IPL 2024. Can't wait to join an amazing franchise and meet all the fans next year!",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/CameronGreen_/status/1729112090319954357",
"displayed_link": "https://twitter.com \u203a CameronGreen_ \u203a status"
},
{
"position": 26,
"title": "IPL is exempted from paying any taxes (0 taxes!) Reason",
"snippet": "IPL is exempted from paying any taxes (0 taxes!) Reason: promotes cricket. Meanwhile, common people: 14% electricity price rise last year.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/Akshat_World/status/1642183250306297857",
"displayed_link": "https://twitter.com \u203a Akshat_World \u203a status"
},
{
"position": 27,
"title": "IPL",
"snippet": "@IPL. No shortage of entertainment at the Narendra Modi Stadium in Ahmedabad Jonita Gandhi lights up the stage with a magical\u00a0...",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/IPL/status/1663218778199699458",
"displayed_link": "https://twitter.com \u203a IPL \u203a status"
},
{
"position": 28,
"title": "IndianPremierLeague",
"snippet": "@IPL. Done & Dusted! Here are the squads that will be ready to face each other and set the stage on in the #TATAIPL 2023\u00a0...",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/IPL/status/1606536814059483136",
"displayed_link": "https://twitter.com \u203a IPL \u203a status"
},
{
"position": 29,
"title": "IndianPremierLeague",
"snippet": "The dismissal that had the world talking! IPL's 1\ufe0f\u20e30\ufe0f\u20e30\ufe0f\u20e30\ufe0f\u20e3th match had no shortage of drama #IPL1000 | #TATAIPL | #MIvRR | @mipaltan\u00a0...",
"highlighs": [
"IPL's"
],
"link": "https://twitter.com/IPL/status/1653015455915982849",
"displayed_link": "https://twitter.com \u203a IPL \u203a status"
},
{
"position": 30,
"title": "montydesaiofficial",
"snippet": "... Nepal Premier League Franchises owned by all IPL teams! A visionary blend of cricket cultures, fostering talent, and creating global\u2026",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/montydesai/status/1732430163831591252",
"displayed_link": "https://twitter.com \u203a montydesai \u203a status"
},
{
"position": 31,
"title": "Sadhguru",
"snippet": "IPL has become a spectacular display of cricketing prowess. Incredible Talent coming out of these tournaments! It's my misfortune that I\u00a0...",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/SadhguruJV/status/1662830688729698304",
"displayed_link": "https://twitter.com \u203a SadhguruJV \u203a status"
},
{
"position": 32,
"title": "Jay Shah",
"snippet": "Since its inception, the IPL has been synonymous with growth & today is a red-letter day for India Cricket, with Brand IPL touching a new\u00a0...",
"highlighs": [
"IPL",
"IPL"
],
"link": "https://twitter.com/JayShah/status/1536690609309683713",
"displayed_link": "https://twitter.com \u203a JayShah \u203a status"
},
{
"position": 33,
"title": "IPL T20 (@ipl20) / X",
"snippet": "#IPL2014: Now that IPL 7 is over we bring you the Top 5 Bowling Spells this season. 5. James Faulkner vs Kolkata... http://fb.me/6QWL4dmDy.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/ipl20",
"displayed_link": "https://twitter.com \u203a ipl20"
},
{
"position": 34,
"title": "IPLnCricket: Everything about Cricket",
"snippet": "Follow @IPLnCricket for latest TATA IPL 2024 & Cricket News | Live Scores | Videos | Fantasy Tips | Stats & Facts | Analysis & Reports| #IPL2024\u00a0...",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/IPLnCricket",
"displayed_link": "https://twitter.com \u203a IPLnCricket"
},
{
"position": 35,
"title": "IPL",
"snippet": "READ: Rajat Patidar dazzled with an incredible maiden IPL century (112*) as @RCBTweets beat #LSG by 14 runs to secure a spot in the\u00a0...",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/IPL/status/1529559196857147392",
"displayed_link": "https://twitter.com \u203a IPL \u203a status"
},
{
"position": 36,
"title": "Aakash Chopra",
"snippet": "IPL becomes the second most lucrative sporting property in the world. Wow That's when India is a 'developing country' and is apparently,\u00a0...",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/cricketaakash/status/1536296581724377089",
"displayed_link": "https://twitter.com \u203a cricketaakash \u203a status"
},
{
"position": 37,
"title": "IPL - IndianPremierLeague",
"snippet": "in his 1\u20e30\u20e30\u20e3th IPL match for @klrahul11! The @LucknowIPL captain is leading from the front as he brings up his 3\u20e3rd IPL ton.",
"highlighs": [
"IPL",
"IPL"
],
"link": "https://twitter.com/IPL/status/1515294043802324993",
"displayed_link": "https://twitter.com \u203a IPL \u203a status"
},
{
"position": 38,
"title": "IPL",
"snippet": "Impressive IPL comeback Solid opening act Mood in the #GT camp @Wriddhipops and Pradeep Sangwan sum up @gujarat_titans' final-over\u00a0...",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/IPL/status/1520613986210787328",
"displayed_link": "https://twitter.com \u203a IPL \u203a status"
},
{
"position": 39,
"title": "Ben Duckett - \"RCB's team is a joke \ud83d\ude30\ud83d\ude30 #IPL ...",
"snippet": "RCB's team is a joke #IPL \u00b7 5:59 PM \u00b7 Apr 8, 2018 \u00b7 1,582. Reposts \u00b7 387. Quotes \u00b7 3,065. Likes. 82. Bookmarks. 82.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/BenDuckett1/status/983041549574574080",
"displayed_link": "https://twitter.com \u203a BenDuckett1 \u203a status"
},
{
"position": 40,
"title": "IPL",
"snippet": "UPDATE: The Indian Premier League Governing Council (IPL GC) and Board of Control for Cricket in India (BCCI) in an emergency meeting has\u00a0...",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/IPL/status/1389492203609747458",
"displayed_link": "https://twitter.com \u203a IPL \u203a status"
},
{
"position": 41,
"title": "IPL 2020: Chennai Super Kings become the most Tweeted ...",
"snippet": "25 Nov 2020 \u2014 Sep 24, 2020: KL Rahul registers the highest IPL score by an Indian with his 132*; Oct 21, 2020: Mohammed Siraj records two maidens and three\u00a0...",
"highlighs": [
"IPL"
],
"link": "https://blog.twitter.com/en_in/topics/events/2020/ipl-2020-chennai-super-kings-became-the-most-tweeted-about-team",
"displayed_link": "https://blog.twitter.com \u203a en_in \u203a topics \u203a events \u203a ipl-..."
},
{
"position": 42,
"title": "Aaj IPL samaapt ho jaayega. Cricket ka kachraa hai IPL",
"snippet": "Aaj IPL samaapt ho jaayega. Cricket ka kachraa hai IPL.",
"highlighs": [
"IPL",
"IPL"
],
"link": "https://twitter.com/ravishndtv/status/74330654489325568",
"displayed_link": "https://twitter.com \u203a ravishndtv \u203a status"
},
{
"position": 43,
"title": "Rajasthan Royals",
"snippet": "First IPL match. Defending 15 off the last over. Kuldeep, what a stunner.. 6:05 PM \u00b7 Apr 10, 2022 \u00b7 757. Reposts.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/rajasthanroyals/status/1513216650363158530",
"displayed_link": "https://twitter.com \u203a rajasthanroyals \u203a status"
},
{
"position": 44,
"title": "Harsh Goenka",
"snippet": "How the #IPL bids went! Image. 3:01 PM \u00b7 Oct 25, 2021 \u00b7 624. Reposts \u00b7 137. Quotes \u00b7 6,370. Likes. 75. Bookmarks. 75.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/hvgoenka/status/1452651581946490880",
"displayed_link": "https://twitter.com \u203a hvgoenka \u203a status"
},
{
"position": 45,
"title": "Sarah Waris on X: \"Which is the most boring IPL team ...",
"snippet": "Which is the most boring IPL team, according to you? The team whose matches you just can't sit through. What are the reasons?",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/swaris16/status/1306153863938887680",
"displayed_link": "https://twitter.com \u203a swaris16 \u203a status"
},
{
"position": 46,
"title": "Follow @IPL 8 on Twitter",
"snippet": "10 Apr 2015 \u2014 Hashflags are a fun and easy way to add some colour to Tweets, and IPL fans on Twitter who use their favourite team's hashtag will see that\u00a0...",
"highlighs": [
"IPL"
],
"link": "https://blog.twitter.com/en_in/a/2015/follow-ipl-8-on-twitter",
"displayed_link": "https://blog.twitter.com \u203a en_in \u203a follow-ipl-8-on-twitter"
},
{
"position": 47,
"title": "IPL",
"snippet": "A 'special' 1st IPL wicket Game-changing spell A night to remember @thisisbrar answers it all as he & @bishnoi0056 go on the mic\u00a0...",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/IPL/status/1388342413903634433",
"displayed_link": "https://twitter.com \u203a IPL \u203a status"
},
{
"position": 48,
"title": "Today IPL Match",
"snippet": "Today IPL Match. @todayiplmatch. IPL 2020 Latest News, Todays Match News: Get all latest updates on IPL 2020 Time table, Schedule, Points Table, Results, and\u00a0...",
"highlighs": [
"IPL",
"IPL",
"IPL"
],
"link": "https://twitter.com/todayiplmatch",
"displayed_link": "https://twitter.com \u203a todayiplmatch"
},
{
"position": 49,
"title": "Michael Vaughan",
"snippet": "One of the GREAT #IPL innings @IamSanjuSamson !!! What a game of cricket ... The IPL is bloody incredible ... no other T20 comp has so many\u00a0...",
"highlighs": [
"IPL",
"IPL"
],
"link": "https://twitter.com/MichaelVaughan/status/1381671225697665024",
"displayed_link": "https://twitter.com \u203a MichaelVaughan \u203a status"
},
{
"position": 50,
"title": "IPL",
"snippet": "IPL Match 22 - @mipaltan 199/2 (15.3 ovs) beat @lionsdenkxip 198/4 by 8 wickets. Relive the game here - https://t.co/JkjxqABckq #KXIPvMI.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/IPL/status/855114606829854720",
"displayed_link": "https://twitter.com \u203a IPL \u203a status"
},
{
"position": 51,
"title": "IPL",
"snippet": "ALERT : IPL 2021 Player Auction on 18th February\ud83d\uddd3\ufe0f Venue : Chennai How excited are you for this year's Player Auction?",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/IPL/status/1354337574735597568",
"displayed_link": "https://twitter.com \u203a IPL \u203a status"
},
{
"position": 52,
"title": "IPL",
"snippet": "Match 4: @SunRisers will open their #VIVO IPL 2018 campaign when they take on the returning @rajasthanroyals today - preview by @statanalyst\u00a0...",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/IPL/status/983291605430943744",
"displayed_link": "https://twitter.com \u203a IPL \u203a status"
},
{
"position": 53,
"title": "IPL",
"snippet": "Presenting the newcomers of the #IPL Listen in to LSG Head Coach Justin Langer & RCB Director of Cricket Mo Bobat ahead of much awaited\u00a0...",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/IPL/status/1736778591847711195",
"displayed_link": "https://twitter.com \u203a IPL \u203a status"
},
{
"position": 54,
"title": "IPL",
"snippet": "Play Hard, Play Fair - Spirit of Cricket at #IPL - @GautamGambhir and @ImRaina.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/IPL/status/850336432736661505",
"displayed_link": "https://twitter.com \u203a IPL \u203a status"
},
{
"position": 55,
"title": "@IPL 11 hits it out of the stadium on Twitter",
"snippet": "4 Jun 2018 \u2014 Fans love Tweeting about #IPL and sent 18.8 million Tweets in 2018, a 100% rise in the number of IPL-related Tweets in 2017.",
"highlighs": [
"IPL",
"IPL"
],
"link": "https://blog.twitter.com/en_in/topics/events/2018/IPL-11-hits-it-out-of-the-stadium-on-Twitter",
"displayed_link": "https://blog.twitter.com \u203a en_in \u203a topics \u203a events \u203a IPL..."
},
{
"position": 56,
"title": "Get the best of @IPL 9 - Twitter Blog",
"snippet": "21 Apr 2016 \u2014 So far this season, there have been 80 million impressions of Tweets related to #IPL 9 up to the the Mumbai Indians v Royal Challengers\u00a0...",
"highlighs": [
"IPL"
],
"link": "https://blog.twitter.com/en_in/a/2016/get-the-best-of-ipl-9.html",
"displayed_link": "https://blog.twitter.com \u203a en_in \u203a get-the-best-of-ipl-9"
},
{
"position": 57,
"title": "IPL",
"snippet": "A fiery Mohd. Shami spell, a maiden IPL fifty from Aman Khan, a fighting captain's knock from Hardik Pandya, 6\ufe0f\u20e36\ufe0f\u20e36\ufe0f\u20e3 from Tewatia.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/IPL/status/1653601423148617729",
"displayed_link": "https://twitter.com \u203a IPL \u203a status"
},
{
"position": 58,
"title": "IPL",
"snippet": "MStoinis notched his highest IPL score and powered @LucknowIPL to a huge first-innings total He receives the Player of the Match\u00a0...",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/IPL/status/1658540019672584192",
"displayed_link": "https://twitter.com \u203a IPL \u203a status"
},
{
"position": 59,
"title": "IndianPremierLeague",
"snippet": "@IPL \u00b7 #IPL Match 9 -. @DelhiDaredevils. 205/4 beat @RPSupergiants 108 (16.1 ovs) by 97 runs. Relive the game here - http://iplt20.com/match\u00a0...",
"highlighs": [
"IPL",
"IPL"
],
"link": "https://twitter.com/IPL/status/851854047472738305",
"displayed_link": "https://twitter.com \u203a IPL \u203a status"
},
{
"position": 60,
"title": "IPL",
"snippet": "IPL Match 29: Caption this pic? @TomMoodyCricket #RCBvSRH.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/IPL/status/856874742627872771",
"displayed_link": "https://twitter.com \u203a IPL \u203a status"
},
{
"position": 61,
"title": "Unacademy",
"snippet": "This IPL season, get your questions answered by experts! All you need to do is, tweet your question & tag @unacademy, using #LetsCrackIt\u00a0...",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/unacademy/status/1381238113394102272",
"displayed_link": "https://twitter.com \u203a unacademy \u203a status"
},
{
"position": 62,
"title": "IPL",
"snippet": "IPL Match 29: It is a completely packed house here at M. Chinnaswamy Stadium and we all are waiting for the drizzle to stop #RCBvSRH.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/IPL/status/856890255961714689",
"displayed_link": "https://twitter.com \u203a IPL \u203a status"
},
{
"position": 63,
"title": "IPL",
"snippet": "After some intense bidding wars, here's how the teams look Which squad do you reckon is the strongest #IPLAuction | #IPL.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/IPL/status/1737346762585542800",
"displayed_link": "https://twitter.com \u203a IPL \u203a status"
},
{
"position": 64,
"title": "\"IPL and Taarak Mehta Ka Ooltah Chashma from 2008- ...",
"snippet": "IPL and Taarak Mehta Ka Ooltah Chashma from 2008-2015 was something else. 2:40 PM \u00b7 Feb 10, 2024. \u00b7. 400. Views.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/vlp1994/status/1756327333324014037",
"displayed_link": "https://twitter.com \u203a vlp1994 \u203a status"
},
{
"position": 65,
"title": "SunRisers Hyderabad",
"snippet": "Official Account of SunRisers Hyderabad | Indian Premier League | Winners of #IPL 2016.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/SunRisers",
"displayed_link": "https://twitter.com \u203a SunRisers"
},
{
"position": 66,
"title": "IPL",
"snippet": "NEWS IPL 2024 Player Auction list announced. The roster for the Indian Premier League (IPL) 2024 Player Auction has been unveiled.",
"highlighs": [
"IPL",
"IPL"
],
"link": "https://twitter.com/IPL/status/1734230826643063017",
"displayed_link": "https://twitter.com \u203a IPL \u203a status"
},
{
"position": 67,
"title": "Mufaddal Vohra",
"snippet": "SRH won the Kite festival held between IPL teams in Ahmedabad. - RCB ended up as Runner Up.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/mufaddal_vohra/status/1746120305091997759",
"displayed_link": "https://twitter.com \u203a mufaddal_vohra \u203a status"
},
{
"position": 68,
"title": "IPL Hindi Me (@Iplhindime) / X",
"snippet": "IPL Hindi Me's posts ; Dec 26, 2021. \u0906\u0908\u092a\u0940\u090f\u0932 2022 | \u0907\u0902\u0921\u093f\u092f\u0928 \u092a\u094d\u0930\u0940\u092e\u093f\u092f\u0930 \u0932\u0940\u0917 2022 ; Feb 5. \u0907\u0902\u0921\u093f\u092f\u093e \u0907\u0902\u0917\u094d\u0932\u0948\u0902\u0921 \u0924\u0940\u0938\u0930\u093e \u091f\u0947\u0938\u094d\u091f \u092e\u0948\u091a \u0915\u092c \u0939\u0948 \u00b7 93 ; Feb 5. \u092d\u093e\u0930\u0924\u00a0...",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/Iplhindime",
"displayed_link": "https://twitter.com \u203a Iplhindime"
},
{
"position": 69,
"title": "Sport360",
"snippet": "Shamar Joseph has arrived in the IPL He joins LSG as Mark Wood's replacement. Image. Lucknow Super Giants and 2 others \u00b7 12:16 PM \u00b7 Feb\u00a0...",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/Sport360/status/1756290954787746149",
"displayed_link": "https://twitter.com \u203a Sport360 \u203a status"
},
{
"position": 70,
"title": "ESPNcricinfo",
"snippet": "Shamar Joseph - who shot to global fame at the Gabba - now has an IPL contract as well! He will feature for Lucknow Super Giants,\u00a0...",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/ESPNcricinfo/status/1756283624897568978",
"displayed_link": "https://twitter.com \u203a ESPNcricinfo \u203a status"
},
{
"position": 71,
"title": "Satya Prakash",
"snippet": "Shamar Joseph entry in IPL. SHAMAR replaced Mark Wood in IPL 2024.. #IPL2024.",
"highlighs": [
"IPL",
"IPL"
],
"link": "https://twitter.com/Satya_Prakash08/status/1756281600281543034",
"displayed_link": "https://twitter.com \u203a Satya_Prakash08 \u203a status"
},
{
"position": 72,
"title": "IPL days (@IPLdays) / X",
"snippet": "IPL days's posts ; Bas de Leede. 78.3%. George Dockrell. 8.7%. Jan Frylinck. 2.9%. Brandon McMullen \udb40\udc67\udb40\udc62\udb40\udc73\udb40\udc63\udb40\udc74\udb40\udc7f. 10.1%. 69 votes\u00b7Final results.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/IPLdays",
"displayed_link": "https://twitter.com \u203a IPLdays"
},
{
"position": 73,
"title": "MS Dhoni has started his preparations for IPL 2024.",
"snippet": "MS Dhoni has started his preparations for IPL 2024. Embedded video. 0:11. From. Ishan Joshi \u00b7 2:03 AM \u00b7 Jan 10, 2024.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/mufaddal_vohra/status/1744902663735746966",
"displayed_link": "https://twitter.com \u203a mufaddal_vohra \u203a status"
},
{
"position": 74,
"title": "Wasim Jaffer",
"snippet": "I think IPL needs to take away the impact player rule, as it's not encouraging the all rounders to bowl much and lack of ARs and batters not\u00a0...",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/WasimJaffer14/status/1733715800111161705",
"displayed_link": "https://twitter.com \u203a WasimJaffer14 \u203a status"
},
{
"position": 75,
"title": "JioCinema poster for IPL 2024 auction. - Mufaddal Vohra",
"snippet": "JioCinema poster for IPL 2024 auction. Image. 5:38 AM \u00b7 Dec 19, 2023. \u00b7. 1M. Views. 1,317. Reposts \u00b7 523. Quotes \u00b7 16.7K. Likes. 142. Bookmarks.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/mufaddal_vohra/status/1736984260932710577",
"displayed_link": "https://twitter.com \u203a mufaddal_vohra \u203a status"
},
{
"position": 76,
"title": "Junaid Khan",
"snippet": "@JunaidKhanation. Mark Wood Will Be Missed in IPL 2024. Image. 1:14 PM \u00b7 Feb 10, 2024. \u00b7. 4,651. Views. 15. Reposts \u00b7 227. Likes. 3. Bookmarks. 3.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/JunaidKhanation/status/1756305539674632246",
"displayed_link": "https://twitter.com \u203a JunaidKhanation \u203a status"
},
{
"position": 77,
"title": "IPL Scoop (@Ipl_scoop) / X",
"snippet": "IPL Scoop's posts. Pinned ... The IPL trophy is inscribed with a Sanskrit phrase: 'Yatra Pratibha Avsara\u00a0...",
"highlighs": [
"IPL",
"IPL"
],
"link": "https://twitter.com/Ipl_scoop",
"displayed_link": "https://twitter.com \u203a Ipl_scoop"
},
{
"position": 78,
"title": "The Man behind my cricket journey . Always an emotional ...",
"snippet": "From my childhood inspiration to my first IPL interviewer @kartikmurali . The Man behind my cricket journey .",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/imkartikeya26/status/1606206912264953856",
"displayed_link": "https://twitter.com \u203a imkartikeya26 \u203a status"
},
{
"position": 79,
"title": "CA Chirag Chauhan",
"snippet": "IPL should not be given tax exemption. Income generation from IPL should be taxed @nsitharaman It's less sports & more commercial The budget\u00a0...",
"highlighs": [
"IPL",
"IPL"
],
"link": "https://twitter.com/CAChirag/status/1642931621430165504",
"displayed_link": "https://twitter.com \u203a CAChirag \u203a status"
},
{
"position": 80,
"title": "Keh Ke Peheno",
"snippet": "Mark Wood: Mujhe kyun toda? #ShamarJoseph #IPL #LSG.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/coolfunnytshirt/status/1756282985039692269",
"displayed_link": "https://twitter.com \u203a coolfunnytshirt \u203a status"
},
{
"position": 81,
"title": "Gujarat Titans (@gujarat_titans) / X",
"snippet": "The Official Account of Gujarat Titans | IPL 2022 | #AavaDe.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/gujarat_titans",
"displayed_link": "https://twitter.com \u203a gujarat_titans"
},
{
"position": 82,
"title": "rajamouli ss on X: \"@ImRaina Thank you Mr. IPL..\ud83e\udd17\" / X",
"snippet": "Thank you Mr. IPL.. . 12:40 PM \u00b7 Jan 12, 2023. \u00b7. 382.3K. Views. 1,088. Reposts \u00b7 43. Quotes \u00b7 19.7K. Likes. 11. Bookmarks. 11.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/ssrajamouli/status/1613516192186249218",
"displayed_link": "https://twitter.com \u203a ssrajamouli \u203a status"
},
{
"position": 83,
"title": "Dale Steyn",
"snippet": "IPL has been nothing short of amazing in my career, as well as other players too. My words were never intended to be degrading, insulting,\u00a0...",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/DaleSteyn62/status/1367018609340538881",
"displayed_link": "https://twitter.com \u203a DaleSteyn62 \u203a status"
},
{
"position": 84,
"title": "IPL",
"snippet": "Presenting the Top 5\u20e3 buys of #IPLAuction 2024 Mitchell Starc tops the list with a whopping amount of INR 24.75 Crore #IPL.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/IPL/status/1737141591142191109",
"displayed_link": "https://twitter.com \u203a IPL \u203a status"
},
{
"position": 85,
"title": "InsideSport",
"snippet": "Shamar Joseph's salary for IPL 2024 will be 3\ufe0f\u20e3 crores. #ShamarJoseph #LSG #LucknowSuperGiants #IPL #IPL2024 #CricketTwitter.",
"highlighs": [
"IPL",
"IPL"
],
"link": "https://twitter.com/InsideSportIND/status/1756284678959739255",
"displayed_link": "https://twitter.com \u203a InsideSportIND \u203a status"
},
{
"position": 86,
"title": "PuthiyathalaimuraiTV",
"snippet": "#JUSTIN | IPL-\u0bb2\u0bcd \u0b95\u0bb3\u0bae\u0bbf\u0bb1\u0b99\u0bcd\u0b95\u0bc1\u0bae\u0bcd \u0bb7\u0bae\u0bb0\u0bcd \u0b9c\u0bcb\u0b9a\u0baa\u0bcd! #IPL | #ShamarJoseph | #LSG | #LucknowSuperGiants. Image. 12:52 PM \u00b7 Feb 10, 2024. \u00b7.",
"highlighs": [
"IPL",
"IPL"
],
"link": "https://twitter.com/PTTVOnlineNews/status/1756300121783054466",
"displayed_link": "https://twitter.com \u203a PTTVOnlineNews \u203a status"
},
{
"position": 87,
"title": "Salary cap for all IPL teams. - Johns.",
"snippet": "Salary cap for all IPL teams. Image. 4:22 PM \u00b7 Nov 26, 2023. \u00b7. 258.3K. Views. 286. Reposts \u00b7 28. Quotes \u00b7 4,007. Likes. 80. Bookmarks.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/CricCrazyJohns/status/1728811473164775662",
"displayed_link": "https://twitter.com \u203a CricCrazyJohns \u203a status"
},
{
"position": 88,
"title": "IPL",
"snippet": "THE BIGGEST IPL BID EVER HISTORY CREATED here at the #IPLAuction Australia's World Cup winning captain Pat Cummins is SOLD to @SunRisers\u00a0...",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/IPL/status/1737034617297760660",
"displayed_link": "https://twitter.com \u203a IPL \u203a status"
},
{
"position": 89,
"title": "IPL 2024 final likely to happen on May 26th. [Cricbuzz]",
"snippet": "IPL 2024 final likely to happen on May 26th. [Cricbuzz] - India's first match in World Cup on June 5th.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/CricCrazyJohns/status/1749279327471227261",
"displayed_link": "https://twitter.com \u203a CricCrazyJohns \u203a status"
},
{
"position": 90,
"title": "Vikrant Gupta",
"snippet": "The day IPL fans transform into Indian cricket fans a lot many questions can be asked of those who matter. Else we will keep putting it down\u00a0...",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/vikrantgupta73/status/1666883828760076300",
"displayed_link": "https://twitter.com \u203a vikrantgupta73 \u203a status"
},
{
"position": 91,
"title": "CricTracker",
"snippet": "Dinesh Karthik is gearing up for the IPL 2024 : Dinesh Karthik/Instagram.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/Cricketracker/status/1756307579293311212",
"displayed_link": "https://twitter.com \u203a Cricketracker \u203a status"
},
{
"position": 92,
"title": "Captain Rohit Sharma will be missed in IPL 2024.",
"snippet": "Captain Rohit Sharma will be missed in IPL 2024. Image. 1:03 PM \u00b7 Dec 15, 2023. \u00b7. 1.6M. Views. 1,673. Reposts \u00b7 256. Quotes.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/mufaddal_vohra/status/1735646783118942715",
"displayed_link": "https://twitter.com \u203a mufaddal_vohra \u203a status"
},
{
"position": 93,
"title": "\"The most expensive IPL buy of all time \ud83d\udd25\ud83d\udd25 Check out ...",
"snippet": "The most expensive IPL buy of all time Check out the Mitchell Starc bid and all @KKRiders buys from #IPLAuction 2024.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/IPL/status/1738423569003192720",
"displayed_link": "https://twitter.com \u203a IPL \u203a status"
},
{
"position": 94,
"title": "\"so when does Kohli play next? straight IPL or something ...",
"snippet": "so when does Kohli play next? straight IPL or something before that? 7:35 AM \u00b7 Feb 10, 2024. \u00b7. 218. Views.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/SellTerStegen/status/1756220418544070881",
"displayed_link": "https://twitter.com \u203a SellTerStegen \u203a status"
},
{
"position": 95,
"title": "Have I been bought in the IPL auction yet????",
"snippet": "Have I been bought in the IPL auction yet???? 10:15 AM \u00b7 Dec 19, 2023. \u00b7. 732K. Views. 228. Reposts \u00b7 13. Quotes \u00b7 10.5K. Likes. 28. Bookmarks.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/KP24/status/1737053957522956461",
"displayed_link": "https://twitter.com \u203a status"
},
{
"position": 96,
"title": "Dale Steyn",
"snippet": "Any suggestions how I can watch the IPL final today from my quarantine locked down Dubai hotel room?",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/DaleSteyn62/status/1448965260053032963",
"displayed_link": "https://twitter.com \u203a DaleSteyn62 \u203a status"
},
{
"position": 97,
"title": "Name a female cricketer who is more beautiful than ellyse ...",
"snippet": "CSK FAN : We won IPL MI FAN : We won MLC RCB FAN : Name a female cricketer who is more beautiful than ellyse perry and I'll deactivate.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/rahulmsd_91/status/1755669676930240881",
"displayed_link": "https://twitter.com \u203a rahulmsd_91 \u203a status"
},
{
"position": 98,
"title": "Mumbai Indians",
"snippet": "IPL 2024 squad: & loaded #OneFamily #MumbaiIndians #IPLAuction.",
"highlighs": [
"IPL"
],
"link": "https://twitter.com/mipaltan/status/1737504874760126879",
"displayed_link": "https://twitter.com \u203a mipaltan \u203a status"
}
] |