अपने एप्लिकेशन में प्रोफेशनल-ग्रेड फोटो प्रोसेसिंग एकीकृत करें। डॉक्यूमेंट फोटो, फेस डिटेक्शन और बहुत कुछ के लिए अत्याधुनिक AI।
सभी API अनुरोधों के लिए API कुंजी आवश्यक है
Authorization: Bearer isp_your_api_key_here
आपकी सभी फोटो प्रोसेसिंग जरूरतों के लिए शक्तिशाली एंडपॉइंट्स
/api/v1/remove-background
पिक्सेल-परफेक्ट प्रेसिजन के साथ इमेज से बैकग्राउंड हटाएं। ट्रांसपेरेंट PNG या कस्टम बैकग्राउंड कलर लागू करता है।
curl -X POST https://api.ishotaphoto.com/v1/remove-background \
-H "Authorization: Bearer isp_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"image_url": "https://example.com/photo.jpg",
"output_format": "png",
"background_color": null
}'
{
"success": true,
"credits_used": 1,
"credits_remaining": 249,
"result": {
"image_url": "https://cdn.ishotaphoto.com/results/abc123.png",
"expires_at": "2025-01-08T12:00:00Z"
}
}
/api/v1/replace-background
बैकग्राउंड को सॉलिड कलर, ग्रेडिएंट या कस्टम इमेज से बदलें। प्रोडक्ट फोटोग्राफी और पोर्ट्रेट के लिए परफेक्ट।
curl -X POST https://api.ishotaphoto.com/v1/replace-background \
-H "Authorization: Bearer isp_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"image_url": "https://example.com/photo.jpg",
"background": {
"type": "color",
"value": "#FFFFFF"
}
}'
{
"success": true,
"credits_used": 1,
"credits_remaining": 248,
"result": {
"image_url": "https://cdn.ishotaphoto.com/results/def456.jpg",
"expires_at": "2025-01-08T12:00:00Z"
}
}
/api/v1/detect-faces
बाउंडिंग बॉक्स, कॉन्फिडेंस स्कोर और मल्टी-फेस सपोर्ट के साथ इमेज में चेहरे डिटेक्ट और लोकेट करें।
curl -X POST https://api.ishotaphoto.com/v1/detect-faces \
-H "Authorization: Bearer isp_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"image_url": "https://example.com/photo.jpg"
}'
{
"success": true,
"credits_used": 1,
"faces": [
{
"confidence": 0.98,
"bounding_box": {
"x": 120, "y": 80,
"width": 200, "height": 250
}
}
]
}
/api/v1/detect-emotions
कॉन्फिडेंस स्कोर के साथ खुशी, आश्चर्य, न्यूट्रल और अधिक जैसी भावनाओं का पता लगाने के लिए फेशियल एक्सप्रेशन का विश्लेषण करें।
curl -X POST https://api.ishotaphoto.com/v1/detect-emotions \
-H "Authorization: Bearer isp_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"image_url": "https://example.com/photo.jpg"
}'
{
"success": true,
"credits_used": 1,
"faces": [
{
"emotions": {
"neutral": 0.85,
"happy": 0.10,
"surprised": 0.03,
"sad": 0.02
}
}
]
}
/api/v1/detect-keypoints
सटीक फेस एनालिसिस और अलाइनमेंट के लिए आंखें, नाक, मुंह और जॉलाइन सहित 68+ फेशियल लैंडमार्क डिटेक्ट करें।
curl -X POST https://api.ishotaphoto.com/v1/detect-keypoints \
-H "Authorization: Bearer isp_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"image_url": "https://example.com/photo.jpg"
}'
{
"success": true,
"credits_used": 1,
"faces": [
{
"keypoints": {
"left_eye": {"x": 180, "y": 120},
"right_eye": {"x": 260, "y": 118},
"nose_tip": {"x": 220, "y": 170},
"mouth_center": {"x": 222, "y": 210}
}
}
]
}
/api/v1/generate-passport-photo
100+ देशों के लिए कंप्लायंट पासपोर्ट और वीजा फोटो जनरेट करें। ऑटो-क्रॉप, रीसाइज और सही स्पेसिफिकेशन लागू करें।
curl -X POST https://api.ishotaphoto.com/v1/generate-passport-photo \
-H "Authorization: Bearer isp_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"image_url": "https://example.com/photo.jpg",
"country_code": "US",
"document_type": "passport"
}'
{
"success": true,
"credits_used": 1,
"result": {
"image_url": "https://cdn.ishotaphoto.com/results/ghi789.jpg",
"dimensions": {"width": 600, "height": 600},
"dpi": 300,
"compliant": true
}
}
/api/v1/validate-photo
आधिकारिक आवश्यकताओं के विरुद्ध फोटो वैलिडेट करें। डाइमेंशन, बैकग्राउंड, फेस पोजीशन, एक्सप्रेशन और अधिक चेक करें।
curl -X POST https://api.ishotaphoto.com/v1/validate-photo \
-H "Authorization: Bearer isp_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"image_url": "https://example.com/photo.jpg",
"country_code": "US",
"document_type": "passport"
}'
{
"success": true,
"credits_used": 1,
"valid": false,
"checks": {
"face_detected": {"pass": true},
"background": {"pass": false, "reason": "Not white"},
"head_position": {"pass": true},
"expression": {"pass": true, "value": "neutral"}
}
}
/api/v1/enhance-image
ब्राइटनेस, कॉन्ट्रास्ट, शार्पनेस और कलर करेक्शन के लिए AI-पावर्ड एन्हांसमेंट। लो-क्वालिटी अपलोड के लिए परफेक्ट।
curl -X POST https://api.ishotaphoto.com/v1/enhance-image \
-H "Authorization: Bearer isp_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"image_url": "https://example.com/photo.jpg",
"enhancements": ["brightness", "sharpness", "denoise"]
}'
{
"success": true,
"credits_used": 1,
"result": {
"image_url": "https://cdn.ishotaphoto.com/results/jkl012.jpg",
"enhancements_applied": ["brightness", "sharpness", "denoise"],
"expires_at": "2025-01-08T12:00:00Z"
}
}
/api/v1/estimate-head-pose
पिच, यॉ और रोल एंगल के साथ हेड ओरिएंटेशन डिटेक्ट करें। फ्रंट-फेसिंग फोटो वेरिफाई करने के लिए जरूरी।
curl -X POST https://api.ishotaphoto.com/v1/estimate-head-pose \
-H "Authorization: Bearer isp_your_api_key" \
-H "Content-Type: application/json" \
-d '{
"image_url": "https://example.com/photo.jpg"
}'
{
"success": true,
"credits_used": 1,
"faces": [
{
"pose": {
"pitch": 2.5,
"yaw": -1.2,
"roll": 0.8
},
"front_facing": true
}
]
}
1 क्रेडिट = 1 API कॉल। कोई सब्सक्रिप्शन नहीं, केवल जो उपयोग करें उसका भुगतान करें।
डेवलपर्स के लिए बनाया गया, एंटरप्राइजेज द्वारा विश्वसनीय
अधिकांश ऑपरेशंस के लिए औसत रिस्पॉन्स टाइम 500ms से कम
एंड-टू-एंड एन्क्रिप्शन के साथ SOC 2 कंप्लायंट
ग्लोबल CDN के साथ विश्वसनीय इन्फ्रास्ट्रक्चर
एंटरप्राइज कस्टमर्स के लिए प्रायोरिटी सपोर्ट
अपनी API कुंजी प्राप्त करने के लिए हमसे संपर्क करें और आज ही इंटीग्रेट करना शुरू करें। हाई-वॉल्यूम जरूरतों के लिए कस्टम एंटरप्राइज प्लान उपलब्ध।