Quora Search Scraper avatar

Quora Search Scraper

Pricing

$0.01 / 1,000 public pages

Go to Apify Store
Quora Search Scraper

Quora Search Scraper

Search public Quora pages by keyword or open direct URLs. Export questions, visible answers, profiles, topics, spaces, posts, authors, counts, media, and source links.

Pricing

$0.01 / 1,000 public pages

Rating

0.0

(0)

Developer

Maxime Dupré

Maxime Dupré

Maintained by Community

Actor stats

0

Bookmarked

39

Total users

16

Monthly active users

19 hours ago

Last modified

Share

🔎 Search public Quora content by keyword or URL

Quora Search Scraper helps content researchers, SEO teams, and market researchers find public Quora pages. Search with keywords or open public URLs, then save questions, visible answers, profiles, topics, spaces, and posts with source links and public counts. Review or export the structured data without a Quora login.

The Actor uses public pages and does not collect private, login-only, restricted, or Quora+ paywalled content.

📦 Quora page rows

Each saved row is one public Quora page. The Actor saves the first eligible match for a source item. If another keyword, URL, or other submitted value finds that item later, the later match is skipped and does not rewrite the saved row. The matchedInput field shows the submitted value that first caused the row to be saved.

Question rows keep visible answers in an answers array. Profile, topic, space, and post rows use page-specific fields. A field appears only when Quora shows it on a public page, so missing facts are left out.

🚀 Run Quora searches and page URLs

  1. Add keywords or public Quora URLs to Keywords or Quora URLs.
  2. Choose the page type for keyword discovery.
  3. Choose a date range when you want to filter keyword discovery.
  4. Set answer options and the whole-run result limit.
  5. Run the Actor and open the dataset.

You can mix keywords and direct URLs in one run. The page type and date range affect keyword values only. Direct public URLs are opened as given. Leave the result limit empty to return all available results until the source is exhausted.

⚙️ Input

Public input example

This example is copied from a successful current-beta keyword run:

{
"targets": [
"machine learning careers"
],
"searchType": "question",
"dateRange": "any",
"answerDepth": "all",
"answerOrder": "relevance",
"globalOrder": "relevance",
"maxResults": 2
}

Input fields

FieldTypeWhat it does
targetsarray of strings (required)Adds one or more keywords, public Quora page URLs, or both. URLs can point to questions, profiles, topics, spaces, posts, or Quora search pages.
searchTypestring (required)Chooses the public page type for keyword discovery: question, profile, topic, space, post, or all. Direct URLs are opened as given.
dateRangestringSets a date window for pages found through keywords when Quora shows a usable source date: any, day, week, month, or year. Direct URLs are not filtered by it.
topicFilterarray of stringsFor keyword-discovered questions, keeps pages that show at least one listed public topic label. It does not filter direct URLs or other page types. An empty list keeps every matching page.
answerDepthstringChooses top visible answers or all visible answers for each question.
minAnswerUpvotesintegerKeeps only answers with at least this many public upvotes. An empty value keeps all visible answers, and a question stays even if no answer meets the threshold.
answerOrderstringOrders answers inside each question by relevance, recency, or upvotes.
globalOrderstringOrders saved rows across the run by relevance, recency, or upvotes when Quora shows the needed public date or upvote data.
maxResultsintegerSets the whole-run limit for saved rows. Leave it empty to return all available results until the source is exhausted.

🧾 Output

Rows use one of five shapes. The tables below list every field in the public dataset schema. Fields that Quora does not show are omitted. Dotted names describe fields inside an object or an array item. Each example is a complete genuine row from a current-beta run.

Question row

FieldTypeWhat it does
contentTypestringIdentifies this row as a question.
matchedInputstringShows the keyword or Quora URL whose first eligible match saved this row.
discoveryRankintegerShows the page position for the submitted keyword when available.
titlestringGives the question title.
urlstringGives the canonical public Quora question URL.
questionIdintegerGives the Quora question ID.
topicsarray of stringsLists visible topic labels on the question.
answerCountintegerGives the visible answer count.
followerCountintegerGives the visible follower count.
answersarray of objectsHolds the visible answers collected with the question.
answers[].answerIdintegerGives the Quora answer ID.
answers[].rankintegerGives the answer position in the loaded public list.
answers[].urlstringGives the canonical public answer URL.
answers[].textstringGives the full visible answer text.
answers[].authorobjectHolds visible answer-author details.
answers[].author.namestringGives the public author name.
answers[].author.urlstringGives the public author profile URL.
answers[].author.credentialstringGives the public author credential when shown.
answers[].author.imageUrlstringGives the public author image URL when shown.
answers[].author.isAibooleanSays whether Quora identifies the author as an AI account.
answers[].createdAtdate-time stringGives the answer creation time when shown.
answers[].updatedAtdate-time stringGives the answer update time when shown.
answers[].upvoteCountintegerGives the public answer upvote count.
answers[].commentCountintegerGives the public answer comment count.
answers[].shareCountintegerGives the public answer share count.
answers[].viewCountintegerGives the public answer view count.
answers[].mediaUrlsarray of stringsLists public media URLs attached to the answer.

Example question row

This complete row was saved by a keyword search for neural networks:

{
"contentType": "question",
"matchedInput": "neural networks",
"discoveryRank": 2,
"title": "What are neural networks in machine learning?",
"url": "https://www.quora.com/What-are-neural-networks-in-machine-learning",
"questionId": 31526547,
"topics": [
"Computer Science",
"Artificial Intelligence",
"Algorithms",
"Neural Networks (general)",
"Data Science",
"Machine Learning Theory",
"Neural Computation",
"Machine Learning",
"Artificial Intelligence Neural Networks",
"Deep Learning"
],
"answerCount": 2,
"answers": [
{
"answerId": 173195182,
"rank": 1,
"url": "https://www.quora.com/What-is-CNN-in-machine-learning/answer/Muhammad-Asem",
"text": "CNN “Convolutional Neural Network” is more commonly listed under deep learning algorithms which is a subset of machine learning and AI.\nConvolution means, convolving/applying a kernel/filter of nxn dimension on a selected pixel and its surroundings, then moving the same kernel to the next pixel and its surrounding and so on, to asses each pixel.\nMainly, CNN is used with images to extract features. Although features, shapes and patterns can be detected directly using multilayer sequential neural networks, CNN is more accurate.\nCNN applies filters to each pixel of the image to examine the feature type which this pixel belongs to, whether it is a line, half circle, curve,etc.\nPixels which gives a high score after it is convolved with a straight line filter, most probably belongs to a straight line.\nThe above figure shows a kernel of size 3x3 that gives a maximum value for detecting a diagonal. Image source :Deep learning Udacity Nanodegree .\nFilter/kernel size determines the size around the pixel to consider during feature examination.\nDetecting a square is done by detecting its edges first, “straight lines” then form a complete understanding of the shape .\nHorizontal edge with another vertical one, form a half square, half square with another half, signals a complete square. This process is done over multiple CNN layers, each layer has its own function till the assembly.\nThe same happens with circles as shown\nA circle is detected with steps, the upper left curve with a upper right ..etc. results in a complete circle understanding as shown in the above figure. See more in this youtube channel.\nThis is also used for detecting the handwritten letters. Each set of layers can detect a feature in the image combining different features results in different shapes of numbers.\nIn this figure, both numbers, 8 and 9 has an upper loop, while 9 has a lower straight line, 8 has a lower loop. A layer(s) in this network is dedicated for loop detection another one for vertical line detection. Analysing the features within the input will lead to classify the number inside the image.\nThe beauty is that, the values of these filters are determined by training the network not by your selection :).",
"author": {
"name": "Muhammad Asem",
"url": "https://www.quora.com/profile/Muhammad-Asem",
"credential": "Teaching and Research Assistant at Zewail City of Science and Technology",
"imageUrl": "https://qph.cf2.quoracdn.net/main-thumb-198009206-200-dzflalenebxudsljxlheojunarhqyqon.jpeg",
"isAi": false
},
"createdAt": "2019-10-10T15:56:18.953Z",
"upvoteCount": 59,
"commentCount": 0,
"shareCount": 2,
"viewCount": 3788,
"mediaUrls": [
"https://qph.cf2.quoracdn.net/main-qimg-aa5548f3c257c51eae0215be4437c7e1",
"https://qph.cf2.quoracdn.net/main-qimg-b467be395f3d892a8f29e5b702b495c1",
"https://qph.cf2.quoracdn.net/main-qimg-9d0b83622b3e35a7b01871f0d38fa330-pjlq",
"https://qph.cf2.quoracdn.net/main-qimg-168455876910cfd7363ec8a7e6d4bbf7",
"https://qph.cf2.quoracdn.net/main-qimg-cef864018101a663722c89b1bb51ef4d",
"https://qph.cf2.quoracdn.net/main-qimg-1790f87e362066479cdc16a81467138e",
"https://qph.cf2.quoracdn.net/main-qimg-f7faf5b380a41351bb7195106b67efe0-pjlq"
]
},
{
"answerId": 301270233,
"rank": 2,
"url": "https://www.quora.com/What-are-neural-networks-in-machine-learning/answer/Harsh-Gupta-2712",
"text": "Neural networks are made up of layers of neurons. The first layer, the input layer, receives values from other sources, such as an image or video feed. The next layers are hidden layers which take their inputs from either the previous nodes or the output nodes of the network and then process those values into a usable form for either controlling a robot's movements (e.g. controlling a robot arm to pick up an object) or classifying a certain input into one of a few predefined categories. The final layer, the output layer, is responsible for producing values based on the input collected from the hidden layers. Those outputs are sent back through the network and maybe processed again by other nodes in later layers until they reach their final destination, in the form of a very complex activation map (a vector) which represents a type of value.\nThese nodes often process their values through mathematical functions, such as logistic regression and sigmoid functions. These various methods are designed to help the network learn how to produce outputs based on different inputs without having an external trainer constantly correcting errors when mistakes are made. This is known as unsupervised learning. To achieve supervised learning, one could train the network by having someone (or something) provide labels for certain inputs. The network can then compare its output from these inputs with labels provided by a human expert or another neural network that has already been trained on these specific data sets and adjust accordingly so that it produces correct answers for future inputs.\nThe key to understanding how neural networks learn is understanding that what they are learning is the relationship between the values of the input nodes and their corresponding outputs.",
"author": {
"name": "Harsh Gupta",
"url": "https://www.quora.com/profile/Harsh-Gupta-2712",
"credential": "Make $$$ listening to b2b sales pitches on fozzie.io",
"imageUrl": "https://qph.cf2.quoracdn.net/main-thumb-1150084439-200-bsvjfaduxzdksctdicufsdnlnadhlatn.jpeg",
"isAi": false
},
"createdAt": "2021-08-11T13:09:08.234Z",
"upvoteCount": 13,
"commentCount": 0,
"shareCount": 3,
"viewCount": 2027,
"mediaUrls": []
}
]
}

Profile row

FieldTypeWhat it does
contentTypestringIdentifies this row as a profile.
matchedInputstringShows the keyword or Quora URL whose first eligible match saved this row.
discoveryRankintegerShows the page position for the submitted keyword when available.
titlestringGives the public profile name.
urlstringGives the canonical public Quora profile URL.
profileIdintegerGives the Quora profile ID.
descriptionstringGives the public profile description or credential when shown.
imageUrlstringGives the public profile image URL when shown.
followerCountintegerGives the visible follower count.
followingCountintegerGives the visible following count.
answerCountintegerGives the visible answer count for the profile.
postCountintegerGives the visible post count for the profile.

Example profile row

{
"contentType": "profile",
"matchedInput": "https://www.quora.com/profile/Mike-West-99",
"title": "Mike West",
"url": "https://www.quora.com/profile/Mike-West-99",
"profileId": 263407715,
"imageUrl": "https://qph.cf2.quoracdn.net/main-thumb-263407715-200-mirkpaqqqfbiatlzukudohupoachleiq.jpeg",
"followerCount": 20335,
"followingCount": 15
}

Topic row

FieldTypeWhat it does
contentTypestringIdentifies this row as a topic.
matchedInputstringShows the keyword or Quora URL whose first eligible match saved this row.
discoveryRankintegerShows the page position for the submitted keyword when available.
titlestringGives the public topic name.
urlstringGives the canonical public Quora topic URL.
topicIdintegerGives the Quora topic ID.
descriptionstringGives the public topic description when shown.
imageUrlstringGives the public topic image URL when shown.
followerCountintegerGives the visible follower count.
questionCountintegerGives the visible question count.
topicsarray of stringsLists visible related topic labels.

Example topic row

{
"contentType": "topic",
"matchedInput": "https://www.quora.com/topic/Jobs-and-Careers-in-Machine-Learning",
"title": "Jobs and Careers in Machine Learning",
"url": "https://www.quora.com/topic/Jobs-and-Careers-in-Machine-Learning",
"topicId": 2134490,
"imageUrl": "https://qph.cf2.quoracdn.net/main-thumb-t-948-100-kfdrdbxmzmijrndlcvxdftbghuzsjpmc.jpeg",
"followerCount": 125,
"topics": []
}

Space row

FieldTypeWhat it does
contentTypestringIdentifies this row as a space.
matchedInputstringShows the keyword or Quora URL whose first eligible match saved this row.
discoveryRankintegerShows the page position for the submitted keyword when available.
titlestringGives the public space name.
urlstringGives the canonical public Quora space URL.
spaceIdintegerGives the Quora space ID.
descriptionstringGives the public space description when shown.
imageUrlstringGives the public space image URL when shown.
followerCountintegerGives the visible follower count.
memberCountintegerGives the visible member count.
contributorCountintegerGives the visible contributor count.
postCountintegerGives the visible post count.

Example space row

{
"contentType": "space",
"matchedInput": "https://theenglishlab.quora.com",
"title": "The English Lab",
"url": "https://theenglishlab.quora.com",
"spaceId": 1577079,
"description": "It relates to English Grammar and vocabulary. ",
"imageUrl": "https://qph.cf2.quoracdn.net/main-thumb-ti-1577079-100-yhtcovazpijvdshydmsvbsrugkgndhon.jpeg",
"followerCount": 69305,
"memberCount": 69423,
"contributorCount": 108,
"postCount": 23298
}

Post row

FieldTypeWhat it does
contentTypestringIdentifies this row as a post.
matchedInputstringShows the keyword or Quora URL whose first eligible match saved this row.
discoveryRankintegerShows the page position for the submitted keyword when available.
titlestringGives the visible post title or a concise title from its text.
urlstringGives the canonical public Quora post URL.
postIdintegerGives the Quora post ID.
textstringGives the full visible post text.
authorobjectHolds visible post-author details.
author.namestringGives the public author name.
author.urlstringGives the public author profile URL.
author.credentialstringGives the public author credential when shown.
author.imageUrlstringGives the public author image URL when shown.
associatedEntityobjectHolds the public profile, topic, or space linked to the post.
associatedEntity.typestringIdentifies the linked entity as a profile, topic, or space.
associatedEntity.namestringGives the linked entity name.
associatedEntity.urlstringGives the linked entity URL.
associatedEntity.descriptionstringGives the linked entity description when shown.
associatedEntity.imageUrlstringGives the linked entity image URL when shown.
createdAtdate-time stringGives the post creation time when shown.
updatedAtdate-time stringGives the post update time when shown.
upvoteCountintegerGives the public post upvote count.
commentCountintegerGives the public post comment count.
shareCountintegerGives the public post share count.
viewCountintegerGives the public post view count.
mediaUrlsarray of stringsLists public media URLs embedded in the post.

Example post row

{
"contentType": "post",
"matchedInput": "https://apdaga.quora.com/Coursera-Machine-Learning-Week-5-Assignment-Solution-Andrew-NG-APDaga-DumpBox",
"title": "Coursera: Machine Learning (Week 5) [Assignment Solution] - Andrew NG | APDaga | DumpBox",
"url": "https://apdaga.quora.com/Coursera-Machine-Learning-Week-5-Assignment-Solution-Andrew-NG-APDaga-DumpBox",
"postId": 7056437,
"text": "Coursera: Machine Learning (Week 5) [Assignment Solution] - Andrew NG\n▸ Back-propagation algorithm for neural networks to the task of hand-written digit recognition.\nIt consist of the following files:\nex4.m - Octave/MATLAB script that steps you through the exercise\nex4data1.mat - Training set of hand-written digits\nex4weights.mat - Neural network parameters for exercise 4\nsubmit.m - Submission script that sends your solutions to our servers\ndisplayData.m - Function to help visualize the dataset\nfmincg.m - Function minimization routine (similar to fminunc)\nsigmoid.m - Sigmoid function\ncomputeNumericalGradient.m - Numerically compute gradients\ncheckNNGradients.m - Function to help check your gradients\ndebugInitializeWeights.m - Function for initializing weights\npredict.m - Neural network prediction function\n[*] sigmoidGradient.m - Compute the gradient of the sigmoid function\n[*] randInitializeWeights.m - Randomly initialize weights\n[*] nnCostFunction.m - Neural network cost function\nVideo - YouTube videos featuring Free IOT/ML tutorials\n* indicates files you will need to complete view more…\nThanks & Regards,\n- Akshay P Daga\nDISCLAIMER:\nThese solutions are for reference only.\n> It is recommended that you should solve the assignments by yourself honestly then only it makes sense to complete the course.\n> But, In case you stuck in between, feel free to refer to the solutions provided by me.\nNOTE:\nDon't just copy paste the code for the sake of completion.\nEven if you copy the code, make sure you understand the code first.",
"author": {
"name": "Akshay Daga",
"url": "https://www.quora.com/profile/Akshay-Daga-1",
"credential": "System Engineer at Tata Consultancy Services (2016-present)"
},
"associatedEntity": {
"type": "space",
"name": "APDaga DumpBox",
"url": "https://apdaga.quora.com",
"description": "The Thirst for learning... The knowledge sharing place...",
"imageUrl": "https://qph.cf2.quoracdn.net/main-thumb-ti-639506-100-gduypanxaghbzyvlfzomtnatyyhhurdi.jpeg"
},
"createdAt": "2019-03-31T19:22:31.317Z",
"upvoteCount": 0,
"commentCount": 0,
"shareCount": 0,
"viewCount": 787,
"mediaUrls": []
}

Dataset link

The results link in the Output tab opens the default overview view of the saved dataset. You can also read the dataset through the Apify API or export it as JSON, CSV, Excel, XML, RSS, or HTML.

💳 Pricing

This Actor uses pay-per-event pricing. The quora-result event is charged once when a public question, profile, topic, space, or post is saved. A run with no saved page does not create this result event. The buyer-facing event is called Public page. See the Actor pricing page for the current price before you run it.

🔌 Integrations

Use the Apify API to start runs and read saved dataset rows. Use schedules for repeat searches, webhooks for the next step in a workflow, and dataset integrations for saved data.

❓ FAQ

How are duplicate pages handled?

The first eligible match for a public source item is saved. If another keyword, URL, or submitted value finds the same item later, that match is skipped and does not rewrite the saved row.

Can I mix keywords and direct Quora URLs?

Yes. Add both to targets. The page type and date range affect keyword discovery only. Direct question, profile, topic, space, post, or Quora search URLs are opened as given.

Yes. Choose question, profile, topic, space, post, or all. This choice does not change direct URLs.

Can I limit answers or filter them by upvotes?

Yes. Use answerDepth to choose top or all visible answers and minAnswerUpvotes to keep answers above a public upvote threshold. The question stays in the results even if no answer meets the threshold.

Does the date range filter direct Quora URLs?

No. It applies to keyword discovery when Quora shows a usable source date. It does not promise a Quora publish date, and direct URLs are opened as given.

What happens when Quora does not show a field or page?

A missing field is left out. A private, blocked, unsupported, or failed page does not make a saved row. Rows saved earlier in the run stay in the dataset.

How do I return all available results?

Leave maxResults empty. The Actor returns all available results until the source is exhausted.

Can I start a run with the Apify API?

Yes. Use the Apify API to start a run and read its saved dataset rows. Schedules, webhooks, and dataset integrations can support the next step.

Do I need a Quora account or API key?

No. The Actor uses public pages and does not ask for Quora cookies, login details, or an API key.

Does it collect private answers or answer comments?

No. It collects public page data only. It does not collect private, login-only, restricted, or Quora+ paywalled content, answer comment bodies, or commenter and upvoter identities.

📝 Changelog

2.0: Expanded public page search and structured results

  • Search public Quora questions, profiles, topics, spaces, and posts by keyword or URL.
  • Choose answer depth, answer filters, and result ordering for each run.
  • Receive page-specific rows with visible answers and public metadata.

v1.0

  • Updated the public dataset contract.
  • Simplified the input form.
  • Added public profile, topic, space, and post coverage.
  • Introduced tiered saved-page pricing.

v0.1

  • Initial release.

🆘 Support

For issues, questions, or feature requests, file a ticket and I'll fix or implement it in less than 24h 🫡

Made with ❤️ by Maxime Dupré