# GoPlus Token Security Scanner - Honeypot & Rug Detector (`ninhothedev/goplus-token-security-scraper`) Actor

$0.5/1K 🔥 Fast GoPlus token security scanner! Honeypot, buy/sell tax, mintable & owner risks across 8+ chains. No key. JSON, CSV, Excel or API in seconds. Scan tokens for rug detection, trading bots & due diligence ⚡

- **URL**: https://apify.com/ninhothedev/goplus-token-security-scraper.md
- **Developed by:** [ninhothedev](https://apify.com/ninhothedev) (community)
- **Categories:**
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $0.50 / 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/actors/running/actors-in-store.md#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

## GoPlus Token Security Scanner 🛡️🪙

**Detect honeypots, rug pulls and malicious token contracts before you buy.**
Scan any ERC-20 / BEP-20 token across 8 blockchains and get 20+ security
signals — honeypot status, buy/sell taxes, mintable supply, hidden owners,
blacklists, proxy contracts and more — in one clean dataset. Powered by the
[GoPlus Security](https://gopluslabs.io/) API. **No API key required.**

> ⚡ Cheap, fast and datacenter-friendly. Pay ~**$0.50 per 1,000 tokens** scanned.

***

### Why traders use this

Memecoins and new tokens are minted by the thousands every day, and a huge
share of them are scams: honeypots you can buy but never sell, contracts with
99% sell taxes, mintable supplies that get dumped on you, or owners who can
blacklist your wallet. This actor turns the GoPlus security engine into a
structured, automatable feed so you can **screen tokens at scale**.

#### Use cases

- 🕵️ **Memecoin safety checks** — vet a token before aping in.
- 🚩 **Rug pull & honeypot detection** — flag `is_honeypot`, `cannot_sell_all`, `can_take_back_ownership`.
- 🤖 **Trading bots** — wire security gating into your buy logic.
- 📋 **Due diligence** — audit taxes, ownership and mint rights for a portfolio.

***

### Supported chains

| chainId | Chain |
|--------:|-------|
| 1 | Ethereum |
| 56 | BNB Smart Chain (BSC) |
| 137 | Polygon |
| 42161 | Arbitrum |
| 8453 | Base |
| 43114 | Avalanche |
| 10 | Optimism |
| 250 | Fantom |

(GoPlus supports many more chains — just pass the numeric ID.)

***

### Input

```json
{
  "mode": "scan",
  "chainId": "1",
  "tokenAddresses": ["0xdac17f958d2ee523a2206206994597c13d831ec7"],
  "maxItems": 100
}
```

| Field | Type | Description |
|-------|------|-------------|
| `mode` | string | Only `scan` is supported. |
| `chainId` | string | Numeric chain ID (see table above). Default `"1"`. |
| `tokenAddresses` | array | Token contract addresses (up to ~100 batched per call). |
| `maxItems` | integer | Max tokens to return (1–1000, default 100). |

***

### Output

One item per token:

```json
{
  "chain_id": "1",
  "address": "0xdac17f958d2ee523a2206206994597c13d831ec7",
  "token_name": "Tether USD",
  "token_symbol": "USDT",
  "total_supply": "92061187810.16",
  "holder_count": 15429930,
  "is_honeypot": false,
  "buy_tax": 0.0,
  "sell_tax": 0.0,
  "cannot_buy": false,
  "cannot_sell_all": false,
  "is_open_source": true,
  "is_proxy": false,
  "is_mintable": true,
  "owner_address": "0xc6cde7...",
  "can_take_back_ownership": false,
  "hidden_owner": false,
  "is_blacklisted": true,
  "is_in_dex": true,
  "lp_holder_count": null,
  "creator_address": "0x369285...",
  "creator_percent": 0.0,
  "risk_flags": ["is_mintable", "is_blacklisted", "external_call"],
  "source": "goplus",
  "scraped_at": "2026-07-20T17:00:00+00:00"
}
```

`risk_flags` is a quick-scan list of every risk signal that is switched **on**
for the token — perfect for filtering or alerting.

***

### Pricing

Roughly **$0.50 per 1,000 tokens** scanned. Batched requests keep runs fast and
cheap; the actor runs comfortably on datacenter proxies (no residential needed).

***

### Related actors by ninhothedev

- 🧪 [RugCheck Solana Scraper](https://apify.com/ninhothedev/rugcheck-solana-scraper)
- 📊 [DexScreener Scraper](https://apify.com/ninhothedev/dexscreener-scraper)
- 🦎 [GeckoTerminal Scraper](https://apify.com/ninhothedev/geckoterminal-scraper)
- 💰 [CoinGecko Crypto Scraper](https://apify.com/ninhothedev/coingecko-crypto-scraper)

***

**Keywords:** goplus, token security, honeypot detector, rug pull checker,
crypto scam detection, buy sell tax scanner, ERC-20 audit, BEP-20 scanner,
smart contract security, memecoin safety, DeFi due diligence, mintable token,
hidden owner, blacklist token, Ethereum BSC Polygon Base Arbitrum scanner.

# Actor input Schema

## `mode` (type: `string`):

Scraper mode. Currently only 'scan' is supported: provide a chainId and a list of token contract addresses to get a full security profile for each.

## `chainId` (type: `string`):

Numeric blockchain ID. Supported: 1=Ethereum, 56=BNB Smart Chain, 137=Polygon, 42161=Arbitrum, 8453=Base, 43114=Avalanche, 10=Optimism, 250=Fantom (GoPlus supports many more).

## `tokenAddresses` (type: `array`):

List of token contract addresses to scan on the selected chain. Up to ~100 are batched per request; case-insensitive.

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

Maximum number of token security items to return.

## Actor input object example

```json
{
  "mode": "scan",
  "chainId": "1",
  "tokenAddresses": [
    "0xdac17f958d2ee523a2206206994597c13d831ec7"
  ],
  "maxItems": 100
}
```

# Actor output Schema

## `results` (type: `string`):

No description

# 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 = {
    "chainId": "1",
    "tokenAddresses": [
        "0xdac17f958d2ee523a2206206994597c13d831ec7"
    ]
};

// Run the Actor and wait for it to finish
const run = await client.actor("ninhothedev/goplus-token-security-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 = {
    "chainId": "1",
    "tokenAddresses": ["0xdac17f958d2ee523a2206206994597c13d831ec7"],
}

# Run the Actor and wait for it to finish
run = client.actor("ninhothedev/goplus-token-security-scraper").call(run_input=run_input)

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

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

```

## CLI example

```bash
echo '{
  "chainId": "1",
  "tokenAddresses": [
    "0xdac17f958d2ee523a2206206994597c13d831ec7"
  ]
}' |
apify call ninhothedev/goplus-token-security-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,ninhothedev/goplus-token-security-scraper"
        }
    }
}

```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/CYAJy0fiVkOUBvK26/builds/4h7S36gCW385s3a3a/openapi.json
