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?