# Tumblr Photography Posts Scraper

**Use case:** 

Extract public Tumblr photography posts, creators, tags, media, notes, and classification fields into a structured dataset.

## Input

```json
{
  "tags": [
    "photography"
  ],
  "startUrls": [],
  "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.