Skip to content
Snippets Groups Projects
Users #en-docs-twitter-api-v1-accounts-and-users-follow-search-get-users-api-reference-get-friends-ids.html 84.7 KiB
Newer Older
  • Learn to ignore specific revisions
  • Romane Gallienne's avatar
    Romane Gallienne committed
    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
    
    
    
    
    
    
    
    <!DOCTYPE html>
    
    
    <html lang="en" dir="ltr" prefix="og: http://ogp.me/ns#" data-behavior="i18n" data-environment="prod" data-server-mode="publish" data-dc="a" class="  twtr-type--chirp">
      <head>
        <meta charset="utf-8"/>
    
    <meta name="viewport" content="width=device-width, initial-scale=1"/>
    
    <title>GET friends/ids | Docs | Twitter Developer Platform  </title>
    <meta name="description"/>
    
    
    
    
    
    
    
    
      <link rel="canonical" href="https://developer.twitter.com/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/get-friends-ids"/>
      <meta property="og:url" content="https://developer.twitter.com/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/get-friends-ids"/>
    
    
    
    
    
    <meta property="og:type" content="article"/>
    <meta property="og:title" content="GET friends/ids"/>
    
    <meta property="og:image" content="https://cdn.cms-twdigitalassets.com/content/dam/developer-twitter/redesign-2021-images/og-social-card/devwebsite_card_tn.jpg.twimg.768.jpg"/>
    <meta name="keywords"/>
    
    
    <meta name="twitter:card" content="summary_large_image"/>
    
    
    
    
    
    
    
    
    
    
    
    
    
          <link rel="alternate" hreflang="en" href="https://developer.twitter.com/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/get-friends-ids"/>
    
    
    <meta name="twitter:widgets:new-embed-design" content="on"/>
    <meta name="twitter:widgets:csp" content="on"/>
    
    
    
          <link href="https://abs.twimg.com/favicons/twitter-orange.3.ico" rel="shortcut icon" type="image/x-icon"/>
    
    
    
    
    <script type="application/json" id="analytics-settings">{&quot;google&quot;:{&quot;accounts&quot;:[],&quot;options&quot;:{&quot;displayAdvertisingFeatures&quot;:false}},&quot;scribe&quot;:{&quot;scribeSectionWithImpression&quot;:false},&quot;trackingPixel&quot;:{},&quot;bing&quot;:{}}</script>
    
    
    
    
    
    
    <script type="application/json" class="u14-data-layer" data-component="u14-data-layer" id="data-layer">{"page":{"pageId":"6171a16","pageKey":"6171a16-en-en","pageName":"GET friends/ids","pagePath":"/content/developer-twitter/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/get-friends-ids","pageType":"documentation-page","pagePublishDate":"","language":"en","geoRegion":"en","category":{"tags":{"tagIDs":[],"tagNames":[]},"scribe":{"component":"twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/get-friends-ids","section":"docs","page":"developer","element":"page"}},"attribute":{}}}</script>
    
    
    
        
        
          <link rel="preload" href="https://fonts.twitter.com/chirp/chirp-bold-italic-web.woff2" as="font" type="font/woff2" crossorigin/>
          <link rel="preload" href="https://fonts.twitter.com/chirp/chirp-bold-web.woff2" as="font" type="font/woff2" crossorigin/>
          <link rel="preload" href="https://fonts.twitter.com/chirp/chirp-display-extended-black-web.woff2" as="font" type="font/woff2" crossorigin/>
          <link rel="preload" href="https://fonts.twitter.com/chirp/chirp-regular-web.woff2" as="font" type="font/woff2" crossorigin/>
          <link rel="preload" href="https://fonts.twitter.com/chirp/chirp-regular-italic-web.woff2" as="font" type="font/woff2" crossorigin/>
          <link rel="preload" href="https://fonts.twitter.com/chirp/chirp-extended-bold-web.woff2" as="font" type="font/woff2" crossorigin/>
        
    
        
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    <link rel="stylesheet" href="https://cdn.cms-twdigitalassets.com/etc/designs/developer2-twitter/public/css/chirp.css.twhash.a.f.41e1f29c2d4295d68b05db0725781db3.css" media="screen" type="text/css"/>
    <link rel="stylesheet" href="https://cdn.cms-twdigitalassets.com/etc/designs/developer2-twitter/public/css/legacy-colors.css.twhash.a.f.20fd26d638816cbce52d44904fc9c3c2.css" type="text/css"/>
    
    <link rel="stylesheet" href="https://cdn.cms-twdigitalassets.com/etc/designs/developer2-twitter/public/css/project.css.twhash.a.f.9b9b7e2d9404f9e756d0962c03502a4d.css" media="screen" type="text/css"/>
    
    <link rel="stylesheet" href="https://cdn.cms-twdigitalassets.com/etc/designs/developer2-twitter/public/css/print.css.twhash.a.f.67de1c964d9398cbf614aab841910ad6.css" media="print" type="text/css"/>
    
    
    
    
    
    
    
    
    
    
    
      </head>
      <body class="
            twtr-theme--blue
            page documentation-page
            page--
            
            twtr-color-bg--white-neutral
            
            js-no-scroll
            atm-light
          " style="--theme-color: var(--blue-dark)" data-analytics-page="developer" data-analytics-section="docs" data-analytics-component="twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/get-friends-ids" data-analytics-element="page">
        
    <div id="twtr-dtc-main" style="--nav-height: var(--navbar-tall)" data-dtc-rebrand-on="true" class="dtc-rebrand-flag-on">
      
    
    
    
    
    
    
    <div id="twBearerToken" data-value="AAAAAAAAAAAAAAAAAAAAACHguwAAAAAAaSlT0G31NDEyg%2BSnBN5JuyKjMCU%3Dlhg0gv0nE7KKyiJNEAojQbn8Y3wJm1xidDK7VnKGBP4ByJwHPb" style="display:none"></div>
    
    <div id="twAuthenticationFlag" data-value="guest" style="display:none"></div>
    
    <div id="twGeoLocationRegion" data-value="eu" style="display:none"></div>
    
    
    
      
    
      
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    <div class="u01-meganav__page-padding"></div>
    <div class="u01-meganav  js-twtr-nav  twtr-color-bg--white-neutral  is-fixed">
      <div class="twtr-container--wide">
        <div class="twtr-grid">
          <div class="twtr-col-12">
            <div class="u01-meganav__container" data-bg-color="white-neutral" data-home-path="/content/developer-twitter/en" data-icon-close="&lt;svg version=&#34;1.1&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34; xmlns:xlink=&#34;http://www.w3.org/1999/xlink&#34; x=&#34;0px&#34; y=&#34;0px&#34; viewbox=&#34;0 0 24 24&#34; style=&#34;enable-background:new 0 0 24 24;&#34; xml:space=&#34;preserve&#34; aria-hidden=&#34;true&#34; focusable=&#34;false&#34; role=&#34;none&#34; class=&#34;twtr-icon--md&#34;> 
     &lt;g> 
      &lt;g> 
       &lt;defs> 
        &lt;rect id=&#34;SVGID_1_&#34; x=&#34;-468&#34; y=&#34;-1360&#34; width=&#34;1440&#34; height=&#34;3027&#34; /> 
       &lt;/defs> 
       &lt;clippath id=&#34;SVGID_2_&#34;> 
        &lt;use xlink:href=&#34;#SVGID_1_&#34; style=&#34;overflow:visible;&#34; /> 
       &lt;/clippath> 
      &lt;/g> 
     &lt;/g> 
     &lt;rect x=&#34;-468&#34; y=&#34;-1360&#34; class=&#34;st0&#34; width=&#34;1440&#34; height=&#34;3027&#34; style=&#34;fill:rgb(0,0,0,0);stroke-width:3;stroke:rgb(0,0,0)&#34; /> 
     &lt;path d=&#34;M13.4,12l5.8-5.8c0.4-0.4,0.4-1,0-1.4c-0.4-0.4-1-0.4-1.4,0L12,10.6L6.2,4.8c-0.4-0.4-1-0.4-1.4,0c-0.4,0.4-0.4,1,0,1.4
    	l5.8,5.8l-5.8,5.8c-0.4,0.4-0.4,1,0,1.4c0.2,0.2,0.4,0.3,0.7,0.3s0.5-0.1,0.7-0.3l5.8-5.8l5.8,5.8c0.2,0.2,0.5,0.3,0.7,0.3
    	s0.5-0.1,0.7-0.3c0.4-0.4,0.4-1,0-1.4L13.4,12z&#34; /> 
    &lt;/svg>" data-icon-chevron-right="&lt;svg xmlns=&#34;http://www.w3.org/2000/svg&#34; width=&#34;24&#34; height=&#34;24&#34; viewbox=&#34;0 0 24 24&#34; aria-hidden=&#34;true&#34; focusable=&#34;false&#34; role=&#34;none&#34; class=&#34;twtr-icon&#34;> 
     &lt;path opacity=&#34;0&#34; d=&#34;M0 0h24v24H0z&#34; /> 
     &lt;path d=&#34;M17.207 11.293l-7.5-7.5c-.39-.39-1.023-.39-1.414 0s-.39 1.023 0 1.414L15.086 12l-6.793 6.793c-.39.39-.39 1.023 0 1.414.195.195.45.293.707.293s.512-.098.707-.293l7.5-7.5c.39-.39.39-1.023 0-1.414z&#34; /> 
    &lt;/svg>" data-icon-chevron-down="&lt;svg xmlns=&#34;http://www.w3.org/2000/svg&#34; width=&#34;24&#34; height=&#34;24&#34; viewbox=&#34;0 0 24 24&#34; aria-hidden=&#34;true&#34; focusable=&#34;false&#34; role=&#34;none&#34; class=&#34;twtr-icon&#34;> 
     &lt;path opacity=&#34;0&#34; d=&#34;M0 0h24v24H0z&#34; /> 
     &lt;path d=&#34;M20.207 7.043c-.39-.39-1.023-.39-1.414 0L12 13.836 5.207 7.043c-.39-.39-1.023-.39-1.414 0s-.39 1.023 0 1.414l7.5 7.5c.195.195.45.293.707.293s.512-.098.707-.293l7.5-7.5c.39-.39.39-1.023 0-1.414z&#34; /> 
    &lt;/svg>" data-icon-arrow-left="&lt;svg width=&#34;28px&#34; height=&#34;28px&#34; viewbox=&#34;0 0 28 28&#34; version=&#34;1.1&#34; xmlns=&#34;http://www.w3.org/2000/svg&#34; xmlns:xlink=&#34;http://www.w3.org/1999/xlink&#34; aria-hidden=&#34;true&#34; focusable=&#34;false&#34; role=&#34;none&#34; class=&#34;twtr-icon  u01-meganav__icon-arrow-left&#34;> 
     &lt;g stroke=&#34;none&#34; stroke-width=&#34;1&#34; fill=&#34;none&#34; fill-rule=&#34;evenodd&#34; stroke-linecap=&#34;round&#34;> 
      &lt;g transform=&#34;translate(-1216.000000, -298.000000)&#34; stroke-width=&#34;2.25&#34;> 
       &lt;g transform=&#34;translate(1200.000000, 282.000000)&#34;> 
        &lt;g transform=&#34;translate(17.000000, 17.000000)&#34;> 
         &lt;path d=&#34;M0.756410256,12.8589744 L25.7179487,12.8589744&#34;>&lt;/path> 
         &lt;path d=&#34;M13.2371795,25.3397436 L25.7179487,12.8589744&#34;>&lt;/path> 
         &lt;path d=&#34;M13.2371795,12.4807692 L25.3397436,0.378205128&#34; transform=&#34;translate(19.288462, 6.429487) rotate(-90.000000) translate(-19.288462, -6.429487) &#34;>&lt;/path> 
        &lt;/g> 
       &lt;/g> 
      &lt;/g> 
     &lt;/g> 
    &lt;/svg>" data-left-nav-items="[{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;Twitter API&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;Twitter API&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/products/twitter-api&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;Twitter Ads API&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;Twitter Ads API&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/products/twitter-ads-api&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;Twitter for websites&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;Twitter for websites&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/products/twitter-for-websites&#34;}],&#34;overviewTitle&#34;:&#34;Products&#34;,&#34;linkDisabled&#34;:true,&#34;title&#34;:&#34;Products&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/products&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;Getting Started&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;Getting Started&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/docs/platform-overview&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;Tutorials&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;Tutorials&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/docs/tutorials&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;Github&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;Github&#34;,&#34;path&#34;:&#34;https://github.com/twitterdev&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;API reference index&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;API reference index&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/docs/api-reference-index&#34;}],&#34;linkDisabled&#34;:true,&#34;title&#34;:&#34;Resources&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/.html&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;Twitter API home&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;Twitter API home&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/docs/twitter-api&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;Twitter API getting started&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;Twitter API getting started&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/docs/twitter-api/getting-started/about-twitter-api&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;SDKs&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;SDKs&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/docs/twitter-api/tools-and-libraries/sdks/overview&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;Tools and Libraries&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;Tools and Libraries&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/docs/twitter-api/tools-and-libraries/v2&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;v2 migration&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;v2 migration&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/docs/twitter-api/migrate/twitter-api-endpoint-map&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;Enterprise APIs&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;Enterprise APIs&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/docs/twitter-api/enterprise&#34;}],&#34;linkDisabled&#34;:true,&#34;title&#34;:&#34;Twitter Api&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/.html&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;Twitter Ads API home&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;Twitter Ads API home&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/docs/twitter-ads-api&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;Twitter Ads API getting started&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;Twitter Ads API getting started&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/docs/twitter-ads-api/getting-started&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;Apply for access&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;Apply for access&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/docs/twitter-ads-api/apply.html&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;Tools and libraries&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;Tools and libraries&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/docs/twitter-ads-api/tools-and-libraries&#34;}],&#34;linkDisabled&#34;:true,&#34;title&#34;:&#34;Twitter Ads API&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/.html&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;Twitter for Websites home&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;Twitter for Websites home&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/docs/twitter-for-websites&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;Embedded Tweets&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;Embedded Tweets&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/docs/twitter-for-websites/embedded-tweets/overview&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;Embedded Timelines&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;Embedded Timelines&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/docs/twitter-for-websites/timelines/overview&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;Embedded buttons&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;Embedded buttons&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/docs/twitter-for-websites/tweet-button/overview&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;Web intents&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;Web intents&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/docs/twitter-for-websites/web-intents/overview&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;Twitter cards&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;Twitter cards&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/docs/twitter-for-websites/cards/overview/abouts-cards&#34;}],&#34;linkDisabled&#34;:true,&#34;title&#34;:&#34;Twitter for Websites&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/.html&#34;}],&#34;overviewTitle&#34;:&#34;Docs&#34;,&#34;linkDisabled&#34;:false,&#34;menuType&#34;:&#34;multiCategory&#34;,&#34;title&#34;:&#34;Docs&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/docs&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;Build for business&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;Build for business&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/use-cases/build-for-businesses&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;Build for the public&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;Build for the public&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/use-cases/build-for-consumers&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;Do research&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;Do research&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/use-cases/do-research&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;Teach \u0026 learn&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;Teach \u0026 learn&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/use-cases/teach-and-learn&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;Build for good&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;Build for good&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/use-cases/build-for-good&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;Build for fun&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;Build for fun&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/use-cases/build-for-fun&#34;}],&#34;overviewTitle&#34;:&#34;Use Cases&#34;,&#34;linkDisabled&#34;:true,&#34;title&#34;:&#34;Use Cases&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/navigation/left-nav-items/use-cases&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;Changelog&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;Changelog&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/updates/changelog&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;Blog&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;Blog&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/blog&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;Newsletter&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;Newsletter&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/updates/stay-informed&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;YouTube&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;YouTube&#34;,&#34;path&#34;:&#34;https://www.youtube.com/c/twitterdev&#34;}],&#34;linkDisabled&#34;:true,&#34;title&#34;:&#34;Stay informed&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/.html&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;Forums&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;Forums&#34;,&#34;path&#34;:&#34;https://twittercommunity.com/&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;Events&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;Events&#34;,&#34;path&#34;:&#34;https://twitterdev.bevylabs.com/&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;Insiders&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;Insiders&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/community/insiders&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;Community leaders&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;Community leaders&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/community/leaders&#34;}],&#34;linkDisabled&#34;:true,&#34;title&#34;:&#34;Connect&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/.html&#34;}],&#34;overviewTitle&#34;:&#34;Community&#34;,&#34;linkDisabled&#34;:false,&#34;menuType&#34;:&#34;multiCategory&#34;,&#34;title&#34;:&#34;Community&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/community&#34;}]" data-right-nav-items="[{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;Policies&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;Policies&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/developer-terms&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;Developer agreement&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;Developer agreement&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/developer-terms/agreement-and-policy/source&#34;}],&#34;overviewTitle&#34;:&#34;Support&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;Support&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/support&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;Developer Portal&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;Developer Portal&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/portal/petition/essential/basic-info&#34;}]" data-cta-enabled="true" data-profile-enabled="true" data-cta-link-new-tab="false" data-root-page-title="Developer Platform">
              
            </div>
            <div aria-label="Search" class="u01-meganav__search-modal twtr-color-bg--blue-dark" role="dialog" aria-modal="true">
              
    
    
    
    
    <button aria-label="Close search menu" class="u04-search__close-button js-close-search" type="button">
      <svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewbox="0 0 24 24" style="enable-background:new 0 0 24 24;" xml:space="preserve" aria-hidden="true" focusable="false" role="none" class="u04-search__close-svg  twtr-icon"> 
     <g> 
      <g> 
       <defs> 
        <rect id="SVGID_1_" x="-468" y="-1360" width="1440" height="3027" /> 
       </defs> 
       <clippath id="SVGID_2_"> 
        <use xlink:href="#SVGID_1_" style="overflow:visible;" /> 
       </clippath> 
      </g> 
     </g> 
     <rect x="-468" y="-1360" class="st0" width="1440" height="3027" style="fill:rgb(0,0,0,0);stroke-width:3;stroke:rgb(0,0,0)" /> 
     <path d="M13.4,12l5.8-5.8c0.4-0.4,0.4-1,0-1.4c-0.4-0.4-1-0.4-1.4,0L12,10.6L6.2,4.8c-0.4-0.4-1-0.4-1.4,0c-0.4,0.4-0.4,1,0,1.4
    	l5.8,5.8l-5.8,5.8c-0.4,0.4-0.4,1,0,1.4c0.2,0.2,0.4,0.3,0.7,0.3s0.5-0.1,0.7-0.3l5.8-5.8l5.8,5.8c0.2,0.2,0.5,0.3,0.7,0.3
    	s0.5-0.1,0.7-0.3c0.4-0.4,0.4-1,0-1.4L13.4,12z" /> 
    </svg>
    </button>
    
    <div class="search-bar search-bar--js" data-theme="blue" data-search-path="https://developer.twitter.com/en/search-results.html">
      <input placeholder="Type your search here" type="search" autocomplete="off" class="search-bar__input" name="q"/>
      <button id="u04-search__button" class="u04-search__button" aria-label="Search">
        <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewbox="0 0 24 24" aria-hidden="true" focusable="false" role="none" class="u04-search__button-icon twtr-icon--mega  twtr-color-fill--white-neutral"> 
     <path opacity="0" d="M0 0h24v24H0z" /> 
     <path d="M22.06 19.94l-3.73-3.73C19.38 14.737 20 12.942 20 11c0-4.97-4.03-9-9-9s-9 4.03-9 9 4.03 9 9 9c1.943 0 3.738-.622 5.21-1.67l3.73 3.73c.292.294.676.44 1.06.44s.768-.146 1.06-.44c.586-.585.586-1.535 0-2.12zM11 17c-3.308 0-6-2.692-6-6s2.692-6 6-6 6 2.692 6 6-2.692 6-6 6z" /> 
    </svg>
      </button>
    </div>
    
            </div>
          </div>
        </div>
      </div>
    
    </div>
    
    
    
      
    
    
    <main class="twtr-color-bg--white-neutral" id="twtr-main">
      <div class="page-wrapper  documentation-page  twtr-color-bg--white-neutral">
        
    
    <div class="u07  is-hidden" aria-hidden="true">
      <div class="u07__item  u07__bg-color--neutral">
        <div class="u07__item-content">
          <div class="u07__notification  twtr-type--bold-200  chirp--bold-200  twtr-color--gray-900">
            
          </div>
          <div class="u07__close">
            <button type="button" class="u07__close-btn">
              
              <svg xmlns="http://www.w3.org/2000/svg" width="46" height="72" viewbox="0 0 46 72" aria-hidden="true" focusable="false" role="none" class="twtr-icon">
     <path d="M27.243 36l14.879-14.879a2.998 2.998 0 0 0 0-4.242 2.998 2.998 0 0 0-4.242 0L23 31.758 8.122 16.879a2.998 2.998 0 0 0-4.242 0 2.998 2.998 0 0 0 0 4.242L18.758 36 3.879 50.879A2.998 2.998 0 0 0 6.001 56a2.99 2.99 0 0 0 2.121-.879L23 40.242l14.879 14.879A2.991 2.991 0 0 0 40 56a2.998 2.998 0 0 0 2.121-5.121L27.243 36z" />
    </svg>
            </button>
          </div>
        </div>
      </div>
    </div>
    
        <div class="page-content  twtr-container-wide  left-rail-container">
          <div class="sidebar-content  docs-side-nav">
            <div class="sidebar-content__wrapper">
              <span class="docs-side-nav__close">
                <svg xmlns="http://www.w3.org/2000/svg" width="46" height="72" viewBox="0 0 46 72" aria-hidden="true" focusable="false">
                  <path d="M27.243 36l14.879-14.879a2.998 2.998 0 0 0 0-4.242 2.998 2.998 0 0 0-4.242 0L23 31.758 8.122 16.879a2.998 2.998 0 0 0-4.242 0 2.998 2.998 0 0 0 0 4.242L18.758 36 3.879 50.879A2.998 2.998 0 0 0 6.001 56a2.99 2.99 0 0 0 2.121-.879L23 40.242l14.879 14.879A2.991 2.991 0 0 0 40 56a2.998 2.998 0 0 0 2.121-5.121L27.243 36z">
                  </path>
                </svg>
              </span>
              
      <div class="d08-navigation-sidebar" data-sidenav-json="{&#34;navigationTitle&#34;:&#34;Documentation&#34;,&#34;rootPageUrl&#34;:&#34;/content/developer-twitter/en/docs.html&#34;,&#34;navigationGroups&#34;:[{&#34;groupName&#34;:&#34;&#34;,&#34;navItems&#34;:[{&#34;title&#34;:&#34;Getting started&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/platform-overview&#34;},{&#34;childNavItems&#34;:[{&#34;title&#34;:&#34;Developer Apps&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/apps&#34;},{&#34;title&#34;:&#34;Projects&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/projects&#34;},{&#34;title&#34;:&#34;Developer portal&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/developer-portal&#34;},{&#34;title&#34;:&#34;Authentication&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/authentication&#34;},{&#34;title&#34;:&#34;Counting characters&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/counting-characters&#34;},{&#34;title&#34;:&#34;Rate limits&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/rate-limits&#34;},{&#34;title&#34;:&#34;Twitter IDs&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-ids&#34;},{&#34;title&#34;:&#34;Security&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/security&#34;}],&#34;title&#34;:&#34;Fundamentals&#34;,&#34;url&#34;:&#34;#&#34;},{&#34;title&#34;:&#34;Tools and libraries&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/tools-and-libraries&#34;},{&#34;title&#34;:&#34;Tutorials&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/tutorials&#34;},{&#34;title&#34;:&#34;API reference index&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/api-reference-index&#34;}],&#34;groupUrl&#34;:&#34;#&#34;},{&#34;groupName&#34;:&#34;Twitter API&#34;,&#34;navItems&#34;:[{&#34;childNavItems&#34;:[{&#34;title&#34;:&#34;About the Twitter API&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/getting-started/about-twitter-api&#34;},{&#34;title&#34;:&#34;Getting access&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/getting-started/getting-access-to-the-twitter-api&#34;},{&#34;title&#34;:&#34;Make your first request&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/getting-started/make-your-first-request&#34;},{&#34;title&#34;:&#34;Important resources&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/getting-started/important-resources&#34;}],&#34;title&#34;:&#34;Getting started&#34;,&#34;url&#34;:&#34;#&#34;},{&#34;childNavItems&#34;:[{&#34;title&#34;:&#34;SDKs&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/tools-and-libraries/sdks&#34;}],&#34;title&#34;:&#34;Tools and libraries&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/tools-and-libraries&#34;},{&#34;title&#34;:&#34;What to build&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/what-to-build&#34;},{&#34;childNavItems&#34;:[{&#34;title&#34;:&#34;Overview&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/migrate/overview&#34;},{&#34;title&#34;:&#34;Data format migration&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/migrate/data-formats&#34;},{&#34;title&#34;:&#34;Twitter API endpoint map&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/migrate/twitter-api-endpoint-map&#34;}],&#34;title&#34;:&#34;Migrate&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/migrate&#34;},{&#34;childNavItems&#34;:[{&#34;grandChildNavItems&#34;:[{&#34;title&#34;:&#34;Data dictionary&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/data-dictionary&#34;},{&#34;title&#34;:&#34;Fields&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/fields&#34;},{&#34;title&#34;:&#34;Expansions&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/expansions&#34;},{&#34;title&#34;:&#34;Tweet annotations&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/annotations&#34;},{&#34;title&#34;:&#34;Metrics&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/metrics&#34;},{&#34;title&#34;:&#34;Conversation ID&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/conversation-id&#34;},{&#34;title&#34;:&#34;Pagination&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/pagination&#34;},{&#34;title&#34;:&#34;Versioning&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/versioning&#34;},{&#34;title&#34;:&#34;Consistency&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/consistency&#34;},{&#34;title&#34;:&#34;Rate limits&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/rate-limits&#34;},{&#34;title&#34;:&#34;Tweet cap&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/tweet-caps&#34;},{&#34;title&#34;:&#34;Edit Tweets&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/edit-tweets&#34;}],&#34;title&#34;:&#34;Fundamentals&#34;,&#34;url&#34;:&#34;#&#34;},{&#34;grandChildNavItems&#34;:[{&#34;title&#34;:&#34;Tweets lookup&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/tweets/lookup&#34;},{&#34;title&#34;:&#34;Manage Tweets&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/tweets/manage-tweets&#34;},{&#34;title&#34;:&#34;Timelines&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/tweets/timelines&#34;},{&#34;title&#34;:&#34;Search Tweets&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/tweets/search&#34;},{&#34;title&#34;:&#34;Tweet counts&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/tweets/counts&#34;},{&#34;title&#34;:&#34;Filtered stream&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/tweets/filtered-stream&#34;},{&#34;title&#34;:&#34;Volume streams&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/tweets/volume-streams&#34;},{&#34;title&#34;:&#34;Retweets&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/tweets/retweets&#34;},{&#34;title&#34;:&#34;Quote Tweets&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/tweets/quote-tweets&#34;},{&#34;title&#34;:&#34;Likes&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/tweets/likes&#34;},{&#34;title&#34;:&#34;Bookmarks&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/tweets/bookmarks&#34;},{&#34;title&#34;:&#34;Hide replies&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/tweets/hide-replies&#34;}],&#34;title&#34;:&#34;Tweets&#34;,&#34;url&#34;:&#34;#&#34;},{&#34;grandChildNavItems&#34;:[{&#34;title&#34;:&#34;Users lookup&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/users/lookup&#34;},{&#34;title&#34;:&#34;Follows&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/users/follows&#34;},{&#34;title&#34;:&#34;Blocks&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/users/blocks&#34;},{&#34;title&#34;:&#34;Mutes&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/users/mutes&#34;},{&#34;title&#34;:&#34;Search&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/users/search&#34;}],&#34;title&#34;:&#34;Users&#34;,&#34;url&#34;:&#34;#&#34;},{&#34;grandChildNavItems&#34;:[{&#34;title&#34;:&#34;Tweets&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/usage/tweets&#34;}],&#34;title&#34;:&#34;Usage&#34;,&#34;url&#34;:&#34;#&#34;},{&#34;title&#34;:&#34;Trends&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/trends&#34;},{&#34;grandChildNavItems&#34;:[{&#34;title&#34;:&#34;Overview&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/spaces/overview&#34;},{&#34;title&#34;:&#34;Spaces lookup&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/spaces/lookup&#34;},{&#34;title&#34;:&#34;Search Spaces&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/spaces/search&#34;}],&#34;title&#34;:&#34;Spaces&#34;,&#34;url&#34;:&#34;#&#34;},{&#34;grandChildNavItems&#34;:[{&#34;title&#34;:&#34;Direct Messages lookup&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/direct-messages/lookup&#34;},{&#34;title&#34;:&#34;Manage Direct Messages&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/direct-messages/manage&#34;}],&#34;title&#34;:&#34;Direct Messages&#34;,&#34;url&#34;:&#34;#&#34;},{&#34;grandChildNavItems&#34;:[{&#34;title&#34;:&#34;Lists lookup&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/lists/list-lookup&#34;},{&#34;title&#34;:&#34;Manage lists&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/lists/manage-lists&#34;},{&#34;title&#34;:&#34;List Tweets lookup&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/lists/list-tweets&#34;},{&#34;title&#34;:&#34;List members&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/lists/list-members&#34;},{&#34;title&#34;:&#34;Pinned Lists&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/lists/pinned-lists&#34;}],&#34;title&#34;:&#34;Lists&#34;,&#34;url&#34;:&#34;#&#34;},{&#34;grandChildNavItems&#34;:[{&#34;title&#34;:&#34;Batch compliance&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/compliance/batch-compliance/&#34;},{&#34;title&#34;:&#34;Compliance streams&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/compliance/streams/&#34;}],&#34;title&#34;:&#34;Compliance&#34;,&#34;url&#34;:&#34;#&#34;}],&#34;title&#34;:&#34;Twitter API v2&#34;,&#34;url&#34;:&#34;&#34;},{&#34;childNavItems&#34;:[{&#34;grandChildNavItems&#34;:[{&#34;title&#34;:&#34;Gnip Console&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/enterprise/console&#34;},{&#34;title&#34;:&#34;Data dictionary&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/enterprise/data-dictionary&#34;},{&#34;title&#34;:&#34;Data enrichments&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/enterprise/enrichments&#34;},{&#34;title&#34;:&#34;Rules and filtering&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/enterprise/rules-and-filtering&#34;},{&#34;title&#34;:&#34;Rate limits&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/enterprise/rate-limits&#34;},{&#34;title&#34;:&#34;Edit Tweets&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/enterprise/edit-tweets&#34;}],&#34;title&#34;:&#34;Fundamentals&#34;,&#34;url&#34;:&#34;#&#34;},{&#34;title&#34;:&#34;PowerTrack API&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/enterprise/powertrack-api&#34;},{&#34;title&#34;:&#34;Decahose API&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/enterprise/decahose-api&#34;},{&#34;title&#34;:&#34;Account Activity API&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/enterprise/account-activity-api&#34;},{&#34;title&#34;:&#34;Search API&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/enterprise/search-api&#34;},{&#34;title&#34;:&#34;Engagement API&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/enterprise/engagement-api&#34;},{&#34;title&#34;:&#34;Compliance Firehose API&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/enterprise/compliance-firehose-api&#34;},{&#34;title&#34;:&#34;Usage API&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/enterprise/usage-api&#34;}],&#34;calloutLabel&#34;:&#34;Gnip 2.0&#34;,&#34;title&#34;:&#34;Enterprise - Gnip 2.0&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/enterprise&#34;},{&#34;childNavItems&#34;:[{&#34;grandChildNavItems&#34;:[{&#34;title&#34;:&#34;Data dictionary&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/v1/data-dictionary&#34;},{&#34;title&#34;:&#34;Rate limits&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/v1/rate-limits&#34;},{&#34;title&#34;:&#34;Edit Tweets&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/v1/edit-tweets&#34;}],&#34;title&#34;:&#34;Fundamentals&#34;,&#34;url&#34;:&#34;#&#34;},{&#34;grandChildNavItems&#34;:[{&#34;title&#34;:&#34;Search Tweets&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/v1/tweets/search&#34;},{&#34;title&#34;:&#34;Post, retrieve, and engage with Tweets&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/v1/tweets/post-and-engage&#34;},{&#34;title&#34;:&#34;Get Tweet timelines&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/v1/tweets/timelines&#34;},{&#34;title&#34;:&#34;Filter realtime Tweets&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/v1/tweets/filter-realtime&#34;},{&#34;title&#34;:&#34;Sample realtime Tweets&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/v1/tweets/sample-realtime&#34;},{&#34;title&#34;:&#34;Curate a collection of Tweets&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/v1/tweets/curate-a-collection&#34;}],&#34;title&#34;:&#34;Tweets&#34;,&#34;url&#34;:&#34;#&#34;},{&#34;grandChildNavItems&#34;:[{&#34;title&#34;:&#34;Manage account settings and profile&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/v1/accounts-and-users/manage-account-settings&#34;},{&#34;title&#34;:&#34;Mute, block, and report users&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/v1/accounts-and-users/mute-block-report-users&#34;},{&#34;title&#34;:&#34;Follow, search, and get users&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users&#34;},{&#34;title&#34;:&#34;Create and manage lists&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/v1/accounts-and-users/create-manage-lists&#34;},{&#34;title&#34;:&#34;User profile images and banners&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/v1/accounts-and-users/user-profile-images-and-banners&#34;}],&#34;title&#34;:&#34;Users&#34;,&#34;url&#34;:&#34;#&#34;},{&#34;grandChildNavItems&#34;:[{&#34;title&#34;:&#34;Direct Message features&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/v1/direct-messages/api-features&#34;},{&#34;title&#34;:&#34;Sending and receiving events&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/v1/direct-messages/sending-and-receiving&#34;},{&#34;title&#34;:&#34;Welcome messages&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/v1/direct-messages/welcome-messages&#34;},{&#34;title&#34;:&#34;Message attachments&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/v1/direct-messages/message-attachments&#34;},{&#34;title&#34;:&#34;Quick replies&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/v1/direct-messages/quick-replies&#34;},{&#34;title&#34;:&#34;Buttons&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/v1/direct-messages/buttons&#34;},{&#34;title&#34;:&#34;Typing indicators and read receipts&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/v1/direct-messages/typing-indicator-and-read-receipts&#34;},{&#34;title&#34;:&#34;Conversation management&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/v1/direct-messages/conversation-management&#34;},{&#34;title&#34;:&#34;Custom profiles&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/v1/direct-messages/custom-profiles&#34;},{&#34;title&#34;:&#34;Customer feedback cards&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/v1/direct-messages/customer-feedback&#34;}],&#34;title&#34;:&#34;Direct Messages&#34;,&#34;url&#34;:&#34;#&#34;},{&#34;grandChildNavItems&#34;:[{&#34;title&#34;:&#34;Upload media&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/v1/media/upload-media&#34;}],&#34;title&#34;:&#34;Media&#34;,&#34;url&#34;:&#34;#&#34;},{&#34;grandChildNavItems&#34;:[{&#34;title&#34;:&#34;Get trends near a location&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/v1/trends/trends-for-location&#34;},{&#34;title&#34;:&#34;Get locations with trending topics&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/v1/trends/locations-with-trending-topics&#34;}],&#34;title&#34;:&#34;Trends&#34;,&#34;url&#34;:&#34;#&#34;},{&#34;grandChildNavItems&#34;:[{&#34;title&#34;:&#34;Get information about a place&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/v1/geo/place-information&#34;},{&#34;title&#34;:&#34;Get places near a location&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/v1/geo/places-near-location&#34;}],&#34;title&#34;:&#34;Geo&#34;,&#34;url&#34;:&#34;#&#34;},{&#34;grandChildNavItems&#34;:[{&#34;title&#34;:&#34;Get app rate limit status&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/v1/developer-utilities/rate-limit-status&#34;},{&#34;title&#34;:&#34;Get Twitter supported languages&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/v1/developer-utilities/supported-languages&#34;}],&#34;title&#34;:&#34;Developer utilities&#34;,&#34;url&#34;:&#34;#&#34;}],&#34;calloutLabel&#34;:&#34;v1.1&#34;,&#34;title&#34;:&#34;Standard v1.1&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-api/v1&#34;}],&#34;groupUrl&#34;:&#34;/content/developer-twitter/en/docs/twitter-api&#34;},{&#34;groupName&#34;:&#34;Twitter Ads API&#34;,&#34;navItems&#34;:[{&#34;childNavItems&#34;:[{&#34;title&#34;:&#34;Step by step guide&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-ads-api/getting-started&#34;},{&#34;title&#34;:&#34;Increasing access&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-ads-api/increasing-access&#34;},{&#34;title&#34;:&#34;Subscribe for updates&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-ads-api/newsletter&#34;}],&#34;title&#34;:&#34;Getting started&#34;,&#34;url&#34;:&#34;&#34;},{&#34;childNavItems&#34;:[{&#34;title&#34;:&#34;Hierarchy and terminology&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-ads-api/hierarchy-terminology&#34;},{&#34;title&#34;:&#34;Accessing Ads accounts&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-ads-api/obtaining-ads-account-access&#34;},{&#34;title&#34;:&#34;Making authenticated requests&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-ads-api/making-authenticated-requests&#34;},{&#34;title&#34;:&#34;Error codes and responses&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-ads-api/response-codes&#34;},{&#34;title&#34;:&#34;Rate limiting&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-ads-api/rate-limiting&#34;},{&#34;title&#34;:&#34;Pagination&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-ads-api/pagination&#34;},{&#34;title&#34;:&#34;Sorting&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-ads-api/sorting&#34;},{&#34;title&#34;:&#34;Versioning&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-ads-api/versioning&#34;},{&#34;title&#34;:&#34;Timezones&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-ads-api/timezones&#34;},{&#34;title&#34;:&#34;Currency&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-ads-api/currency&#34;},{&#34;title&#34;:&#34;Sandbox&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-ads-api/ads-api-sandbox&#34;}],&#34;title&#34;:&#34;Fundamentals&#34;,&#34;url&#34;:&#34;&#34;},{&#34;childNavItems&#34;:[],&#34;title&#34;:&#34;Tools and libraries&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-ads-api/tools-and-libraries&#34;},{&#34;childNavItems&#34;:[],&#34;title&#34;:&#34;Analytics&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-ads-api/analytics&#34;},{&#34;childNavItems&#34;:[],&#34;title&#34;:&#34;Audiences&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-ads-api/audiences&#34;},{&#34;childNavItems&#34;:[],&#34;title&#34;:&#34;Campaign management&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-ads-api/campaign-management&#34;},{&#34;childNavItems&#34;:[],&#34;title&#34;:&#34;Catalog management&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-ads-api/catalog-management&#34;},{&#34;childNavItems&#34;:[],&#34;title&#34;:&#34;Creatives&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-ads-api/creatives&#34;},{&#34;childNavItems&#34;:[{&#34;title&#34;:&#34;Mobile Conversions&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-ads-api/measurement/mobile-conversions/overview&#34;},{&#34;title&#34;:&#34;Web Conversions&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-ads-api/measurement/web-conversions/overview&#34;},{&#34;title&#34;:&#34;AB testing&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-ads-api/measurement/ab-testing/overview&#34;}],&#34;title&#34;:&#34;Measurement&#34;,&#34;url&#34;:&#34;&#34;}],&#34;groupUrl&#34;:&#34;/content/developer-twitter/en/docs/twitter-ads-api&#34;},{&#34;groupName&#34;:&#34;Twitter for Websites&#34;,&#34;navItems&#34;:[{&#34;childNavItems&#34;:[{&#34;title&#34;:&#34;Webpage properties&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-for-websites/webpage-properties&#34;},{&#34;title&#34;:&#34;Javascript API&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-for-websites/javascript-api&#34;},{&#34;title&#34;:&#34;Supported languages and browsers&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-for-websites/supported-languages&#34;},{&#34;title&#34;:&#34;Privacy&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-for-websites/privacy&#34;}],&#34;title&#34;:&#34;Fundamentals&#34;,&#34;url&#34;:&#34;&#34;},{&#34;childNavItems&#34;:[],&#34;title&#34;:&#34;Tools and libraries&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-for-websites/tools-and-libraries&#34;},{&#34;childNavItems&#34;:[],&#34;title&#34;:&#34;Embedded Tweets&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-for-websites/embedded-tweets&#34;},{&#34;childNavItems&#34;:[],&#34;title&#34;:&#34;Embedded timelines&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-for-websites/timelines&#34;},{&#34;childNavItems&#34;:[{&#34;title&#34;:&#34;Tweets&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-for-websites/tweet-button&#34;},{&#34;title&#34;:&#34;Follow&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-for-websites/follow-button&#34;},{&#34;title&#34;:&#34;Direct Message&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-for-websites/direct-message-button&#34;}],&#34;title&#34;:&#34;Embedded buttons&#34;,&#34;url&#34;:&#34;&#34;},{&#34;childNavItems&#34;:[],&#34;title&#34;:&#34;Web intents&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-for-websites/web-intents&#34;},{&#34;childNavItems&#34;:[],&#34;title&#34;:&#34;oEmbed API&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-for-websites/oembed-api&#34;},{&#34;childNavItems&#34;:[],&#34;title&#34;:&#34;Log in with Twitter&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-for-websites/log-in-with-twitter&#34;},{&#34;childNavItems&#34;:[],&#34;title&#34;:&#34;Optimize Tweets with Twitter Cards&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-for-websites/cards&#34;},{&#34;childNavItems&#34;:[],&#34;title&#34;:&#34;Publish faster articles with AMP&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-for-websites/amp&#34;},{&#34;childNavItems&#34;:[],&#34;title&#34;:&#34;Integrate Twitter with your CMS&#34;,&#34;url&#34;:&#34;/content/developer-twitter/en/docs/twitter-for-websites/cms&#34;}],&#34;groupUrl&#34;:&#34;/content/developer-twitter/en/docs/twitter-for-websites&#34;}]}" data-search-path="https://developer.twitter.com/en/search-results.html" data-side-nav-v2="true">
      </div>
    
            </div>
          </div>
          <div class="main-content  twtr-col-lg-6">
            <div class="main-content__wrapper">
              
    
              
              
              <div class="dtc-docs__header  main-content__header">
                <span id="dtc-docs__header-title" class="dtc-docs__header-title  chirp--bold-700  twtr-color--gray-900">GET friends/ids</span>
              </div>
    
              
    
    
    
    
        
        
        <div class="c01-rich-text-editor">
    
    <div class="is-table-default">
      
    
    
    <html>
    <head>
    
    
    
    <title>get-friends-ids</title>
    <style>code {
    	white-space: pre-wrap;
    }
    span.smallcaps {
    	font-variant: small-caps;
    }
    div.columns {
    }
    div.column {
    }
    div.hanging-indent {
    	margin-left: 1.5em;
    	text-indent: -1.5em;
    }
    *.display.math {
    	display: block;
    	text-align: center;
    }
    </style>
    
    
    </head>
    <body>
    <h1 id="get-friendsids">GET friends/ids</h1>
    <div class="toctree" data-caption="GET friends/ids" data-glob="" data-maxdepth="1">
    </div>
    <p>Returns a cursored collection of user IDs for every user the
    specified user is following (otherwise known as their &quot;friends&quot;).</p>
    <p>At this time, results are ordered with the most recent following
    first — however, this ordering is subject to unannounced change and
    eventual consistency issues. Results are given in groups of 5,000 user
    IDs and multiple &quot;pages&quot; of results can be navigated through using the
    <code>next_cursor</code> value in subsequent requests. See <a href="/en/docs/basics/cursoring">Using cursors to navigate
    collections</a> for more information.</p>
    <p>This method is especially powerful when used in conjunction with <a href="/en/docs/accounts-and-users/follow-search-get-users/api-reference/get-users-lookup">GET
    users / lookup</a>, a method that allows you to convert user IDs into
    full <a href="/en/docs/tweets/data-dictionary/overview/user-object">user
    objects</a> in bulk.</p>
    <h2 id="resource-url">Resource URL<a class="headerlink" href="#resource-url" title="Permalink to this headline"></a></h2>
    <p><code>https://api.twitter.com/1.1/friends/ids.json</code></p>
    <h2 id="resource-information">Resource Information<a class="headerlink" href="#resource-information" title="Permalink to this headline"></a></h2>
    <table>
    <tbody>
    <tr class="odd">
    <td>Response formats</td>
    <td>JSON</td>
    </tr>
    <tr class="even">
    <td>Requires authentication?</td>
    <td>Yes</td>
    </tr>
    <tr class="odd">
    <td>Rate limited?</td>
    <td>Yes</td>
    </tr>
    <tr class="even">
    <td>Requests / 15-min window (user auth)</td>
    <td>15</td>
    </tr>
    <tr class="odd">
    <td>Requests / 15-min window (app auth)</td>
    <td>15</td>
    </tr>
    </tbody>
    </table>
    <h2 id="parameters">Parameters<a class="headerlink" href="#parameters" title="Permalink to this headline"></a></h2>
    <table>
    <thead>
    <tr class="header">
    <th>Name</th>
    <th>Required</th>
    <th>Description</th>
    <th>Default Value</th>
    <th>Example</th>
    </tr>
    </thead>
    <tbody>
    <tr class="odd">
    <td>user_id</td>
    <td>optional</td>
    <td>The ID of the user for whom to return results.</td>
    <td></td>
    <td><code>12345</code></td>
    </tr>
    <tr class="even">
    <td>screen_name</td>
    <td>optional</td>
    <td>The screen name of the user for whom to return results.</td>
    <td></td>
    <td><code>noradio</code></td>
    </tr>
    <tr class="odd">
    <td>cursor</td>
    <td>semi-optional</td>
    <td><p>Causes the list of connections to be broken into pages of no more
    than 5000 IDs at a time. The number of IDs returned is not guaranteed to
    be 5000 as suspended users are filtered out after connections are
    queried. If no cursor is provided, a value of <code>-1</code> will be
    assumed, which is the first &quot;page.&quot;</p><p>The response from the API will
    include a <code>previous_cursor</code> and <code>next_cursor</code> to
    allow paging back and forth. See <a href="/en/docs/basics/cursoring">Using cursors to navigate
    collections</a> for more information.</p></td>
    <td><code>-1</code></td>
    <td><code>12893764510938</code></td>
    </tr>
    <tr class="even">
    <td>stringify_ids</td>
    <td>optional</td>
    <td>Some programming environments will not consume Twitter IDs due to
    their size. Provide this option to have IDs returned as strings instead.
    More about <a href="/en/docs/basics/twitter-ids">Twitter IDs</a>.</td>
    <td><code>false</code></td>
    <td><code>true</code></td>
    </tr>
    <tr class="odd">
    <td>count</td>
    <td>optional</td>
    <td>Specifies the number of IDs attempt retrieval of, up to a maximum of
    5,000 per distinct request. The value of <code>count</code> is best
    thought of as a limit to the number of results to return. When using the
    count parameter with this method, it is wise to use a consistent count
    value across all requests to the same user's collection. Usage of this
    parameter is encouraged in environments where all 5,000 IDs constitutes
    too large of a response.</td>
    <td></td>
    <td><code>2048</code></td>
    </tr>
    </tbody>
    </table>
    <h2 id="example-request">Example Request<a class="headerlink" href="#example-request" title="Permalink to this headline"></a></h2>
    <pre><code>$ curl --request GET 
      --url 'https://api.twitter.com/1.1/friends/ids.json?screen_name=twitterdev' 
      --header 'authorization: Bearer &lt;bearer&gt;'</code></pre>
    <pre><code>$ curl --request GET 
      --url 'https://api.twitter.com/1.1/friends/ids.json?screen_name=twitterdev' 
      --header 'authorization: OAuth oauth_consumer_key=&quot;consumer-key-for-app&quot;, 
      oauth_nonce=&quot;generated-nonce&quot;, oauth_signature=&quot;generated-signature&quot;, 
      oauth_signature_method=&quot;HMAC-SHA1&quot;, oauth_timestamp=&quot;generated-timestamp&quot;, 
      oauth_version=&quot;1.0&quot;'</code></pre>
    <pre><code>$ twurl /1.1/friends/ids.json?screen_name=twitterdev</code></pre>
    <h2 id="example-response">Example Response<a class="headerlink" href="#example-response" title="Permalink to this headline"></a></h2>
    <pre><code>{
      &quot;previous_cursor&quot;: 0,
      &quot;ids&quot;: [
        657693,
        183709371,
        7588892,
        38895958,
        22891211,
        9019482,
        14488353,
        11750202,
        12249,
        22915745,
        1249881,
        14927800,
        1523501,
        22548447,
        15062340,
        133031077,
        17874544,
        777925,
        4265731,
        27674040,
        26123649,
        9576402,
        821958,
        7852612,
        819797,
        1401881,
        8285392,
        9160152,
        795649,
        3191321,
        783214
      ],
      &quot;previous_cursor_str&quot;: &quot;0&quot;,
      &quot;next_cursor&quot;: 0,
      &quot;next_cursor_str&quot;: &quot;0&quot;
    }</code></pre>
    
    
    </body></html>
    
    </div>
    </div>
    
    
    
    
              
    
    <div id="twtr-article-embedded-survey" class="b32"></div>
    
            </div>
          </div>
          <div class="sidebar-content  docs-right-side-nav  twtr-col-lg-3">
            
    
    
    
    
    
    <div class="dtc05-navigation-right" data-tab-title="Follow, search, and get users" data-header-title="Follow, search, and get users" data-tab-root-page="/content/developer-twitter/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users" data-sidenav-json="[{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;Overview&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;Overview&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/overview&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:true,&#34;children&#34;:[{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;GET followers/ids&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;GET followers/ids&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/get-followers-ids&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;GET followers/list&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;GET followers/list&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/get-followers-list&#34;},{&#34;isActive&#34;:true,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;GET friends/ids&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;GET friends/ids&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/get-friends-ids&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;GET friends/list&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;GET friends/list&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/get-friends-list&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;GET friendships/incoming&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;GET friendships/incoming&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/get-friendships-incoming&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;GET friendships/lookup&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;GET friendships/lookup&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/get-friendships-lookup&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;GET\nfriendships/no_retweets/ids&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;GET\nfriendships/no_retweets/ids&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/get-friendships-no_retweets-ids&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;GET friendships/outgoing&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;GET friendships/outgoing&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/get-friendships-outgoing&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;GET friendships/show&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;GET friendships/show&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/get-friendships-show&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;GET users/lookup&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;GET users/lookup&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/get-users-lookup&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;GET users/search&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;GET users/search&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/get-users-search&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;GET users/show&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;GET users/show&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/get-users-show&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;POST friendships/create&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;POST friendships/create&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/post-friendships-create&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;POST friendships/destroy&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;POST friendships/destroy&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/post-friendships-destroy&#34;},{&#34;isActive&#34;:false,&#34;hasActiveChild&#34;:false,&#34;children&#34;:[],&#34;overviewTitle&#34;:&#34;POST friendships/update&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;POST friendships/update&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/post-friendships-update&#34;}],&#34;overviewTitle&#34;:&#34;API reference&#34;,&#34;linkDisabled&#34;:false,&#34;title&#34;:&#34;API reference&#34;,&#34;path&#34;:&#34;https://developer.twitter.com/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/get-followers-ids&#34;}]" data-icon-chevron-down="&lt;svg xmlns=&#34;http://www.w3.org/2000/svg&#34; width=&#34;24&#34; height=&#34;24&#34; viewbox=&#34;0 0 24 24&#34; aria-hidden=&#34;true&#34; focusable=&#34;false&#34; role=&#34;none&#34; class=&#34;twtr-icon&#34;> 
     &lt;path opacity=&#34;0&#34; d=&#34;M0 0h24v24H0z&#34; /> 
     &lt;path d=&#34;M20.207 7.043c-.39-.39-1.023-.39-1.414 0L12 13.836 5.207 7.043c-.39-.39-1.023-.39-1.414 0s-.39 1.023 0 1.414l7.5 7.5c.195.195.45.293.707.293s.512-.098.707-.293l7.5-7.5c.39-.39.39-1.023 0-1.414z&#34; /> 
    &lt;/svg>">
      
    </div>
    
          </div>
        </div>
      </div>
    </main>
    
      <div>
    
    
    <footer class="u02fs  twtr-background--blue-extra-light  twtr-background--gray-0">
        <div class="twtr-container">
          <div class="twtr-grid">
    
            <div class="u02fs__footer-link-col  twtr-col-12  twtr-col-md-4">
              
              <a href="https://developer.x.com/en/more/developer-terms/agreement-and-policy" title="Developer policy and terms" target="_blank" class="u02fs__footer-link  twtr-type--roman-50  twtr-color--gray-900">
                Developer policy and terms
              </a>
            </div>
    
            <div class="u02fs__footer-link-col  twtr-col-12  twtr-col-md-4">
              
              <a href="http://x.com/xdevelopers" title="Follow @XDevelopers" target="_blank" class="u02fs__footer-link  twtr-type--roman-50  twtr-color--gray-900">
                Follow @XDevelopers
              </a>
            </div>
    
            <div class="u02fs__footer-link-col  twtr-col-12  twtr-col-md-4  u02fs__subscribe-button-col">
              
              
      
    
      <a class="b03__button
          twtr-btn
          twtr-btn--secondary
          twtr-btn--size-default
          twtr-btn-color--secondary-blue
          u02fs__button
          twtr-btn__icon--
          twtr-scribe-clicks" href="/en/twitterdev-news-subscription" rel="noopener noreferrer" target="_blank" data-twtr-scribe-section="b03-button" data-twtr-scribe-element="LMF4" data-twtr-scribe-component="subscribe-to-developer-news" data-text="Subscribe to developer news">
    
        
        
    
        <!--/* Button text -->
        Subscribe to developer news
    
        
        
    
        
        
      </a>
    
            </div>
    
          </div>
        </div>
    </footer>
    </div>
    <div>
    
    <footer class="u02 twtr-color-bg--black-neutral">
      <div class="twtr-container">
        <div class="u02__wrapper">
          <div class="u02__row  u02__network-map">
            <div class="twtr-grid  u02__twtr-grid">
              <div class="js-accordion  u02__column">
                
                <h4 class="u02__column__parent  twtr-type--bold-14  twtr-color--gray-0 is-opaque">
                  X platform
                  <span class="u02__icon  twtr-dtc-fill--extra-light-gray  twtr-hidden--md  twtr-hidden--lg  twtr-hidden--xl">
                    <svg xmlns="http://www.w3.org/2000/svg" width="17" height="9.5" viewbox="0 0 17 9.5" aria-hidden="true" focusable="false" role="none" class="twtr-icon--sm"> 
     <path d="M16.707.293c-.39-.39-1.023-.39-1.414 0L8.5 7.086 1.707.293c-.39-.39-1.023-.39-1.414 0s-.39 1.023 0 1.414l7.5 7.5c.195.195.45.293.707.293s.512-.098.707-.293l7.5-7.5c.39-.39.39-1.023 0-1.414z" /> 
    </svg>
                  </span>
                </h4>
                
                <ul class="u02__column__list">
                  <li class="u02__link-item">
                    <a href="https://x.com/" title="X.com" target="_blank" class="u02__link  twtr-type--roman-14 twtr-color--gray-0  is-opaque  has-hover">
                      X.com
                    </a>
                  </li>
                
                  <li class="u02__link-item">
                    <a href="https://status.twitterstat.us/" title="Status" target="_blank" class="u02__link  twtr-type--roman-14 twtr-color--gray-0  is-opaque  has-hover">
                      Status
                    </a>
                  </li>
                
                  <li class="u02__link-item">
                    <a href="https://help.twitter.com/resources/accessibility" title="Accessibility" target="_blank" class="u02__link  twtr-type--roman-14 twtr-color--gray-0  is-opaque  has-hover">
                      Accessibility
                    </a>
                  </li>
                
                  <li class="u02__link-item">
                    <a href="https://publish.twitter.com" title="Embed a post" target="_blank" class="u02__link  twtr-type--roman-14 twtr-color--gray-0  is-opaque  has-hover">
                      Embed a post
                    </a>
                  </li>
                
                  <li class="u02__link-item">
                    <a href="https://privacy.twitter.com/" title="Privacy Center" target="_blank" class="u02__link  twtr-type--roman-14 twtr-color--gray-0  is-opaque  has-hover">
                      Privacy Center
                    </a>
                  </li>
                
                  <li class="u02__link-item">
                    <a href="https://transparency.twitter.com/" title="Transparency Center" target="_blank" class="u02__link  twtr-type--roman-14 twtr-color--gray-0  is-opaque  has-hover">
                      Transparency Center
                    </a>
                  </li>
                
                  <li class="u02__link-item">
                    <a href="https://help.twitter.com/using-x/download-the-x-app" title="Download the X app" target="_blank" class="u02__link  twtr-type--roman-14 twtr-color--gray-0  is-opaque  has-hover">
                      Download the X app
                    </a>
                  </li>
                </ul>
              </div>
            
              <div class="js-accordion  u02__column">
                
                <h4 class="u02__column__parent  twtr-type--bold-14  twtr-color--gray-0 is-opaque">
                  X Corp.
                  <span class="u02__icon  twtr-dtc-fill--extra-light-gray  twtr-hidden--md  twtr-hidden--lg  twtr-hidden--xl">
                    <svg xmlns="http://www.w3.org/2000/svg" width="17" height="9.5" viewbox="0 0 17 9.5" aria-hidden="true" focusable="false" role="none" class="twtr-icon--sm"> 
     <path d="M16.707.293c-.39-.39-1.023-.39-1.414 0L8.5 7.086 1.707.293c-.39-.39-1.023-.39-1.414 0s-.39 1.023 0 1.414l7.5 7.5c.195.195.45.293.707.293s.512-.098.707-.293l7.5-7.5c.39-.39.39-1.023 0-1.414z" /> 
    </svg>
                  </span>
                </h4>
                
                <ul class="u02__column__list">
                  <li class="u02__link-item">
                    <a href="https://about.twitter.com/en/who-we-are/our-company.html" title="About the company" target="_blank" class="u02__link  twtr-type--roman-14 twtr-color--gray-0  is-opaque  has-hover">
                      About the company
                    </a>
                  </li>
                
                  <li class="u02__link-item">
                    <a href="https://blog.twitter.com/" title="Company news" target="_blank" class="u02__link  twtr-type--roman-14 twtr-color--gray-0  is-opaque  has-hover">
                      Company news
                    </a>
                  </li>
                
                  <li class="u02__link-item">
                    <a href="https://about.twitter.com/en/who-we-are/brand-toolkit.html" title="Brand toolkit" target="_blank" class="u02__link  twtr-type--roman-14 twtr-color--gray-0  is-opaque  has-hover">
                      Brand toolkit
                    </a>
                  </li>
                
                  <li class="u02__link-item">
                    <a href="https://careers.twitter.com/" title="Jobs and internships" target="_blank" class="u02__link  twtr-type--roman-14 twtr-color--gray-0  is-opaque  has-hover">
                      Jobs and internships
                    </a>
                  </li>
                
                  <li class="u02__link-item">
                    <a href="https://investor.twitterinc.com/" title="Investors" target="_blank" class="u02__link  twtr-type--roman-14 twtr-color--gray-0  is-opaque  has-hover">
                      Investors
                    </a>
                  </li>
                </ul>
              </div>
            
              <div class="js-accordion  u02__column">
                
                <h4 class="u02__column__parent  twtr-type--bold-14  twtr-color--gray-0 is-opaque">
                  Help
                  <span class="u02__icon  twtr-dtc-fill--extra-light-gray  twtr-hidden--md  twtr-hidden--lg  twtr-hidden--xl">
                    <svg xmlns="http://www.w3.org/2000/svg" width="17" height="9.5" viewbox="0 0 17 9.5" aria-hidden="true" focusable="false" role="none" class="twtr-icon--sm"> 
     <path d="M16.707.293c-.39-.39-1.023-.39-1.414 0L8.5 7.086 1.707.293c-.39-.39-1.023-.39-1.414 0s-.39 1.023 0 1.414l7.5 7.5c.195.195.45.293.707.293s.512-.098.707-.293l7.5-7.5c.39-.39.39-1.023 0-1.414z" /> 
    </svg>
                  </span>
                </h4>
                
                <ul class="u02__column__list">
                  <li class="u02__link-item">
                    <a href="https://help.twitter.com/" title="Help Center" target="_blank" class="u02__link  twtr-type--roman-14 twtr-color--gray-0  is-opaque  has-hover">
                      Help Center
                    </a>
                  </li>
                
                  <li class="u02__link-item">
                    <a href="https://help.twitter.com/en/using-twitter" title="Using X" target="_blank" class="u02__link  twtr-type--roman-14 twtr-color--gray-0  is-opaque  has-hover">
                      Using X
                    </a>
                  </li>
                
                  <li class="u02__link-item">
                    <a href="https://create.twitter.com/" title="X for creators" target="_blank" class="u02__link  twtr-type--roman-14 twtr-color--gray-0  is-opaque  has-hover">
                      X for creators
                    </a>
                  </li>
                
                  <li class="u02__link-item">
                    <a href="https://business.twitter.com/en/help.html" title="Ads Help Center" target="_blank" class="u02__link  twtr-type--roman-14 twtr-color--gray-0  is-opaque  has-hover">
                      Ads Help Center
                    </a>
                  </li>
                
                  <li class="u02__link-item">
                    <a href="https://help.twitter.com/en/managing-your-account" title="Managing your account" target="_blank" class="u02__link  twtr-type--roman-14 twtr-color--gray-0  is-opaque  has-hover">
                      Managing your account
                    </a>
                  </li>
                
                  <li class="u02__link-item">
                    <a href="https://preferencecenter.twitter.com/" title="Email Preference Center" target="_blank" class="u02__link  twtr-type--roman-14 twtr-color--gray-0  is-opaque  has-hover">
                      Email Preference Center
                    </a>
                  </li>
                
                  <li class="u02__link-item">
                    <a href="https://help.twitter.com/en/rules-and-policies" title="Rules and policies" target="_blank" class="u02__link  twtr-type--roman-14 twtr-color--gray-0  is-opaque  has-hover">
                      Rules and policies
                    </a>
                  </li>
                
                  <li class="u02__link-item">
                    <a href="https://help.twitter.com/en/forms.html" title="Contact us" target="_blank" class="u02__link  twtr-type--roman-14 twtr-color--gray-0  is-opaque  has-hover">
                      Contact us
                    </a>
                  </li>
                </ul>
              </div>
            
              <div class="js-accordion  u02__column">
                
                <h4 class="u02__column__parent  twtr-type--bold-14  twtr-color--gray-0 is-opaque">
                  Developer resources
                  <span class="u02__icon  twtr-dtc-fill--extra-light-gray  twtr-hidden--md  twtr-hidden--lg  twtr-hidden--xl">
                    <svg xmlns="http://www.w3.org/2000/svg" width="17" height="9.5" viewbox="0 0 17 9.5" aria-hidden="true" focusable="false" role="none" class="twtr-icon--sm"> 
     <path d="M16.707.293c-.39-.39-1.023-.39-1.414 0L8.5 7.086 1.707.293c-.39-.39-1.023-.39-1.414 0s-.39 1.023 0 1.414l7.5 7.5c.195.195.45.293.707.293s.512-.098.707-.293l7.5-7.5c.39-.39.39-1.023 0-1.414z" /> 
    </svg>
                  </span>
                </h4>
                
                <ul class="u02__column__list">
                  <li class="u02__link-item">
                    <a href="https://developer.twitter.com/en" title="Developer home" class="u02__link  twtr-type--roman-14 twtr-color--gray-0  is-opaque  has-hover">
                      Developer home
                    </a>
                  </li>
                
                  <li class="u02__link-item">
                    <a href="https://developer.twitter.com/en/docs" title="Documentation" class="u02__link  twtr-type--roman-14 twtr-color--gray-0  is-opaque  has-hover">
                      Documentation
                    </a>
                  </li>
                
                  <li class="u02__link-item">
                    <a href="https://twittercommunity.com/" title="Forums" target="_blank" class="u02__link  twtr-type--roman-14 twtr-color--gray-0  is-opaque  has-hover">
                      Forums
                    </a>
                  </li>
                
                  <li class="u02__link-item">
                    <a href="https://developer.twitter.com/en/community" title="Communities" class="u02__link  twtr-type--roman-14 twtr-color--gray-0  is-opaque  has-hover">
                      Communities
                    </a>
                  </li>
                
                  <li class="u02__link-item">
                    <a href="https://blog.twitter.com/developer/" title="Developer blog" target="_blank" class="u02__link  twtr-type--roman-14 twtr-color--gray-0  is-opaque  has-hover">
                      Developer blog
                    </a>
                  </li>
                
                  <li class="u02__link-item">
                    <a href="https://blog.twitter.com/engineering/en_us.html" title="Engineering blog" target="_blank" class="u02__link  twtr-type--roman-14 twtr-color--gray-0  is-opaque  has-hover">
                      Engineering blog
                    </a>
                  </li>
                
                  <li class="u02__link-item">
                    <a href="https://developer.twitter.com/en/more/developer-terms" title="Developer terms" class="u02__link  twtr-type--roman-14 twtr-color--gray-0  is-opaque  has-hover">
                      Developer terms
                    </a>
                  </li>
                </ul>
              </div>
            
              <div class="js-accordion  u02__column">
                
                <h4 class="u02__column__parent  twtr-type--bold-14  twtr-color--gray-0 is-opaque">
                  Business resources
                  <span class="u02__icon  twtr-dtc-fill--extra-light-gray  twtr-hidden--md  twtr-hidden--lg  twtr-hidden--xl">
                    <svg xmlns="http://www.w3.org/2000/svg" width="17" height="9.5" viewbox="0 0 17 9.5" aria-hidden="true" focusable="false" role="none" class="twtr-icon--sm"> 
     <path d="M16.707.293c-.39-.39-1.023-.39-1.414 0L8.5 7.086 1.707.293c-.39-.39-1.023-.39-1.414 0s-.39 1.023 0 1.414l7.5 7.5c.195.195.45.293.707.293s.512-.098.707-.293l7.5-7.5c.39-.39.39-1.023 0-1.414z" /> 
    </svg>
                  </span>
                </h4>
                
                <ul class="u02__column__list">
                  <li class="u02__link-item">
                    <a href="https://business.twitter.com/en/advertising.html" title="Advertise" target="_blank" class="u02__link  twtr-type--roman-14 twtr-color--gray-0  is-opaque  has-hover">
                      Advertise
                    </a>
                  </li>
                
                  <li class="u02__link-item">
                    <a href="https://business.twitter.com/" title="X for business" target="_blank" class="u02__link  twtr-type--roman-14 twtr-color--gray-0  is-opaque  has-hover">
                      X for business
                    </a>
                  </li>
                
                  <li class="u02__link-item">
                    <a href="https://business.twitter.com/en/resources.html" title="Resources and guides" target="_blank" class="u02__link  twtr-type--roman-14 twtr-color--gray-0  is-opaque  has-hover">
                      Resources and guides
                    </a>
                  </li>
                
                  <li class="u02__link-item">
                    <a href="https://marketing.twitter.com/" title="X for marketers" target="_blank" class="u02__link  twtr-type--roman-14 twtr-color--gray-0  is-opaque  has-hover">
                      X for marketers
                    </a>
                  </li>
                
                  <li class="u02__link-item">
                    <a href="https://marketing.twitter.com/en/insights" title="Marketing insights" target="_blank" class="u02__link  twtr-type--roman-14 twtr-color--gray-0  is-opaque  has-hover">
                      Marketing insights
                    </a>
                  </li>
                
                  <li class="u02__link-item">
                    <a href="https://marketing.twitter.com/en/success-stories" title="Brand inspiration" target="_blank" class="u02__link  twtr-type--roman-14 twtr-color--gray-0  is-opaque  has-hover">
                      Brand inspiration
                    </a>
                  </li>
                
                  <li class="u02__link-item">
                    <a href="https://www.xadsacademy.com/sl/5c3e29ed" title="X Ads Academy" target="_blank" class="u02__link  twtr-type--roman-14 twtr-color--gray-0  is-opaque  has-hover">
                      X Ads Academy
                    </a>
                  </li>
                </ul>
              </div>
            </div>
          </div>
    
          <div class="u02__row  u02__legal  twtr-spacing--pt-500">
            <div class="twtr-grid  u02__twtr-grid">
              <div class="u02__column  u02__column--bottom">
                <span class="u02__column-footnote  twtr-type--roman-14  twtr-color--gray-0  is-opaque">
                  &copy; 2024 X Corp.
                </span>
              </div>
              
                <div class="u02__column  u02__column--bottom">
                  <a href="https://help.twitter.com/rules-and-policies/twitter-cookies" title="Cookies" target="_blank" class="u02__column-footnote  twtr-type--roman-14  twtr-color--gray-0  is-opaque has-hover">
                    Cookies
                  </a>
                </div>
              
                <div class="u02__column  u02__column--bottom">
                  <a href="https://twitter.com/privacy" title="Privacy" target="_blank" class="u02__column-footnote  twtr-type--roman-14  twtr-color--gray-0  is-opaque has-hover">
                    Privacy
                  </a>
                </div>
              
                <div class="u02__column  u02__column--bottom">
                  <a href="https://twitter.com/tos" title="Terms and conditions" target="_blank" class="u02__column-footnote  twtr-type--roman-14  twtr-color--gray-0  is-opaque has-hover">
                    Terms and conditions
                  </a>
                </div>
              
              <div class="u02__column  u02__column--bottom  u08__language-selector">
                
              </div>
            </div>
          </div>
        </div>
      </div>
    </footer>
    </div>
    
      
    
    
    
    <script async src="https://platform.twitter.com/widgets.js"></script>
    
    
    <div id="page-props" data-page-title="GET friends/ids" data-page-path="/content/developer-twitter/en/docs/twitter-api/v1/accounts-and-users/follow-search-get-users/api-reference/get-friends-ids">
    </div>
    
    
    <script type="text/javascript" src="https://cdn.cms-twdigitalassets.com/etc/designs/developer2-twitter/public/js/core.js.twhash.a.f.fed30134cac6410d0e4ae9b5a78416a3.js"></script>
    <script type="text/javascript" src="https://cdn.cms-twdigitalassets.com/etc/designs/developer2-twitter/public/js/project.js.twhash.a.f.6133a61ea33990d0e3ab130309927d99.js"></script>
    
    
    
        
    <script src="https://cdn.cms-twdigitalassets.com/etc/designs/developer-twitter/clientlib-twtr-profile-adapter.min.twhash.a.cl.c3b119a4cc2249caed364b89790624a4.js"></script>
    
    
    
    
    
    
    
    
    
    
    
    
      <div id="u12" class="u12-data-protection-notice">
    
        
        <div class="u12-data-protection-notice__item  u12-data-protection-notice__item--b is-hidden">
          
    
      
      
    
      <div class="u12b-opt-in" id="u12b" data-cname="twtr_pixel_opt_in">
        <div class="u12b-opt-in__item  u12-data-protection-notice__notice">
          <div class="u12b-opt-in__content">
            <div class="u12b-opt-in__copy">
              <p class="mtc-font  twtr-font">
                <b>Did someone say … cookies?</b><br /><br />
    
      X and its partners use cookies to provide you with a better, safer and
      faster service and to support our business. Some cookies are necessary to use
      our services, improve our services, and make sure they work properly.
      <a href="https://help.twitter.com/rules-and-policies/twitter-cookies" target="_blank">Show more about your choices</a>.
    
    
              </p>
            </div>
            <div class="u12b-opt-in__choice twtr-scribe-clicks-within">
              <ul class="u12b-opt-in__choice-list">
                <li class="u12b-opt-in__choice-list-item">
                  <button class="u12b-opt-in__button  is-blue  u12b-opt-in__button--accept  mtc-font  twtr-font  js-accept twtr-scribe-clicks" data-twtr-scribe-section="u12-data-protection-notice" data-twtr-scribe-element="4EBU" data-twtr-scribe-component="data-protection-notice">
                      Accept all cookies
                  </button>
                </li>
                <li class="u12b-opt-in__choice-list-item">
                  <button class="u12b-opt-in__button  is-naked  u12b-opt-in__button--decline  mtc-font  twtr-font  js-decline twtr-scribe-clicks" data-twtr-scribe-section="u12-data-protection-notice" data-twtr-scribe-element="4EBU" data-twtr-scribe-component="data-protection-notice">
                      Refuse non-essential cookies
                  </button>
                </li>
              </ul>
            </div>
          </div>
        </div>
      </div>
    
        </div>
    
      </div>
    
      
      
        
    <link rel="stylesheet" href="https://cdn.cms-twdigitalassets.com/etc/designs/common-twitter/clientlib-u12-data-protection-notice.min.twhash.a.cl.8d93205985d36dea4268f79e373e2b02.css" type="text/css">
    <script src="https://cdn.cms-twdigitalassets.com/etc/designs/common-twitter/clientlib-promise-polyfill.min.twhash.a.cl.678c3c47bfcf62393184734a7204fcdf.js"></script>
    <script src="https://cdn.cms-twdigitalassets.com/etc/designs/common-twitter/clientlib-twtr-profile-adapter.min.twhash.a.cl.2f6a2e41ae41c33aba9f8a7dcf876eb6.js"></script>
    <script src="https://cdn.cms-twdigitalassets.com/etc/designs/common-twitter/clientlib-u12-data-protection-notice.min.twhash.a.cl.07841e68cd67e37f7c17e3a5c3c32e2d.js"></script>