Coronacrush APIcoronacrush.co ↗
Discover and browse upcoming Jewish speed dating events hosted by CoronaCrush to find your next dating opportunity. View detailed information about available events including dates, times, and other relevant details to plan your attendance.
No input parameters required.
curl -X GET 'https://api.parse.bot/scraper/98bbe11e-d7c0-4f53-b293-185ad85e4041/list_events' \ -H 'X-API-Key: $PARSE_API_KEY'
Typed, relational, agent-ready
A generated client with real types, enums, and the links between objects — the structure a flat JSON response can't carry. Autocompletes in your editor and reads cleanly to coding agents.
- Fully typed · autocompletes
- Objects link to objects
- Typed errors & pagination
Typed Python client. Set up the SDK in your uv project, then pull this API’s typed client:
uv add parse-sdk uv run parse init uv run parse add --marketplace coronacrush-co-api
uv run parse add --marketplace pulls a pinned snapshot of this canonical API — it won’t change underneath you. To customize it, subscribe and swap to your own copy.
"""Walkthrough: CoronaCrush SDK — list upcoming Jewish speed dating events."""
from parse_apis.coronacrush_co_api import CoronaCrush, ParseError
client = CoronaCrush()
# List all upcoming events, capped at 3
for event in client.events.list(limit=3):
print(event.date, event.timezone, event.price, event.signups)
# Grab the first event for inspection
try:
first = client.events.list(limit=1).first()
if first:
print(first.event_id, first.signup_url)
except ParseError as e:
print(f"error: {e}")
print("exercised: events.list")
Returns all upcoming Jewish speed dating events with date, timezone, price, signup count, and registration link. Results come as a single page; the site publishes only current upcoming events.
No input parameters required.
{
"type": "object",
"fields": {
"events": "array of upcoming event objects with event_id, date, timezone, price, signups, and signup_url"
},
"sample": {
"events": [
{
"date": "Jul 29 at 9:00PM",
"price": "FREE",
"signups": "1,486 singles already signed up!",
"event_id": "TfO4Muj09TPLUdet",
"timezone": "Israel Time",
"signup_url": "https://coronacrush.co/coronacrush?eid=TfO4Muj09TPLUdet"
},
{
"date": "Jul 29 at 9:00PM",
"price": "FREE",
"signups": "2,965 singles already signed up!",
"event_id": "BcI2P0MNE77Z0r60",
"timezone": "Eastern Time",
"signup_url": "https://coronacrush.co/coronacrush?eid=BcI2P0MNE77Z0r60"
}
]
}
}About the Coronacrush API
The Coronacrush API on Parse exposes 1 endpoint for the publicly available data on coronacrush.co. Calls return JSON over HTTPS and are billed per successful response.
Pin a release with the API-Snapshot-Version header so canonical updates don't silently change your contract.