$API_TOKEN=<YOUR_API_TOKEN>
$cat > input.json << 'EOF'
<{
< "directUrls": [
< "https://www.quora.com/What-is-Python-primarily-used-for"
< ],
< "onlyUnanswered": false,
< "excludePromoted": false,
< "includePromoted": true,
< "includePromotionEvidence": true,
< "maxResults": 10,
< "minAnswerUpvotes": 0,
< "filterAiAnswers": "include",
< "topCommentsOnly": false,
< "includeAnswers": true,
< "includeMedia": true,
< "includeOutboundLinks": true,
< "includeRelatedQuestions": true,
< "maxRelatedQuestions": 0,
< "includeQuestionTopics": true,
< "includeSpaceSettings": false,
< "includeQuestionDetails": true,
< "includeComments": false,
< "includePostComments": false,
< "maxCommentsPerPost": 10,
< "includeEngagementBreakdown": false,
< "includePostAuthorContext": false,
< "maxPostAuthorContextItems": 10,
< "includeProfileActivity": false,
< "includeEntityGraph": false,
< "maxGraphEdges": 1000,
< "profileActivityTypes": [
< "answer",
< "question",
< "post"
< ],
< "maxProfileActivityItems": 20,
< "includeProfileSensitiveFields": true,
< "includeSocialLinks": true,
< "maxItemsPerTab": 20,
< "maxAuthors": 1000,
< "includeProfileSnapshot": false,
< "includeRelatedContent": false,
< "maxRelatedContent": 10,
< "maxPostsPerSource": 0,
< "includeTopicQuestions": true,
< "maxTopicQuestions": 20,
< "includeTopicPosts": false,
< "maxTopicPosts": 20,
< "includeRelatedTopics": true,
< "maxRelatedTopics": 20,
< "includeAnswerPreview": false,
< "maxAnswerPreviews": 3,
< "minAnswerPreviewUpvotes": 0,
< "includeAuthorProfiles": false,
< "includeAccessIssues": false,
< "maxResultsPerSource": 0
<}
<EOF
$curl "https://api.apify.com/v2/actors/crawlerbros~quora-scraper/runs?token=$API_TOKEN" \
< -X POST \
< -d @input.json \
< -H 'Content-Type: application/json'