Loading handaurax.qzz...
Our AI is analyzing your unique hand patterns...
Our AI is analyzing your unique hand patterns...
Integrate handaurax.qzz's powerful hand analysis capabilities into your applications with our RESTful API. Access AI-powered insights programmatically.
Sign up for an account and generate your API key in the developer dashboard.
Use our endpoints to submit hand images and retrieve analysis results.
Incorporate the insights into your application or workflow.
/api/analyzeAuth: Required100 requests/hourSubmit a hand image for analysis
/api/results/{id}Auth: Required1000 requests/hourRetrieve analysis results by ID
/api/report/{id}Auth: Required100 requests/hourDownload PDF report by ID
/api/analysis/{id}Auth: Required1000 requests/hourDelete analysis data by ID
Include your API key in the Authorization header
Use OAuth 2.0 for user-specific access
// Analyze a hand image
const response = await fetch('https://api.handaurax.qzz/v1/analyze', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_KEY',
'Content-Type': 'application/json'
},
body: JSON.stringify({
imageUrl: 'https://example.com/hand.jpg'
})
});
const result = await response.json();import requests
url = "https://api.handaurax.qzz/v1/analyze"
headers = {
"Authorization": "Bearer YOUR_API_KEY",
"Content-Type": "application/json"
}
data = {
"imageUrl": "https://example.com/hand.jpg"
}
response = requests.post(url, headers=headers, json=data)
result = response.json()Explore our comprehensive documentation, sample applications, and developer community.