List tweets that quote a tweet, by permalink or id.
Endpoint
/v1/twitter/tweets/quotes
Query
Tweet permalink or numeric id.
Opaque pagination cursor returned by a previous response.
const response = await fetch( "https://api.socialfetch.dev/v1/twitter/tweets/quotes?url=https://x.com/jack/status/20", { headers: { "x-api-key": "YOUR_API_KEY" } } ); const data = await response.json(); console.log(data);