Crystal Proxy

Secure your Discord webhooks with ease. Set rate limits, hide your real webhook, and manage your proxies seamlessly.

Welcome to Crystal Proxy

Crystal Proxy offers a streamlined solution to create and manage proxies for your Discord webhooks. Ensure the security of your original webhook, set custom rate limits, and send messages efficiently—all through an intuitive interface.

Manage Your Proxy

Create Proxy

Send Message

Documentation

Endpoint: https://crystal-proxy.vercel.app/api/proxy (POST Only)

This endpoint performs two primary functions:

1. Creating a Proxy

{
  "webhook": "https://discord.com/api/webhooks/123/abc",
  "rateLimit": 5
}
Response:
{
  "success": true,
  "proxyId": "abcd1234"
}

2. Sending a Message

{
  "content": "Hello from Crystal Proxy!",
  "embeds": []
}
Response:
{
  "success": true,
  "message": "Message proxied successfully."
}

Python Example

import requests

resp = requests.post("https://crystal-proxy.vercel.app/api/proxy", json={
  "webhook": "https://discord.com/api/webhooks/123/abc",
  "rateLimit": 5
})
data = resp.json()
if data.get("success"):
    pid = data["proxyId"]
    msg_resp = requests.post("https://crystal-proxy.vercel.app/api/proxy",
      headers={"proxyID": pid},
      json={"content": "Hello from Python!"})
    print(msg_resp.json())

JavaScript Example

fetch("https://crystal-proxy.vercel.app/api/proxy", {
  method: "POST",
  headers: { "Content-Type": "application/json" },
  body: JSON.stringify({
    webhook: "https://discord.com/api/webhooks/123/abc",
    rateLimit: 5
  })
})
.then(response => response.json())
.then(data => {
  if (data.success) {
    const proxyId = data.proxyId;
    return fetch("https://crystal-proxy.vercel.app/api/proxy", {
      method: "POST",
      headers: {
        "Content-Type": "application/json",
        "proxyID": proxyId
      },
      body: JSON.stringify({ content: "Hello from JS!" })
    });
  }
})
.then(response => response && response.json())
.then(console.log)
.catch(console.error);

After obtaining your proxyId, include it in the "proxyID" header for all subsequent messages. This ensures your actual Discord webhook remains hidden and adheres to your specified rate limits.

Contact Us

Have questions or need support? Join our Discord community and get in touch with us directly.

Join our Discord

Terms of Service

Welcome to Crystal Proxy! By using our services, you agree to the following terms and conditions:

  • Acceptable Use: You agree not to use Crystal Proxy for any malicious activities, including but not limited to hacking, spamming, or distributing harmful content.
  • API Abuse: Do not abuse the API by exceeding the rate limits or attempting to disrupt the service for other users.
  • Webhook Security: You are responsible for maintaining the confidentiality of your Discord webhook URLs. Do not share your proxy IDs publicly.
  • Compliance with Laws: Use Crystal Proxy in compliance with all applicable local, state, national, and international laws and regulations.
  • Termination: We reserve the right to suspend or terminate your access to Crystal Proxy at our discretion, especially in cases of violation of these terms.
  • Limitation of Liability: Crystal Proxy is provided "as is" without any warranties. We are not liable for any damages arising from the use of our service.
  • Modifications: We may update these terms from time to time. Continued use of the service constitutes acceptance of the updated terms.

If you have any questions or concerns about these terms, please contact us through our Discord community.

Privacy Policy

Your privacy is important to us. This Privacy Policy explains how we collect, use, disclose, and safeguard your information when you use our services.

  • Information Collection: We may collect personal information such as your region and or state to enhance analytics.
  • Use of Information: The information collected is used to provide and improve our services, enforce our terms, and communicate with you.
  • Information Sharing: We do not share your personal information with third parties, except as required by law or to protect our rights.
  • Data Security: We implement appropriate security measures to protect your information from unauthorized access, alteration, disclosure, or destruction.
  • Cookies and Tracking: We may use cookies and similar tracking technologies to track activity on our service and hold certain information.
  • Your Rights: You have the right to access, update, or delete your personal information. Contact us to exercise these rights.
  • Changes to This Policy: We may update our Privacy Policy from time to time. We will notify you of any changes by posting the new policy on this page.

If you have any questions or concerns about our Privacy Policy, please contact us through our Discord community.