Textify OCR
Pricing
Pay per event
Go to Apify Store
Pricing
Pay per event
Rating
0.0
(0)
Developer

Team Intellibits
Maintained by Community
Actor stats
1
Bookmarked
5
Total users
2
Monthly active users
2 days ago
Last modified
Categories
Share
Textify - Extract text from images
Extracts all text from a public image URL using OpenAI vision and returns a simple JSON result.
Features
- Simple input: provide an image
urland your APIkey. - Supported formats: PNG, JPG/JPEG, GIF, WEBP.
- Consistent output:
{ "text": "..." }(temperature 0 for deterministic results).
Inputs
url(required): Public image URL (png,jpg,jpeg,gif,webp).key(required, secret): OpenAI API key used for the request.
How to Use (Apify)
- Start a new run and fill the input form (
urlandkeyare required). - The run processes the image and finishes automatically.
- View the result in the run's Key-value store under the
OUTPUTrecord.
Examples
- Apify Console: fill the form and run. Open Key‑value store →
OUTPUT. - Apify CLI:
apify run -i '{"url":"https://example.com/image.jpg","key":"sk-..."}'- Or:
apify call intellibits/textify -i '{"url":"https://example.com/image.jpg","key":"sk-..."}'
Output
OUTPUT record example:
{ "text": "...extracted text..." }
Errors
- The run fails if
urlorkeyis missing/invalid. Check run logs for details. - Avoid putting API keys in URLs; provide them only in input.