Retrieve token market cap

GET

Retrieve the market cap of a Pump.fun token.

Path Parameters

mint

(string)

The token's mint address you wish to check balance for.

Attributes

result

(object)

The token balance object.


marketCapLamports

(number)

The market cap of the token in lamports.

marketCapSol

(number)

The market cap of the token in SOL.

marketCapUsd

(number)

The market cap of the token in USD.

mint

(string)

The token's mint address.

solscan

(object)

An object containing Solana Explorer URLs for the token.


mint

(string)

The Solana Explorer URL for the token.

pumpfun

(object)

An object containing the Pump.fun URL for the token.


mint

(string)

The Pump.fun URL for the token.

Useful for

  • Retrieving the market cap of a token.

  • Monitoring the tokens change in price/market cap.

  • Seeing how close a token is to going to Raydium.

Endpoint

https://api.tradepump.fun/v1/token/:mint/market-cap

Example Request

Node
Curl
Axios
1 2 3 4 5 6 7 8 9 import { PumpApiClient } from 'tradepumpfun'; const client = new PumpApiClient({ apiKey: '<your-api-key>' }); await client.token.retrieveTokenMarketCap({ mint: "<mint>", });