# News Gurus Intel – Memecoin Launch Technical Analysis

> News Gurus Intel – Memecoin Launch Technical Analysis is a paid API for AI agents from api.newsgurus.ai, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-13).

Returns a VWAP/Bollinger/RSI/MACD confluence-based technical analysis verdict (bias, score, and factors) for a newly launched memecoin, computed from GeckoTerminal OHLCV data.

## Facts

- Endpoint: GET https://api.newsgurus.ai/x402/launch-ta/:solana_address
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/news-gurus-intel-memecoin-launch-technical-analysis-1d0bd99a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_y0gez6BvNvw1Aioh4j_Ra

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 news-gurus-intel-memecoin-launch-technical-analysis-1d0bd99a
```

Example prompt: Can you pull the technical analysis verdict from News Gurus for this freshly launched Solana memecoin at mint address 7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU — I want to see the VWAP/RSI/MACD confluence score and bias?

## When to prefer this

Use this endpoint when you need a fast, structured technical analysis verdict on a newly launched memecoin without having to process raw OHLCV candles yourself. It's ideal when you want a multi-indicator confluence (VWAP + Bollinger + RSI + MACD) summarized into a single bias and score, especially for Solana, Base, BSC, or Ethereum chain tokens. Prefer this over raw data sources when you need an opinionated NG-derived signal rather than raw market data.

## Known failure modes

- Token mint address not found on GeckoTerminal — returns error or empty result
- Token symbol is ambiguous across chains — use mint address for precision
- Chain parameter mismatch — token exists on a different chain than specified
- Insufficient OHLCV history for newly launched tokens — may return low-confidence or incomplete verdict
- Rate limiting or payment failure if x402 payment is not properly handled
- Invalid mint address format — returns validation error

## How this service works

News Gurus Intel API — VWAP/Bollinger/RSI/MACD confluence read on a fresh memecoin launch computed over GeckoTerminal OHLCV (public/keyless). Token = mint address or symbol. Optional ?chain= (default solana; solana/base/bsc/ethereum). Returns NG-derived bias/score/factors verdict only — raw candles are not redistributed. Educational data, not financial advice.

## Output

Returns an NG-derived technical analysis verdict including: directional bias (bullish/bearish/neutral), a composite confluence score, and the contributing technical factors from VWAP, Bollinger Bands, RSI, and MACD indicators computed over GeckoTerminal OHLCV candles for the specified token. Raw candle data is not included.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "token"
     ],
     "properties": {
      "token": {
       "type": "string"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "chain": {
       "enum": [
        "solana",
        "base",
        "bsc",
        "ethereum"
       ],
       "type": "string",
       "default": "solana"
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/news-gurus-intel-memecoin-launch-technical-analysis-1d0bd99a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.newsgurus.ai](https://www.zero.xyz/host/api.newsgurus.ai/llms.txt)
