Stream New Tokens

Gain instant access to the latest minted token information on the Solana blockchain with the PumpFun New Token Info API from PumpfunApi. Retrieve mint addresses, transaction signatures.

PUMPFUN NEW TOKEN INFO API The PumpFun New Token Info API delivers a simple yet efficient way to obtain details about newly minted tokens on the Solana network. A single GET request provides comprehensive data, including unique identifiers, metadata, and developer information for the most recently created token on PumpFun. Engineered for speed and reliability, this API is an ideal resource for real-time token tracking.

API ENDPOINT GET: https://api.pumpfunapi.org/pumpfun/new/tokens

RESPONSE DATA STRUCTURE The API returns comprehensive details about the newly minted token, generally formatted as follows:

block – The block number indicating when the token was minted signature – The unique transaction signature for the creation process name – The official name of the new token symbol – The token’s symbol (e.g., "PFT") metadata – A URI leading to the token’s associated metadata mint – The token’s mint address (contract address) bondingCurve – The token’s bonding curve address dev – The wallet address of the developer who created the token timestamp – An ISO 8601 timestamp that specifies when the token was minted

CODE EXAMPLES

const axios = require('axios');

const url = 'https://api.pumpfunapi.org/pumpfun/new/tokens';

// Function to fetch data from the endpoint
async function fetchTokenData() {
  try {
    const response = await axios.get(url);
    console.log('Response:', response.data);
  } catch (error) {
    console.error('Error fetching data:', error.message);
  }
}

// Execute the function
fetchTokenData();

EXAMPLE RESPONSE

{ "status": "", "block": , "signature": "", "name": "", "symbol": "", "metadata": "", "mint": "", "bondingCurve": "", "dev": "", "timestamp": "" }

RATE LIMITS To guarantee performance and prevent misuse, the PumpFun New Token Info API limits requests to 60 per minute per IP address. If you require a higher rate limit, please contact our support team.

HOW TO USE

  1. Parse the JSON response to retrieve information about the latest minted token.

  2. Incorporate this data into your tools, dashboards, or workflows to monitor, track, and integrate real-time token information.

WHY USE PUMPFUN’S NEW TOKEN INFO API? Developers, traders, and analytics providers benefit from immediate access to newly minted token details. Fast response times and rich data make it perfect for: • Building real-time dashboards to monitor token launches • Triggering automated alerts whenever new tokens are minted • Integrating token data into diverse applications, enhancing decision-making and analysis

Experience reliable, quick, and consistently updated token tracking with the PumpFun New Token Info API. Start integrating now to stay ahead in the Solana ecosystem.

Last updated