@sfwtrades ยท archive API

๐Ÿ” Tweet lookup API

JSON for every captured tweet from @sfwtrades. Access-gated โ€” send HTTP Basic auth (ask the owner for a credential).

Look up one tweet
GET https://tweetlens.com/sfwtrades/api/tweet/<tweet_id>.json
โ†’ { tweet, quoted, reply_parent }  (full node + resolved context)

# example (Basic auth required)
curl -u USER:PASS https://tweetlens.com/sfwtrades/api/tweet/2065470431037948239.json
List all tweet ids
GET https://tweetlens.com/sfwtrades/api/index.json   โ†’ { handle, count, ids:[โ€ฆ] }
GET https://tweetlens.com/sfwtrades/api/tweets.json  โ†’ [{ id, date, type, text, url }]  (slim, all tweets)
# both require:  -u USER:PASS

Fields per tweet: id, date, author, handle, text, hashtags[], conv, reply_id, quote_id, likes, retweets, replies, quotes, views, bookmarks, media[], type, url.