← Back to Skills Marketplace
upstage-deployment

Upstage Ocr

by Upstage Deployment · GitHub ↗ · v1.0.0 · MIT-0
cross-platform ✓ Security Clean
32
Downloads
0
Stars
1
Active Installs
1
Versions
Install in OpenClaw
/install upstage-ocr
Description
Extract plain text with word-level bounding box coordinates from images and scanned documents using Upstage OCR API. Use when user asks to OCR a document, ex...
README (SKILL.md)

Upstage OCR

Extract word-level text with bounding box coordinates from images and scanned documents.

Quick Start

import os
import requests

response = requests.post(
    "https://api.upstage.ai/v1/document-digitization",
    headers={"Authorization": f"Bearer {os.environ['UPSTAGE_API_KEY']}"},
    files={"document": open("scan.pdf", "rb")},
    data={"model": "ocr"}
)
result = response.json()
print(result["pages"][0]["text"])

API Key: Always use os.environ["UPSTAGE_API_KEY"]. Get your key at console.upstage.ai.


Endpoints

Mode Endpoint Max pages Max file size
Sync POST /v1/document-digitization 100 50 MB
Async POST /v1/document-digitization/async 1000 50 MB
  • Request format: multipart/form-data
  • Sync: returns the result in the response body (timeout 5 min).
  • Async: returns a request_id; poll status and download per-batch results (batches of 10 pages).

Parameters

Parameter Type Required Description
model string Yes ocr (alias: ocr-250904)
document file Yes Document file to process
schema string No clova or google (for migration)

Limits

Item Sync Async
Max pages 100 1000
Max file size 50 MB 50 MB
Max pixels/page 200,000,000 200,000,000

Pick sync for ≤ 100 pages and quick (≤ 5 min) processing. Pick async for documents up to 1000 pages, when you can poll, or when the sync timeout would be hit.

Supported Formats

JPEG, PNG, BMP, PDF, TIFF, HEIC, DOCX, PPTX, XLSX, HWP, HWPX

Supported Languages

  • Full support: Alphabets, Korean, Chinese characters
  • Partial support: Katakana, Hiragana
  • Beta: Simplified Chinese

Response Structure

{
  "api": "2.0",
  "model": "ocr-250904",
  "pages": [
    {
      "id": 0,
      "text": "Full extracted text",
      "words": [
        {
          "id": 0,
          "text": "word",
          "bounding_box": {
            "vertices": [
              {"x": 0.12, "y": 0.05},
              {"x": 0.25, "y": 0.05},
              {"x": 0.25, "y": 0.08},
              {"x": 0.12, "y": 0.08}
            ]
          },
          "confidence": 0.98
        }
      ]
    }
  ],
  "usage": {"pages": 1}
}

Usage Examples

Sync — Basic OCR

curl -X POST "https://api.upstage.ai/v1/document-digitization" \
  -H "Authorization: Bearer $UPSTAGE_API_KEY" \
  -F "document=@/path/to/image.jpg" \
  -F "model=ocr"

Sync — Python (Extract Text with Coordinates)

import os
import requests

def ocr_document(file_path):
    with open(file_path, "rb") as f:
        response = requests.post(
            "https://api.upstage.ai/v1/document-digitization",
            headers={"Authorization": f"Bearer {os.environ['UPSTAGE_API_KEY']}"},
            files={"document": f},
            data={"model": "ocr"}
        )
    result = response.json()

    for page in result["pages"]:
        print(f"=== Page {page['id']} ===")
        print(page["text"])
        for word in page["words"]:
            print(f"  [{word['confidence']:.2f}] {word['text']} @ {word['bounding_box']}")

    return result

Async — Submit, Poll, Download

Use the async endpoint for documents up to 1000 pages. Documents are processed in batches of 10 pages; results are stored for 30 days, individual download URLs expire after 15 minutes.

# 1. Submit
curl -X POST "https://api.upstage.ai/v1/document-digitization/async" \
  -H "Authorization: Bearer $UPSTAGE_API_KEY" \
  -F "[email protected]" \
  -F "model=ocr"
# → {"request_id": "uuid-here"}

# 2. Poll status
curl "https://api.upstage.ai/v1/document-digitization/requests/{request_id}" \
  -H "Authorization: Bearer $UPSTAGE_API_KEY"

Status values: submitted, started, completed, failed (check failure_message). The completed response includes a download_url per batch — fetch each and concatenate pages to reconstruct the full document.

import os
import time
import requests

api_key = os.environ["UPSTAGE_API_KEY"]
base = "https://api.upstage.ai/v1/document-digitization"

with open("large.pdf", "rb") as f:
    r = requests.post(
        f"{base}/async",
        headers={"Authorization": f"Bearer {api_key}"},
        files={"document": f},
        data={"model": "ocr"},
    )
request_id = r.json()["request_id"]

while True:
    status = requests.get(
        f"{base}/requests/{request_id}",
        headers={"Authorization": f"Bearer {api_key}"},
    ).json()
    if status["status"] == "completed":
        break
    if status["status"] == "failed":
        raise RuntimeError(status.get("failure_message", "unknown failure"))
    time.sleep(5)

# status["batches"] contains per-batch download_url entries
pages = []
for batch in status.get("batches", []):
    data = requests.get(batch["download_url"]).json()
    pages.extend(data["pages"])

Output Files

  • Default: write to \x3Csystem-temp>/\x3Cinput-stem>.ocr.json (e.g., /tmp/receipt.ocr.json). Use tempfile.gettempdir() for cross-platform code.
  • Override: if the user specifies an output path, use it.
  • Always print the resolved absolute path in your response so the user can locate the file.

Tips

  • For documents > 100 pages, switch to the async endpoint (up to 1000 pages). Sync rejects oversized documents.
  • Sync server timeout is 5 minutes — if a sync request times out, retry on /async.
  • Async results live for 30 days; per-batch download_urls expire after 15 minutes (re-fetch status to refresh).
  • Low scan quality will result in lower confidence values. Pre-processing images can help.
  • Coordinates are returned as normalized ratios (0–1).
  • OCR extracts text only. If you need structured HTML/Markdown output, use Document Parse instead.
Usage Guidance
This looks safe to install if you intend to use Upstage's cloud OCR service. Before using it, set UPSTAGE_API_KEY carefully, avoid submitting documents you cannot share with Upstage, and remember that OCR output may be written to a temp file or a path you specify.
Capability Analysis
Type: OpenClaw Skill Name: upstage-ocr Version: 1.0.0 The skill bundle provides standard instructions and code snippets for interacting with the legitimate Upstage OCR API. It uses environment variables for API keys and follows safe practices for file handling by using system temporary directories (SKILL.md).
Capability Tags
requires-sensitive-credentials
Capability Assessment
Purpose & Capability
The stated purpose, examples, and endpoint usage are coherent: the skill is for OCR text extraction with word-level coordinates using Upstage's document digitization API.
Instruction Scope
The instructions are scoped to OCR requests and include output handling, but users should be aware the examples upload the selected document to an external API.
Install Mechanism
No install spec or code files are present; this is an instruction-only skill with no package installation or hidden helper code shown.
Credentials
The skill requires an Upstage API key via UPSTAGE_API_KEY and external network calls, which are expected for this integration, but the registry metadata lists no required environment variables or primary credential.
Persistence & Privilege
The visible instructions describe writing OCR output to a temp file or user-specified path and note that async results are stored by Upstage for 30 days; no background persistence or elevated local privileges are shown.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install upstage-ocr
  3. After installation, invoke the skill by name or use /upstage-ocr
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
- Initial release of upstage-ocr. - Extract plain text and word-level bounding box coordinates from images and scanned documents using the Upstage OCR API. - Supports synchronous (≤100 pages) and asynchronous (≤1000 pages) processing. - Handles a wide range of formats including JPEG, PNG, BMP, PDF, TIFF, HEIC, DOCX, PPTX, XLSX, HWP, HWPX. - Provides examples for both sync and async workflows with details on file output and usage tips.
Metadata
Slug upstage-ocr
Version 1.0.0
License MIT-0
All-time Installs 1
Active Installs 1
Total Versions 1
Frequently Asked Questions

What is Upstage Ocr?

Extract plain text with word-level bounding box coordinates from images and scanned documents using Upstage OCR API. Use when user asks to OCR a document, ex... It is an AI Agent Skill for Claude Code / OpenClaw, with 32 downloads so far.

How do I install Upstage Ocr?

Run "/install upstage-ocr" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Upstage Ocr free?

Yes, Upstage Ocr is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Upstage Ocr support?

Upstage Ocr is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Upstage Ocr?

It is built and maintained by Upstage Deployment (@upstage-deployment); the current version is v1.0.0.

💬 Comments