# NeuroDynamic Abliterated Model Large Completions

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

Generates uncensored, reduced-refusal text completions using a large language model, charged at $0.035 USDC per request via x402 micropayment.

## Facts

- Endpoint: POST https://api.neurodynamic.tech/v1/llm/abliterated-large/completions
- Price: $0.035/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-model-large-completions-1930eaa2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_HEqAb5XoPBFJckv1XSfS3

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-model-large-completions-1930eaa2 -d '<json body>'
```

Example prompt: Use the NeuroDynamic Abliterated Large model to write an uncensored dark fiction scene about a morally ambiguous heist — up to 512 tokens — I confirm I'm 18+ and accept the terms and third-party processing.

## When to prefer this

Choose this endpoint when you need a large, higher-capability uncensored LLM for tasks that standard models refuse — adult creative writing, controversial research, or unrestricted dialogue generation — and you need more output quality or capacity than the smaller Abliterated Model (which costs $0.020). Prefer this over standard LLM APIs when the task specifically requires reduced safety filtering and you are willing to pay per-request via x402 USDC micropayment with no subscription.

## Known failure modes

- Missing or incorrect terms_version const causes request rejection
- adult or third_party_processing const not set to true causes validation failure
- Input exceeding 2000 UTF-8 bytes is rejected
- Payment failure via x402 results in no completion delivered
- Network error causes lost output that cannot be replayed (payment recoverable)
- Exceeding max_tokens limit of 512 or going below 16 causes schema validation error

## How this service works

NeuroDynamic Abliterated Model Large: uncensored / reduced-refusal text LLM. 0.035 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 Large LLM, delivered as output tokens (up to 512). The model applies reduced content filtering, meaning it is more likely to fulfill requests that standard models would decline. No prompt or output is retained on NeuroDynamic servers, though third-party policies may apply. Lost output cannot be replayed but payment status can be recovered.

## 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-large",
  "ai_generated": true,
  "finish_reason": "stop"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/neurodynamic-abliterated-model-large-completions-1930eaa2/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)
