Secrypt

API quickstart

OpenAI-compatible chat completions for Cipher. Full pitch + Cursor cookbook: secrypt.space/api.

1. Create an API key

Sign in at secrypt.space → Account → API keys → Create. Copy the sk_sec_… value once (it is not shown again).

2. List models

curl https://secrypt.space/v1/models \
  -H "Authorization: Bearer sk_sec_YOUR_KEY"

Use model id cipher (or alias secrypt-cloud).

3. Chat completion

curl https://secrypt.space/v1/chat/completions \
  -H "Authorization: Bearer sk_sec_YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "cipher",
    "messages": [
      {"role": "user", "content": "Say hello in one sentence."}
    ]
  }'

Cursor

Base URL: https://secrypt.space/v1
API Key:  sk_sec_YOUR_KEY
Model:    cipher

Limits & credits

Keys are hashed at rest. Create key copies once to clipboard. Revoke anytime from Account. Privacy: we do not train on API prompts for ads. See /honesty and /api.

API · Pricing · Open chat