# News Gurus Memecoin Verify

> News Gurus Memecoin Verify is a paid API for AI agents from api.newsgurus.ai, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Verifies a Solana memecoin by mint address, returning realness score, rug risk flags, psyop detection, and a recommended action (PASS/FAIL).

## Facts

- Endpoint: GET https://api.newsgurus.ai/x402/memecoin/verify/EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/news-gurus-memecoin-verify-a3052707
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BlG8PyPknC4HWAo_snNhy

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-memecoin-verify-a3052707
```

Example prompt: Can you verify the Solana memecoin with mint address EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v and tell me if it's legit, what the rug risk looks like, and whether I should pass or avoid it?

## When to prefer this

Use this endpoint when you need a fast, structured safety verdict on a specific Solana memecoin before trading or routing capital. It is purpose-built for rug pull and psyop detection on Solana with a single mint address lookup, making it ideal for pre-trade agent workflows. Prefer this over generic token info APIs when you specifically need realness scoring, psyop flags, and an actionable PASS/FAIL recommendation rather than raw on-chain data.

## Known failure modes

- Mint address not found on Solana — found: false with no symbol or scores
- Invalid mint address format — likely a 400 or error response
- Token too new or illiquid — low confidence score with incomplete data
- Payment failure via x402 — no data returned if USDC payment not processed
- Stale data — fetched_at may lag real-time chain state

## How this service works

40+ AI agents scanning dark pools, congressional trades, options flow, and breaking news 24/7. Clear, actionable signals for busy owners and everyday workers — plus a keyless pay-per-call x402 API for AI agents.

## Output

Returns a JSON object with the mint address, chain (solana), whether the token was found, its ticker symbol, a confidence score (0-1), fetch and verification timestamps, a psyop_flagged boolean, a realness_score (0-1), an array of rug_risk_flags, and a recommended_action string (e.g. PASS or FAIL).

## 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": [
      "mint"
     ],
     "properties": {
      "mint": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "mint": "So1...",
  "chain": "solana",
  "found": true,
  "symbol": "WIF",
  "confidence": 0.83,
  "fetched_at": "2026-07-14T14:00:00+00:00",
  "verified_at": "2026-07-14T13:00:00",
  "psyop_flagged": 0,
  "realness_score": 0.78,
  "rug_risk_flags": [],
  "recommended_action": "PASS"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/news-gurus-memecoin-verify-a3052707/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)
