turbot/mastodon
steampipe plugin install mastodon

Table: mastodon_my_list - Query Mastodon Lists using SQL

Mastodon Lists is a feature within the Mastodon social network that allows users to create custom lists of accounts. These lists can be used to filter the content visible in a user's feed, providing a more personalized experience. Mastodon Lists are user-specific and can include any accounts the user follows.

Table Usage Guide

The mastodon_my_list table provides insights into user-created lists within the Mastodon social network. As a social media analyst, explore list-specific details through this table, including list metadata and associated accounts. Utilize it to uncover information about lists, such as their names, IDs, and the accounts they include, helping you understand user behavior and preferences on Mastodon.

Examples

List my lists

Explore your personalized categories on Mastodon by listing them out. This can help you manage and organize your content more effectively.

select
id,
title
from
mastodon_my_list;
select
id,
title
from
mastodon_my_list;

Show lists associated with toot authors

Explore the connections between social media authors and their associated lists to gain insights into their online activity and influence. This can be useful for understanding the reach and impact of specific users, which can inform strategic decisions for marketing or communication initiatives.

with account_ids as (
select
account ->> 'id' as id
from
mastodon_toot_home
limit
100
)
select
distinct l.title,
a.display_name,
a.server,
a.followers_count,
a.following_count
from
mastodon_my_list l
join mastodon_list_account a on l.id = a.list_id
join account_ids i on i.id = a.id;

Schema for mastodon_my_list

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form.
account_idtext=, !=, ~~, ~~*, !~~, !~~*The account ID.
idtext=ID of the list.
sp_connection_nametext=, !=, ~~, ~~*, !~~, !~~*Steampipe connection name.
sp_ctxjsonbSteampipe context in JSON form.
titletextTitle of the list.

Export

This table is available as a standalone Exporter CLI. Steampipe exporters are stand-alone binaries that allow you to extract data using Steampipe plugins without a database.

You can download the tarball for your platform from the Releases page, but it is simplest to install them with the steampipe_export_installer.sh script:

/bin/sh -c "$(curl -fsSL https://steampipe.io/install/export.sh)" -- mastodon

You can pass the configuration to the command with the --config argument:

steampipe_export_mastodon --config '<your_config>' mastodon_my_list