Data source: simonw/russian-ira-facebook-ads-datasette
This data as JSON, CSV (advanced)
id | img | targeting | impressions | clicks | url | text | spend_usd | spend_amount | spend_currency | created | ended |
---|---|---|---|---|---|---|---|---|---|---|---|
1871 | ![]() |
location:United States, interests:Imgur, interests:CollegeHumor, interests:Reddit, age:18 - 50, language:English (US), placements:Instagram Feed | 3330 | 25 | https://www.instagram.Com/nuts.news/ | Hello friends! Enjoy us daily! All the funniest memes and actual news. Click Learn More! Nuts News ( @nuts.news) Funnylnst | 15.3208 | 957.55 | RUB | 2015-12-01T04:32:19-08:00 | |
1874 | ![]() |
location:United States, interests:CollegeHumor, interests:Government, interests:Politics and social issues, age:18 - 65+, language:English (US), placements:Instagram Feed | 11932 | 45 | https://instagram.Com/nuts.news/ | Funnylnst | 22.68128 | 1417.58 | RUB | 2015-11-03T02:32:45-08:00 |
CREATE VIEW display_ads AS select ads.id, case when image is not null then json_object("img_src", "https://raw.githubusercontent.com/umd-mith/irads/master/site/" || image, "width", 200) else "no image" end as img, json_group_array( json_object( "label", targets.name, "href", "/russian-ads/display_ads?_target=" || urllib_quote_plus(targets.id) ) ) as targeting, ads.impressions, ads.clicks, ads.url, ads.text, cast(case when ads.spend_currency == "RUB" then ads.spend_amount * 0.016 else ads.spend_amount end as float) as spend_usd, ads.spend_amount, ads.spend_currency, ads.created, ads.ended from ads join ad_targets on ads.id = ad_targets.ad_id join targets on ad_targets.target_id = targets.id group by ads.id order by ads.id