Queldrex
Developer API

Run AI-code security on every commit.

The same 3-layer audit, rules + AI deep analysis + hallucinated-package detection, as a simple REST API. Drop it into CI/CD and block insecure AI-written code before it merges.

Your API key

Generate a key to start using the API. Requires a Pro or Team plan.

Quick start

cURL
curl -X POST https://queldrex.com/api/v1/scan \
  -H "Authorization: Bearer YOUR_KEY" \
  -H "Content-Type: application/json" \
  -d '{"code":"const pw=\"admin123\";","language":"javascript"}'

Block insecure code in CI

GitHub Actions
# .github/workflows/security.yml
- name: Queldrex AI-Code Security
  run: |
    curl -sf -X POST https://queldrex.com/api/v1/scan \
      -H "Authorization: Bearer ${{ secrets.QUELDREX_KEY }}" \
      -H "Content-Type: application/json" \
      -d "{\"code\": $(jq -Rs . < src/app.js)}" \
      | jq -e '.summary.critical == 0'

What you get back

Need higher volume, multiple seats, or SSO? The Team plan raises limits and adds seats.

See plans →