OCR.chat എപിഐ

ഒരു എച്ച്ടിപി അപേക്ഷ ഒരു ചിത്രം, ഫ്ളാഗണ്‍, മാർക്കൌപ്പ്, മേശ, ജോണ്‍ എന്നിവയെ ഒരു ക്ലീവ് പദാവലിയായി മാറ്റുന്നു. 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

ഒരു രേഖയോട് ചാറ്റ് ചെയ്യുക

പൂര്‍ത്തിയാക്കിയ ജോലിയെപ്പറ്റി ചോദ്യങ്ങള്‍ ചോദിയ്ക്കുക. പുറത്തെടുത്ത പദാവലിയില്‍ മാത്രമേ ഉത്തരങ്ങള്‍ തുറന്നിട്ടിട്ടുള്ളൂ. ഒരു അക്കൌണ്ട് സൂചന ആവശ്യമാകുന്നു — സല്ലാപ വിശേഷത അക്കൗണ്ട് അറിയിപ്പ് മാത്രം.

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.

നിങ്ങളുടെ അക്കൌണ്ടില്‍ നിന്നും ക്യാപ്-ന്യൂ പാസ് എടുക്കുന്നു: ഒരു ദിവസത്തിന്‍റെ ഒരു പ്ലെയിസ് ലഭിക്കുന്നു, മാസം തികയല്‍ ബട്ടണുകള്‍ സ്വതന്ത്രമായി നല്‍കുന്നു, പ്ലാന്‍സ് ചെയ്ത് ഒരു ഫയല്‍ പേജും മുന്‍ഗണനയും നല്‍കുന്നു. നിങ്ങള്‍ പുറത്തു കടന്നാല്‍ ശരീരത്തില്‍ ഉപയോഗിച്ചും ക്യാപ്-ഉപയോഗികളും കൊണ്ട് 402ഉപയോഗിയ്ക്കപ്പെടുന്നു.

നിങ്ങള്‍ക്കു് PNG, JPG, WEBP, GIF, BMP, TIF, ഡീഫോള്‍ട്ടിന്റെ പിഡിഫുകള്‍ ഡൌണ്‍ലോഡ് ചെയ്യുവാന്‍ കഴിയും. txt, Md, Dcx, pdf (പരിശോധനം ചെയ്യുവാന്‍ സാധിക്കുന്ന), csv, അല്ലെങ്കില്‍ ജിസണ്‍ ഡൌണ്‍ലോഡ് പോയിന്‍റ് ഫോര്‍മാറ്റ് പരാമീറ്റര്‍ഡ് പരാമീറ്റര്‍ വഴി ഡൌണ്‍ലോട് അയയ്ക്കാം.

400 കാണാതായ ഒരു ഫയല്‍, പിന്തുണ ലഭ്യമല്ലാത്ത തരത്തിലുള്ളത്, ഫയല്‍ വലിയതു്; 401-നു് ഒരു കാണാതായി അല്ലെങ്കില്‍ അസാധുവായ അടയാളം; 404 പേജുകള്‍ക്കുളള 402- ല്‍ നിന്നും അപരിചിതമായ ഒരു USN( URIC); ജോലി കഴിയുന്നതിനു മുന്‍പ് ഒരു ഡൌണ്‍ലോഡ് ആവശ്യപ്പെട്ട 409. പിശക് ശരീരങ്ങളില്‍ ഒരു ചെറിയ സന്ദേശം ഉള്‍‌ക്കൊള്ളുന്നു.

സ്റ്റാന്‍മെന്റ്, ടൈറ്റര്‍, ഭാഷ, താള്‍_കൌണ്ട്, ഇന്‍ഫൊറന്‍സ്, ഗ്രാഫ് എന്നിവയോടൊപ്പം മുഴു പദാവലിയും കൂമ്പാരങ്ങളാക്കി ഭാഗങ്ങള്‍ വേര്‍തിരിച്ച് ഭാഗങ്ങള്‍ മാറ്റുന്നു. ഓരോ താളും അവരുടേത് ടെക്സ്റ്റ് ഉപയോഗിച്ച് ഭാഗങ്ങളായി മാറ്റുന്നു, ടൈറ്റിങ് ബോക്സ് (ബോക്സ്), ഒരു ബ്ലോക്ക് ബോക്സ്, ഇന്‍ബോക്സ് എന്നിവയുളള വിശ്വാസങ്ങള്‍.

സ്വിറ്റ്‌സർട്ട് രേഖകളുടെ വേഗതയും കുറഞ്ഞ വിലയും ഉപയോഗിക്കുന്നു. കയ്യെഴുത്തു്, vlm, AI എഞ്ചിന്‍ ഉപയോഗിക്കുക, കയ്യക്ഷരം, സങ്കീര്‍ണ്ണം, മള്‍ട്ടികത്തു്, ഗണിതം, പരിഭാഷ എന്നിവയില്‍ കൂടുതല്‍ കൃത്യമായ വിവരങ്ങള്‍ ലഭ്യമാകുന്ന.

ആ ഉപകരണത്തിന്റെ തുടക്കോ- പദാവലിയോ ഉപയോഗിക്കുന്നതിനായി ഒരു പ്ളഗ്ഗ്-എം‌ടിഎംഎല്‍ ഉപകരണം (ഉദാഹരണത്തിനു്, കയ്യക്ഷരം അല്ലെങ്കില്‍ കയ്യെഴുത്തു്) ഉപയോഗിച്ചു് പാസ് ചെയ്യുക. പരിഭാഷയ്ക്കായി ലക്ഷ്യ‌‌ക്കു് ലക്ഷ്യഭാഷാ കോഡ് വീണ്ടും പരിഭാഷ ചെയ്യുന്നതിനായി _ഉപയോഗിയ്ക്കുന്നു.

5 താളുകളുടെ അല്ലെങ്കില്‍ കുറവുള്ള ഫയലുകള്‍ പ്രൊസ്റ്റന്‍സിയുടെ മറുപടിയില്‍ ഉള്‍‌ക്കൊള്ളാന്‍ വരുന്നു. വലിയ ഫയലുകള്‍ ഉടന്‍ തന്നെ തന്നെ ശേഖരിച്ചു് കിടത്തുന്നു, ക്വിപ്പ് /aipi/1/ocar/ ocar<uuid>/ പദവി പൂര്‍ത്തീകരിക്കുകയോ പരാജയപെടുകയോ ചെയ്യുന്നതു് വരെ. ഓരോ ഫയല്‍ പേജും ഉയര്‍ത്തുവാനുള്ള പാഡ് പദ്ധതികള്‍.

API സാധാരണ എച്ച്ടിപി റെസ്റ്റ് ആണ്, അതുകൊണ്ട് അത് ഏതു ഭാഷയിലും നിന്നും പ്രവര്‍ത്തിക്കുന്നു. പൈത്തണ്‍, നോഡ്, ക്യുഎംഎല്‍ ഉദാഹരണങ്ങള്‍ കാണുക. ഇന്‍സ്റ്റോള്‍ ചെയ്യാന്‍ എസ്. ഡി. എം. എസ് കോഡ് കോഡുകള്‍ ഒന്നും ഇല്ല.