Peatix Events Scraper avatar

Peatix Events Scraper

Pricing

$3.00 / 1,000 events

Go to Apify Store
Peatix Events Scraper

Peatix Events Scraper

Events from Peatix (peatix.com), Japan's biggest community-event and ticketing platform: search by keyword or fetch by URL — dates, venue, ticket tiers with prices, organizer, group, tags, full description. No login, no API key.

Pricing

$3.00 / 1,000 events

Rating

0.0

(0)

Developer

KF P

KF P

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

2 days ago

Last modified

Share

Scrape events from Peatix, Japan's biggest community-event and ticketing platform (also active in Singapore, Malaysia and the US): tech meetups, seminars, workshops, community gatherings.

Search by keyword and/or fetch specific events by URL. Every result is one complete event record: dates with timezone, venue or online flag, every ticket tier with price and seats sold, organizer, hosting group, tags, cover image and the full description (HTML + plain text). No login, no API key, pay per event.

Input

FieldTypeDescription
searchKeywordsarrayKeywords to search for (max 20), any language. Results are de-duplicated across keywords.
eventUrlsarrayDirect https://peatix.com/event/<id> URLs or bare numeric ids (max 2000).
maxItemsintegerStop after this many events (default 100, max 10000). You pay only for pushed events.
maxConcurrencyintegerParallel requests (default 5, max 10). Requests to each host are spaced ~1 s apart, matching Peatix's requested crawl-delay.
proxyConfigurationobjectOptional proxy settings; normally not needed.

At least one of searchKeywords / eventUrls is required. Vanity <name>.peatix.com URLs are not accepted — open one in a browser and copy the peatix.com/event/... URL it leads to.

{
"searchKeywords": ["python", "スタートアップ"],
"maxItems": 200
}

Output

One dataset item per event:

{
"id": "5145560",
"url": "https://peatix.com/event/5145560",
"name": "はじめてのPython!ガチャ作りでプログラミング入門",
"status": "open",
"locationType": "online",
"online": true,
"startUtc": "2026-09-06T01:00:00Z",
"endUtc": "2026-09-06T12:30:00Z",
"timezone": "Asia/Tokyo",
"venue": null,
"organizer": { "id": "7225391", "name": "まなび梯" },
"group": { "id": "8844805", "name": "praxiSpace", "url": "https://peatix.com/group/8844805" },
"tickets": [
{ "id": "6605791", "name": "参加チケット", "type": "free", "status": "on_sale", "price": 0, "currency": "JPY", "currencyPrecision": 0, "seatsMax": 15, "seatsSold": 0, "salesStartUtc": null, "salesEndUtc": null }
],
"isFree": true,
"tags": ["ファミリー/キッズ", "プログラミング言語"],
"cover": "https://cdn.peatix.com/event/5145560/cover-....png",
"description": "<h2>動くガチャを自分でプログラミング!...</h2>...",
"descriptionText": "動くガチャを自分でプログラミング! ...",
"publishedUtc": "2026-08-20T06:43:23Z",
"createdUtc": "2026-08-20T04:53:18Z",
"keyword": "python"
}

Ticket price is the raw number Peatix reports in the ticket's currency (currencyPrecision 0 for JPY means whole yen). seatsSold vs seatsMax shows how full an event is.

Notes

  • Keyword search covers what Peatix's own search finds; there is no country filter (the upstream endpoint ignores one).
  • venue is null for online events; check online / locationType instead.
  • Deleted or unpublished events are skipped, not billed.
  • The scraper honours Peatix's robots.txt (which explicitly welcomes well-behaved bots) including its Crawl-delay: 1.

Use cases

Event marketing and competitor tracking, lead generation for sponsors and vendors, market research on the Japanese events scene, monitoring your own community's ticket sales across groups.