# Pump.fun New Listings Scraper (`harvest/pump-fun-new-listings-scraper`) Actor

Extract details about new coin listings from Pump.fun, enabling you to monitor the latest additions with ease.

- **URL**: https://apify.com/harvest/pump-fun-new-listings-scraper.md
- **Developed by:** [Harvest Data](https://apify.com/harvest) (community)
- **Categories:** News, Integrations, Automation
- **Stats:** 161 total users, 2 monthly users, 100.0% runs succeeded, 3 bookmarks
- **User rating**: No ratings yet

## Pricing

$3.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/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

## Pump.fun New Listings Scraper

The **Pump.fun New Listings Scraper** is an [Apify actor](https://apify.com) designed to fetch and extract details about new coin listings from [Pump.fun](https://pump.fun), enabling you to monitor the latest additions with ease.

***

### 📜 Features

- **Fetch recent listings**: Scrape the most recent coins listed on Pump.fun.
- **Customizable limit**: Control the number of listings to retrieve.
- **Detailed output**: Retrieve comprehensive data, including metadata, market stats, and creator details.

***

### 🔧 Input Schema

The actor takes a JSON input with the following structure:

```json
{
    "limit": 100
}
```

#### Input Fields

- **`limit`** *(integer)*: The maximum number of listings to retrieve. Defaults to `100`.

***

### 📝 Output Format

The actor generates an array of objects, each containing detailed information about a coin listing. Here's an example:

```json
[
    {
        "mint": "9DcRGV5bDNFg6sxhR15vka4ZUduQbr9HbdchuSrkKXDn",
        "name": "Fanatic",
        "symbol": "Fanatic",
        "description": "I‘m a Bitcoin Fanatic spreading the true power of $BTC. Bitcoin is the ultimate path to financial freedom",
        "image_uri": "https://ipfs.io/ipfs/QmRn2KgdMcgQkmo7rM1F1kTM6LDymGn7QqMEa2Hg7YieZD",
        "metadata_uri": "https://ipfs.io/ipfs/QmP46fK7dC8KLXaGKyFWZJeeVKkY5Bg68aFfwQBXW4r5hH",
        "creator": "GTiCQZHknSenLbpbhjrztxDGwWr2fUPJDkefjKRZTwVa",
        "created_timestamp": 1733119692144,
        "market_cap": 340.671952992,
        "total_supply": 1000000000000000,
        "usd_market_cap": 76804.4918020464,
        "show_name": true,
        "initialized": true
    },
    {
        "mint": "8j9sebqbgCjYdJnabhh62LsMyyb6XXoE8RiM4t1Mpump",
        "name": "Girl with a Red Hat",
        "symbol": "RED",
        "description": "\"Girl with a Red Hat\" (c. 1665) by Johannes Vermeer captures attention with its striking red hat, showcasing Vermeer's mastery of light and texture in a vivid, detailed portrait.",
        "image_uri": "https://ipfs.io/ipfs/QmSBi53nQeafCSbHkaVcA58QLZBvx95G7xRWu3GdNf2KAi",
        "metadata_uri": "https://ipfs.io/ipfs/QmP7oSjW3JdeVY17qdovFWXB9sqeCyh3A3AGRDmTXyZFZL",
        "creator": "7CwbhCXbqWNmpHnYscZ4JVFCGerVDsW2GWSFZ8qNNoLG",
        "created_timestamp": 1733067214448,
        "market_cap": 326.727712493,
        "total_supply": 1000000000000000,
        "usd_market_cap": 73660.76278154684,
        "show_name": true,
        "initialized": true
    }
]
```

#### Key Fields in Output

- **`mint`**: The unique identifier of the coin.
- **`name`**: The coin's name.
- **`symbol`**: The coin's symbol.
- **`description`**: A brief description of the coin.
- **`image_uri`**: A link to the coin's image.
- **`metadata_uri`**: A link to the coin's metadata.
- **`creator`**: The creator's identifier.
- **`created_timestamp`**: The timestamp of when the listing was created.
- **`market_cap`**: The coin's market capitalization in SOL.
- **`total_supply`**: The total supply of the coin.
- **`usd_market_cap`**: The coin's market capitalization in USD.

***

### 📖 How to Use

1. **Create a task** on [Apify](https://apify.com) using this actor.
2. Provide the desired `limit` in the input configuration.
3. Run the actor and retrieve the results from the dataset or directly from the run output.

***

### 🛡️ Disclaimer

This actor is intended for informational and analytical purposes only. Please ensure compliance with the terms of service of [Pump.fun](https://pump.fun) and any applicable legal requirements when using this scraper.

# Actor input Schema

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

Number of Pump.fun listings to pull.

## Actor input object example

```json
{
  "limit": 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 = {
    "limit": 100
};

// Run the Actor and wait for it to finish
const run = await client.actor("harvest/pump-fun-new-listings-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 = { "limit": 100 }

# Run the Actor and wait for it to finish
run = client.actor("harvest/pump-fun-new-listings-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 '{
  "limit": 100
}' |
apify call harvest/pump-fun-new-listings-scraper --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=harvest/pump-fun-new-listings-scraper",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

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