image-analyzer
Analyze images with AI - extract text, describe content, detect objects
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Analyze images with AI - extract text, describe content, detect objects
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Test and document API endpoints - validate responses, check status, generate examples
Full company intelligence report - overview, team, funding, products, news
Research competitors - products, pricing, team, funding, and strategy
Enrich any person or company from any identifier — email, name, LinkedIn URL, domain, company name, Twitter/X handle. Use when asked to enrich, look up, or research a lead, contact, person, or company.
Extract structured data from web pages using AI
Build a sales prospect list of dental practices in a city — finds practices, decision makers, contact info, and buying signals. Use when asked to find dentists for outreach, prospect dental practices, build a lead list of dentists, or generate dental practice leads in a specific area.
| name | image-analyzer |
| description | Analyze images with AI - extract text, describe content, detect objects |
Analyze images to extract text, describe content, and detect objects using AI.
Fetch image content:
orth api run linkup /fetch --body '{"url": "https://example.com/image.jpg"}'
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"
}'
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"]}
}
}'
Get screenshots of web pages:
orth api run brand-dev /v1/brand/screenshot --query 'domain=stripe.com'
# Extract receipt data
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"
}'
# Get website screenshot
orth api run brand-dev /v1/brand/screenshot --query 'domain=openai.com'
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.