Individual Casts

Description

This dataset provides the individual casts in the Farcaster Social Protocol that are sent between 01.01.2024 and 01.03.2024. fid is the unique identifier in the Farcaster protocol and can be used to connect users with their casts.

Schema

  • created_at - timestamp of the link creation

  • id - id of the link creation

  • fid - fid of the link creator

  • hash - hash of the link execution

  • text - text content of the cast

  • embeds - embed content of the cast

  • mentions - mentioned content of the cast

  • parent_fid - fid of the parent cast

  • parent_url - url of the parent cast

  • parent_hash - hash of the parent cast

  • root_parent_url - url of the root cast

  • root_parent_hash - hash of the root cast

  • mentions_positions - positions of the mentions in the cast text

Potential Use Cases

  • Profanity Checker

  • Sentiment Analysis

Use example

from giza_datasets import DatasetsLoader

# Usage example:
loader = DatasetsLoader()
df = loader.load('farcaster-casts')

Last updated