Getting Started
Overview
The Braidis API provides real-time data enrichment through a simple REST interface. Resolve unknown callers, look up property owners, append phone numbers, and build complete identity profiles.
Base URL
https://api.braidisdata.com/v1Quick Start
1. Get Your API Key
Sign up at braidisdata.com and navigate to Settings > API Keys to generate your key.
2. Make Your First Request
bash
curl -X POST https://api.braidisdata.com/v1/reverse-phone \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"phone": "+15551234567"}'3. Get Results
json
{
"success": true,
"credits_used": 5,
"credits_remaining": 995,
"data": {
"phone": "+15551234567",
"name": {
"first": "John",
"last": "Smith"
},
"address": {
"street": "123 Main St",
"city": "Austin",
"state": "TX",
"zip": "78701"
},
"confidence": 0.94
}
}SDKs
Official SDKs are coming soon for:
- JavaScript/TypeScript (Node.js & browser)
- Python
- Ruby
In the meantime, use any HTTP client with the REST API directly.
Next Steps
- Authentication — How to authenticate your requests
- Credits — Understand the credit system
- API Reference — Full endpoint documentation