# Crypto Token Social Metrics Tracker (`gochujang/token-social-metrics`) Actor

Aggregates social and developer metrics for any cryptocurrency: Twitter/X followers, GitHub stars and commit activity, Reddit subscribers, Telegram member count, and CoinGecko community stats. Essential for token fundamental analysis.

- **URL**: https://apify.com/gochujang/token-social-metrics.md
- **Developed by:** [Hojun Lee](https://apify.com/gochujang) (community)
- **Categories:** Developer tools, Automation, News
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

Pay per usage

This Actor is paid per platform usage. The Actor is free to use, and you only pay for the Apify platform usage, which gets cheaper the higher subscription plan you have.

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

## 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

## Crypto Token Social Metrics Tracker

> Aggregate **Twitter followers, Reddit subscribers, Telegram members, GitHub stars, and developer activity** for any cryptocurrency using CoinGecko. Essential for token fundamental analysis and community health scoring. **No API key required. $0.005 per token.**

### ⚡ Run in 30 seconds

Click **Start** with default settings — fetches social and developer metrics for the sample token from CoinGecko and returns Twitter follower count, Reddit subscribers, Telegram members, GitHub stars, and recent developer commit activity. No API key needed.

***

### What It Does

For each token you specify, fetches comprehensive social and developer metrics:

- **Twitter/X**: Follower count
- **Reddit**: Subscribers, posts/comments per 48h
- **Telegram**: Member count
- **GitHub**: Stars, forks, watchers, recent commits (30d), repo URL
- **CoinGecko scores**: Community score, developer score

### Use Cases

- **Token due diligence**: Validate community size before investing
- **Comparative analysis**: Rank tokens by social momentum
- **Developer activity**: Find projects with active GitHub contributions
- **Undervalued gems**: Low market cap + high dev activity = potential alpha
- **Portfolio monitoring**: Track community growth over time

### Example Output

```json
{
  "coin_id": "ethereum",
  "symbol": "ETH",
  "name": "Ethereum",
  "market_cap_usd": 286000000000,
  "twitter_followers": 3200000,
  "reddit_subscribers": 1200000,
  "telegram_members": null,
  "github_stars": 46000,
  "github_forks": 19000,
  "github_commits_30d": 150,
  "community_score": 84.5,
  "dev_activity_score": 95.2,
  "github_repo_url": "https://github.com/ethereum/go-ethereum"
}
```

### Input Options

| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| `tokens` | string\[] | \[bitcoin, ethereum, solana] | CoinGecko coin IDs (find at coingecko.com) |
| `includeGithub` | boolean | true | Fetch live GitHub repo stats |
| `githubToken` | string | - | GitHub token for higher rate limits (60→5000 req/h) |
| `sortBy` | string | community\_score | Sort by: twitter\_followers, github\_stars, reddit\_subscribers, community\_score, dev\_activity\_score |

### Pricing

- **$0.005 per token analyzed**

### Finding CoinGecko IDs

Visit [coingecko.com](https://www.coingecko.com), search for a token, and use the ID from the URL.
Example: `https://www.coingecko.com/en/coins/bitcoin` → ID is `bitcoin`

# Actor input Schema

## `tokens` (type: `array`):

CoinGecko coin IDs to look up (e.g. 'bitcoin', 'ethereum', 'solana'). Find IDs at coingecko.com.

## `includeGithub` (type: `boolean`):

Fetch GitHub repo stars, forks, and recent commit activity.

## `githubToken` (type: `string`):

GitHub personal access token for higher rate limits (60→5000 req/h).

## `sortBy` (type: `string`):

Field to sort results by.

## Actor input object example

```json
{
  "tokens": [
    "bitcoin",
    "ethereum",
    "solana"
  ],
  "includeGithub": true,
  "sortBy": "community_score"
}
```

# 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 = {
    "tokens": [
        "bitcoin",
        "ethereum",
        "solana"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("gochujang/token-social-metrics").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 = { "tokens": [
        "bitcoin",
        "ethereum",
        "solana",
    ] }

# Run the Actor and wait for it to finish
run = client.actor("gochujang/token-social-metrics").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 '{
  "tokens": [
    "bitcoin",
    "ethereum",
    "solana"
  ]
}' |
apify call gochujang/token-social-metrics --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=gochujang/token-social-metrics",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

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