CSV/XLSX Export Fields Explanation

EN
TTRepost Engineering Team
5 Min Read

Welcome to the official TTRepost Export Fields Explanation. When you download data using our Comment Exporter, you receive a dense spreadsheet of metadata. This guide serves as your comprehensive data dictionary.

Summary

This export fields explanation details the data types and definitions for all columns provided in our CSV, Excel, and JSON outputs, including critical fields like cid, digg_count, and author_unique_id.

Comment Metadata Fields

Field NameData TypeDescription
cidStringThe unique identifier for the comment. Essential for deduplication and database indexing.
textStringThe raw textual content of the user's comment, cleaned of breaking line characters.
create_timeIntegerA Unix epoch timestamp (in seconds) indicating the exact moment the comment was published on the platform.
digg_countIntegerThe total number of likes this comment received. Highly relevant for sorting engagement metrics.
reply_comment_totalIntegerThe amount of direct replies in the thread nested under this specific parent comment.
is_author_diggedBooleanA TRUE/FALSE flag showing whether the original video creator liked this specific comment.

User Profile Fields

Field NameData TypeDescription
author_uidStringThe unique numerical internal ID of the user who posted the comment. (e.g., 68482910...).
author_unique_idStringThe public handle of the user, equivalent to their @username. Used for tagging or profile lookup.
author_nicknameStringThe customizable display name of the commenter, which may contain emojis or special characters.

Deep Dive into the Export Fields Explanation

What Is This Export Fields Explanation?

When you process data through TTRepost, you are converting unstructured social media interactions into structured tabular data. This export fields explanation is essentially our official data dictionary. It defines the schema of the CSV and XLSX files generated by our extraction servers. Without an export fields explanation, columns like author_uid or cid might seem like arbitrary strings of numbers. By providing this export fields explanation, we empower your data science and marketing teams to build robust analytics dashboards without guessing what each column represents.

Why Is the Export Fields Explanation Important?

Data integrity relies on accurate interpretation. If you misinterpret a Unix timestamp because you didn't consult the export fields explanation, your temporal analytics will be entirely incorrect. Furthermore, this export fields explanation clarifies the difference between author_unique_id (the @handle) and author_nickname (the display name). Knowing this distinction, as outlined in the export fields explanation, is critical if you are running automated giveaway picker scripts or attempting to match user data against your existing CRM records.

Who Needs to Read This Export Fields Explanation?

This export fields explanation is written primarily for data analysts, software engineers, and performance marketers. If you are a developer importing our CSV data into a Python Pandas DataFrame or a PostgreSQL database, this export fields explanation provides the necessary data types (String, Integer, Boolean) to establish your database schema. If you are a marketer using Microsoft Excel, reading the export fields explanation ensures you know which column to sort by when trying to find the most "liked" comment (digg_count).

When Should You Reference the Export Fields Explanation?

You should review this export fields explanation before you execute your first large-scale export. Familiarizing yourself with the export fields explanation beforehand prevents workflow bottlenecks. Additionally, you should refer back to this export fields explanation if your Excel software starts truncating large ID numbers into scientific notation (e.g., 6.84E+18); this export fields explanation reminds you that IDs should be treated as Strings, not numerical values, during the import wizard process.

Where Does the Data in This Export Fields Explanation Come From?

Every field detailed in this export fields explanation is sourced directly from publicly accessible web endpoints. Our scrapers do not invent these schemas; we simply clean, format, and organize the raw JSON responses into a readable format. The export fields explanation maps our standardized output to the original architecture used by the social media platform itself, ensuring high fidelity.

How to Handle Formatting Issues Described in the Export Fields Explanation?

As noted in the export fields explanation, spreadsheet software like Excel and Apple Numbers often aggressively auto-format data.

  1. Scientific Notation Bug: Because cid (Comment ID) is a 19-digit number, Excel will round it if imported as a number. The export fields explanation strongly advises using the "Data > From Text/CSV" import wizard and explicitly defining the ID columns as Text.
  2. Encoding: Always open files using UTF-8 encoding. As the export fields explanation notes, author_nickname often contains emojis. If you use ANSI or ASCII, these characters will break.

Ready to Use the Data?

Now that you understand the export fields explanation, start extracting high-quality data.

Frequently Asked Questions

This export fields explanation serves as a technical dictionary to help data analysts understand the columns in our CSV/Excel exports.