> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dune.com/llms.txt
> Use this file to discover all available pages before exploring further.

# dune.neynar.dataset_farcaster_user_data

> Farcaster user data — profile fields like bio, display name, and avatar.

export const TableSample = ({tableName, tableSchema}) => <>
    <div className="hidden dark:block">
      <iframe src={`https://dune.com/embeds/3419983/5785629?table_schema_t6f0df=${tableSchema}&table_name_t6f0df=${tableName}&darkMode=true`} style={{
  width: '100%',
  height: '500px',
  border: 'none',
  marginTop: '10px'
}} />
    </div>
    <div className="dark:hidden">
      <iframe src={`https://dune.com/embeds/3419983/5785629?table_schema_t6f0df=${tableSchema}&table_name_t6f0df=${tableName}`} style={{
  width: '100%',
  height: '500px',
  border: 'none',
  marginTop: '10px'
}} />
    </div>
  </>;

## Table description

The `dune.neynar.dataset_farcaster_user_data` table contains user profile data on the Farcaster protocol. Each row represents a single key-value pair of user information, such as display name, bio, or avatar URL. Join with the fids or fnames table for complete user profiles.

## Table Schema

| Column Name  | Type        | Description                                                                              |
| ------------ | ----------- | ---------------------------------------------------------------------------------------- |
| `id`         | `BIGINT`    | Auto-incrementing row identifier                                                         |
| `created_at` | `TIMESTAMP` | Timestamp when the record was created in the database                                    |
| `updated_at` | `TIMESTAMP` | Timestamp when the record was last updated in the database                               |
| `deleted_at` | `TIMESTAMP` | Timestamp when the data was removed on the Farcaster protocol                            |
| `timestamp`  | `TIMESTAMP` | Timestamp when the data was set on the Farcaster protocol                                |
| `fid`        | `BIGINT`    | Farcaster user ID the data belongs to                                                    |
| `hash`       | `VARBINARY` | Unique hash of the user data message                                                     |
| `type`       | `BIGINT`    | Type of user data (1 = pfp URL, 2 = display name, 3 = bio, 5 = URL, 6 = preferred fname) |
| `value`      | `VARCHAR`   | The value of the user data field                                                         |

## Table Sample

<TableSample tableSchema="dune.neynar" tableName="dataset_farcaster_user_data" />
