tech-week.com APIwww.tech-week.com ↗
Access structured Tech Week event data including titles, dates, venues, hosts, and RSVP links. Filter by city, day, time, theme, and keyword via one endpoint.
curl -X GET 'https://api.parse.bot/scraper/2c91d3b3-aed2-4f39-bf20-f07842da5d61/get_events?city=nyc&limit=3&track=founders' \ -H 'X-API-Key: $PARSE_API_KEY'
Search and retrieve Tech Week events with optional filters for city, day, track, location, time, and text search. Supports pagination. Returns up to 48 events per page by default, sorted by time ascending.
| Param | Type | Description |
|---|---|---|
| day | string | Filter by day: 'all' for all days, or a specific date in YYYY-MM-DD format (e.g. '2026-06-02'). |
| city | string | City slug: 'nyc' or 'boston'. |
| host | string | Comma-separated host filters. |
| page | integer | Page number (1-based). |
| time | string | Comma-separated time filters: Morning, Afternoon, Evening. |
| limit | integer | Maximum number of events to return. |
| query | string | Search query to filter events by name/description. |
| theme | string | Comma-separated theme filters. |
| track | string | Comma-separated track slugs: investors, gtm, founders, engineers, students, fintech, hackathons, ai-infra. |
| format | string | Comma-separated format filters. |
| sponsor | string | Comma-separated sponsor filters. |
| featured | string | Set to 'true' to only show featured events. |
| location | string | Comma-separated neighborhood filters (e.g. 'Midtown,SoHo,Brooklyn'). |
{
"type": "object",
"fields": {
"page": "integer - current page number",
"events": "array of event objects with id, title, date, time, time_category, venue, neighborhoods, host, all_hosts, rsvp_url, detail_url, is_invite_only, city, calendar_position",
"per_page": "integer - events per page (48)",
"returned_count": "integer - number of events returned in this response",
"total_available": "integer - total events matching filters"
},
"sample": {
"data": {
"page": 1,
"events": [
{
"id": 5363,
"city": "New York City",
"date": "2026-06-01",
"host": "VCAR",
"time": "04:00:00",
"title": "4am IRR - for the inner IRR nerd in you!",
"venue": "Virtual (NYC)",
"rsvp_url": "https://partiful.com/e/iyeVYNaUJxZqidnHixwa",
"all_hosts": [
"VCAR"
],
"detail_url": "https://www.tech-week.com/calendar/nyc/events/5363",
"neighborhoods": [
"Virtual (NYC)"
],
"time_category": "Evening",
"is_invite_only": false,
"calendar_position": 1
}
],
"per_page": 48,
"returned_count": 1,
"total_available": 1435
},
"status": "success"
}
}About the tech-week.com API
The Tech Week API provides access to the tech-week.com event calendar through a single get_events endpoint that returns up to 48 events per page with over a dozen response fields per event. Each result includes the event title, date, time category, venue, neighborhood, host details, RSVP URL, and a direct detail URL. Filter by city slug (nyc or boston), specific date, time of day, theme, or a free-text search query.
What the API Returns
The get_events endpoint returns paginated event listings from the Tech Week calendar. Each event object in the events array includes fields such as id, title, date, time, time_category, venue, neighborhoods, host, all_hosts, rsvp_url, and detail_url. The time_category field classifies events as Morning, Afternoon, or Evening, matching the time filter parameter. Pagination is controlled via page (1-based) and limit, with total_available, returned_count, and per_page included in every response so you can calculate how many additional pages exist.
Filtering Options
The day parameter accepts either 'all' or a specific date string in YYYY-MM-DD format, making it straightforward to pull all events on a single conference day. The city parameter currently supports 'nyc' and 'boston' slugs. You can combine time (comma-separated values: Morning, Afternoon, Evening), theme (comma-separated theme slugs), and host filters in a single request. The query parameter performs a text search against event names and descriptions, useful for finding events around a specific topic or speaker.
Pagination and Defaults
By default the endpoint returns 48 events per page sorted by time ascending. The per_page field in the response always reflects the configured page size. Use page to step through results when total_available exceeds returned_count. Setting limit lets you request fewer results than the default page size, which can reduce payload size when you only need a handful of events.
- Build a personal Tech Week schedule by pulling events filtered by city and day, then storing
rsvp_urllinks for quick registration. - Aggregate networking events by querying
hostandthemefilters to surface relevant gatherings for a specific company or topic. - Create a time-blocking tool that organizes retrieved events into Morning, Afternoon, and Evening slots using the
time_categoryfield. - Monitor total event counts across cities by comparing
total_availableresponses fornycandbostoncity slugs. - Power a Slack bot that surfaces upcoming same-day events by querying
get_eventswith today's date inYYYY-MM-DDformat. - Build a venue map by collecting
venueandneighborhoodsfields across all paginated results for a given Tech Week city.
| 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 tech-week.com have an official developer API?+
How do I retrieve all events across multiple pages?+
get_events response includes total_available, returned_count, and per_page. Divide total_available by per_page (default 48) to determine the number of pages, then increment the page parameter on successive requests until all results are collected.Does the API return event capacity, ticket price, or attendance data?+
Which cities are available, and are other cities planned?+
city parameter currently accepts 'nyc' and 'boston'. Events outside those two city slugs are not covered by the current endpoint. You can fork the API on Parse and revise it to add support for additional city slugs if Tech Week expands its calendar.Can I filter events by a specific host or speaker name?+
host parameter accepts comma-separated host strings, and each event response includes both a primary host field and an all_hosts array for events with multiple organizers. The query parameter can also match on host or speaker names appearing in event descriptions.