# E-commerce JSON-LD Schema Extractor

**Use case:** 

Extract Schema.org structured data from e-commerce product URLs. Receive structured data in CSV or JSON formats for analysis.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.amazon.com/dp/B09G9HD1Q3"
    },
    {
      "url": "https://www.bestbuy.com/site/apple-airpods-pro/6447382.p"
    },
    {
      "url": "https://www.walmart.com/ip/item/1376378780"
    }
  ],
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "string"
  },
  "title": {
    "label": "Page title",
    "format": "string"
  },
  "metaDescription": {
    "label": "Meta description",
    "format": "string"
  },
  "canonical": {
    "label": "Canonical URL",
    "format": "string"
  },
  "schemaTypes": {
    "label": "Schema types",
    "format": "array"
  },
  "jsonLd": {
    "label": "JSON-LD",
    "format": "array"
  },
  "openGraph": {
    "label": "Open Graph",
    "format": "object"
  },
  "twitter": {
    "label": "Twitter Card",
    "format": "object"
  }
}
```

## About this Actor

This example demonstrates how to use [JSON-LD Schema & Meta Tag Extractor](https://apify.com/logiover/json-ld-schema-meta-tag-extractor) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/json-ld-schema-meta-tag-extractor) to learn more, explore other use cases, and run it yourself.