🛠️ New

Introducing Signature Detection

AI-Powered Signature Detection

Detect and locate signatures in documents with high accuracy. Simple API, pay-as-you-go pricing, and instant results.

Start detecting signatures in seconds

In Action

Image Preview

Demo: Detected signaturessignature 81%signature 81%signature 79%signature 77%signature 75%signature 74%signature 73%signature 70%signature 70%

Detection Results

Signatures Found

9

Avg. Confidence

76%

Signature #1
81.3% confidence

Position: (202, 404) to (534, 555)

Signature #2
81.3% confidence

Position: (850, 531) to (1351, 706)

Signature #3
79.0% confidence

Position: (178, 931) to (570, 1087)

Signature #4
76.9% confidence

Position: (219, 1106) to (648, 1320)

Signature #5
74.5% confidence

Position: (184, 1310) to (647, 1418)

Signature #6
74.4% confidence

Position: (857, 737) to (1298, 891)

Signature #7
73.5% confidence

Position: (197, 558) to (619, 702)

Signature #8
70.3% confidence

Position: (912, 411) to (1172, 525)

Signature #9
70.3% confidence

Position: (231, 785) to (595, 872)

import requests
import json

# Your API credentials
API_KEY = "your_api_key_here"
API_URL = "https://signature-detector.com/api/detect"

# Request payload
payload = {
    "imageUrl": "https://example.com/document.jpg",
    "confidenceThreshold": 0.7
}

# Headers
headers = {
    "Content-Type": "application/json",
    "x-api-key": f"{API_KEY}"
}

# Make the API request
response = requests.post(API_URL, json=payload, headers=headers)

# Parse the response
if response.status_code == 200:
    data = response.json()
    print(f"Signatures found: {data['result']['count']}")
    print(f"Credits remaining: {data['creditsRemaining']}")

    for i, detection in enumerate(data['result']['detections']):
        print(f"Signature {i+1}: {detection['confidence']*100:.1f}% confidence")
        print(f"  Position: ({detection['bbox']['x1']:.0f}, {detection['bbox']['y1']:.0f})")
else:
    print(f"Error: {response.status_code} - {response.json()['error']}")

Credits

Number of extractions

100,000

Total price

$10.00

10K1M
10 free credits on signup
Credits never expire
Instant API access
No monthly fees or subscriptions