Quora Dataset Builder avatar

Quora Dataset Builder

Pricing

from $1.00 / 1,000 results

Go to Apify Store
Quora Dataset Builder

Quora Dataset Builder

Build bounded normalized Quora datasets from public URLs or native search seeds.

Pricing

from $1.00 / 1,000 results

Rating

0.0

(0)

Developer

Crawler Bros

Crawler Bros

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Categories

Share

Build a clean, deduplicated Quora dataset from public questions, answers, profiles, Topics, Spaces, posts, comments, and search phrases. Choose separate rows, nested answers, flat joined records, or relationship-focused output for spreadsheets, databases, search indexes, and graph workflows.

What this actor does

  • Combines direct Quora URLs and discovery queries into one deduplicated dataset.
  • Keeps one clear row per observed entity and joins parents only when Quora provides enough evidence.
  • Returns explicit relationships such as question-to-answer, answer-to-author, comment-to-answer, and Space-to-content.
  • Expands visible answers, comments, replies, profiles, Topics, Spaces, related content, media, and links with independent limits.
  • Keeps less-common values under details while retaining every non-empty user-relevant field.

Input

FieldTypeDefaultDescription
directUrlslist of URLsone public question URLPublic Quora question, answer, profile, Topic, Space, or post pages.
searchQuerieslist of textnonePhrases used to discover public Quora pages.
resultTypeslistquestion, answer, comment, profile, topic, space, postEntity families to retain.
outputFormatchoicenormalizednormalized, nested, flat, or edges.
outputFieldslistall availableOptional field selection; identity and type fields remain usable.
relationshipTypeslistall observed typesLimit relationship rows to selected relationship families.
scrapeDepthchoicedetailoverview for parents; detail for visible children and enrichment.
maxResultsnumber100Maximum rows/results across the run.
maxResultsPerSourcenumber0Maximum rows from each source; 0 uses the actor default.
maxQuestionsnumber25Maximum question parents.
maxAnswersPerQuestionnumber50Maximum visible answers per question.
maxCommentsPerAnswernumber50Maximum visible comments per answer.
maxCommentDepthnumber20Maximum visible nested-reply depth.
maxRelatedContentnumber20Maximum related content items per source.
maxRelationshipItemsPerCollectionnumber500Maximum items in each relationship collection.
maxGraphEdgesnumber5000Maximum relationship edges.
maxTopicPostsnumber50Maximum Topic posts.
maxSpaceFeedItemsnumber50Maximum Space feed items.
includeQuestiontrue/falsetrueKeep question rows.
includeAuthortrue/falsetrueKeep public author/profile rows.
includeAuthorSnapshottrue/falsefalseKeep a visible author summary.
includeTopicstrue/falsetrueKeep Topics attached to content.
includeSpacestrue/falsefalseKeep visible Space context.
includeCommentstrue/falsetrueKeep visible comments.
includeReplyGraphtrue/falsefalseKeep explicit visible reply relationships.
includeRelatedContenttrue/falsefalseKeep related content cards.
includeMediatrue/falsetrueKeep visible image and video links.
includeOutboundLinkstrue/falsetrueKeep links visible in content.
includeEntityGraphtrue/falsefalseBuild explicit relationships between entities.
includeUnresolvedEdgestrue/falsetrueKeep edges whose target is visible but not separately collected.
includeProfileEdgestrue/falsefalseInclude profile relationship edges.
includeQuestionFollowerEdgestrue/falsefalseInclude visible question-follower edges.
includeAnswerUpvoterEdgestrue/falsefalseInclude visible answer-upvoter edges.
includeRelationshipCountstrue/falsefalseInclude visible relationship totals.
includeSpaceRoleEdgestrue/falsefalseInclude visible Space role relationships.
includeSpaceContentEdgestrue/falsetrueInclude visible Space-to-content relationships.
includeSensitiveRelationshipDatatrue/falsefalseInclude public relationship data that may be more sensitive.
topCommentsOnlytrue/falsefalseKeep only comments Quora marks as top comments.
commentSortOrderchoiceobservedComment ordering exposed by Quora.
languagechoiceautoLanguage/locale for public page discovery.
reachModechoicestandardstandard, maximum, or direct public access.
cookieslist of browser cookiesnoneOptional cookies from your own authorized Quora session. Never enter a password.
includeAccessIssuestrue/falsefalseAdd a labelled row when Quora does not make a source available.

All limits are upper bounds on visible data. Quora’s own access and pagination boundaries can result in fewer rows. Empty optional fields are omitted.

Output per record

The builder emits deduplicated rows with values Quora actually supplied. It never fabricates a parent, metric, date, or relationship.

Identity and text

  • recordType, id, url, title, text, collectedAt, accessState, activityType, details
  • questionText, answerText, postText, commentText, profileBio, authorBio, topicDescription, spaceDescription, resultSnippet
  • answers, comments when outputFormat is nested

Questions, answers, comments, and authors

  • questionId, questionUrl, questionTitle, questionPublishedAt, questionUpdatedAt, questionLastAnsweredAt, isUnanswered, topics, relatedQuestions
  • answerId, answerUrl, answerPostedAt, answerCreatedAt, answerRelativeAge, answerUpdatedAt, answerRank, answerVisibility, answerTextCompleteness, answerAccessOption, isAiAnswer, isTopAnswer, isTruncated
  • authorName, authorUrl, authorId, authorHandle, authorCredentials, authorImageUrl, authorIsVerified, username
  • answerCount, followerCount, followingCount, questionCount, postCount, memberCount, contributorCount, viewCount, upvotes, commentsCount, sharesCount, commentReplyCount, reactionCount, totalAnswerViews, totalContentViews, answerToViewRatio, followToAnswerRatio, answersCollected, answersLimitReached
  • images, videos, externalLinks, textCompleteness, searchRank, searchType, searchTitle, searchSnippet, isPromoted
  • eventType, changeType, changes

Relationship rows

  • fromUrl, toUrl, and relationshipType identify an explicit relationship row.

Less-common observed facts are kept once under details. Run summaries, billing values, parser data, proxy data, cookie data, and repeated input values are not content rows.

Examples

Separate rows for a question and its visible discussion

{
"directUrls": ["https://www.quora.com/What-is-Python-primarily-used-for"],
"resultTypes": ["question", "answer", "comment", "profile"],
"outputFormat": "normalized",
"maxAnswersPerQuestion": 20,
"maxCommentsPerAnswer": 10
}

Nested answers for an application export

{
"directUrls": ["https://www.quora.com/What-are-the-major-differences-between-NAFTA-and-TPP"],
"resultTypes": ["question", "answer"],
"outputFormat": "nested",
"includeAuthor": true,
"maxAnswersPerQuestion": 10
}

Graph-oriented relationships

{
"directUrls": ["https://www.quora.com/q/Pakistan"],
"resultTypes": ["question", "answer", "profile", "relationship"],
"outputFormat": "edges",
"includeEntityGraph": true,
"includeSpaceContentEdges": true,
"maxGraphEdges": 500
}

Mixed discovery and direct sources

{
"searchQueries": ["community health workers in Kenya", "renewable energy cooperatives"],
"directUrls": ["https://www.quora.com/topic/Urban-Planning"],
"resultTypes": ["question", "answer", "topic", "profile"],
"outputFormat": "flat",
"maxResults": 100
}

Example output

{
"recordType": "answer",
"id": "answer:https://www.quora.com/What-is-Python-primarily-used-for/answer/Manya-Agarwal-55",
"url": "https://www.quora.com/What-is-Python-primarily-used-for/answer/Manya-Agarwal-55",
"answerText": "Python makes it an ideal choice for learning programming.",
"accessState": "public"
}

Use cases

  • Data integration: load stable, deduplicated Quora rows into a database.
  • Knowledge graphs: connect questions, answers, authors, Topics, Spaces, and posts.
  • Search indexes: index one row per visible entity with parent links.
  • Content research: preserve answer and comment context without difficult nested blobs.
  • Relationship analysis: export explicit, evidence-backed public edges.

FAQ

What is the difference between the output formats?

normalized is easiest to query, nested keeps answers or comments with their parent, flat joins useful parent values into rows, and edges focuses on relationships.

Does deduplication remove useful data?

It removes repeated observations of the same entity while retaining stronger field values and source/coverage context.

Do I need cookies?

No. Cookies are optional and only add content visible to your own authorized session. They cannot make private, removed, or Quora+ pages public.

Why is a relationship missing?

The page did not provide enough explicit evidence to connect both endpoints. The builder does not guess relationships.

Can maxGraphEdges create relationships Quora did not show?

No. It only limits the number of observed relationships retained.

Why are there fewer rows than a visible Quora count?

The count may include hidden, deleted, gated, or otherwise unavailable records. Only content returned to the run is included.

How are blocked pages represented?

Enable includeAccessIssues to receive a labelled access row. A blocked page is not converted into a fake content row.

Is this affiliated with Quora?

No. This is a third-party actor using public Quora pages and public page data.

Quora actor catalog

  • Quora Scraper — collect known public URLs, usernames, and mixed Quora content.
  • Quora Search Scraper — discover public Quora content from keywords and enrich matching pages.
  • Quora Dataset Builder — build deduplicated content rows and explicit relationships.
  • Quora Monitor — compare watched pages, Spaces, and feeds across runs.

Access notes

The builder attempts public Quora pages without cookies and keeps only observed values. Standard, maximum, and direct choices help with different public-access conditions, but no scraper can guarantee a future response for every Quora page.