OCR.chat API

එක් HTTP ඉල්ලීම පිරිසිදු පෙළ, Markdown, වගු, සහ JSON බවට රූපයක් හෝ PDF බවට පත් කරයි - 100 + භාෂා. පිටුවකට මිනුම්, කිසිදු පුදුම.

දර්ශකය

The OCR.chat API is a small REST interface. You POST a file and get back a job with the recognized text and a per-page breakdown (text, bounding boxes, confidence). Jobs of 5 pages or fewer return inline; larger jobs return immediately with a pending status that you poll until done.

  • Base URL: https://ocr.chat
  • Formats in: PNG, JPG, WEBP, GIF, BMP, TIFF, and multi-page PDF
  • Formats out: txt, md, docx, pdf, csv, json
  • Engines: cpu (fast, printed docs) and vlm (premium AI, handwriting, complex layout, math)

අවසරදීම

Authenticate with your API token (find it on your account page) as a Bearer header:

Authorization: Bearer YOUR_API_TOKEN

You can also pass ?api_token=… as a query parameter. Usage is metered against your account's page balance.

ලේඛනයක් ඉදිරිපත් කරන්න

POST /api/v1/ocr/, multipart form upload.

curl -X POST https://ocr.chat/api/v1/ocr/ \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -F "file=@invoice.pdf" \
  -F "tier=vlm" \
  -F "language=auto"

Returns the job. For ≤5-page files it is already done with the text; larger files come back pending/processing, poll the status endpoint.

{
  "uuid": "9f2c1b7e4a...",
  "status": "done",
  "tier": "vlm",
  "language": "auto",
  "page_count": 1,
  "mean_confidence": 0.98,
  "text": "INVOICE\nAcme Corp\nTotal: 215.00 USD",
  "markdown": "# INVOICE\n\n**Acme Corp** ...",
  "pages": [ { "index": 0, "text": "...", "blocks": [ { "text": "...", "bbox": [x0,y0,x1,y1], "confidence": 0.98 } ] } ]
}

ප්‍රතිඵලයක් ලබාගන්න

GET /api/v1/ocr/<uuid>/, poll until status is done or failed.

curl https://ocr.chat/api/v1/ocr/9f2c1b7e4a.../ \
  -H "Authorization: Bearer YOUR_API_TOKEN"

සංයුතිය බාගත කරන්න

GET /api/v1/ocr/<uuid>/download/?format=md, export the result. format is one of txt, md, docx, pdf, csv, json.

curl -L "https://ocr.chat/api/v1/ocr/9f2c1b7e4a.../download/?format=docx" \
  -H "Authorization: Bearer YOUR_API_TOKEN" -o result.docx

ලේඛනයක් සමඟ සල්ලාපයේ යෙදෙන්නName

අවසන් වැඩ ගැන ප්රශ්න අහන්න. පිළිතුරු පමණක් ඉවත් පෙළ පදනම් වන අතර මූලාශ්රය පිටුව උපුටා. ගිණුම් ටොකන් අවශ්ය - මෙම චැට් විශේෂාංගය ගිණුම්-ගෝට් වේ.

POST /api/v1/chat/<uuid>/, JSON body {"message": "your question"}.

curl -X POST https://ocr.chat/api/v1/chat/9f2c1b7e4a.../ \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"message": "What is the invoice total and due date?"}'

එහි පිළිතුර සහ පිටු ලැයිස්තුව උපදේශක පණිවිඩය නැවත:

{"conversation": "a1b2…", "message": {
   "role": "assistant",
   "content": "The total is $42, due on March 3 (p. 1).",
   "citations": [{"page": 1, "snippet": "The invoice total is $42…"}]
}}

GET /api/v1/chat/<uuid>/history/, වැඩක් වෙනුවෙන් සම්පූර්ණ සංවාදයේ පිටපතක් ගන්න.

කේත උදාහරණ

import requests, time

API = "https://ocr.chat/api/v1/ocr/"
H = {"Authorization": "Bearer YOUR_API_TOKEN"}

# Submit
with open("invoice.pdf", "rb") as f:
    job = requests.post(API, headers=H,
        files={"file": f}, data={"tier": "vlm"}).json()

# Poll until done
while job["status"] in ("pending", "processing"):
    time.sleep(2)
    job = requests.get(API + job["uuid"] + "/", headers=H).json()

print(job["markdown"])

# Download as DOCX
r = requests.get(API + job["uuid"] + "/download/",
                 headers=H, params={"format": "docx"})
open("result.docx", "wb").write(r.content)
import fs from "fs";

const API = "https://ocr.chat/api/v1/ocr/";
const H = { Authorization: "Bearer YOUR_API_TOKEN" };

const form = new FormData();
form.append("file", new Blob([fs.readFileSync("invoice.pdf")]), "invoice.pdf");
form.append("tier", "vlm");

let job = await (await fetch(API, { method: "POST", headers: H, body: form })).json();

while (["pending", "processing"].includes(job.status)) {
  await new Promise(r => setTimeout(r, 2000));
  job = await (await fetch(API + job.uuid + "/", { headers: H })).json();
}
console.log(job.markdown);
# 1. Submit
curl -X POST https://ocr.chat/api/v1/ocr/ \
  -H "Authorization: Bearer YOUR_API_TOKEN" \
  -F "file=@invoice.pdf" -F "tier=vlm"

# 2. Poll  (use the uuid from step 1)
curl https://ocr.chat/api/v1/ocr/UUID/ \
  -H "Authorization: Bearer YOUR_API_TOKEN"

# 3. Download
curl -L "https://ocr.chat/api/v1/ocr/UUID/download/?format=md" \
  -H "Authorization: Bearer YOUR_API_TOKEN" -o result.md

පරාමිතීන්

FieldTypeDescription
filefileRequired. The image or PDF to process.
tierstringcpu (default, fast/printed) or vlm (premium AI: handwriting, layout, math).
languagestringauto (default) or a language code (en, ch, ja, ar, …).
toolstringOptional tool slug (e.g. extract-tables, handwriting-to-text) to apply that tool's preset.
translate_tostringFor the translate tool, target language code.

දෝෂ සහ සීමා

CodeMeaning
400No file, unsupported type, or file too large.
401Missing or invalid API token.
402Out of pages, daily/monthly free limit reached, or no credits. The body includes used/cap.
404Job UUID not found.
409Download requested before the job finished.

Each page processed costs credits (1/page on the fast tier, more on premium). Paid plans raise per-file page caps and add priority. See pricing.

නිතර අසන ප්රශ්න

Create a free account and open your account page, your token is shown there with a copy button.

Yes, files of 5 pages or fewer return the full result inline in the POST response, so no polling is needed for most images and short PDFs.

Over 100, including Latin, CJK, Arabic, Cyrillic and Indic scripts. Use language=auto to detect, or pass a specific code.

Uploads are processed for OCR and deleted automatically. We never sell, share, or train on your documents.

භාවිතය ඔබේ ගිණුම ශේෂය එරෙහිව පිටුවකට මනිනු ලැබේ: නිශ්චිත ඇමතුම් IP දෛනික වැටුපක් ලැබේ, නිදහස් ගිණුම් මාසික බෝතලයක්, සහ ගෙවීම් සැලසුම් ඉහළ ගොනු පිටුව තොප්පි සහ ප්රමුඛතාව සමග මිලදී ගත් ණය භාවිතා. ඔබ ධාවනය කරන විට ඔබ 402 ලබා ගන්නා අතර ශරීරයේ භාවිතා සහ තොප්පිය.

ඔබ PNG, JPG, WEBP, GIF, BMP, TIFF, සහ බහු-පිටුව PDF යැවිය හැක. ටෙක්ස්ට්, MD, docx, pdf (සොයාගත හැකි), CSV, හෝ බාගත අවසන් ස්ථානයේ ආකෘතිය පරාමිතීන් හරහා JSON ලෙස ප්රතිඵල බාගත.

400 අතුරුදහන් ගොනුවක්, සහාය නොදක්වන වර්ගය, හෝ ගොනුව ඉතා විශාල වේ; 401 අතුරුදහන් හෝ වලංගු ටොකන්; පිටු 402 පිටතට; 404 නොදන්නා රැකියාව UUID; හා 409 රැකියාව අවසන් කිරීමට පෙර ඉල්ලා බාගත. දෝෂ ශරීර කෙටි පණිවිඩයක් ඇතුළත් වේ.

තත්ත්වය, ස්ථරය, භාෂාව, page_count, හා mean_confidence, මෙන්ම සම්පූර්ණ පෙළ හා markdown සමග රැකියා වස්තුව. පිටු ආකෘතිය ඔවුන්ගේ පෙළ, බෙදී කොටුව (bbox), හා එක් එක්-බ්ලොක් විශ්වාසය සමග කොටස් එක් එක් පිටුව බිඳ.

Use cpu (the default) for fast, low-cost recognition of clean printed documents. Use vlm, the premium AI engine, for handwriting, complex or multi-column layouts, math, and translation, where it is far more accurate.

ස්ලග් සමග මෙවලමක් සමග ගමන් (උදාහරණයක් ලෙස, සාරය-තොරතුරු වගු හෝ අත්පිටපතට-පරිවර්තනය-පෙළ) එම මෙවලම ගේ සකස් පෙරනිමි යෙදීමට. පරිවර්තනය මෙවලම සඳහා, ද නැවත පරිවර්තනය හඳුනා පෙළ ලබා ගැනීමට ඉලක්ක භාෂා කේතය සමග translate_to ගමන්.

ගොනු5පිටු හෝ ඊට අඩු නැවත POST ප්රතිචාර inline. විශාල ගොනු බලාපොරොත්තු හෝ සැකසුම් ලෙස වහාම ආපසු පැමිණ, ඔබ ඡන්දය GET /api/v1/ocr/<uuid>/ තත්වය සිදු හෝ අසාර්ථක වන තෙක්. ගෙවීම් සැලසුම් එක් එක් ගොනු පිටුව තොප්පිය ඉහළ නංවයි.

API HTTPS මත සරල REST වේ, එබැවින් එය HTTP සේවාදායකය සමඟ ඕනෑම භාෂාවකින් ක්රියාත්මක වේ - ඉහත Python, Node.js, සහ cURL උදාහරණ බලන්න. ස්ථාපනය කිරීමට SDK නොමැත; සම්මත HTTP කේතය රේඛා කිහිපයක් ඔබ අවශ්ය සියල්ල.