# Quora Search API (https://www.socialcrawl.dev/platforms/quora/search) > Returns Quora questions matching a keyword: title, URL, answer count, follower count, and publish time. Filter by recency with time. For written answers to a topic call GET /v1/quora/answers with the same query. TL;DR: `GET /v1/quora/search` costs 5 credits per call and returns SocialCrawl's unified JSON schema. Single x-api-key auth, 100 free credits on signup. ## Parameters | Parameter | Required | Description | | --- | --- | --- | | `query` | yes | Search keywords, for example learn programming. | | `time` | no | Recency window: all, hour, day, week, month, or year. Default all. (all \| hour \| day \| week \| month \| year) | | `limit` | no | Maximum rows to return, 1 to 10. Default 10. | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/quora/search?query=learn%20programming" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I search Quora questions via API? GET /v1/quora/search?query=learn+programming returns matching questions with title, URL, answer count, followers, and publish time. Add time=week to keep results inside the last seven days. ### What parameters does Quora question search accept? query is required. Optional time is all, hour, day, week, month, or year. Optional limit is 1 to 10, default 10. There is no page cursor; each call is one page. ### How much does Quora question search cost? Each live miss costs 5 credits. Cache hits are free. An empty result set is refunded. ### Can I get answers from this endpoint? No. This endpoint returns questions. Call GET /v1/quora/answers with the same query to receive answer bodies, authors, and upvotes. ### Does time=week actually filter? Yes. Live probes on 1 September 2026 returned questions dated in the prior seven days when time=week was set. See the full Quora API: https://www.socialcrawl.dev/platforms/quora ## Pricing - Standard endpoints: 1 credit per call - Advanced endpoints: 5 credits per call - Premium endpoints: 10 credits per call - 100 free credits on signup, no credit card required. Cached responses cost 0 credits. Credit packs never expire. - Full pricing: https://www.socialcrawl.dev/pricing ## Explore with AI Questions this API answers, phrased for an AI assistant: - How to search Quora questions with an API - Quora question search API SocialCrawl