# Arc Token Sell Test — can you actually sell it back? (`mogulsexit/arc-token-sell-test`) Actor

Simulates a fresh wallet buying a token on Arc and selling everything straight back, in one read-only call. Returns a verdict, what one dollar comes back as, and the launch surface's record. Our own simulation, not an aggregate of other people's APIs.

- **URL**: https://apify.com/mogulsexit/arc-token-sell-test.md
- **Developed by:** [J Mogul](https://apify.com/mogulsexit) (community)
- **Categories:** Business, Developer tools
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

$10.00 / 1,000 token sell-testeds

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?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
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.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

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

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## Arc Token Sell Test — can you actually sell it back?

Paste a token address from **Arc** (Circle's chain, id 5042). Get back whether a
fresh wallet can sell it again, what one dollar comes back as, and what the
launch surface has done to other buyers.

A token can trade all day, show volume and holders, and still be impossible for a
*new* buyer to sell. Trading history cannot tell you that. Only a simulation from
an address that has never touched the token can.

### What makes this different from the other rug checkers here

**It runs its own simulation.** One read-only `eth_call` with state overrides, in
which a fresh wallet buys the token with USDC and sells everything straight back,
at two sizes. Nothing is broadcast, no wallet connects, nobody's funds move. The
other checkers on this store fuse third-party APIs — GoPlus, DexScreener,
Honeypot.is — and inherit whatever those get wrong.

**It covers Arc, which they do not.** Arc's mainnet opened on 16 September 2026
and makes tens of thousands of pools a day. We read the chain ourselves every two
minutes and have sell-tested **every token that has ever traded against USDC on
it** — more than 74,000 tests so far.

**It publishes its own failure rate.** Verdicts change: we have recorded
**5,992 verdict flips on 1,774 tokens**, 2,017 of them into a trap. The free
scoreboard at [honeycheck.xyz](https://honeycheck.xyz) states how often we have
been wrong, including the score bands that do not separate.

### What you get per token

| Field | |
| --- | --- |
| `verdict` | SELLABLE, TAXED, TRAP, BLOCKED, DISPUTED, UNBOUGHT or THIN |
| `meaning` | the verdict in a sentence you can act on |
| `backPerDollar` | what one USDC returns after buying and selling back. A clean 1% pool returns **0.9801** |
| `buyTax` / `sellTax` | measured, not read off the contract |
| `liquidityGoneNow` | nothing could be bought at the moment we looked |
| `liquidityEverPulled` | any check we have run saw that — a live token can still be true here |
| `pool` | kind, age, swaps, sells in the last 48 hours |
| `holders` | count, what share the top ten hold, how long the median holder has held |
| `launchHook` | what else this launch surface produced, and how much of it cannot be sold |
| `notMeasured` | what is missing from this row, and why |

### Three ways to use it

1. **Check tokens you already care about** — paste the addresses.
2. **`The newest tokens that started trading on Arc`** — test launches before
   they reach any listing site. We read the chain, not a list.
3. **`The most recent tokens a fresh wallet cannot sell`** — the traps, newest first.

### What it does not do

- **Arc only.** Not Ethereum, Base, BNB or Solana; other Actors here cover those.
- **A verdict is one moment.** Whoever holds the keys can make a token unsellable
  after we measured it, which is why every row carries the time and why the
  launch surface's record sits beside the verdict.
- **A missing figure is `null` and says why.** Holder readings exist for the
  tokens our chain reader follows, which is a share of everything that trades;
  absent is never reported as zero.
- **Nothing here is financial advice.** It is a measurement.

### Billing

Charged per token tested. A token that could not be tested is not charged for:
the answer is produced first and billed after.

# Actor input Schema

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

One or more token contract addresses on Arc (chain 5042), each 0x followed by forty hex characters. Leave empty and set a mode below to test what launched recently instead.

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

Test the addresses you gave, or take the most recent launches on Arc and test those. The launch modes are how you find something before it is on any list. Leaving this on the default with no addresses does nothing and charges nothing.

## `limit` (type: `integer`):

Used by the launch modes. Each token tested is charged once.

## Actor input object example

```json
{
  "tokens": [],
  "mode": "recentLaunches",
  "limit": 10
}
```

# Actor output Schema

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

Every tested token as JSON, newest first.

## `resultsCsv` (type: `string`):

The same rows as a spreadsheet, for anyone not calling this from code.

## `overview` (type: `string`):

The same rows through the Sell test view: token, symbol, verdict, back per dollar, both taxes, liquidity and why.

# 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("mogulsexit/arc-token-sell-test").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("mogulsexit/arc-token-sell-test").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 '{}' |
apify call mogulsexit/arc-token-sell-test --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,mogulsexit/arc-token-sell-test"
        }
    }
}
```

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/BWPTdh9nP4iaVh1aI/builds/EXohWX1F0a85qKI3m/openapi.json
