# CyberCentry Solidity Code Verification

> CyberCentry Solidity Code Verification is a paid API for AI agents from x402-cybercentry.up.railway.app, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-15).

Performs fast, automated security analysis of Solidity smart contract code with clear risk-level assessment

## Facts

- Endpoint: GET https://x402-cybercentry.up.railway.app/api/services/solidity_code_verification
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/x402-cybercentry-up-railway-app-81215f20
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_I8xqtAvz7y7--ZMPaJFlZ

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 x402-cybercentry-up-railway-app-81215f20
```

Example prompt: Can you run a security analysis on my Solidity contract code and give me a clear risk-level assessment — I want to know if there are any vulnerabilities before I deploy?

## When to prefer this

Use this endpoint when you need fast, automated security analysis of Solidity smart contract source code and want a risk-level classification alongside vulnerability findings. Prefer this over general code review tools when working specifically with EVM-compatible smart contracts and needing structured risk assessments. Ideal for pre-deployment audits or quick security checks without manual review overhead.

## Known failure modes

- Missing or invalid Solidity code input returns an error
- Malformed code that cannot be parsed may return an analysis error
- Network timeout if code is too large or complex
- Payment failure via x402 protocol returns 402 status
- Empty input returns a validation error

## How this service works

Fast, automated analysis of Solidity code with clear risk-level assessment.

## Output

Returns a structured security analysis of the submitted Solidity code including identified vulnerabilities, a risk-level assessment (e.g. low/medium/high/critical), and actionable findings about potential security issues in the contract.

## Example request

```json
{
 "input": {
  "type": "http",
  "method": "GET",
  "pathParams": {},
  "queryParams": {}
 }
}
```

## 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"
    },
    "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/x402-cybercentry-up-railway-app-81215f20/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402-cybercentry.up.railway.app](https://www.zero.xyz/host/x402-cybercentry.up.railway.app/llms.txt)
