Discover/CoronaCrush API
live

CoronaCrush APIcoronacrush.co

Access upcoming Jewish speed dating events from CoronaCrush via API. Get event dates, timezones, prices, signup counts, and registration links in one call.

This API takes change requests — .
Endpoint health
verified 5d ago
list_events
1/1 passing latest checkself-healing
Endpoints
1
Updated
19d ago

What is the CoronaCrush API?

The CoronaCrush API exposes 1 endpoint that returns all upcoming Jewish speed dating events published on coronacrush.co. The list_events endpoint delivers a full array of event objects, each containing 6 fields: event_id, date, timezone, price, current signup count, and a direct signup URL. No parameters are required — a single request returns the complete current event schedule.

This call costs1 credit / call— charged only on success
Try it

No input parameters required.

api.parse.bot/scraper/98bbe11e-d7c0-4f53-b293-185ad85e4041/<endpoint>
Ready to send
Fill in the parameters and hit sign in to send to see live response data here.
Call it over HTTPgrab a free API key at signup
curl -X GET 'https://api.parse.bot/scraper/98bbe11e-d7c0-4f53-b293-185ad85e4041/list_events' \
  -H 'X-API-Key: $PARSE_API_KEY'
Python SDK · recommended

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")
All endpoints · 1 totalmissing one? ·

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.

Input

No input parameters required.

Response
{
  "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

What the API Returns

The list_events endpoint returns every upcoming event currently listed on CoronaCrush. Each event object in the response array includes a unique event_id, an event date, the timezone the event is scheduled in, the price to attend, the current signups count, and a signup_url pointing directly to the registration page for that event.

Endpoint Behavior

list_events takes no input parameters. The response is a single, unpaginated array covering all events CoronaCrush has currently published. Because the source only surfaces upcoming events, past or archived events are not included in the response. The dataset reflects whatever CoronaCrush has listed at the time of the request.

Coverage and Scope

All events returned are Jewish speed dating events organized through CoronaCrush. The data includes both pricing and live signup counts, making it straightforward to track event capacity trends or surface events with available spots. The signup_url field links directly to each event's registration page, so downstream applications can route users to sign up without any additional lookup.

Reliability & maintenanceVerified

The CoronaCrush API is a managed, monitored endpoint for coronacrush.co — not a raw scraper you maintain. Every endpoint is automatically health-checked on a schedule, and when coronacrush.co changes and a check fails, the API is automatically queued for repair and re-verified. It is built to keep working as the site underneath it changes.

This isn't an official coronacrush.co API — it's an independent, maintained REST wrapper over public data. Where the source has no official API (or only a limited one), Parse gives you a stable contract over a source that never promised one, and keeps it current. Need a new endpoint or field? You can revise it yourself in plain English and the agent rebuilds it against the live site in minutes — contributing the change back to the shared API is free.

Last verified
5d ago
Latest check
1/1 endpoint passing
Maintenance
Monitored & self-healing
Will this API break when the source site changes?+
It's built not to. Every endpoint is health-checked on a schedule with automated test probes. When the source site changes and a check fails, the API is automatically queued for repair and re-verified — that's the self-healing layer. Each API page shows when its endpoints were last verified. And because marketplace APIs are shared, any fix reaches everyone using it.
Is this an official API from the source site?+
No — Parse APIs are independent, managed REST wrappers over publicly available data. That is the point: where a site has no official API (or only a limited one), Parse gives you a maintained, monitored endpoint for that data and keeps it working as the site changes — so you get a stable contract over a source that never promised one.
Can I fix or extend this API myself if I need a new endpoint or field?+
Yes — and you don't have to wait on us. This API was generated by the Parse agent, which stays attached. Describe the change in plain English ("add an endpoint that returns reviews", "fix the price field") in the revise box on the API page or via the revise_api MCP tool, and the agent rebuilds it against the live site in minutes. Contributing the change back to the public API is free.
What happens if I call an endpoint that has an issue?+
Errors are machine-readable: a bad call returns a clean status with the list of available endpoints and a repair hint, so an agent (or you) can recover or trigger a fix instead of failing silently. Confirmed failures feed the automatic repair queue.
Common use cases
  • Display a live calendar of upcoming CoronaCrush events with dates and timezones on a community site
  • Monitor signup counts across events to detect which events are filling up fastest
  • Build a price comparison view across all upcoming events using the price field
  • Send automated alerts when new events appear in the list_events response
  • Aggregate CoronaCrush events into a broader Jewish singles events aggregator alongside other sources
  • Track event frequency and scheduling patterns over time by logging list_events responses
Pricing & limitsSee full pricing →
TierPriceCredits/monthRate limit
Free$0/mo2005 req/min
Hobby$30/mo1,00020 req/min
Developer$100/mo5,000100 req/min
Team$300/mo20,000300 req/min
Company$1,000/mo100,000500 req/min

Each endpoint has a fixed posted price per successful call — most fall between 1 and 10 credits — shown on this API's page before you run it. Exceeding the rate limit returns a 429 response. Authenticate with the X-API-Key header.

Frequently asked questions
Does CoronaCrush have an official developer API?+
CoronaCrush does not publish an official developer API or documented data access program. This Parse API is the available programmatic way to retrieve their event data.
What does list_events actually return for each event?+
Each object in the events array includes: event_id (a unique identifier), date (the scheduled date/time), timezone, price, signups (current registration count), and signup_url (a direct link to the event's registration page). There are no nested sub-objects or additional metadata fields beyond these six.
Does the API return past or archived events?+
No — the response only contains events that CoronaCrush currently lists as upcoming. Once an event passes and is removed from the source, it will no longer appear in list_events responses. The API does not expose historical event data. You can fork it on Parse and revise it to add a persistence layer that archives past events locally.
Can I filter events by city, date range, or price?+
list_events takes no filter parameters and returns all upcoming events in one array. Filtering by city, date range, or price is not built into the endpoint. You can fork it on Parse and revise it to add filtering logic on top of the returned array.
Does the API include event descriptions, host names, or venue details?+
Not currently. The API covers event_id, date, timezone, price, signups, and signup_url. Fields like event descriptions, host names, or venue/location details are not part of the response. You can fork it on Parse and revise it to add the missing endpoint if CoronaCrush surfaces that data on their site.
Page content last updated . Spec covers 1 endpoint from coronacrush.co.
Related APIs in EntertainmentSee all →
cryptonomads.org API
Discover crypto industry events, job opportunities, and hiring companies while connecting with members of the CryptoNomads community. Search and explore events, browse open positions, find coliving listings, and view detailed profiles of companies and professionals in the crypto space.
rausgegangen.de API
Discover events happening in German cities by searching for concerts, festivals, and shows—filtering by location, date, or category to find exactly what you're looking for. Get detailed information about venues, artists, and ticket lotteries all in one place.
humanitix.com API
Search and discover events on Humanitix, viewing detailed information including dates, times, locations, descriptions, and host names. Filter by keyword, category, price, and date to find events that match your interests.
dice.fm API
Browse upcoming music events, parties, and concerts happening in your city by filtering through genres, categories, and dates to find exactly what you're looking for. Get detailed information about any event including full listings, descriptions, and availability on DICE.
allevents.in API
Search and discover events from AllEvents.in by name, date, or category, then view detailed information like descriptions, timings, and venue details. Filter through available event categories to find exactly what you're looking for.
tech-week.com API
Browse and filter Tech Week events by city, day, track, location, time, or keyword to find conferences, talks, and networking opportunities. Retrieve structured event data including titles, dates, venues, hosts, RSVP links, and schedule positions.
10times.com API
Search and discover events from 10times.com, including conferences, trade shows, and exhibitions worldwide. Access detailed event data such as exhibitor lists, schedules, agendas, and venue information.
feverup.com API
Discover and search live events, exhibitions, and experiences happening in cities worldwide, filtering by categories to find concerts, shows, expos, and more that match your interests. Get detailed information about any event including schedules, descriptions, and venue details to plan your next outing.