fetch_twitter(tweet_ids: category|number, {
    "param": value,
    ...
}) -> (
	user_created_at: date,
	user_description: text,
	user_favourites_count: number,
	user_followers_count: number,
	user_following_count: number,
	user_listed_count: number,
	user_profile_image_url_https: url,
	user_protected: boolean,
	user_tweets_count: number,
	user_profile_url: url,
	user_verified: boolean,
	user_location: category,
	lat: number,
	long: number,
	retweeted: boolean,
	favorited: boolean,
	source: category
)

In addition to author information also adds the location the tweet was send from (if available), and indicates whether a tweet was retweeted or favourited at least once. See below for a detailed list of the enrichment columns.

???+ info “API integration” To use this step you will need to create an app associated to your Twitter account, and obtain four items: the consumer_key, the consumer_secret, the token and the token_secret.

To do so you can follow the steps here, and then add them to a Graphext integration.

fetch_twitter(tweet_ids: category|number, {
    "param": value,
    ...
}) -> (
	user_created_at: date,
	user_description: text,
	user_favourites_count: number,
	user_followers_count: number,
	user_following_count: number,
	user_listed_count: number,
	user_profile_image_url_https: url,
	user_protected: boolean,
	user_tweets_count: number,
	user_profile_url: url,
	user_verified: boolean,
	user_location: category,
	lat: number,
	long: number,
	retweeted: boolean,
	favorited: boolean,
	source: category
)
integration
string
required

ID of the integration you’d like to use.