# Facebook Events Search API (https://www.socialcrawl.dev/platforms/facebook/events-search) > Searches the public Facebook Events directory for events matching a keyword. Forward the returned cursor for additional pages. TL;DR: `GET /v1/facebook/events/search` costs 1 credit 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 | Event name or keyword to search for. | | `cursor` | no | Cursor returned by the previous response for pagination. | ## Code example ```bash curl "https://www.socialcrawl.dev/v1/facebook/events/search?query=dogs" \ -H "x-api-key: sc_YOUR_API_KEY" ``` ## FAQ ### How do I search Facebook events by keyword? Send a GET request to /v1/facebook/events/search with a query. The response returns matching events with their name, date, location, and cover image. It costs 1 credit per call. ### How is this different from the city events endpoint? /v1/facebook/events lists events for a specific city page, while events/search finds events across Facebook by keyword. Use search when you are tracking a topic, artist, or brand rather than a single location. ### How do I paginate the results? Pass the cursor value from the response as the cursor param on the next call to fetch the next page of matches. Keep going until the cursor is empty to walk the full result set. ### What can I search for? The query param takes any keyword: an event name, a topic, a performer, or a brand. It returns the events Facebook matches to that term, which is ideal for building a topic-based event discovery feed. ### How much does an event search cost? Each search call is 1 credit on the standard tier, regardless of how many events come back. New accounts start with 100 free credits and no card, so you can test queries first. See the full Facebook API: https://www.socialcrawl.dev/platforms/facebook ## 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 do I search Facebook events by keyword with an API? - Is there an API to find Facebook events for a topic or brand?