v1.0.0Last Updated: Aug 25, 2026

Gorover DaaS API Reference

Welcome to the Gorover Data-as-a-Service (DaaS) documentation. We provide institutional-grade, low-latency market data specifically tailored for the Pump.fun ecosystem, powered directly by raw RPC streams. This infrastructure replaces generic solutions by providing highly-specialized quantitative metrics.

Base Setup

PRODUCTION ENDPOINT
https://api.gorover.xyz/v1
Sub-50ms Latency

Authentication

All endpoints are secured via JWTs issued through our Sign-In With Solana (SIWS) protocol. Include your active API Key or Bearer Token in the headers of every request.

Authorization: Bearer grvr_live_7xKXtg2...

1. AI Intelligence (Signals)

Returns the raw, real-time output of the Gorover Machine Learning Engine. This endpoint has been stripped of redundant market metrics and strictly focuses on providing actionable trading intelligence.

Tier Restrictions: FREE tier users only receive the basic metadata and the raw action (BUY/SELL). The score, confidence, and evidence fields are completely hidden. You must upgrade to PRO or ENTERPRISE to access deep ML analytics.

GET/v1/signals/live
Response (200 OK)
{
  "signals": [
    {
      "mint": "7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuZaVpump",
      "metadata": {
        "name": "CatWifHat",
        "symbol": "CWH"
      },
      "decision": "BUY",
      "action": "BUY",
      "signal_score": 92.5
    }
  ]
}

2. Token Overview

Provides instant access to core market dynamics, liquidity bonding curve states, and OHLCV alternatives for Pump.fun ecosystem.

GET/v1/defi/token_overview?address={mint}
Response (200 OK)
{
  "success": true,
  "data": {
    "address": "7xKXtg2CW87d97TX...",
    "decimals": 6,
    "symbol": "PUMP",
    "name": "Pump Token",
    "logoURI": "https://pump.fun/coin/7xKXtg...",
    "price": 0.000045,
    "liquidity": 34500.50,
    "mc": 85000.00,
    "volume24h": 210500.00,
    "view24h": 1432
  }
}

3. Security Audit

Evaluates the safety profile of a smart contract before executing a trade. Determines rug-pull risks, locked liquidity, and dev holdings.

GET/v1/security/token_audit?address={mint}
Response (200 OK)
{
  "address": "7xKXtg2CW87d97TX...",
  "status": "Good",
  "liquidity_locked": true,
  "mint_authority_disabled": true,
  "freeze_authority_disabled": true,
  "top_10_holders_pct": 22.5,
  "is_bundled": false
}

4. Smart Money Inflows

Exposes underlying capital flows, sniper activity, and insider accumulations in real-time.

GET/v1/smart_money/inflows?address={mint}
Response (200 OK)
{
  "address": "7xKXtg2CW87d97TX...",
  "smart_money_inflow_24h": 125000,
  "sniper_count": 42,
  "insider_wallet_activity": "None",
  "fresh_wallets_holding": 145,
  "kol_wallets_invested": 2
}