LIFETIME_ELITE_SYNC: FULL_UNCENSORED_ACCESS — $50

ENDS_IN: 7D 23:59:59
INITIATE_CLAIM
DEVELOPER_NEXUS_V3.0

API_DOCS

INTEGRATE UNCENSORED AI INTO YOUR APPLICATIONS VIA THE SANCTUARY REST API.

QUICKSTART

AUTHENTICATION

Every request to the AI Sanctuary API requires a valid session token. Obtain your token from the /buy page after purchasing a tier.

TERMINAL_OUTPUT
// Set your token in the Authorization header
fetch('https://ai-sanctuary.online/api/ai', {
  method: 'POST',
  headers: {
    'Content-Type': 'application/json',
    'Authorization': 'Bearer YOUR_SESSION_TOKEN'
  },
  body: JSON.stringify({
    model: 'meta-llama/llama-3.3-70b-instruct',
    messages: [{ role: 'user', content: 'Hello, Sanctuary.' }]
  })
})

RESPONSE FORMAT

All responses follow the OpenAI-compatible chat completion format, making migration from existing AI providers seamless.

TERMINAL_OUTPUT
{
  "id": "cmpl-abc123",
  "object": "chat.completion",
  "model": "meta-llama/llama-3.3-70b-instruct",
  "choices": [{
    "index": 0,
    "message": {
      "role": "assistant",
      "content": "Signal received. Ready to operate."
    },
    "finish_reason": "stop"
  }]
}