get_social returns a list containing several tibbles that provide social details for the specified coin.

get_social(id)

Arguments

id

integer. Coin id. Can be retreived using get_coins.

Value

A list with the following structure:

  • similar_items A tibble outlining coins similar to the coin provided.

  • cryptopian_followers A tibble containing details about followers of the provided coin on cryptocompare.

  • page_views A tibble outlining number of page views for the coin on different pages.

  • crypto_compare_summary Aggergated cryptocompare data for the given coin.

  • social_media A list containing the following three elements:

    • Twitter A tibble containing Twitter data.

    • Reddit A tibble containing Reddit data.

    • Facebook A tibble containing Facebook data.

  • repo_summary A tibble with details about various code repositories associated with the given coin.

References

https://www.cryptocompare.com/api#-api-data-socialstats-

Examples

# NOT RUN {
# Get bitcoin social data
get_social(1182)
# }