tweets
3 rows where "created_at" is on date 2021-11-25 and favorite_count = 3
This data as json, CSV (advanced)
Suggested facets: created_at (date)
id ▼ | user | created_at | full_text | retweeted_status | quoted_status | place | source | truncated | display_text_range | in_reply_to_status_id | in_reply_to_user_id | in_reply_to_screen_name | geo | coordinates | contributors | is_quote_status | retweet_count | favorite_count | favorited | retweeted | possibly_sensitive | lang | scopes |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
1463717308505808898 | swyx 33521530 | 2021-11-25T03:52:55+00:00 | @NHeinDev @developer_dao what kind of projects? | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [25, 47] | 1463690278468997121 | 1333059155154907138 | NHeinDev | 0 | 0 | 3 | 0 | 0 | en | ||||||||
1463723354813186057 | swyx 33521530 | 2021-11-25T04:16:57+00:00 | @dhaiwat10 @NHeinDev @developer_dao appreciated :) will keep a look out for that newsletter. feeling old and out if touch | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [36, 121] | 1463718674162880513 | 1025757442594889734 | dhaiwat10 | 0 | 0 | 3 | 0 | 0 | en | ||||||||
1463960690759135242 | swyx 33521530 | 2021-11-25T20:00:02+00:00 | @chrisdhanaraj @supabase something ive been saying for our docs at Temporal is “every click has a cost. assume you lose 50% of readers every time you make them navigate to a different page” | Twitter for iPhone 95f3aaaddaa45937ac94765e0ddb68ba2be92d20 | 0 | [25, 189] | 1463706983366684676 | 25361025 | chrisdhanaraj | 0 | 0 | 3 | 0 | 0 | en |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE [tweets] ( [id] INTEGER PRIMARY KEY, [user] INTEGER REFERENCES [users]([id]), [created_at] TEXT, [full_text] TEXT, [retweeted_status] INTEGER, [quoted_status] INTEGER, [place] TEXT REFERENCES [places]([id]), [source] TEXT REFERENCES [sources]([id]), [truncated] INTEGER, [display_text_range] TEXT, [in_reply_to_status_id] INTEGER, [in_reply_to_user_id] INTEGER, [in_reply_to_screen_name] TEXT, [geo] TEXT, [coordinates] TEXT, [contributors] TEXT, [is_quote_status] INTEGER, [retweet_count] INTEGER, [favorite_count] INTEGER, [favorited] INTEGER, [retweeted] INTEGER, [possibly_sensitive] INTEGER, [lang] TEXT, [scopes] TEXT, FOREIGN KEY([retweeted_status]) REFERENCES [tweets]([id]), FOREIGN KEY([quoted_status]) REFERENCES [tweets]([id]) ); CREATE INDEX [idx_tweets_source] ON [tweets] ([source]);