1) Connect (API key)
2) Execute feature (search)
View source on GitHub → 7_perplexity_integration.py
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Use the Perplexity integration via API key auth
curl -X POST "https://api.incredible.one/v1/integrations/perplexity/connect" \
-H "Content-Type: application/json" \
-d '{"user_id": "user_123", "api_key": "YOUR_API_KEY"}'
{ "success": true, "message": "Successfully connected to Perplexity" }
curl -X POST "https://api.incredible.one/v1/integrations/perplexity/execute" \
-H "Content-Type: application/json" \
-d '{
"user_id": "user_123",
"feature_name": "PERPLEXITY_SEARCH",
"inputs": {"query": "latest AI news", "focus": "tech"}
}'
{
"success": true,
"result": {"items": [{"title": "...", "url": "..."}]},
"integration_id": "perplexity",
"feature_name": "PERPLEXITY_SEARCH",
"user_id": "user_123"
}
Was this page helpful?