File size: 56,278 Bytes
9a8e41e | 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 1045 1046 1047 1048 1049 1050 1051 1052 | [
{
"adId": "1081926834",
"adUrl": "https://www.linkedin.com/ad-library/detail/1081926834",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "Paul Baier",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/D5603AQH3VOFtbkNUDQ/profile-displayphoto-scale_100_100/B56ZtinsBBLAAc-/0/1766886131702?e=1780531200&v=beta&t=GazvB6vxDN-MyQxNFGOyhLssw2h_tNOeWZqpf0LWtbw",
"headline": null,
"adCopy": "ChatGPT mags now in Whole Foods",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D5622AQHAuFw89kxeLA/feedshare-image-high-res/B56ZtxTh6nHsAo-/0/1767132528016?e=2147483647&v=beta&t=OxnXOvLK4DL8-Tpq0JmHaeKdOgN0bQhWNopJpyWOpuA",
"videoPosterUrl": null,
"ariaLabel": "Paul Baier, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:41.860Z"
},
{
"adId": "1013756396",
"adUrl": "https://www.linkedin.com/ad-library/detail/1013756396",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "RedCloud Consulting",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/D560BAQHYH7kg5DodvA/company-logo_100_100/B56ZkHWcPZIAAU-/0/1756764947687/redcloud_consulting_inc_logo?e=1780531200&v=beta&t=BoTWkUA_pNMTgwp4eUdb0ZVBjV95LQQyoD8t99Qh_Ug",
"headline": "Apply Now to Shape Large-Scale ERP Architecture",
"adCopy": "Lead enterprise-scale ERP transformation at a top retail-focused client. We’re hiring a Principal Engineer with deep ERP…",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D5610AQERFa22JVWFSg/image_627_1200/B56ZtxqKg.J8AY-/0/1767138437308/8png?e=2147483647&v=beta&t=p1RMKGfl-ZmkOEQ8JFZLh_lKan_wpsmOe0BP2JYt-Hw",
"videoPosterUrl": null,
"ariaLabel": "RedCloud Consulting, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:42.050Z"
},
{
"adId": "1013756386",
"adUrl": "https://www.linkedin.com/ad-library/detail/1013756386",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "RedCloud Consulting",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/D560BAQHYH7kg5DodvA/company-logo_100_100/B56ZkHWcPZIAAU-/0/1756764947687/redcloud_consulting_inc_logo?e=1780531200&v=beta&t=BoTWkUA_pNMTgwp4eUdb0ZVBjV95LQQyoD8t99Qh_Ug",
"headline": "Join Our Team and Shape ERP Data Strategy",
"adCopy": "Lead enterprise-wide data architecture for a major platform replacement. Requires a Bachelor’s or Master’s in CS/IS and …",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D5610AQGaZehCCruSiw/image_627_1200/B56Ztxoa8oJgAY-/0/1767137980364/1png?e=2147483647&v=beta&t=DRbdWx-BtyLAHROPfS2PZkHAfgF3iBOCvaVRxgHKAng",
"videoPosterUrl": null,
"ariaLabel": "RedCloud Consulting, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:42.076Z"
},
{
"adId": "1080630974",
"adUrl": "https://www.linkedin.com/ad-library/detail/1080630974",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "TLDR",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/C4E0BAQFp9gsyVl-j3Q/company-logo_100_100/company-logo_100_100/0/1663609589109?e=1780531200&v=beta&t=3bHZl03pVHRU1J9sW9Zz1DUpV-y8_EKGXW2bldOmRa0",
"headline": "Reach over 6 million tech professionals",
"adCopy": "👉 Reach 6+ million highly engaged tech professionals 👉 40-46% open rate (!) 👉 12 interest-based newsletters to reach …",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D4E10AQFzl9jWG1xuMQ/image-shrink_1280/B4EZtxkV6eKkAc-/0/1767136911350/plaidcasestudypointingjpg?e=2147483647&v=beta&t=EgZxmG-KEloCjoSaERuw9Rj3vDIMkkqFAhmR10jLyLA",
"videoPosterUrl": null,
"ariaLabel": "TLDR, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:42.109Z"
},
{
"adId": "1014235186",
"adUrl": "https://www.linkedin.com/ad-library/detail/1014235186",
"creativeType": "SPONSORED_VIDEO",
"advertiserName": "Wes Hamer",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/D5603AQGlwnQtblZadw/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1712073589844?e=1780531200&v=beta&t=8QG39oixneJzpngmiBsQl4IsYH83iRtpN8iSMtQFVn0",
"headline": null,
"adCopy": "Tasq 5.0 lets you create your own models. Just drag and drop over a pattern & deploy as a model in 30 seconds 🤯 In t…",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D5605AQGNPqfd-W3WwQ/videocover-high/B56ZfH1fMVHUCM-/0/1751404418835?e=2147483647&v=beta&t=EL4E7W0NrXVYMUmhcBv1NE9U52I55mt2C9Dg34sxj58",
"videoPosterUrl": "https://media.licdn.com/dms/image/v2/D5605AQGNPqfd-W3WwQ/videocover-high/B56ZfH1fMVHUCM-/0/1751404418835?e=2147483647&v=beta&t=EL4E7W0NrXVYMUmhcBv1NE9U52I55mt2C9Dg34sxj58",
"ariaLabel": "Wes Hamer, Video Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:42.138Z"
},
{
"adId": "1080331324",
"adUrl": "https://www.linkedin.com/ad-library/detail/1080331324",
"creativeType": "SPONSORED_VIDEO",
"advertiserName": "Sysad Solutions",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/D4E0BAQFytokgJlMwJw/company-logo_100_100/company-logo_100_100/0/1725558145454/sysad_solutions_logo?e=1780531200&v=beta&t=RTEgd0Jg121iTKylr20VyKxA683Qz08LwMrYNVU_nN8",
"headline": "Optimize Your Systems. Accelerate Your Business.",
"adCopy": "We're back from the 2025 SAP Public Sector Summit and feeling inspired! 🚀 From exploring latest technologies ⚙️ to ne…",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D4E05AQFNHVdammStNw/feedshare-thumbnail_720_1280/B4EZtxcIuoIQA0-/0/1767134803611?e=2147483647&v=beta&t=AnG_3R84jgBvHFnhG9ATwFjrRhqeKEbntp_QraRlj5Y",
"videoPosterUrl": null,
"ariaLabel": "Sysad Solutions, Video Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:42.203Z"
},
{
"adId": "1081926824",
"adUrl": "https://www.linkedin.com/ad-library/detail/1081926824",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "TLDR",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/C4E0BAQFp9gsyVl-j3Q/company-logo_100_100/company-logo_100_100/0/1663609589109?e=1780531200&v=beta&t=3bHZl03pVHRU1J9sW9Zz1DUpV-y8_EKGXW2bldOmRa0",
"headline": "See how Streambased boosted website traffic by 10x with TLDR",
"adCopy": "👉 Reach 6+ million highly engaged tech professionals 👉 40-46% open rate (!) 👉 12 interest-based newsletters to reach …",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D4E10AQHtW30yrrY52g/image-shrink_1280/B4EZtxmFW4J0Ac-/0/1767137367840/streambasedtrafficsurgefoundaudiencejpg?e=2147483647&v=beta&t=5PEME66HxpG2Bv2xlyTqn6SHl83_QQWfvAbNbjMcpeg",
"videoPosterUrl": null,
"ariaLabel": "TLDR, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:42.277Z"
},
{
"adId": "1080731444",
"adUrl": "https://www.linkedin.com/ad-library/detail/1080731444",
"creativeType": null,
"advertiserName": "April Rudin",
"advertiserLogoUrl": null,
"headline": null,
"adCopy": null,
"creativeImageUrl": null,
"videoPosterUrl": null,
"ariaLabel": null,
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:42.311Z"
},
{
"adId": "1100389893",
"adUrl": "https://www.linkedin.com/ad-library/detail/1100389893",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "Key Advising",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/D4E0BAQEBsX7ptsYUUA/company-logo_100_100/B4EZtxwFoIJ4AQ-/0/1767139990496/keyadvising_logo?e=1780531200&v=beta&t=O7caBwhONSQe0kpoJAtkwB6oZYpNGdY1oK2wzZGBF-o",
"headline": null,
"adCopy": "🏆 2023–2025 Syracuse.com Readers’ Choice Top 3 Accounting Firm in Syracuse — three years running Most accounting firm…",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D4E22AQFzWUGIlNZobg/feedshare-shrink_1280/B4EZtxlkBDHcAs-/0/1767137231517?e=2147483647&v=beta&t=XvElg77Kl7i0Yog0mEQlxoi0Me7lW6cE4McMcHcVx9c",
"videoPosterUrl": null,
"ariaLabel": "Key Advising, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:42.350Z"
},
{
"adId": "1079730494",
"adUrl": "https://www.linkedin.com/ad-library/detail/1079730494",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "Shuan Shontae Hook, LBSW",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/D4E03AQFccPqTjhTtaA/profile-displayphoto-scale_100_100/B4EZ280y_DHMAc-/0/1776989451449?e=1780531200&v=beta&t=jUF_JI9FjIj2JjF0Tq20V4GkUJyO1dS5jQWBaDuAO_g",
"headline": null,
"adCopy": "Many adults don’t plan to become caregivers, as it happens after a diagnosis, a fall, memory changes, or a sudden hospit…",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D4E10AQGln8vXBNLyNA/image-shrink_1280/B4EZtq1xrkJ4AQ-/0/1767024041827?e=2147483647&v=beta&t=5qIE2SK59_lqCDtpR7yH_yVbguk70r8IiD0tPvQwp0M",
"videoPosterUrl": null,
"ariaLabel": "Shuan Shontae Hook, LBSW, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:42.379Z"
},
{
"adId": "1015186096",
"adUrl": "https://www.linkedin.com/ad-library/detail/1015186096",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "RedCloud Consulting",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/D560BAQHYH7kg5DodvA/company-logo_100_100/B56ZkHWcPZIAAU-/0/1756764947687/redcloud_consulting_inc_logo?e=1780531200&v=beta&t=BoTWkUA_pNMTgwp4eUdb0ZVBjV95LQQyoD8t99Qh_Ug",
"headline": "Shape Future-State Data Architecture in Issaquah",
"adCopy": "Join us as a Principal Data Architect and lead enterprise-scale ERP data architecture. You’ll design models, guide integ…",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D5610AQHToJjHfgxhFg/image-shrink_1280/B56Ztxngs1JYAM-/0/1767137742737/4png?e=2147483647&v=beta&t=bgfYfvUrT5IU0F-dYWR2UgqkBEBufKA9OQn2Jaxa2Wo",
"videoPosterUrl": null,
"ariaLabel": "RedCloud Consulting, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:42.435Z"
},
{
"adId": "1014915976",
"adUrl": "https://www.linkedin.com/ad-library/detail/1014915976",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "Robin Roberts",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/D5603AQF79Jg9xbWX5A/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1698383600571?e=1780531200&v=beta&t=Hdpp6CmAtbO7mRMGuqa0SS2ndX30a_lH9QSKPNYSaEA",
"headline": null,
"adCopy": "As 2025 comes to a close it feels like the right moment to pause take a breath and say this out loud. WHAT A YEAR!!! The…",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D5622AQFUxNrjnbaYeA/feedshare-shrink_1280/B56ZtxnDcgKEAs-/0/1767137623326?e=2147483647&v=beta&t=S7GIBeQg0vqPDhyBpScJWwMdQESLnfSrJpU3lcfLcFo",
"videoPosterUrl": null,
"ariaLabel": "Robin Roberts, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:42.459Z"
},
{
"adId": "1014915996",
"adUrl": "https://www.linkedin.com/ad-library/detail/1014915996",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "RedCloud Consulting",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/D560BAQHYH7kg5DodvA/company-logo_100_100/B56ZkHWcPZIAAU-/0/1756764947687/redcloud_consulting_inc_logo?e=1780531200&v=beta&t=BoTWkUA_pNMTgwp4eUdb0ZVBjV95LQQyoD8t99Qh_Ug",
"headline": "Apply Now: Lead Retail ERP Architecture as Principal Engineer",
"adCopy": "We’re seeking a Principal Engineer to define and deliver scalable ERP architecture for a large retail-focused transforma…",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D5610AQFMOCAOGnf1rQ/image-shrink_1280/B56ZtxpjFHK8AM-/0/1767138276735/9png?e=2147483647&v=beta&t=rbgiyYWQj5O89USAPV4EUKrYv95rwZbtSvDMJmR5XQk",
"videoPosterUrl": null,
"ariaLabel": "RedCloud Consulting, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:42.486Z"
},
{
"adId": "1014629596",
"adUrl": "https://www.linkedin.com/ad-library/detail/1014629596",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "Andrew Metcalf",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/D5603AQETTSXI0iNwRw/profile-displayphoto-scale_100_100/B56ZwXtZoZIoAc-/0/1769924303769?e=1780531200&v=beta&t=subSaA0iNVIb_OFaAE2griyk4fJE5yopysPDK1m8ma8",
"headline": null,
"adCopy": "I quietly finished something important this year. After a long stretch of early mornings, late nights, and more revisio…",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D5622AQHtD0xsMgllhA/feedshare-shrink_1280/B56ZtxnVn9KEA4-/0/1767137697742?e=2147483647&v=beta&t=urhTU4EunXcvWtfMiwYSNqBOG2w_H5LE112eVs2ZqEw",
"videoPosterUrl": null,
"ariaLabel": "Andrew Metcalf, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:42.538Z"
},
{
"adId": "1078037174",
"adUrl": "https://www.linkedin.com/ad-library/detail/1078037174",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "TLDR",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/C4E0BAQFp9gsyVl-j3Q/company-logo_100_100/company-logo_100_100/0/1663609589109?e=1780531200&v=beta&t=3bHZl03pVHRU1J9sW9Zz1DUpV-y8_EKGXW2bldOmRa0",
"headline": "See how Plaid added $382k in pipeline through TLDR ads",
"adCopy": "👉 Reach 6+ million highly engaged tech professionals 👉 40-46% open rate (!) 👉 12 interest-based newsletters to reach …",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D4E10AQHQjDiMzJfipA/image-shrink_1280/B4EZtxlbZzJQAc-/0/1767137195947/plaidcasestudypointingjpg?e=2147483647&v=beta&t=bVn93un1VdpA0cNdGebGvFk7MY9v_QI8iwthlRTl-lg",
"videoPosterUrl": null,
"ariaLabel": "TLDR, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:42.568Z"
},
{
"adId": "1014986286",
"adUrl": "https://www.linkedin.com/ad-library/detail/1014986286",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "RedCloud Consulting",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/D560BAQHYH7kg5DodvA/company-logo_100_100/B56ZkHWcPZIAAU-/0/1756764947687/redcloud_consulting_inc_logo?e=1780531200&v=beta&t=BoTWkUA_pNMTgwp4eUdb0ZVBjV95LQQyoD8t99Qh_Ug",
"headline": "Apply Now to Shape Large-Scale ERP Architecture",
"adCopy": "Ready to lead high-impact ERP modernization? We’re hiring a Principal Engineer with strong enterprise architecture skill…",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D5610AQGJrQ_f-n_7sg/image_627_1200/B56ZtxqKH4IcAY-/0/1767138435707/10png?e=2147483647&v=beta&t=Gj1040w1DVG5uJvuDgT5A34BEhSeSIP549PutqpltHA",
"videoPosterUrl": null,
"ariaLabel": "RedCloud Consulting, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:42.603Z"
},
{
"adId": "1015085906",
"adUrl": "https://www.linkedin.com/ad-library/detail/1015085906",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "RedCloud Consulting",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/D560BAQHYH7kg5DodvA/company-logo_100_100/B56ZkHWcPZIAAU-/0/1756764947687/redcloud_consulting_inc_logo?e=1780531200&v=beta&t=BoTWkUA_pNMTgwp4eUdb0ZVBjV95LQQyoD8t99Qh_Ug",
"headline": "Apply Now to Lead Enterprise Data Architecture",
"adCopy": "Seeking a Principal Data Architect to design future-state ERP data architecture. Bachelor’s or Master’s required. Ideal …",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D5610AQGObrYQHmBfpA/image_627_1200/B4DZtxoZI6H8AY-/0/1767137972921/5png?e=2147483647&v=beta&t=u2jYGKpXIajtvQ6T0kog5ad0KaziVlDLqTrtkLCkvBw",
"videoPosterUrl": null,
"ariaLabel": "RedCloud Consulting, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:42.630Z"
},
{
"adId": "1014333336",
"adUrl": "https://www.linkedin.com/ad-library/detail/1014333336",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "David Fields",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/C5603AQHkagSPiaZh6A/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1557339739835?e=1780531200&v=beta&t=EFLVi5fpRA9YZUQ7oMTZQ-ERimIC9enr_RW-HaQUe5g",
"headline": "Shared Image",
"adCopy": "A Managing Director I know hired a Wharton MBA to lead acquisitions. 3 months later, they quit because the job wasn't an…",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D5610AQGiYEfSj-4dSA/image-shrink_1280/B56Ztwk_XPHAAc-/0/1767120304229?e=2147483647&v=beta&t=NZmJLTfGLHSUIAe3Sh0zWHNQZk1pm-LPbO3P564C6ng",
"videoPosterUrl": null,
"ariaLabel": "David Fields, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:42.659Z"
},
{
"adId": "1013478156",
"adUrl": "https://www.linkedin.com/ad-library/detail/1013478156",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "RedCloud Consulting",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/D560BAQHYH7kg5DodvA/company-logo_100_100/B56ZkHWcPZIAAU-/0/1756764947687/redcloud_consulting_inc_logo?e=1780531200&v=beta&t=BoTWkUA_pNMTgwp4eUdb0ZVBjV95LQQyoD8t99Qh_Ug",
"headline": "Apply Now: Architect the Future of Enterprise Data",
"adCopy": "Help architect the data foundation for a multi-year ERP transformation. Requires a Bachelor’s or Master’s in CS/IS and d…",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D5610AQGEDkQMwdJVsQ/image-shrink_1280/B56Ztxngs6G0AM-/0/1767137742759/3png?e=2147483647&v=beta&t=iBz2kdlxEWMYnKdRAfU1rl-bouA-_ykIi1XtEfUHaog",
"videoPosterUrl": null,
"ariaLabel": "RedCloud Consulting, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:42.720Z"
},
{
"adId": "1014986296",
"adUrl": "https://www.linkedin.com/ad-library/detail/1014986296",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "RedCloud Consulting",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/D560BAQHYH7kg5DodvA/company-logo_100_100/B56ZkHWcPZIAAU-/0/1756764947687/redcloud_consulting_inc_logo?e=1780531200&v=beta&t=BoTWkUA_pNMTgwp4eUdb0ZVBjV95LQQyoD8t99Qh_Ug",
"headline": "Join Our Team: Principal Engineer Driving ERP Transformation",
"adCopy": "Apply now to join our team as a Principal Engineer supporting a major ERP transformation. You’ll architect future-state …",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D5610AQElW1fHe53lgA/image_627_1200/B56ZtxqJvdLAAY-/0/1767138434135/6png?e=2147483647&v=beta&t=C1rnvhbBsV0x9yvm_KS_lXBaIl_bZooAfbeY9nDejPk",
"videoPosterUrl": null,
"ariaLabel": "RedCloud Consulting, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:42.754Z"
},
{
"adId": "1080630994",
"adUrl": "https://www.linkedin.com/ad-library/detail/1080630994",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "Dr. Yvonne Scott Miller",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/D5603AQGRD0PvZ5KDdQ/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1714599243607?e=1780531200&v=beta&t=E6rfT-LdyaRfzU4m7yyZGx1bViJGNnf5OngvbqDiGdc",
"headline": "“HELP A SISTER OUT” #adhd #downsyndrome #autism #building https://www.autism-adhd-downsacademy.com/",
"adCopy": "Help Build a School for Children with Autism-ADHD-Downs Syndrome in 2026. Gift Link: https://lnkd.in/eJn_mfKg",
"creativeImageUrl": "https://media.licdn.com/dms/image/sync/v2/D4E27AQHn5M9zOv0ldA/articleshare-shrink_1280_800/B4EZtwYDB9GoAQ-/0/1767116911480?e=2147483647&v=beta&t=0aylRERVik-gmCTFxByvQIsYGztqmQL5H39tAKcRW6I",
"videoPosterUrl": null,
"ariaLabel": "Dr. Yvonne Scott Miller, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:42.786Z"
},
{
"adId": "1014986266",
"adUrl": "https://www.linkedin.com/ad-library/detail/1014986266",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "Stefan Krueger",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/D5603AQGJ3sJmjsIysg/profile-displayphoto-scale_100_100/B56Zy9VzADI0Ac-/0/1772703135070?e=1780531200&v=beta&t=xKQB67lI1bu_y7grcbKdtxz0MRDlf4eIUfX9lAtsTNM",
"headline": null,
"adCopy": "I remember quite clearly, only a few years ago, being in my second year of my bachelor’s degree and driving back to the …",
"creativeImageUrl": null,
"videoPosterUrl": null,
"ariaLabel": null,
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:42.833Z"
},
{
"adId": "1013478196",
"adUrl": "https://www.linkedin.com/ad-library/detail/1013478196",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "RedCloud Consulting",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/D560BAQHYH7kg5DodvA/company-logo_100_100/B56ZkHWcPZIAAU-/0/1756764947687/redcloud_consulting_inc_logo?e=1780531200&v=beta&t=BoTWkUA_pNMTgwp4eUdb0ZVBjV95LQQyoD8t99Qh_Ug",
"headline": "Principal Engineer Needed in Issaquah — Apply Now",
"adCopy": "Join our team as a Principal Engineer and drive strategy for a major enterprise platform modernization. Bring your exper…",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D5610AQHTaoIaswrlmg/image-shrink_1280/B56ZtxpjFUGwAQ-/0/1767138276652/7png?e=2147483647&v=beta&t=uoGeEGwReLFclr4K4EJ0WsVnjpqmoQdeSf3DAMJ3i14",
"videoPosterUrl": null,
"ariaLabel": "RedCloud Consulting, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:42.869Z"
},
{
"adId": "1014915936",
"adUrl": "https://www.linkedin.com/ad-library/detail/1014915936",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "RedCloud Consulting",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/D560BAQHYH7kg5DodvA/company-logo_100_100/B56ZkHWcPZIAAU-/0/1756764947687/redcloud_consulting_inc_logo?e=1780531200&v=beta&t=BoTWkUA_pNMTgwp4eUdb0ZVBjV95LQQyoD8t99Qh_Ug",
"headline": "Apply Now to Build Future-State ERP Data Models",
"adCopy": "We’re hiring a Principal Data Architect to define ERP data models and integration frameworks for a large retail-driven t…",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D5610AQHpMazmFT1Q8w/image-shrink_1280/B56ZtxngsxLAAM-/0/1767137742731/2png?e=2147483647&v=beta&t=RYgtmf0PI34oB2MA1ZPxQ_Tm0VpUDKqAwKtDXh5dcAo",
"videoPosterUrl": null,
"ariaLabel": "RedCloud Consulting, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:42.901Z"
},
{
"adId": "1015585576",
"adUrl": "https://www.linkedin.com/ad-library/detail/1015585576",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "Five9",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/D560BAQHMMyOf2KYP2Q/company-logo_100_100/company-logo_100_100/0/1738688772509/five9_logo?e=1780531200&v=beta&t=kwhvvNlmfQBp9VAM5jjm6gwPUBT9eAcuNU11DokSCj8",
"headline": "Discover the New CX for Stanford Healthcare",
"adCopy": "Deliver hyper-personalized, AI-powered patient interactions that drive satisfaction across Stanford Healthcare.",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D5610AQHZ0E3ucmzyww/image_627_1200/B4DZtxl4UaJkAg-/0/1767137314392?e=2147483647&v=beta&t=UDzhTA5Wk0svltY11ZUXWDmKz4ex9ur676YzMy4QAOU",
"videoPosterUrl": null,
"ariaLabel": "Five9, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:44.971Z"
},
{
"adId": "1081729644",
"adUrl": "https://www.linkedin.com/ad-library/detail/1081729644",
"creativeType": "SPONSORED_VIDEO",
"advertiserName": "Metwall",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/D4E0BAQFf3jO4DbWw4A/company-logo_100_100/B4EZk1VbEaIQAQ-/0/1757536432744/metwall_logo?e=1780531200&v=beta&t=LM2xTBRz4AjZd1wVotrfK5L3kAWpO7RxvNljd5A_j1g",
"headline": "METWALL",
"adCopy": "We are here to make spaces more intentional\". Discover the message our Vice President has for your interior constructio…",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D4E05AQE9Ye8woTIIhQ/videocover-high/B4EZst6gYdHEBU-/0/1766001873017?e=2147483647&v=beta&t=2usPdOazdZKtIFKcaXyYWlem6cH7VUnFbtX47GNjPT4",
"videoPosterUrl": "https://media.licdn.com/dms/image/v2/D4E05AQE9Ye8woTIIhQ/videocover-high/B4EZst6gYdHEBU-/0/1766001873017?e=2147483647&v=beta&t=2usPdOazdZKtIFKcaXyYWlem6cH7VUnFbtX47GNjPT4",
"ariaLabel": "Metwall, Video Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:44.987Z"
},
{
"adId": "1081729654",
"adUrl": "https://www.linkedin.com/ad-library/detail/1081729654",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "Metwall",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/D4E0BAQFf3jO4DbWw4A/company-logo_100_100/B4EZk1VbEaIQAQ-/0/1757536432744/metwall_logo?e=1780531200&v=beta&t=LM2xTBRz4AjZd1wVotrfK5L3kAWpO7RxvNljd5A_j1g",
"headline": null,
"adCopy": "For architects who hate limits. For contractors who hate delays. For clients who hate dust. Metwall is for you. #Les…",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D4E22AQFQ5eU16RAkcA/feedshare-image-high-res/B4EZst7TjjIoAo-/0/1766002081159?e=2147483647&v=beta&t=1eARFFLpkA1TgL9cNq84Vzygx_SYlZbPSl_yDmUGXL0",
"videoPosterUrl": null,
"ariaLabel": "Metwall, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:45.011Z"
},
{
"adId": "1081926814",
"adUrl": "https://www.linkedin.com/ad-library/detail/1081926814",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "TLDR",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/C4E0BAQFp9gsyVl-j3Q/company-logo_100_100/company-logo_100_100/0/1663609589109?e=1780531200&v=beta&t=3bHZl03pVHRU1J9sW9Zz1DUpV-y8_EKGXW2bldOmRa0",
"headline": "TLDR is one of Threatspike's most efficient channels",
"adCopy": "👉 Reach 6+ million highly engaged tech professionals 👉 40-46% open rate (!) 👉 12 interest-based newsletters to reach …",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D4E10AQGeEPHmHpxZxA/image-shrink_1280/B4EZtxmfK1GoAc-/0/1767137473486/ThreatspikeCEOcybermarketersjpg?e=2147483647&v=beta&t=KcRMU64DDtngtNjk4YpmoGgltWzISWfRXBcaBeRX9KY",
"videoPosterUrl": null,
"ariaLabel": "TLDR, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:45.028Z"
},
{
"adId": "1081030924",
"adUrl": "https://www.linkedin.com/ad-library/detail/1081030924",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "TLDR",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/C4E0BAQFp9gsyVl-j3Q/company-logo_100_100/company-logo_100_100/0/1663609589109?e=1780531200&v=beta&t=3bHZl03pVHRU1J9sW9Zz1DUpV-y8_EKGXW2bldOmRa0",
"headline": "See how Streambased boosted website traffic by 10x with TLDR",
"adCopy": "👉 Reach 6+ million highly engaged tech professionals 👉 40-46% open rate (!) 👉 12 interest-based newsletters to reach …",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D4E10AQHtW30yrrY52g/image-shrink_1280/B4EZtxmFW4J0Ac-/0/1767137367840/streambasedtrafficsurgefoundaudiencejpg?e=2147483647&v=beta&t=5PEME66HxpG2Bv2xlyTqn6SHl83_QQWfvAbNbjMcpeg",
"videoPosterUrl": null,
"ariaLabel": "TLDR, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:45.043Z"
},
{
"adId": "1014815876",
"adUrl": "https://www.linkedin.com/ad-library/detail/1014815876",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "Alex Ostrovskyy",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/D5603AQHUb0xSatqhtQ/profile-displayphoto-scale_100_100/B56ZqVAfChHAAg-/0/1763436524154?e=1780531200&v=beta&t=6h4ST3pT2z5-BuXmBHhA_U03XIOrIlvJZbwjX1jx7PA",
"headline": null,
"adCopy": "The path from AI agent prototype to production just got a major shortcut. A recent LangChain release quietly introduced …",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D5622AQHHT0_Zn4sl3Q/feedshare-image-high-res/B56ZtDjheHIAAo-/0/1766364944823?e=2147483647&v=beta&t=3omjUvldMKe9kqkRJ2nT904O1D7j_TIxA9ilOYZZHGI",
"videoPosterUrl": null,
"ariaLabel": "Alex Ostrovskyy, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:45.071Z"
},
{
"adId": "1081030934",
"adUrl": "https://www.linkedin.com/ad-library/detail/1081030934",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "Children's Health Fund",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/C560BAQEh8FeFuvlbpQ/company-logo_100_100/company-logo_100_100/0/1630655047301/childrens_health_fund_logo?e=1780531200&v=beta&t=JaGItGGs0YYGENI0xVGgmGhGk-le8-7Y2rg0INQB6I8",
"headline": "DONATE NOW",
"adCopy": "With your help, children will not lose precious time waiting for care, missing milestones, or being left behind. Give …",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D4E10AQEZbCZbcGVV7Q/image-shrink_1280/B4EZtxmuUKHUAM-/0/1767137536384/1766505126035gif?e=2147483647&v=beta&t=8HZm9UKiM0N_uvVW896MaRRY6n5_W9D91iwdL5gKyxc",
"videoPosterUrl": null,
"ariaLabel": "Children's Health Fund, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:45.084Z"
},
{
"adId": "1078336174",
"adUrl": "https://www.linkedin.com/ad-library/detail/1078336174",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "TLDR",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/C4E0BAQFp9gsyVl-j3Q/company-logo_100_100/company-logo_100_100/0/1663609589109?e=1780531200&v=beta&t=3bHZl03pVHRU1J9sW9Zz1DUpV-y8_EKGXW2bldOmRa0",
"headline": "See how Plaid added $382k in pipeline through TLDR ads",
"adCopy": "👉 Reach 6+ million highly engaged tech professionals 👉 40-46% open rate (!) 👉 12 interest-based newsletters to reach …",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D4E10AQHQjDiMzJfipA/image-shrink_1280/B4EZtxlbZzJQAc-/0/1767137195947/plaidcasestudypointingjpg?e=2147483647&v=beta&t=bVn93un1VdpA0cNdGebGvFk7MY9v_QI8iwthlRTl-lg",
"videoPosterUrl": null,
"ariaLabel": "TLDR, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:45.101Z"
},
{
"adId": "1078336184",
"adUrl": "https://www.linkedin.com/ad-library/detail/1078336184",
"creativeType": "SPONSORED_VIDEO",
"advertiserName": "Connection",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/D4E0BAQEjytZzvj41pA/company-logo_100_100/B4EZpKOJj4GUAU-/0/1762181814862/connection_it_logo?e=1780531200&v=beta&t=sr4Wu2TgJTktIqEXrBHDe-t6ZGRzFT_NAxgI2YToWrw",
"headline": "Galaxy Tab S11 Enterprise Edition",
"adCopy": "Tune in to this edition of Inside Access for a close look at the all-new Samsung Galaxy Tab S11 Enterprise Edition and l…",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D4E10AQGs15UE9nXReQ/ads-video-thumbnail_720_1280/B4EZtxme.gJwBA-/0/1767137472790/IA_Samsung_Tease_new-tagmp4?e=2147483647&v=beta&t=wsg-X9_oS3hI681Txvcfed09xJN1F0gZTp2odVbaumg",
"videoPosterUrl": null,
"ariaLabel": "Connection, Video Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:45.126Z"
},
{
"adId": "1078336194",
"adUrl": "https://www.linkedin.com/ad-library/detail/1078336194",
"creativeType": "SPONSORED_VIDEO",
"advertiserName": "Connection",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/D4E0BAQEjytZzvj41pA/company-logo_100_100/B4EZpKOJj4GUAU-/0/1762181814862/connection_it_logo?e=1780531200&v=beta&t=sr4Wu2TgJTktIqEXrBHDe-t6ZGRzFT_NAxgI2YToWrw",
"headline": "Samsung Offers Tailored Solutions to Create a Culture of Infinite Possibilities",
"adCopy": "Tune in to this edition of Inside Access for a close look at the all-new Samsung Galaxy Tab S11 Enterprise Edition and l…",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D4E10AQGs15UE9nXReQ/ads-video-thumbnail_720_1280/B4EZtxme.gJwBA-/0/1767137472790/IA_Samsung_Tease_new-tagmp4?e=2147483647&v=beta&t=wsg-X9_oS3hI681Txvcfed09xJN1F0gZTp2odVbaumg",
"videoPosterUrl": null,
"ariaLabel": "Connection, Video Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:45.156Z"
},
{
"adId": "1081729634",
"adUrl": "https://www.linkedin.com/ad-library/detail/1081729634",
"creativeType": "SPONSORED_VIDEO",
"advertiserName": "Connection",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/D4E0BAQEjytZzvj41pA/company-logo_100_100/B4EZpKOJj4GUAU-/0/1762181814862/connection_it_logo?e=1780531200&v=beta&t=sr4Wu2TgJTktIqEXrBHDe-t6ZGRzFT_NAxgI2YToWrw",
"headline": "Taking the Lead in Tech Innovation",
"adCopy": "Tune in to this edition of Inside Access for a close look at the all-new Samsung Galaxy Tab S11 Enterprise Edition and l…",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D4E10AQGs15UE9nXReQ/ads-video-thumbnail_720_1280/B4EZtxme.gJwBA-/0/1767137472790/IA_Samsung_Tease_new-tagmp4?e=2147483647&v=beta&t=wsg-X9_oS3hI681Txvcfed09xJN1F0gZTp2odVbaumg",
"videoPosterUrl": null,
"ariaLabel": "Connection, Video Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:45.188Z"
},
{
"adId": "1013656336",
"adUrl": "https://www.linkedin.com/ad-library/detail/1013656336",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "Five9",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/D560BAQHMMyOf2KYP2Q/company-logo_100_100/company-logo_100_100/0/1738688772509/five9_logo?e=1780531200&v=beta&t=kwhvvNlmfQBp9VAM5jjm6gwPUBT9eAcuNU11DokSCj8",
"headline": "Discover the New CX for Procter & Gamble",
"adCopy": "Procter & Gamble brands are built on trust. Five9 can help you protect that promise with seamless, personalized support …",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D5610AQGyJIG5N6nfTg/image_627_1200/B56ZtxmGZFGsAg-/0/1767137371873?e=2147483647&v=beta&t=MU-i8OQKTAElzT6d119PHemuxq9gE_K0XsKQw0OqIdo",
"videoPosterUrl": null,
"ariaLabel": "Five9, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:45.226Z"
},
{
"adId": "1080231114",
"adUrl": "https://www.linkedin.com/ad-library/detail/1080231114",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "Jordan Brumer",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/D4E03AQFWtphnSN_f6Q/profile-displayphoto-scale_100_100/B4EZsQzRZOKkAc-/0/1765513435160?e=1780531200&v=beta&t=YBq1EPA3uboZjWADj2zMNN9EE-y59tjFZzL-BbG6Hpg",
"headline": null,
"adCopy": "Excited to share that Odell & Co. will be at #CES2026. CTV, culture, and supply-side excellence are evolving fast — and …",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D4E22AQEDBXFx0FAhJQ/feedshare-shrink_1280/B4EZskGJvHIIAs-/0/1765837152101?e=2147483647&v=beta&t=rbTC_uQThIG5BKyrcV41oRtdoF2gZjeV3IGvvRGKxW8",
"videoPosterUrl": null,
"ariaLabel": "Jordan Brumer, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:45.249Z"
},
{
"adId": "1013656356",
"adUrl": "https://www.linkedin.com/ad-library/detail/1013656356",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "Jeffrey Balke, MD",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/C5603AQEuts5zIsB_zw/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1616708912468?e=1780531200&v=beta&t=vMI23cBp-vvRWEugWhAUhu4uSKs3lbbVJpg8eSgL5VA",
"headline": null,
"adCopy": "I am traveling to Dallas / Fort Worth soon and am interested in meeting with attorneys and other consultants like myself…",
"creativeImageUrl": null,
"videoPosterUrl": null,
"ariaLabel": "Jeffrey Balke, MD, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:45.282Z"
},
{
"adId": "1078336204",
"adUrl": "https://www.linkedin.com/ad-library/detail/1078336204",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "TLDR",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/C4E0BAQFp9gsyVl-j3Q/company-logo_100_100/company-logo_100_100/0/1663609589109?e=1780531200&v=beta&t=3bHZl03pVHRU1J9sW9Zz1DUpV-y8_EKGXW2bldOmRa0",
"headline": "Reach over 6 million tech professionals",
"adCopy": "👉 Reach 6+ million highly engaged tech professionals 👉 40-46% open rate (!) 👉 12 interest-based newsletters to reach …",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D4E10AQGbOTg8j9Kk_w/image-shrink_1280/B4EZtxm9rJGoAc-/0/1767137598518/whymarketersneedTLDRmultiplecasestudiesstatsjpg?e=2147483647&v=beta&t=69uY7Dap61O7kFANNPF5RlkyJxobVeHSECIVCRE3hyo",
"videoPosterUrl": null,
"ariaLabel": "TLDR, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:45.312Z"
},
{
"adId": "1014915846",
"adUrl": "https://www.linkedin.com/ad-library/detail/1014915846",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "Five9",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/D560BAQHMMyOf2KYP2Q/company-logo_100_100/company-logo_100_100/0/1738688772509/five9_logo?e=1780531200&v=beta&t=kwhvvNlmfQBp9VAM5jjm6gwPUBT9eAcuNU11DokSCj8",
"headline": "Discover the New CX for UPMC",
"adCopy": "Today's patients expect effortless, omnichannel engagement. Five9 empowers UPMC to exceed expectations with AI and autom…",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D5610AQFqOxVb_DeUHQ/image_627_1200/B4DZtxmCdDH0Ag-/0/1767137355754?e=2147483647&v=beta&t=W4fHR5gLIcNq6eTS2Ofd-rsQ1cp1x1y7S5Ez-7vtKvw",
"videoPosterUrl": null,
"ariaLabel": "Five9, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:45.348Z"
},
{
"adId": "1081528614",
"adUrl": "https://www.linkedin.com/ad-library/detail/1081528614",
"creativeType": "SPONSORED_VIDEO",
"advertiserName": "Connection",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/D4E0BAQEjytZzvj41pA/company-logo_100_100/B4EZpKOJj4GUAU-/0/1762181814862/connection_it_logo?e=1780531200&v=beta&t=sr4Wu2TgJTktIqEXrBHDe-t6ZGRzFT_NAxgI2YToWrw",
"headline": "The S11 is Ready for Everything Your Distributed Workforce Throws At It",
"adCopy": "Tune in to this edition of Inside Access for a close look at the all-new Samsung Galaxy Tab S11 Enterprise Edition and l…",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D4E10AQGs15UE9nXReQ/ads-video-thumbnail_720_1280/B4EZtxme.gJwBA-/0/1767137472790/IA_Samsung_Tease_new-tagmp4?e=2147483647&v=beta&t=wsg-X9_oS3hI681Txvcfed09xJN1F0gZTp2odVbaumg",
"videoPosterUrl": null,
"ariaLabel": "Connection, Video Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:45.384Z"
},
{
"adId": "1081528624",
"adUrl": "https://www.linkedin.com/ad-library/detail/1081528624",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "TLDR",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/C4E0BAQFp9gsyVl-j3Q/company-logo_100_100/company-logo_100_100/0/1663609589109?e=1780531200&v=beta&t=3bHZl03pVHRU1J9sW9Zz1DUpV-y8_EKGXW2bldOmRa0",
"headline": "Reach over 6 million tech professionals",
"adCopy": "👉 Reach 6+ million highly engaged tech professionals 👉 40-46% open rate (!) 👉 12 interest-based newsletters to reach …",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D4E10AQGbOTg8j9Kk_w/image-shrink_1280/B4EZtxm9rJGoAc-/0/1767137598518/whymarketersneedTLDRmultiplecasestudiesstatsjpg?e=2147483647&v=beta&t=69uY7Dap61O7kFANNPF5RlkyJxobVeHSECIVCRE3hyo",
"videoPosterUrl": null,
"ariaLabel": "TLDR, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:45.412Z"
},
{
"adId": "1015486126",
"adUrl": "https://www.linkedin.com/ad-library/detail/1015486126",
"creativeType": "SPONSORED_VIDEO",
"advertiserName": "Redenlab",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/D560BAQFauoA7yTTYWw/company-logo_100_100/B56ZmTLcSsI8AQ-/0/1759110874778/redenlab_logo?e=1780531200&v=beta&t=3SqbVujFpyIegBtslvN-KTb3E8PdCZmR9Z-1s92ktio",
"headline": "Redenlab in 2025",
"adCopy": "2025 at Redenlab was shaped by collaboration. From researchers and clinicians to participants around the world, thank y…",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D5605AQH_2jhaAadEGg/videocover-high/B56ZtxjOWEJIBU-/0/1767136619603?e=2147483647&v=beta&t=lDBiGU0g4OWJIZQDaPI03sd3eH5zJ1fe2ED_FOVnZ1k",
"videoPosterUrl": "https://media.licdn.com/dms/image/v2/D5605AQH_2jhaAadEGg/videocover-high/B56ZtxjOWEJIBU-/0/1767136619603?e=2147483647&v=beta&t=lDBiGU0g4OWJIZQDaPI03sd3eH5zJ1fe2ED_FOVnZ1k",
"ariaLabel": "Redenlab, Video Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:45.451Z"
},
{
"adId": "1015186046",
"adUrl": "https://www.linkedin.com/ad-library/detail/1015186046",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "Alex Ostrovskyy",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/D5603AQHUb0xSatqhtQ/profile-displayphoto-scale_100_100/B56ZqVAfChHAAg-/0/1763436524154?e=1780531200&v=beta&t=6h4ST3pT2z5-BuXmBHhA_U03XIOrIlvJZbwjX1jx7PA",
"headline": null,
"adCopy": "Stop guessing your AI architecture. Start planning it. 🛠️🧠 I designed this infographic to be the ultimate cheatsheet f…",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D5622AQEQQkUxFP8Xqg/feedshare-shrink_1280/B56ZtM4jsRJAAs-/0/1766521454802?e=2147483647&v=beta&t=2j2UnqfZbNk-TaCacqpr1P0GLCWt3sRM-S75f8Y3jzk",
"videoPosterUrl": null,
"ariaLabel": "Alex Ostrovskyy, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:45.490Z"
},
{
"adId": "1014533496",
"adUrl": "https://www.linkedin.com/ad-library/detail/1014533496",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "Five9",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/D560BAQHMMyOf2KYP2Q/company-logo_100_100/company-logo_100_100/0/1738688772509/five9_logo?e=1780531200&v=beta&t=kwhvvNlmfQBp9VAM5jjm6gwPUBT9eAcuNU11DokSCj8",
"headline": "Discover the New CX for Tenet Health",
"adCopy": "Today's patients expect effortless, omnichannel engagement. Five9 empowers Tenet Health to exceed expectations with AI a…",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D5610AQF2byLygEZNtQ/image-shrink_1280/B56Ztxl8DQJgAg-/0/1767137329684?e=2147483647&v=beta&t=4xe11aqNkaTv0uYA4K0De_Kzv9uxHXg2XQjb_jnfAOo",
"videoPosterUrl": null,
"ariaLabel": "Five9, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:45.531Z"
},
{
"adId": "1080132234",
"adUrl": "https://www.linkedin.com/ad-library/detail/1080132234",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "TLDR",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/C4E0BAQFp9gsyVl-j3Q/company-logo_100_100/company-logo_100_100/0/1663609589109?e=1780531200&v=beta&t=3bHZl03pVHRU1J9sW9Zz1DUpV-y8_EKGXW2bldOmRa0",
"headline": "TLDR is one of Threatspike's most efficient channels",
"adCopy": "👉 Reach 6+ million highly engaged tech professionals 👉 40-46% open rate (!) 👉 12 interest-based newsletters to reach …",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D4E10AQGeEPHmHpxZxA/image-shrink_1280/B4EZtxmfK1GoAc-/0/1767137473486/ThreatspikeCEOcybermarketersjpg?e=2147483647&v=beta&t=KcRMU64DDtngtNjk4YpmoGgltWzISWfRXBcaBeRX9KY",
"videoPosterUrl": null,
"ariaLabel": "TLDR, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:45.584Z"
},
{
"adId": "1014986246",
"adUrl": "https://www.linkedin.com/ad-library/detail/1014986246",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "Yutka Fence",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/D560BAQH8t_K9ylY_TQ/company-logo_100_100/company-logo_100_100/0/1734722074592?e=1780531200&v=beta&t=IApQgdaWKZP4iEtqYpOrw8xGz45wFM3uvoIPswJkLMw",
"headline": null,
"adCopy": "Join a team that values integrity, professionalism, and continued progress as an Outside Sales Associate. Recognized by…",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D5622AQElEvlqZJdiqg/feedshare-shrink_1280/B56Ztxk7cZJsAw-/0/1767137065928?e=2147483647&v=beta&t=KMnm0vgTu0P2GWk2EKt30_1AQHgAGeaiT5pW15VaEJA",
"videoPosterUrl": null,
"ariaLabel": "Yutka Fence, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:45.615Z"
},
{
"adId": "1015785466",
"adUrl": "https://www.linkedin.com/ad-library/detail/1015785466",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "Five9",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/D560BAQHMMyOf2KYP2Q/company-logo_100_100/company-logo_100_100/0/1738688772509/five9_logo?e=1780531200&v=beta&t=kwhvvNlmfQBp9VAM5jjm6gwPUBT9eAcuNU11DokSCj8",
"headline": "Discover the New CX for Paypal",
"adCopy": "Build trust and loyalty in every Paypal interaction. Five9 helps your contact center deliver hyper-personalized service …",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D5610AQFE-3F4UKZOKQ/image-shrink_1280/B56ZtxmF7rLAAc-/0/1767137370130?e=2147483647&v=beta&t=tivgrTQiUsTkg62xWwtgGGYlPx6UFddYB5siZu3G6n8",
"videoPosterUrl": null,
"ariaLabel": "Five9, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:45.644Z"
},
{
"adId": "1014728166",
"adUrl": "https://www.linkedin.com/ad-library/detail/1014728166",
"creativeType": "SPONSORED_VIDEO",
"advertiserName": "Six Five Media",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/D4E0BAQHl5nAdRLopIA/company-logo_100_100/company-logo_100_100/0/1715638350994/thesixfive_logo?e=1780531200&v=beta&t=ygFUMSKKRFO9ZS-TqZuFigOHUGmX19nodfzhj1-yqkc",
"headline": null,
"adCopy": "Reinventing silicon for the AI era means rethinking both compute and connectivity. In a conversation at Marvell Technol…",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D5605AQEEFhzNqDZ_sA/videocover-high/B56Ztw0faSJMBU-/0/1767124369966?e=2147483647&v=beta&t=4EGGYwBcdcg5lyyrEQua_sIFtMoDFTIy_caSlhC-Dls",
"videoPosterUrl": "https://media.licdn.com/dms/image/v2/D5605AQEEFhzNqDZ_sA/videocover-high/B56Ztw0faSJMBU-/0/1767124369966?e=2147483647&v=beta&t=4EGGYwBcdcg5lyyrEQua_sIFtMoDFTIy_caSlhC-Dls",
"ariaLabel": "Six Five Media, Video Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:48.612Z"
},
{
"adId": "1080331304",
"adUrl": "https://www.linkedin.com/ad-library/detail/1080331304",
"creativeType": "SPONSORED_STATUS_UPDATE",
"advertiserName": "Joseph Michael Patrick Callahan III",
"advertiserLogoUrl": "https://media.licdn.com/dms/image/v2/D4E03AQHhRdoX-899wA/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1726456107529?e=1780531200&v=beta&t=Z01KkVl3YlgSDJOA3UQxhKiqrq9ZwGA4FUVBCF6cp18",
"headline": null,
"adCopy": "What better way to end 2025 than an exciting meeting with fellow Falcon Hon.Michael A. Griffin, Honorary Consulate to Na…",
"creativeImageUrl": "https://media.licdn.com/dms/image/v2/D4E22AQGx8sBfTj0NKA/feedshare-image-high-res/B4EZtxi4WLGkAo-/0/1767136531079?e=2147483647&v=beta&t=dGv65S-mK-LbCMUI8dYxd_vvIBTY5qPS8KXKMIF5G9U",
"videoPosterUrl": null,
"ariaLabel": "Joseph Michael Patrick Callahan III, Single Image Ad, View details",
"ctaUrl": null,
"detailFields": null,
"detailDates": null,
"searchKeyword": "",
"searchKeywordType": "accountOwner",
"searchCountries": [
"US"
],
"scrapedAt": "2026-05-15T11:13:48.806Z"
}
] |