# Tumblr Digital Art Feed Extractor

**Use case:** 

Extract public posts and media from Tumblr's digital art tagged feed for creator discovery and content research.

## Input

```json
{
  "tags": [],
  "startUrls": [
    {
      "url": "https://www.tumblr.com/tagged/digital%20art"
    }
  ],
  "maxItems": 25
}
```

## Output

```json
{
  "postId": {
    "label": "Post ID",
    "format": "string"
  },
  "postUrl": {
    "label": "Post URL",
    "format": "string"
  },
  "blogName": {
    "label": "Blog name",
    "format": "string"
  },
  "summary": {
    "label": "Post summary",
    "format": "string"
  },
  "tags": {
    "label": "Tags",
    "format": "array"
  },
  "noteCount": {
    "label": "Note count",
    "format": "number"
  },
  "postType": {
    "label": "Post type",
    "format": "string"
  },
  "isNsfw": {
    "label": "NSFW flag",
    "format": "boolean"
  },
  "classification": {
    "label": "Classification",
    "format": "string"
  },
  "sourceTag": {
    "label": "Source tag",
    "format": "string"
  },
  "fetchedAt": {
    "label": "Fetched at",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Tumblr Tagged Posts Scraper](https://apify.com/automation-lab/tumblr-tagged-posts-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/tumblr-tagged-posts-scraper) to learn more, explore other use cases, and run it yourself.