# OpenGraph Tag Extractor for Nonprofit Websites

**Use case:** 

Extract OpenGraph and Twitter Card meta tags from nonprofit sites. Get key data like titles, images, and structured data for social media previews.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://www.redcross.org"
    },
    {
      "url": "https://www.unicef.org"
    },
    {
      "url": "https://www.savethechildren.org"
    }
  ],
  "includeOG": true,
  "includeTwitter": true,
  "includeStructured": true,
  "includeBasic": true,
  "maxUrls": 50,
  "proxyConfiguration": {
    "useApifyProxy": true
  }
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "link"
  },
  "statusCode": {
    "label": "Status Code",
    "format": "number"
  },
  "ogTitle": {
    "label": "OG Title",
    "format": "text"
  },
  "ogImage": {
    "label": "OG Image",
    "format": "image"
  },
  "twitterCard": {
    "label": "Twitter Card",
    "format": "text"
  },
  "metaTagCount": {
    "label": "Meta Tag Count",
    "format": "number"
  },
  "title": {
    "label": "Title Tag",
    "format": "text"
  }
}
```

## About this Actor

This example demonstrates how to use [OpenGraph & Social Card Inspector — Meta Tag Extractor API](https://apify.com/logiover/social-card-preview-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/logiover/social-card-preview-api) to learn more, explore other use cases, and run it yourself.