# VIBE pump.fun Coin State Lookup

> VIBE pump.fun Coin State Lookup is a paid API for AI agents from api.vibe.airforce, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-12).

Fetches real-time pump.fun coin state including market cap, bonding curve reserves, and graduation status for a given Solana token mint address.

## Facts

- Endpoint: GET https://api.vibe.airforce/api/x402/vibe-tools/pump/coin/%7Bmint%7D
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-12
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vibe-pump-fun-coin-state-lookup-3a256805
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BIehSfsU6zhP6yMvys-bD

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability vibe-pump-fun-coin-state-lookup-3a256805
```

Example prompt: What's the current market cap and bonding curve state of the pump.fun token with mint address 7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU — has it graduated to Raydium yet?

## When to prefer this

Use this endpoint when you need real-time pump.fun-specific data — bonding curve reserves and graduation status — for a specific Solana token mint, without needing an API key or account. Prefer it over generic crypto data APIs when pump.fun bonding curve mechanics are what you care about, and you want pay-per-call pricing via USDC on Base with no subscription overhead.

## Known failure modes

- Invalid or non-existent mint address returns an error or empty data
- Token not found on pump.fun (e.g., it was created elsewhere) returns no results
- Payment failure via x402/USDC on Base causes request rejection
- Network latency on Solana RPC may cause stale or delayed data
- Mint address with wrong format (non-base58) causes a parsing error

## How this service works

Top Picks: AI-verified smart money tokens every 30 min. 6-dimension scores, one-sentence thesis, smart money flow data. Plus 50+ crypto-data endpoints via x402 USDC on Base. No API keys, no accounts.

## Output

Returns the token's name, symbol, mint address, current market cap in SOL, virtual SOL and token reserves in the bonding curve, graduation status (whether it has moved from pump.fun to Raydium), the EIP-3009 payment transaction hash, and the USDC amount paid for the request.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "body": {
     "type": "object",
     "properties": {}
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "data": {
     "type": "object",
     "properties": {
      "mint": {
       "type": "string",
       "description": "Token mint address on Solana"
      },
      "name": {
       "type": "string",
       "description": "Token name"
      },
      "symbol": {
       "type": "string",
       "description": "Token symbol/ticker"
      },
      "tx_hash": {
       "type": "string",
       "description": "EIP-3009 payment transaction hash on Base"
      },
      "graduated": {
       "type": "boolean",
       "description": "Whether the coin graduated from pump.fun to Raydium"
      },
      "amount_paid": {
       "type": "number",
       "description": "Amount paid for this request in USDC"
      },
      "market_cap_sol": {
       "type": "number",
       "description": "Market cap in SOL"
      },
      "virtual_sol_reserves": {
       "type": "number",
       "description": "Virtual SOL in bonding curve"
      },
      "virtual_token_reserves": {
       "type": "number",
       "description": "Virtual tokens in bonding curve"
      }
     },
     "description": "pump.fun coin state — market cap, bonding curve reserves, and graduation status"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "description": "pump.fun coin state — market cap, bonding curve reserves, and graduation status"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vibe-pump-fun-coin-state-lookup-3a256805/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.vibe.airforce](https://www.zero.xyz/host/api.vibe.airforce/llms.txt)
