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.

POSThttp://178.105.157.85:3000/api/ocr?type=CONTAINER_SEAL

Request 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

NameTypeRequiredDescription
imageFileYesContainer seal photo file (JPG, PNG)

Headers

NameTypeRequiredDescription
AuthorizationStringYesBearer YOUR_API_KEY (Optional for local sandbox)
Content-TypeStringYesmultipart/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.