# Text Extract OCR > Simple, massively-used OCR (91M+ runs) — extracts text from an image with a single input. Great default for receipts, screenshots, and scanned documents. - **Provider**: replicate - **Model ID**: abiruyt/text-extract-ocr - **Category**: ocr_vision - **Credits**: 1 per request - **Pricing Type**: fixed ## API Endpoint Base URL: https://api.core.today/v1 ### Create Prediction POST /predictions ### Get Status GET /predictions/{job_id} ### Cancel DELETE /predictions/{job_id} ## Authentication Header: `X-API-Key: YOUR_API_KEY` ## Input Parameters - `image` (string, **required**): Image to process ## Example Request ```json { "model": "abiruyt/text-extract-ocr", "input": { "image": "https://replicate.delivery/pbxt/KhTOXyqrFtkoj2hobh1a4As6dYDIvNV2Ujbc0LbGD9ZguRwR/bowers.jpg" } } ``` ## Response Format ```json { "job_id": "abc123", "status": "pending", "provider": "replicate", "model": "black-forest-labs/flux-schnell", "created_at": "2026-01-01T00:00:00Z", "result": null, "error": null } ``` Status values: `pending`, `processing`, `completed`, `failed`, `cancelled` ## Usage Flow 1. POST /predictions with model and input → receive job_id 2. Poll GET /predictions/{job_id} until status is `completed` or `failed` 3. Result contains output URL(s) or data ## Output Type json ## Tags ocr, text-extraction, vision, documents, low-cost ## Documentation https://replicate.com/abiruyt/text-extract-ocr