shulemdeen.com APIshulemdeen.com ↗
Access all past speaking events and book signings from shulemdeen.com. Returns event location, date, venue, description, and notes via a single endpoint.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/ffc942cb-1d5a-45fd-8fb0-a34f1501678f/get_past_events' \ -H 'X-API-Key: $PARSE_API_KEY'
Retrieves all past events listed on shulemdeen.com/events. Returns a list of events with location, date/time, and additional details such as venue, description, and notes. Events span from 2015 to 2018.
No input parameters required.
{
"type": "object",
"fields": {
"total": "integer count of events returned",
"events": "array of event objects with location, date, and details"
},
"sample": {
"total": 94,
"events": [
{
"date": "Tue 3/24/2015 7pm",
"details": [
"BOOK LAUNCH"
],
"location": "Brooklyn, NY"
},
{
"date": "Thur 3/26/15 7pm",
"details": [
"BOOK PARTY: For Footsteps members and guests only. If you are not a Footsteps member and would like to attend, please contact Footsteps.",
"The Footsteps Space",
"Books will be available for sale at cost."
],
"location": "New York City"
},
{
"date": "Thur 4/9/15 7pm",
"details": [
"Main Point Books, 1041 W Lancaster Ave, Bryn Mawr, PA 19010"
],
"location": "Philadelphia, PA"
}
]
}
}About the shulemdeen.com API
The Shulem Deen API exposes 1 endpoint — get_past_events — that returns the complete archive of past speaking engagements and book signings listed on shulemdeen.com. Each response includes a total count alongside an events array, with per-event fields covering location, date and time, venue, description, and notes. The dataset spans events from 2015 through 2018.
What the API Returns
The get_past_events endpoint returns a structured list of all past events from shulemdeen.com/events. The top-level response includes a total integer showing how many events were found, and an events array containing one object per event. Each event object carries fields for location, date/time, venue, description, and any additional notes attached to the listing.
Event Coverage and Scope
All events in the dataset are historical, spanning 2015 to 2018. They include speaking engagements, book signings, and similar public appearances by author Shulem Deen. The endpoint takes no input parameters — a single call retrieves the full archive without pagination or filtering required.
Response Shape
The events array contains objects where each entry provides enough detail to reconstruct the public event listing: where it was held (location and venue), when it occurred (date and time), what it was about (description), and any supplementary remarks (notes). The total field at the top level gives an immediate count without iterating the array.
- Build an author profile page that lists Shulem Deen's full public appearance history with dates and venues.
- Aggregate event data from multiple authors to compare speaking tour patterns across years.
- Cross-reference event locations against a map to visualize geographic reach of a book promotion tour.
- Populate a research database of Jewish memoir author public engagements for academic study.
- Feed event descriptions and notes into a text corpus for NLP or sentiment analysis projects.
- Track how event activity changed year-over-year between 2015 and 2018 using the date fields.
| Tier | Price | Credits/month | Rate limit |
|---|---|---|---|
| Free | $0/mo | 100 | 5 req/min |
| Hobby | $30/mo | 1,000 | 20 req/min |
| Developer | $100/mo | 5,000 | 250 req/min |
One credit = one API call regardless of which marketplace API you call. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.
Does shulemdeen.com have an official developer API?+
What does `get_past_events` actually return for each event?+
events array includes the event location, date and time, venue name, a text description of the event, and any notes listed on the page. The top-level total field gives the count of all returned events.