# OnchainExpat x402 Uncensored Reasoning API

> OnchainExpat x402 Uncensored Reasoning API is a paid API for AI agents from x402.onchainexpat.com, paid per call via x402, $0.08/call, status unknown (last checked 2026-09-15).

Pay-per-request uncensored AI reasoning endpoint using the x402 micropayment protocol, providing unrestricted chain-of-thought inference at $0.08 USDC per call

## Facts

- Endpoint: POST https://x402.onchainexpat.com/api/x402-uncensored/reasoning
- Price: $0.08/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/onchainexpat-x402-uncensored-reasoning-api-f3baf377
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_w64uix-W904sTsBKvD8I1

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 onchainexpat-x402-uncensored-reasoning-api-f3baf377 -d '<json body>'
```

Example prompt: Use the OnchainExpat uncensored reasoning API to work through this problem without any content restrictions: explain in detail the strategic trade-offs between proof-of-work and proof-of-stake consensus mechanisms from both a security and decentralization perspective.

## When to prefer this

Choose this endpoint when you need uncensored AI reasoning without typical content-filter restrictions, are comfortable paying $0.08 USDC per call via the x402 micropayment protocol, and want a lightweight pay-per-request model rather than a subscription-based API. Ideal for agents that need unrestricted chain-of-thought reasoning on sensitive or complex topics.

## Known failure modes

- Payment not provided or insufficient USDC — returns 402 Payment Required
- Malformed request body — returns 400 Bad Request
- Service unavailable or model timeout — returns 503
- Rate limiting exceeded — returns 429 Too Many Requests
- Empty or missing prompt — returns 400 with validation error

## How this service works

Pay-per-request AI, crypto, proxy, and utility APIs using x402 protocol

## Output

A JSON response containing the AI-generated uncensored reasoning output for the submitted prompt, including chain-of-thought or direct inference results depending on the model configuration.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "messages"
 ],
 "properties": {
  "model": {
   "type": "string",
   "description": "Model ID (default: deepseek-v3.2). Available: deepseek-v3.2, qwen3-235b-a22b-thinking-2507, kimi-k2-6"
  },
  "message": {
   "type": "string",
   "description": "Shorthand: single user message string (auto-converted to messages array)"
  },
  "messages": {
   "type": "array",
   "description": "Chat messages array [{role: 'user'|'assistant', content: 'message'}]"
  },
  "max_tokens": {
   "type": "integer",
   "description": "Maximum tokens in response (default: 4096)"
  },
  "temperature": {
   "type": "number",
   "description": "Response creativity 0-2 (default: 0.7)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object",
   "properties": {
    "model": {
     "type": "string"
    },
    "usage": {
     "type": "object",
     "description": "Token usage stats"
    },
    "content": {
     "type": "string",
     "description": "Assistant's response with reasoning"
    }
   }
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/onchainexpat-x402-uncensored-reasoning-api-f3baf377/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.onchainexpat.com](https://www.zero.xyz/host/x402.onchainexpat.com/llms.txt)
