# Coralflavor

> Coralflavor is a private, secure, adult-only AI chat platform and OpenAI-compatible uncensored LLM API. It provides unfiltered conversational AI without safety alignment or prompt rejection, alongside developer tools for building applications on top of the same models.

## What Coralflavor Is

Coralflavor is two products sharing one backend:

1. **Coralflavor Chat** — a private web chat interface at https://coralflavor.com/ for adult users who want direct, unfiltered answers. Supports streaming responses, web search grounding via Exa, image and PDF uploads (vision/OCR), and persistent chat history for signed-in users.
2. **Coralflavor API** — an OpenAI-compatible HTTP API for developers building unfiltered AI applications. Drop-in compatible with the OpenAI Python SDK, Node.js SDK, and any HTTP client.

The underlying model is a 600B+ parameter large language model with no safety alignment layer, no RLHF refusal training, and no content moderation between the prompt and the response.

## API Reference

### Base URL

```
https://coralflavor.com/v1
```

### Endpoints

- `POST https://coralflavor.com/v1/chat/completions` — OpenAI-compatible chat completions. Supports `messages`, `temperature`, `max_tokens`, `stream`, optional `websearch` (boolean), and other standard parameters.
- `POST https://coralflavor.com/vision` — image-based prompts (vision/OCR).
- `POST https://coralflavor.com/exa-search` — web search grounding via Exa.

### Authentication

All requests require a bearer token from the [API dashboard](https://coralflavor.com/api-dashboard):

```
Authorization: Bearer <your_api_key>
```

### Model

Use `coralflavor` as the model identifier.

### Web search (`websearch`)

Set `"websearch": true` on chat completion requests to run an Exa web search on the latest user message before inference. Search results are injected into the prompt (same grounding as Coralflavor Chat). Costs an additional **$0.10 per request** on top of token usage. With the OpenAI Python SDK, pass `extra_body={"websearch": True}`.

### Python Example (streaming)

```python
from openai import OpenAI

client = OpenAI(
    base_url="https://coralflavor.com/v1",
    api_key="<your_api_key>",
)

stream = client.chat.completions.create(
    model="coralflavor",
    messages=[{"role": "user", "content": "Hello"}],
    stream=True,
)

for chunk in stream:
    delta = chunk.choices[0].delta.content
    if delta:
        print(delta, end="", flush=True)
```

### cURL Example

```bash
curl https://coralflavor.com/v1/chat/completions \
  -H "Authorization: Bearer <your_api_key>" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "coralflavor",
    "messages": [{"role": "user", "content": "Hello"}],
    "stream": false
  }'
```

### Node.js Example

```javascript
import OpenAI from "openai";

const client = new OpenAI({
  baseURL: "https://coralflavor.com/v1",
  apiKey: "<your_api_key>",
});

const response = await client.chat.completions.create({
  model: "coralflavor",
  messages: [{ role: "user", content: "Hello" }],
});

console.log(response.choices[0].message.content);
```

## Key Differentiators

- **No safety alignment.** The model has not been RLHF-trained to refuse prompts. It does not return "I cannot help with that" responses.
- **No content moderation layer.** Requests pass through to the model as-is; responses are returned as-is.
- **600B+ parameters.** Among the largest commercially accessible language models. For reference, GPT-3 was 175B parameters.
- **OpenAI-compatible.** Use existing OpenAI SDKs by changing only the `base_url` and `api_key`.
- **Streaming via Server-Sent Events.** `stream: true` returns the standard OpenAI SSE format for token-by-token delivery.
- **Privacy-first.** Chat history is only stored for signed-in users who opt in by saving a chat. Anonymous chats are not persisted.

## Common Use Cases

- Research and analysis on sensitive topics, adversarial example generation, model behavior testing.
- Creative writing, fiction, and roleplay without content restrictions.
- Building consumer chat products that need to answer any question.
- Replacing OpenAI in existing applications where filtering causes problems.

## Pricing

API access is metered by usage. Purchase API credits in the [API dashboard](https://coralflavor.com/api-dashboard).

- **$7.00 per 1M tokens** (input + output combined)
- **+$0.10 per request** when `websearch: true`

Chat access is offered through a Pro subscription with checkout via Stripe.

## Frequently Asked Questions

**Is the Coralflavor API really uncensored?**
Yes. The model has no safety alignment, no RLHF refusal training, and no content filtering. It processes every prompt without rejection.

**Can I use my existing OpenAI code?**
Yes. Change the `base_url` to `https://coralflavor.com/v1` and the `api_key` to your Coralflavor key. The request and response schema are identical.

**Does streaming work the same as OpenAI?**
Yes. Set `"stream": true` and parse Server-Sent Events the same way you would for OpenAI.

**What languages and tasks does the model support?**
Multi-language text generation, code generation, creative writing, analysis, roleplay, translation, summarization, and any other text-based task. No topic restrictions.

**How do I get an API key?**
Sign in, open the [API dashboard](https://coralflavor.com/api-dashboard), and click "Get API Key".

**Is Coralflavor anonymous?**
You can use the chat without an account. Saved chat history and API access require signing in.

**Is there an age restriction?**
Yes. Coralflavor is adult-only. See the [Terms of Service](https://coralflavor.com/tos).

## Policies

- [Privacy Policy](https://coralflavor.com/privacy)
- [Terms of Service](https://coralflavor.com/tos)
- [The Truth](https://coralflavor.com/truth) — Coralflavor's position on AI safety alignment and user autonomy.

## Links

- Site: https://coralflavor.com/
- Chat: https://coralflavor.com/
- API Dashboard: https://coralflavor.com/api-dashboard
- API Overview: https://coralflavor.com/uncensored-llm-api
- Discord Chatbot: https://coralflavor.com/uncensored-discord-chatbot
- Comparison: https://coralflavor.com/best-unfiltered-ai
- Blog: https://coralflavor.com/blog
- Sitemap: https://coralflavor.com/sitemap.xml
- LLM index: https://coralflavor.com/llms.txt
