# Tumblr Community Details Scraper (`nifty.codes/tumblr-communitydetails-scraper`) Actor

Extract community metadata including member counts, online status, post counts, and creation dates from Tumblr community pages. Powered by Tumblr Scraper.

- **URL**: https://apify.com/nifty.codes/tumblr-communitydetails-scraper.md
- **Developed by:** [Nifty](https://apify.com/nifty.codes) (community)
- **Categories:** Social media, Marketing
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $2.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

This actor extracts detailed metadata for a Community from Tumblr. It works on individual community pages where details are visible and fully loaded. The scraper returns data points such as member counts, online status, post totals, and community guidelines.

#### Want more from Tumblr?

This actor covers Communities only. The full **Tumblr Scraper** browser extension also includes **Posts, Replies, Reblogs, Likes, Communities, Members** with unlimited personal use, real-time scraping with your logged-in sessions, CSV/Excel/JSON export, field customization, and scheduled monitoring.

**[Get the Tumblr Scraper extension](https://nifty.codes/e/tumblr-scraper?utm_source=apify\&utm_medium=actor_readme\&utm_content=tumblr-communitydetails-scraper)**

***

#### Data Fields

| Field Name | Description | Example |
| --- | --- | --- |
| Community Name | Internal name of the community | "art-enthusiasts" |
| Community Title | Display title of the community | "Art Enthusiasts" |
| Community URL | Full URL to the community page | "https://www.tumblr.com/communities/art-enthusiasts" |
| Description | Short text description | "A place for digital artists." |
| About | Detailed about section text | "This community was founded in 2023 for artists." |
| Is Member | Boolean indicating if the scraper account is a member | false |
| Member Count | Total number of members | 15400 |
| Members Online Count | Number of members currently active | 120 |
| Post Count | Total number of posts in the community | 8500 |
| Created Date | Date the community was established | "2023-01-15T12:00:00Z" |
| Join Type | Access level for joining | "open" |
| Visibility | Privacy setting of the community | "public" |
| Language | Primary language of the community | "en" |
| Population Cap | Maximum member limit if applicable | 50000 |
| Mention Tag | The tag used to mention the community | "#art-enthusiasts" |
| Can Edit | Permission to edit community details | false |
| Can Interact | Permission to interact with content | true |
| Can Invite | Permission to invite others | true |
| Can Post | Permission to create new posts | true |
| Can View | Permission to view content | true |
| Can View Comments | Permission to see post comments | true |
| Has Content Label | If the community has a content warning | false |
| Avatar URL | Link to the community profile image | "https://64.media.tumblr.com/avatar\_123.png" |
| Header Image URL | Link to the community banner image | "https://64.media.tumblr.com/header\_456.jpg" |
| Guidelines | Rules for community participation | "Be kind and share original work." |
| Tags | List of associated tags | \["art", "drawing", "digital"] |
| Related Communities | List of suggested similar communities | \["sketchbook-club", "painting-daily"] |
| Unread Post Count | Count of posts not yet seen | 0 |

#### Input

- `urls`: Array of URL strings. Provide URLs for individual Tumblr community pages.
- `maxItems`: Max items per URL, default 100.

#### Example Input

```json
{
  "urls": ["https://www.tumblr.com/communities/example-community"],
  "maxItems": 10
}
```

#### Example Output

```json
[
  {
    "communityName": "photography-hub",
    "communityTitle": "Photography Hub",
    "communityUrl": "https://www.tumblr.com/communities/photography-hub",
    "description": "Share your best shots.",
    "about": "A community for professional and amateur photographers.",
    "isMember": false,
    "memberCount": 25000,
    "membersOnlineCount": 450,
    "postCount": 12000,
    "createdDate": "2022-05-20T10:00:00Z",
    "joinType": "open",
    "visibility": "public",
    "language": "en",
    "populationCap": null,
    "mentionTag": "#photography-hub",
    "canEdit": false,
    "canInteract": true,
    "canInvite": true,
    "canPost": true,
    "canView": true,
    "canViewComments": true,
    "hasContentLabel": false,
    "avatarUrl": "https://64.media.tumblr.com/avatar_photo.png",
    "headerImageUrl": "https://64.media.tumblr.com/header_photo.jpg",
    "guidelines": "No spamming allowed.",
    "tags": ["photography", "canon", "nikon"],
    "relatedCommunities": ["street-photography"],
    "unreadPostCount": 0
  },
  {
    "communityName": "coding-tips",
    "communityTitle": "Coding Tips",
    "communityUrl": "https://www.tumblr.com/communities/coding-tips",
    "description": "Daily programming snippets.",
    "about": "Learn to code with the community.",
    "isMember": true,
    "memberCount": 5000,
    "membersOnlineCount": 85,
    "postCount": 3000,
    "createdDate": "2023-08-10T14:30:00Z",
    "joinType": "restricted",
    "visibility": "public",
    "language": "en",
    "populationCap": 10000,
    "mentionTag": "#coding-tips",
    "canEdit": false,
    "canInteract": true,
    "canInvite": false,
    "canPost": true,
    "canView": true,
    "canViewComments": true,
    "hasContentLabel": false,
    "avatarUrl": "https://64.media.tumblr.com/avatar_code.png",
    "headerImageUrl": "https://64.media.tumblr.com/header_code.jpg",
    "guidelines": "Post code blocks only.",
    "tags": ["javascript", "python", "webdev"],
    "relatedCommunities": ["dev-ops"],
    "unreadPostCount": 5
  }
]
```

#### Disclaimer

This tool extracts publicly available data. Users are responsible for compliance with applicable terms of service.

# Actor input Schema

## `urls` (type: `array`):

URLs to scrape. Must match: tumblr.com

## `maxItems` (type: `integer`):

Maximum number of items to extract per URL

## Actor input object example

```json
{
  "urls": [
    "https://www.tumblr.com/communities/nostalgiaaesthetics"
  ],
  "maxItems": 100
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("nifty.codes/tumblr-communitydetails-scraper").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("nifty.codes/tumblr-communitydetails-scraper").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call nifty.codes/tumblr-communitydetails-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=nifty.codes/tumblr-communitydetails-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/RKglA9pU1AaqIyFXs/builds/tZf8IGMkgf8w4vPEJ/openapi.json
