api-tester
Test and document API endpoints - validate responses, check status, generate examples
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Test and document API endpoints - validate responses, check status, generate examples
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
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.
Analyze images with AI - extract text, describe content, detect objects
| name | api-tester |
| description | Test and document API endpoints - validate responses, check status, generate examples |
Test API endpoints, validate responses, and generate documentation examples.
Make GET requests to test endpoints:
orth api run linkup /fetch --body '{"url": "https://api.example.com/health"}'
Test POST requests by fetching API docs:
orth api run scrapegraph /api/extract --body '{
"url": "https://api.example.com/docs",
"prompt": "Extract all API endpoints, methods, parameters, and example responses"
}'
Fetch and parse API docs:
orth api run scrapegraph /api/scrape --body '{"url": "https://api.example.com/docs", "formats": [{"type": "markdown"}]}'
Check response structure:
orth api run riveter /v1/run --body '{
"url": "https://api.example.com/endpoint",
"schema": {
"id": "string",
"name": "string",
"created_at": "string"
}
}'
# Extract API spec from docs
orth api run scrapegraph /api/extract --body '{
"url": "https://stripe.com/docs/api",
"prompt": "Extract API authentication methods and example curl commands"
}'
# Fetch API page
orth api run linkup /fetch --body '{"url": "https://api.openai.com/v1/models"}'
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.