Documentation Index
Fetch the complete documentation index at: https://incredible-42686482-cursor-create-detailed-ai-agent-cookboo.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Demonstrates connecting Perplexity (API key) and executing a search feature.
1) Connect (API key)
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"}'
Expected response:
{ "success": true, "message": "Successfully connected to Perplexity" }
2) Execute feature (search)
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"}
}'
Example success response:
{
"success": true,
"result": {"items": [{"title": "...", "url": "..."}]},
"integration_id": "perplexity",
"feature_name": "PERPLEXITY_SEARCH",
"user_id": "user_123"
}