pdf-processor
Process PDFs - extract text, tables, and structured data from documents
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Process PDFs - extract text, tables, and structured data from documents
التثبيت باستخدام 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 | pdf-processor |
| description | Process PDFs - extract text, tables, and structured data from documents |
Extract text, tables, and structured data from PDF documents.
Use Linkup to fetch PDF URLs:
orth api run linkup /fetch --body '{"url": "https://example.com/document.pdf"}'
Use ScrapeGraph to extract specific content:
orth api run scrapegraph /api/extract --body '{
"url": "https://example.com/report.pdf",
"prompt": "Extract all financial figures, tables, and key metrics from this document"
}'
Get structured table data:
orth api run riveter /v1/run --body '{
"input": {
"urls": ["https://example.com/report.pdf"]
},
"output": {
"tables": {"prompt": "Extract all tables with titles, headers, and rows", "contexts": ["urls"]}
}
}'
Get readable markdown output:
orth api run scrapegraph /api/scrape --body '{"url": "https://example.com/document.pdf", "formats": [{"type": "markdown"}]}'
# Extract data from financial report
orth api run scrapegraph /api/extract --body '{
"url": "https://example.com/annual-report.pdf",
"prompt": "Extract revenue, profit, and key business metrics with their values"
}'
# Extract invoice data
orth api run riveter /v1/run --body '{
"input": {"urls": ["https://example.com/invoice.pdf"]},
"output": {
"vendor": {"prompt": "Vendor name", "contexts": ["urls"]},
"amount": {"prompt": "Total amount", "contexts": ["urls"]},
"date": {"prompt": "Invoice date", "contexts": ["urls"]}
}
}'
List all endpoints, or add a path for parameter details:
orth api show linkup
orth api show riveter
orth api show scrapegraph
Example: orth api show olostep /v1/scrapes for endpoint parameters.