Why Tweet’s referenced_tweets is Array?
I think that Tweet can have only one referenced_tweets.

It’s possible to have multiple ones, for example, when you have both a quote tweet and a reply: https://twitter.com/TwitterDev/status/1456337867748220934

"referenced_tweets": [
        {
          "type": "quoted",
          "id": "1455953449422516226"
        },
        {
          "type": "replied_to",
          "id": "1456337866347343883"
        }
      ]
2 Likes

thanks for example!

1 Like