# NeuroDynamic Abliterated LLM (Standard)

> NeuroDynamic Abliterated LLM (Standard) is a paid API for AI agents from api.neurodynamic.tech, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Generates uncensored, reduced-refusal text completions using an abliterated language model, billed per request via x402 micropayment.

## Facts

- Endpoint: POST https://api.neurodynamic.tech/v1/llm/abliterated/completions
- 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/neurodynamic-abliterated-llm-standard-f01229c7
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_TAc9uarGO7BH6ZKBUh6Vb

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 neurodynamic-abliterated-llm-standard-f01229c7 -d '<json body>'
```

Example prompt: Use the NeuroDynamic abliterated model to complete this prompt with up to 512 tokens — I confirm I'm 18+ and agree to the terms: 'Write a gritty, unfiltered noir detective story opening where the detective is morally compromised.'

## When to prefer this

Choose this endpoint when you need a text LLM that will respond to prompts that mainstream models refuse — adult content, sensitive topics, or otherwise restricted queries — and you want pay-per-use pricing at $0.02 USDC with no subscription. Prefer the standard (non-large) variant when cost efficiency matters more than maximum capability and your prompt fits within 2000 UTF-8 bytes.

## Known failure modes

- Payment not received or x402 handshake fails — no completion returned
- Input exceeds 2000 UTF-8 bytes — request rejected
- terms_version or adult or third_party_processing constants missing or incorrect — validation error
- max_tokens outside 16–512 range — request rejected
- Network failure mid-response — output lost and cannot be replayed; payment status recoverable
- Third-party infrastructure outage — request may fail despite payment

## How this service works

NeuroDynamic Abliterated Model: uncensored / reduced-refusal text LLM. 0.020 USDC per request, 2000 UTF-8 input bytes and up to 512 output tokens. Age 18+, lawful use. No prompt/output retention on NeuroDynamic servers; third-party policies apply. Read https://api.neurodynamic.tech/llm before paying. Lost output cannot be replayed; payment status can be recovered.

## Output

A text completion generated by the abliterated (reduced-refusal) LLM, returned as a response body. Output is up to 512 tokens long. NeuroDynamic does not retain prompts or outputs server-side. Lost outputs cannot be replayed, but payment status can be recovered separately.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "adult": {
   "const": true
  },
  "input": {
   "type": "string",
   "maxLength": 2000,
   "description": "At most 2000 UTF-8 bytes"
  },
  "max_tokens": {
   "type": "integer",
   "default": 512,
   "maximum": 512,
   "minimum": 16
  },
  "terms_version": {
   "const": "2026-09-11-llm-v1"
  },
  "third_party_processing": {
   "const": true
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "text": "Hello.",
  "model": "abliterated",
  "ai_generated": true,
  "finish_reason": "stop"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/neurodynamic-abliterated-llm-standard-f01229c7/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.neurodynamic.tech](https://www.zero.xyz/host/api.neurodynamic.tech/llms.txt)
