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.