Integrieren Sie professionelle Fotoverarbeitung in Ihre Anwendungen. Modernste KI für Dokumentenfotos, Gesichtserkennung und mehr.
Alle API-Anfragen erfordern einen API-Schlüssel
Authorization: Bearer isp_your_api_key_here
Leistungsstarke Endpunkte für alle Ihre Fotoverarbeitungsanforderungen
/api/v1/remove-background
Entfernen Sie den Hintergrund eines Bildes mit pixelgenauer Präzision. Gibt transparentes PNG zurück oder wendet benutzerdefinierte Hintergrundfarbe an.
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
Ersetzen Sie Hintergründe durch Volltonfarben, Farbverläufe oder benutzerdefinierte Bilder. Perfekt für Produktfotografie und Porträts.
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
Erkennen und lokalisieren Sie Gesichter in Bildern mit Begrenzungsrahmen, Konfidenzwerten und Multi-Gesichts-Unterstützung.
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
Analysieren Sie Gesichtsausdrücke, um Emotionen wie Freude, Überraschung, Neutral und mehr mit Konfidenzwerten zu erkennen.
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
Erkennen Sie über 68 Gesichtslandmarken einschließlich Augen, Nase, Mund und Kieferlinie für präzise Gesichtsanalyse und -ausrichtung.
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
Generieren Sie konforme Pass- und Visafotos für über 100 Länder. Automatisches Zuschneiden, Größenanpassung und Anwendung korrekter Spezifikationen.
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
Validieren Sie Fotos gegen offizielle Anforderungen. Prüfen Sie Abmessungen, Hintergrund, Gesichtsposition, Ausdruck und mehr.
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
KI-gestützte Verbesserung für Helligkeit, Kontrast, Schärfe und Farbkorrektur. Perfekt für Uploads niedriger Qualität.
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
Erkennen Sie die Kopforientierung mit Neigungs-, Gier- und Rollwinkeln. Unerlässlich für die Überprüfung von Frontalfotos.
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 Credit = 1 API-Aufruf. Keine Abonnements, zahlen Sie nur für das, was Sie nutzen.
Entwickelt für Entwickler, vertraut von Unternehmen
Durchschnittliche Antwortzeit unter 500ms für die meisten Operationen
SOC 2-konform mit End-to-End-Verschlüsselung
Zuverlässige Infrastruktur mit globalem CDN
Prioritäts-Support für Enterprise-Kunden
Kontaktieren Sie uns, um Ihren API-Schlüssel zu erhalten und starten Sie noch heute mit der Integration. Maßgeschneiderte Enterprise-Pläne für Hochvolumen-Anforderungen verfügbar.