Vendor Quickstart
This guide is for technical vendors integrating Bloqr-compiled lists into their products.
- Get an API key from app.bloqr.dev.
- Make your first compile request.
- Point your product at the compiled list URL or integrate the streaming endpoint.
First request examples
curl -X POST 'https://api.bloqr.dev/api/v1/compile' \ -H 'Authorization: Bearer YOUR_API_KEY' \ -H 'Content-Type: application/json' \ -d '{ "urls": ["https://easylist.to/easylist/easylist.txt"], "transformations": ["RemoveComments", "Deduplicate"] }'const response = await fetch('https://api.bloqr.dev/api/v1/compile', { method: 'POST', headers: { 'Authorization': `Bearer ${process.env.BLOQR_API_KEY}`, 'Content-Type': 'application/json', }, body: JSON.stringify({ urls: ['https://easylist.to/easylist/easylist.txt'], transformations: ['RemoveComments', 'Deduplicate'], }),});
const payload = await response.json();console.log(payload);Key endpoint map
| Endpoint | Description |
|---|---|
POST /api/v1/compile | Compile a single configuration and return compiled output metadata. |
POST /api/v1/compile/batch | Compile multiple configurations in one request for bulk workflows. |
GET /api/v1/compile/stream | Subscribe to live compile progress and result events. |
POST /api/v1/validate | Validate requests before running production compiles. |
Continue reading
Bloqr AI™ — The privacy you didn't know you needed.
© 2026 Bloqr AI™, a trademark of Bloqr Systems™. Created by Bloqr Systems™, founded by Jayson Knight.
Internet Hygiene (n.) — the ongoing practices that keep your digital life clean, private, and safe.
Get involved on GitHub
Our product repos live in the BloqrAI org, part of the Bloqr Systems GitHub Enterprise. Product repos are internal-visibility — enterprise membership is required to view them.