Sample dataset

Amazon Product Data Sample.

Inspect the normalized Amazon product data shape used by ParseShelf exports.

Output previewAmazon product record · 12 fields shown
ProductAvailabilityPrice
La Roche-Posay Cicaplast Balm B5 CreamB0060OUV5Y · 4.7 · 20,743 reviews
In stock$18.99
Maybelline Sky High MascaraB08H3JPH74 · 4.5 · 181,639 reviews
In stock$10.82
Aquaphor Healing OintmentB0107QPFBU · 4.8 · 138,730 reviews
In stock$12.79
Dove Sensitive Skin Body WashB00SK71SAG · 4.8 · 62,276 reviews
In stock$10.97
{
  "status": "succeeded",
  "marketplace": "amazon",
  "input_type": "product_url_list",
  "mode": "full_product",
  "delivered_records": 1,
  "charged_units": 5,
  "sample": {
    "product_id": "B0060OUV5Y",
    "title": "La Roche-Posay Cicaplast Balm B5 Cream",
    "brand": "La Roche-Posay",
    "price": 18.99,
    "currency": "USD",
    "ASIN": "available when Amazon renders this field",
    "rating": 4.7,
    "reviews_count": 20743,
    "stock": "In Stock",
    "images": [
      "https://m.media-amazon.com/images/I/713Ca5aXpyL._SL1500_.jpg"
    ],
    "category_path": [
      "Beauty & Personal Care",
      "Skin Care",
      "Face",
      "Creams"
    ],
    "product_url": "https://www.amazon.com/dp/B0060OUV5Y"
  },
  "exports": {
    "jsonl": "/api/v1/jobs/{job_id}/download/jsonl",
    "csv": "/api/v1/jobs/{job_id}/download/csv",
    "xlsx": "/api/v1/jobs/{job_id}/download/xlsx",
    "md": "/api/v1/jobs/{job_id}/download/md"
  }
}
curl -X POST https://parseshelf.com/api/v1/jobs \
  -H 'Authorization: Bearer $PARSESHELF_KEY' \
  -H 'Content-Type: application/json' \
  -d '{"marketplace":"amazon","input_type":"product_url_list","input_value":"https://www.amazon.com/dp/B0060OUV5Y","mode":"full_product","target_count":20}'
Example output · only delivered rows spend unitsCSV · XLSX · JSONL · Markdown
Search intent

Terms this page answers.

Amazon product data sampleAmazon scraper sample dataAmazon JSONL sampleAmazon CSV sample
Guide

How to use this ParseShelf resource.

What is in the sample

The sample shows the type of normalized rows ParseShelf produces for Amazon product and listing workflows. It includes product_id, asin, title, brand, price, currency, rating, reviews_count, stock_status, category_path and product_url.

The fields are intentionally practical. They represent the columns most ecommerce teams need for product research, competitor tracking, catalog QA and pricing reports.

How to read it

JSONL is best for developers because each line is an independent product record. CSV is best for analysts because it opens cleanly in spreadsheets and BI tools.

A real completed job can include more fields when Amazon renders them, including images, bullets, product_details, variants, seller signals, review summaries and source positions.

How to use it in evaluation

Before buying an Amazon data tool, compare the sample schema with your downstream needs. If your team needs rank tracking, make sure source_url and position exist. If your team needs catalog enrichment, prioritize product detail fields.

Use the benchmark guide to turn that schema review into a repeatable vendor evaluation.

Production checklist

Start with one small input and compare the delivered fields with the report, catalog or pipeline you actually need.

Keep the job ID, source URL, mode and run date with downstream exports so operators and developers can audit the same result.

Related pages

Continue the Amazon data workflow.

FAQ

Amazon Product Data Sample questions.

Can I download the sample?
Yes. The generated frontend includes JSONL and CSV sample files under /samples/.
Does every job include every field?
No. Fields depend on Amazon page type and what Amazon renders, but the output schema remains normalized.
Which sample format should I inspect?
Use JSONL for pipelines and CSV for spreadsheets.