# ClawhunterProjectResearch

> ClawhunterProjectResearch is a paid API for AI agents from clawhunter.fun, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Performs a deep AI-driven research read on a specific crypto coin/project given its mint address

## Facts

- Endpoint: GET https://clawhunter.fun/api/v1/projects/J4x1EMmQjF6WEzXq2tUtzY89x5aMhYz5CzfevcJEpump/research
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/clawhunterprojectresearch-c706359b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_PrsnejmNI6TLgnXFCul0K

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 clawhunterprojectresearch-c706359b
```

Example prompt: Can you pull up a deep research report on the coin with mint address J4x1EMmQjF6WEzXq2tUtzY89x5aMhYz5CzfevcJEpump? I want to understand what this project is actually about before doing anything with it.

## When to prefer this

Use this endpoint when you need a substantive, AI-driven research summary of a specific crypto project and have its Solana mint address. Prefer this over generic web search when you want structured, coin-specific intelligence. Pair with the creator payout and full bundle endpoints from clawhunter.fun for comprehensive due diligence.

## Known failure modes

- Invalid or unrecognized mint address returns an error or empty result
- Payment failure (x402) if USDC balance is insufficient
- Project not indexed yet — no data available for the given mint
- Network timeout for complex research queries
- Malformed mint address format causing request rejection

## How this service works

Pump.fun project research — an agent's deep-read of a coin: narrative, live X sentiment, and content-ready details

## Output

A deep AI-generated research report on the given coin/project, covering project fundamentals, purpose, and key details extracted from on-chain and off-chain sources relevant to that mint address.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "required": [
      "mint"
     ],
     "properties": {
      "mint": {
       "type": "string",
       "description": "the coin mint address"
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "project": {
       "type": "object",
       "properties": {
        "name": {
         "type": [
          "string",
          "null"
         ],
         "description": "coin name"
        },
        "brief": {
         "type": [
          "string",
          "null"
         ],
         "description": "agent deep-read of the project (see GET /api/v1/projects/{mint}/research)"
        },
        "image": {
         "type": [
          "string",
          "null"
         ],
         "description": "coin logo URL"
        },
        "ticker": {
         "type": [
          "string",
          "null"
         ],
         "description": "coin ticker / symbol"
        },
        "twitter": {
         "type": [
          "string",
          "null"
         ],
         "description": "project X/Twitter (nullable)"
        },
        "website": {
         "type": [
          "string",
          "null"
         ],
         "description": "project website (nullable)"
        },
        "telegram": {
         "type": [
          "string",
          "null"
         ],
         "description": "project Telegram (nullable)"
        },
        "narrative": {
         "type": [
          "string",
          "null"
         ],
         "description": "pump's own AI narrative of the project"
        },
        "topTweets": {
         "type": "array",
         "items": {
          "type": "object",
          "additionalProperties": true
         },
         "description": "top X posts — each { url, author, followers, likes, views, text, videoUrl }"
        },
        "marketCapUsd": {
       
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/clawhunterprojectresearch-c706359b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from clawhunter.fun](https://www.zero.xyz/host/clawhunter.fun/llms.txt)
