# Structured Data Extractor for Selected URLs

**Use case:** 

Get structured JSON with titles, descriptions, images, and more from websites. Extract details from URLs like apify.com, openai.com, and stripe.com.

## Input

```json
{
  "urls": [
    "https://apify.com",
    "https://openai.com",
    "https://stripe.com",
    "https://github.com"
  ],
  "fields": [],
  "maxConcurrency": 4
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "link"
  },
  "found": {
    "label": "Found",
    "format": "boolean"
  },
  "title": {
    "label": "Title",
    "format": "text"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "jsonLd": {
    "label": "JSON-LD",
    "format": "array"
  },
  "headings": {
    "label": "Headings",
    "format": "array"
  },
  "emails": {
    "label": "Emails",
    "format": "array"
  },
  "partial": {
    "label": "Partial read",
    "format": "boolean"
  },
  "summary": {
    "label": "Summary",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [Structured Data Extractor](https://apify.com/zinin/structured-extract) with a specific input configuration. Visit the [Actor detail page](https://apify.com/zinin/structured-extract) to learn more, explore other use cases, and run it yourself.