# Twitter Card Extractor for Media Sites

**Use case:** 

Extract Twitter Cards from top media sites like Wired and Vice. Get valuable metadata in CSV or JSON format for analysis.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.wired.com/"
    },
    {
      "url": "https://www.vice.com/en/"
    },
    {
      "url": "https://www.polygon.com/"
    }
  ],
  "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.