| name | image-analyzer |
| description | Analyze images with AI - extract text, describe content, detect objects |
Image Analyzer - AI Image Analysis
Analyze images to extract text, describe content, and detect objects using AI.
Workflow
Step 1: Get Image from URL
Fetch image content:
orth api run linkup /fetch --body '{"url": "https://example.com/image.jpg"}'
Step 2: Extract Text (OCR)
Use AI to extract text from images:
orth api run scrapegraph /api/extract --body '{
"url": "https://example.com/screenshot.png",
"prompt": "Extract all visible text from this image"
}'
Step 3: Extract Structured Data
Get specific data from images:
orth api run riveter /v1/run --body '{
"input": {
"urls": ["https://example.com/receipt.jpg"]
},
"output": {
"store_name": {"prompt": "Store name", "contexts": ["urls"]},
"date": {"prompt": "Date", "contexts": ["urls"]},
"items": {"prompt": "Items with names and prices", "contexts": ["urls"]},
"total": {"prompt": "Total amount", "contexts": ["urls"]}
}
}'
Step 4: Capture Website Screenshots
Get screenshots of web pages:
orth api run brand-dev /v1/brand/screenshot --query 'domain=stripe.com'
Example Usage
orth api run scrapegraph /api/extract --body '{
"url": "https://example.com/receipt.jpg",
"prompt": "Extract store name, date, all items with prices, and total amount"
}'
orth api run brand-dev /v1/brand/screenshot --query 'domain=openai.com'
Tips
- Use clear, high-resolution images
- Specify exact data needed for extraction
- Combine with OCR for text-heavy images
- Use screenshots for website analysis
Discover More
List all endpoints, or add a path for parameter details:
orth api show brand-dev
orth api show linkup
orth api show riveter
orth api show scrapegraph
Example: orth api show olostep /v1/scrapes for endpoint parameters.