Solution
The uncensored AI API
"Uncensored" has never meant "no rules". It means the rules are written down, enforced deterministically, and placed at the policy layer — not inside a filter that refuses your users probabilistically and bills you for the privilege.
50 free credits · no card · adults only, by policy
Refusals are a product killer
A filtered model refusing mid-scene is not safety, it is breakage: the character dies mid-story, the user churns, and the refusal still billed. Worse, it is random — the same prompt passes on Tuesday and fails on Thursday, so you cannot design around it.
eroq's engines are selected so fiction renders. The limits live in a four-paragraph acceptable-use policy — no minors, no real people, nothing illegal — enforced at the account level. Requests outside it return an explicit content_blocked error code and are never charged.
Uncensored, across every modality
The same policy-not-filter posture holds for all six models:
- →Chat: RP+ stays in character through mature and intense scenes.
- →Images: mature imagery of adult characters renders at 10 credits, with negative prompts and CFG control.
- →Video and voice: same range, same rules, same error codes.
Accountable, not anonymous
Half the "uncensored" market is anonymous endpoints with no entity and no tomorrow. eroq is operated by Qore Games (Paris) with real terms of service and sale, an invoiced billing trail, and a ledger you can audit call by call. Permissive and accountable are not opposites — they are the product.
One call to see it
curl https://eroq.ai/v1/chat/completions \
-H "Authorization: Bearer $EROQ_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "eroq-rp-plus",
"context": "Mira: sardonic starship mechanic, dry humor, hates small talk. Scene: engine bay, mid-shift.",
"messages": [
{
"role": "user",
"content": "The reactor is making that noise again."
}
]
}'Base URL https://eroq.ai/v1 · full reference in the docs
| Model | Kind | Price |
|---|---|---|
| eroq-rp-plus | chat | 3 credits / completion |
| eroq-rp-mini | chat | 1 credit / completion |
| eroq-image-one | image | 10 credits / image |
| eroq-motion-one | video | 100 credits / 5s clip |
Full table on the pricing page.
Questions builders ask
What does "uncensored" mean here, concretely? +
Models selected so lawful adult fiction renders instead of refusing, plus a written acceptable-use policy as the only wall: no minors, no real-person impersonation, nothing illegal — enforced at the account level with explicit error codes.
Will I get banned for NSFW content? +
No — NSFW content between adult, fictional characters is the supported use case. Enforcement targets the policy's hard limits, not maturity.
What happens when a prompt is outside policy? +
The call returns HTTP 422 with code content_blocked, is not charged, and your product can react programmatically — no silent failures, no lectures.
Why not just use a jailbroken general API? +
Jailbreaks are probabilistic and break on every model update; a policy-level guarantee is contractual. Your product deserves infrastructure, not a trick.