Get Started 🚀
Explore our wide range of affordable plans tailored to meet your specific needs, available exclusively on our website. Choose the plan that best suits your requirements and sign up for our portal to access powerful tools, real-time insights, and your unique License Key to get started. Our user-friendly platform ensures you can easily retrieve all necessary data and services, empowering you to stay ahead in fraud prevention, data validation, and risk assessment. 💡
Step-by-Step Integration Guide 📝
1. Register for API Access
To get started, follow these steps:
- Register on the Bolt Identity SaaS Portal:
- Visit Bolt Identity SaaS Portal.
- Create an account.
- Retrieve Your License Key:
- Navigate to the License Key Section.
- Copy your unique License Key.
note
Keep your API key secure. Treat it like a password and do not share it publicly.
2. Authenticate Your Requests
All API requests require authentication using your License Key. Add the API key in the request headers with the key name licenseKey
.
Base URL:
https://api.boltidentity.com/
Method:
POST
Headers:
licenseKey: api-key-XXXXXXXXXXXXX-XXXXXXXXXXX
Content-Type: application/json
Sample Request:
- Raw HTTP Request
- JavaScript (Fetch API)
- Python (requests)
- cURL Command
POST /api/fraud-engine
HTTP/1.1
Host: api.boltidentity.com
Content-Type: application/json
licenseKey: YOUR_API_KEY
const response = await fetch('https://api.boltidentity.com/api/fraud-engine', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'licenseKey': 'YOUR_API_KEY' // Include the API key in the headers
},
body: JSON.stringify({
email: 'example@example.com',
ip: '192.168.1.1',
phone: '+1234567890'
})
});
const data = await response.json();
import requests
url = 'https://api.boltidentity.com/api/fraud-engine'
headers = {
'Content-Type': 'application/json',
'licenseKey': 'YOUR_API_KEY'
}
data = {
'email': 'example@example.com',
'ip': '192.168.1.1',
'phone': '+1234567890'
}
response = requests.post(url, json=data, headers=headers)
data = response.json()
curl -X POST https://api.boltidentity.com/api/fraud-engine \
-H "Content-Type: application/json" \
-H "licenseKey: YOUR_API_KEY" \
-d '{
"email": "example@example.com",
"ip": "192.168.1.1",
"phone": "+1234567890"
}'