DocsOCR Container Seal API
OCR Container Seal API
Extract container seal vendor names and codes automatically from photos using high-accuracy OCR parsing, avoiding background noise.
POST
http://178.105.157.85:3000/api/ocr?type=CONTAINER_SEALRequest Example
cURL
curl -X POST \
"http://178.105.157.85:3000/api/ocr?type=CONTAINER_SEAL" \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: multipart/form-data" \
-F "image=@/path/to/document.jpg"Authentication Header
Authorization: Bearer YOUR_API_KEY
Generate an API key from your Dashboard → API Keys panel. For testing server/sandbox local environments, key verification is bypassed.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
image | File | Yes | Container seal photo file (JPG, PNG) |
Headers
| Name | Type | Required | Description |
|---|---|---|---|
Authorization | String | Yes | Bearer YOUR_API_KEY (Optional for local sandbox) |
Content-Type | String | Yes | multipart/form-data |
Response Example
JSON
{
"success": true,
"detected_lines": [
"MERATUS",
"J250838"
],
"seal_vendor": "MERATUS",
"seal_code": "J 2 5 0 8 3 8",
"process_time_ms": 133.19,
"timestamp": "2026-07-15T03:09:29.986482"
}Rate Limit
Depending on your plan. Check your dashboard for current limits.