# Quora Spaces API (https://www.socialcrawl.dev/platforms/quora/spaces) > Returns Quora Spaces matching a keyword: name, URL, description, member count, and icon. Row shape follows the space search record. TL;DR: `GET /v1/quora/spaces` 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. | | `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/spaces?query=learn%20programming" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I search Quora Spaces via API? GET /v1/quora/spaces?query=learn+programming returns Spaces with name, URL, description, member count, and icon. ### What is the difference between Spaces and topics? A Space is a community with members and posts. A topic is a tag with followers. Use /v1/quora/topics for tags and /v1/quora/posts for Space posts. ### How much do Quora Spaces cost? Each live miss costs 5 credits. Cache hits are free. Empty searches are refunded. ### Can I list posts inside a Space? Search posts with /v1/quora/posts and a keyword. There is no Space-id identity param on this release. ### Why is the response not a PostList? Space rows are communities, not posts. The payload is a SearchResult list of space records. 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 Spaces with an API - Quora Spaces API SocialCrawl