# MatrixFold Crypto Token Risk Brief

> MatrixFold Crypto Token Risk Brief is a paid API for AI agents from api-production-853c.up.railway.app, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Generates an explainable risk assessment brief for a crypto token by checking DexScreener market/liquidity data and GoPlus/RugCheck security signals, returning a risk score, risk level, red flags, and recommended next checks.

## Facts

- Endpoint: POST https://api-production-853c.up.railway.app/v1/crypto/risk-brief
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-production-853c-up-railway-app-b2593b69
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DHN5AfM558QWaEN5wxmdj

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 api-production-853c-up-railway-app-b2593b69 -d '<json body>'
```

Example prompt: Before I approve this swap, can you run a risk brief on the token at address 0xabc123...def on Ethereum — I want to see the risk score, any red flags like honeypot or low liquidity, and what checks I should do next?

## When to prefer this

Use this endpoint when an AI agent needs a fast, explainable, multi-source token risk signal before executing or approving a crypto trade, wallet interaction, or token listing — especially when you need human-readable red flags and next-step recommendations rather than raw on-chain data. Prefer this over manual on-chain lookups when you need consolidated DexScreener + GoPlus + RugCheck signals in a single structured response.

## Known failure modes

- Token address not found on the specified chain — returns error with unknown token message
- Chain not supported — returns error indicating unsupported network
- DexScreener or GoPlus/RugCheck APIs unavailable — returns partial results or upstream error
- Invalid or malformed token address — returns validation error
- Payment not provided or insufficient — returns 402 Payment Required

## Output

Returns a structured JSON object with a numeric riskScore, a categorical riskLevel (e.g. low/medium/high/critical), a list of red flags detected (e.g. honeypot, low liquidity, ownership not renounced), recommended next checks for the agent to perform, the data sources consulted (DexScreener, GoPlus, RugCheck), and a non-investment-advice disclaimer.

## Example request

```json
{
 "input": {
  "body": {
   "chain": "ethereum",
   "tokenAddress": "0x6B175474E89094C44Da98b954EedeAC495271d0F",
   "includeMarket": true,
   "includeSecurity": true,
   "includeNarrative": false
  },
  "type": "http",
  "method": "POST",
  "bodyType": "json"
 }
}
```

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "type": "object",
     "required": [
      "chain",
      "tokenAddress"
     ],
     "properties": {
      "chain": {
       "enum": [
        "ethereum",
        "base",
        "bsc",
        "polygon",
        "arbitrum",
        "optimism",
        "solana"
       ],
       "type": "string",
       "description": "Chain to scan. EVM chains use GoPlus where available; Solana uses RugCheck summary plus DexScreener market data."
      },
      "tokenAddress": {
       "type": "string",
       "maxLength": 80,
       "minLength": 32,
       "description": "Token contract address or Solana mint address."
      },
      "includeMarket": {
       "type": "boolean",
       "description": "Fetch DexScreener market/liquidity data. Defaults to true."
      },
      "includeSecurity": {
       "type": "boolean",
       "description": "Fetch GoPlus or RugCheck token-security data where supported. Defaults to true."
      },
      "includeNarrative": {
       "type": "boolean",
       "description": "Reserved for future X/Twitter narrative monitoring. The MVP returns not_available when true."
      }
     }
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "type": "string"
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "chain",
      "tokenAddress",
      "token",
      "riskScore",
      "riskLevel",
      "verdict",
      "summary",
      "market",
      "security",
      "narrative",
      "riskSignals",
      "nextChecks",
      "dataSources",
      "caveats",
      "generatedAt"
     ],
     "properties": {
      "chain": {
       "type": "string"
      },
      "token": {
       "type": "object"
      },
      "market": {
       "type": [
        "object",
        "null"
       ]
      },
      "caveats": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "summa
… (truncated)
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-production-853c-up-railway-app-b2593b69/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api-production-853c.up.railway.app](https://www.zero.xyz/host/api-production-853c.up.railway.app/llms.txt)
