1. Discover payment terms
curl -i -X POST https://agentic.secantoutreach.com/services/research-pack \
-H "Content-Type: application/json" \
-d '{"query":"best AI agent data enrichment APIs","max_results":5,"extract_pages":1}'Web search plus page extraction and citations for autonomous agents. No API key, no subscription, and retry-safe payment over Base USDC.
Blocked pages are returned as structured extraction_errors. The paid request still returns usable search results and citations instead of failing with a server error.
curl -i -X POST https://agentic.secantoutreach.com/services/research-pack \
-H "Content-Type: application/json" \
-d '{"query":"best AI agent data enrichment APIs","max_results":5,"extract_pages":1}'curl -X POST https://agentic.secantoutreach.com/services/research-pack \
-H "Content-Type: application/json" \
-d '{
"query": "best AI agent data enrichment APIs",
"max_results": 5,
"extract_pages": 1,
"payment": {
"version": "x402-v2",
"resource": "https://agentic.secantoutreach.com/services/research-pack",
"amount_usd": 0.012,
"wallet": "0xYOUR_WALLET",
"metadata": {
"transaction_hash": "0xBASE_USDC_TRANSFER_HASH"
}
}
}'# Retry with the same payment payload.
# The service returns cached: true instead of rerunning extraction.
curl -X POST https://agentic.secantoutreach.com/services/research-pack \
-H "Content-Type: application/json" \
-d '{
"query": "best AI agent data enrichment APIs",
"max_results": 5,
"extract_pages": 1,
"payment": {
"version": "x402-v2",
"resource": "https://agentic.secantoutreach.com/services/research-pack",
"amount_usd": 0.012,
"wallet": "0xYOUR_WALLET",
"metadata": {
"transaction_hash": "0xBASE_USDC_TRANSFER_HASH"
}
}
}'