Exporting to CSV

The CSV export is for when the PDF isn’t the right format — when you want to filter, pivot, sort, or paste into another tool. CSVs are clean, machine-readable, and one row per product.

In this guide:

  • Trigger a CSV export
  • What columns are in it
  • Cost (same as PDF)
  • File expiry (same as PDF)

Trigger a CSV export

Same path as PDF: top-right → Export → CSV. Confirm credit charge. Job enqueues.

Export to PDF for the full mechanics; CSVs follow the same lifecycle.

What’s in the CSV

One row per product. Columns (in order):

ColumnNotes
asinAmazon Standard Identification Number.
marketplaceUS / UK / DE / etc.
rank_in_searchWhere the product placed in the SellerScore-sorted list (1 = top).
titleProduct title. Quoted; commas escaped.
brandProduct brand.
image_urlDirect URL to the product image (Cloudinary-served).
amazon_urlDirect URL to the Amazon listing.
sell_priceNumeric.
currencyISO 4217 (USD, GBP, EUR, etc.).
bsrBest Sellers Rank at search time.
bsr_categoryAmazon’s rank category.
review_countInteger.
avg_ratingFloat, 1.0–5.0.
seller_scoreComposite, 0–100.
score_demandSub-score, 0–100.
score_marginSub-score, 0–100.
score_competitionSub-score, 0–100.
score_trendSub-score, 0–100.
score_seasonalitySub-score, 0–100.
score_cross_platformSub-score, 0–100.
data_quality0–100.
data_warningsPipe-separated list of warning codes.
cogs_estimateNumeric.
cogs_sourcebenchmark or crawlee.
fba_feeNumeric.
referral_feeNumeric.
net_profit_per_unitNumeric.
net_margin_pct0.0–1.0 (multiply by 100 for percent).
score_reasoningThe Claude-generated paragraph. Quoted; newlines escaped.
ai_brief_summaryA short version of the AI brief (the full brief is too long for CSV).

Encoding

UTF-8, BOM-prefixed for Excel compatibility. Comma-separated. Quotes around any cell containing commas or newlines.

If your downstream tool prefers a different delimiter (TSV, semicolon-separated for some EU locales), import the CSV into a tool that lets you re-export. Native delimiter options are on the roadmap.

What’s NOT in the CSV

  • Product images (just URLs).
  • The AI brief in full (only a summary; the full brief is too long for a cell).
  • Search metadata (the search keyword, filters, weights). The CSV is per-product, not per-search.

If you need a search-level summary, use the PDF — it has a cover page with that context.

Cost & expiry

Same as PDF: 1 credit, 1-hour download window. → Export to PDF for details.

Workflow patterns

Spreadsheet model

Open in Excel / Google Sheets → add columns for your COGS, freight estimates, expected ad spend → recompute net margin per your assumptions.

Supplier outreach

Filter by SellerScore > 70, sort by net profit per unit, copy ASINs into a supplier email. The CSV is the source-of-truth for the shortlist.

Cross-search comparison

Export multiple searches, concatenate in a spreadsheet, sort by SellerScore across all of them. Useful when comparing categories.

Pipeline integration

For developers, the CSV is the easiest path to ingest into your own tools (BI, CRM, project tracker). The schema is stable; if you script against it, columns won’t shift unexpectedly.

Related articles