- Authenticate against the API.
- Create a Politic — the policy that governs how DABAR reasons.
- Create a Project — a run that applies the politic to your sources.
- Deploy the project so DABAR starts producing verified outputs.
You need a DABAR account and an API token. If you don’t have one yet, sign in at dabarai.com and copy your token from the dashboard.
1. Set up your environment
Export your token so the examples below work as-is.2. Verify authentication
List your existing politics to confirm your token works.200 response with "success": true means you’re ready. A 401 means the header is missing or the token is invalid — see Authentication.
3. Create a Politic
A Politic is a reusable set of rules DABAR must follow when reasoning. It defines what sources are authoritative, what to flag, and how answers should be shaped._id returned in data._id — you’ll pass it as politicsId in the next step.
4. Create a Project
A Project applies a Politic to a specific set of input files (documents, URLs, audio, video, or raw text).draft status. It won’t run until you deploy it.
5. Deploy the project
GET /projects/{id} to track progress.
Next steps
Policy Engine
Learn how to structure rules that DABAR can enforce end-to-end.
Primary Sources
Understand what kinds of sources DABAR accepts and how they’re used.
Autonomous Agents
Turn a deployed project into an agent that takes action in your systems.
API Reference
Every endpoint, parameter, and response in detail.