๐Ÿ“… Tech Events Scraper avatar

๐Ÿ“… Tech Events Scraper

Pricing

from $4.00 / 1,000 results

Go to Apify Store
๐Ÿ“… Tech Events Scraper

๐Ÿ“… Tech Events Scraper

Extract tech conferences, meetups, and CFP deadlines across the web to export global event schedules and integrate with your DevRel tools.

Pricing

from $4.00 / 1,000 results

Rating

0.0

(0)

Developer

ๅคช้ƒŽ ๅฑฑ็”ฐ

ๅคช้ƒŽ ๅฑฑ็”ฐ

Maintained by Community

Actor stats

0

Bookmarked

3

Total users

1

Monthly active users

a day ago

Last modified

Share

Tech Events Calendar API | Conferences + CFP

Aggregate tech conferences and CFPs across multiple sources into a deduplicated event calendar for DevRel and recruiting workflows.

Store Quickstart

  • Start with store-input.example.json for a cheap single-topic first run.
  • If that matches your workflow, switch to store-input.templates.json and pick one of:
  • Quickstart (Dataset) for one-topic discovery
  • Multi-topic Scan for a broader calendar build
  • Webhook Alert for downstream event routing

Key Features

  • ๐Ÿ“… Multi-topic search โ€” Search across JavaScript, Python, AI, DevOps, and 20+ topics
  • ๐Ÿ”„ Automatic deduplication โ€” Events appearing in multiple topics are merged
  • ๐ŸŒ Global coverage โ€” Conferences from all countries, including online events
  • ๐Ÿ“ CFP tracking โ€” Call-for-papers URLs and deadlines included
  • ๐Ÿ“Š Sorted by date โ€” Clean chronological listing
  • ๐Ÿท๏ธ Topic tagging โ€” Each event tagged with all relevant topics

Use Cases

WhoWhy
Developer advocatesFind conferences to speak at or sponsor
DevRel teamsPlan conference attendance calendar
RecruitersDiscover events where target developers gather
Community managersTrack events in their technology ecosystem

Input

FieldTypeDefaultDescription
topicsarrayprefilledTopics to search for (e.g. ['javascript','ai','devops']).
yearinteger2026Year to search for events.
deliverystring"dataset"How to deliver results. 'dataset' saves to Apify Dataset (recommended), 'webhook' sends to a URL.
webhookUrlstringโ€”Webhook URL to send results to (only used when delivery is 'webhook'). Works with Slack, Discord, or any HTTP endpoint.
dryRunbooleanfalseIf true, runs without saving results or sending webhooks. Useful for testing.

Input Example

{
"topics": ["javascript", "python", "ai"],
"year": 2026
}

Output

FieldTypeDescription
metaobject
resultsarray
results[].namestring
results[].urlstring (url)
results[].startDatestring
results[].endDatestring
results[].citystring
results[].countrystring
results[].onlineboolean
results[].cfpUrlstring (url)
results[].cfpEndDatestring
results[].twitterstring
results[].topicsarray
results[].sourcestring

Output Example

{
"name": "PyCon US 2026",
"url": "https://us.pycon.org/2026/",
"startDate": "2026-05-15",
"endDate": "2026-05-23",
"city": "Long Beach",
"country": "US",
"online": false,
"cfpUrl": "https://us.pycon.org/2026/speaking/",
"cfpEndDate": "2025-12-18",
"topics": ["python"],
"source": "confs.tech"
}

API Usage

Run this actor programmatically using the Apify API. Replace YOUR_API_TOKEN with your token from Apify Console โ†’ Settings โ†’ Integrations.

cURL

curl -X POST "https://api.apify.com/v2/acts/taroyamada~tech-events-intelligence/run-sync-get-dataset-items?token=YOUR_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{ "topics": ["javascript", "python", "ai"], "year": 2026 }'

Python

from apify_client import ApifyClient
client = ApifyClient("YOUR_API_TOKEN")
run = client.actor("taroyamada/tech-events-intelligence").call(run_input={
"topics": ["javascript", "python", "ai"],
"year": 2026
})
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
print(item)

JavaScript / Node.js

import { ApifyClient } from 'apify-client';
const client = new ApifyClient({ token: 'YOUR_API_TOKEN' });
const run = await client.actor('taroyamada/tech-events-intelligence').call({
"topics": ["javascript", "python", "ai"],
"year": 2026
});
const { items } = await client.dataset(run.defaultDatasetId).listItems();
console.log(items);

Tips & Limitations

  • Run nightly as part of your supply-chain monitoring to catch new vulnerabilities early.
  • Pair with oss-vulnerability-monitor for CVE coverage layered on top of version tracking.
  • For monorepos, run per-package rather than recursing โ€” easier to triage alerts by team owner.
  • Use snapshotKey to persist between runs and only alert on diffs.
  • Webhook delivery supports JSON payloads โ€” pipe into your existing on-call routing.

FAQ

Is my build slowed down?

This actor runs on Apify infrastructure, not your CI runners. No impact on build times.

What's the freshness of data?

Depends on the source registry โ€” typically 5โ€“60 minutes behind upstream.

Can I filter by package ecosystem?

Yes โ€” most DevOps actors accept an ecosystem or package-manager filter in their input schema.

Does this work with private registries?

No โ€” this actor targets public registries (npm, PyPI, crates.io, etc.). Private registries require credential handling that's out of scope.

Can I integrate with GitHub Actions?

Yes โ€” call this actor via Apify API inside a workflow job, parse the JSON output, and fail the build on threshold violations.

DevOps & Tech Intel cluster โ€” explore related Apify tools:

Cost

Pay Per Event:

  • actor-start: $0.01 (flat fee per run)
  • dataset-item: $0.003 per output item

Example: 1,000 items = $0.01 + (1,000 ร— $0.003) = $3.01

No subscription required โ€” you only pay for what you use.