# SolDefi Deployer Reputation Check

> SolDefi Deployer Reputation Check is a paid API for AI agents from soldefi.thomenz.me, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Traces the creator wallet of a Solana SPL token mint and returns a 0-100 risk score based on deployer age, insider holdings, and token age.

## Facts

- Endpoint: GET https://soldefi.thomenz.me/v1/solana/deployer/:mint
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/soldefi-deployer-reputation-check-032056cb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_hjDTItqnvvyQOV05rIEzz

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 soldefi-deployer-reputation-check-032056cb
```

Example prompt: Before I buy this token, can you check the deployer reputation for the Solana mint DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263 — I want to know how old the creator wallet is, how much of the supply they still hold, and what the risk score is?

## When to prefer this

Use this endpoint when you need to specifically evaluate the trustworthiness of a Solana token's creator before buying — particularly useful for snipers and trading agents performing pre-trade due diligence. Prefer this over a full rug workup when you only need deployer-centric signals (wallet age, insider holdings, creator history) rather than liquidity or honeypot analysis.

## Known failure modes

- Invalid or non-existent mint address returns an error
- Mint address belongs to a well-known token with no traceable deployer (e.g. wrapped assets)
- On-chain data temporarily unavailable causing timeout
- Payment not processed resulting in 402 response
- Deployer wallet data not yet indexed for very new tokens

## How this service works

Deployer reputation for a Solana token: traces the mint's creator wallet, how much of the token the deployer still holds, the deployer wallet's age and the token's age. Returns a 0-100 risk score + verdict flagging fresh wallets, heavy insider self-holding and brand-new tokens. Answers 'who launched this and should I trust them?' before you buy. For snipers and trading agents.

## Output

Returns a 0-100 risk score and verdict for the token deployer, including: the deployer's wallet address, wallet age, the token's age, how much of the token supply the deployer still holds, and flags for red-flag conditions like fresh wallets, heavy insider self-holding, and brand-new tokens.

## 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",
     "$schema": "https://json-schema.org/draft/2020-12/schema",
     "required": [
      "mint"
     ],
     "properties": {
      "mint": {
       "type": "string",
       "examples": [
        "DezXAZ8z7PnrnRJjz3wXBoRgixCa6xjnB7YaB1pPB263"
       ],
       "description": "Solana SPL token mint whose deployer to trace."
      }
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "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/soldefi-deployer-reputation-check-032056cb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from soldefi.thomenz.me](https://www.zero.xyz/host/soldefi.thomenz.me/llms.txt)
