prxy.monster API-key BYOK is live. Start free

Sandbox quickstart

Run 5 real AI calls. Get 5 signed receipts. No signup required.

The anonymous sandbox is the fastest way to see prxy.monster in action without a credit card or an account. Sandbox sessions emit signed public_demo receipts — anyone can click into them and verify the signature.

Safety first

The sandbox is for evaluation only.

1. Open the sandbox

Visit prxy.monster/sandbox. The page mints a session for you on first call. You can also drive it from the API directly:

# Create an anonymous sandbox session
curl -X POST https://api.prxy.monster/v1/anon/sessions \
  -H "Content-Type: application/json" \
  -d '{}'
# → { "session_id": "...", "anon_token": "anon_...", "request_limit": 5, "expires_at": "..." }

The anon_token you get back authenticates the next 5 calls and is only valid for that session. Keep it in memory; it never appears anywhere else.

2. Make a real Bedrock call

curl -X POST https://api.prxy.monster/v1/messages \
  -H "Authorization: Bearer $ANON_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "us.amazon.nova-micro-v1:0",
    "max_tokens": 200,
    "messages": [{ "role": "user", "content": "Say hi" }]
  }' -i

The response includes the standard receipt headers:

Payment-Receipt: https://receipts.prxy.monster/r/<id>
Payment-Receipt-Digest: sha-256=:<base64>:
Payment-Receipt-Kid: prxy-receipt-2026-q2

3. Click the receipt

https://receipts.prxy.monster/r/<id> shows the polished detail page with a live <VerifyBadge>. The ✓ Verified you see is real — Web Crypto Ed25519 in your browser, against the public JWKS. No prxy server claim involved.

4. List the session’s receipts

curl https://api.prxy.monster/v1/anon/sessions/<session_id>/receipts \
  -H "Authorization: Bearer $ANON_TOKEN"

Returns the receipts persisted under this session, in snake_case. Useful for stitching the sandbox into a UI.

5. Convert to a real account (optional)

If you sign up for prxy.monster while a sandbox session is active, the sign-up flow can claim those sandbox receipts onto your new account. Receipts themselves are never mutated — the linkage lives in a sidecar table (anonymous_session_receipt_claims), so the original signature stays valid forever.

What the sandbox proves

Next