NHL Team Roster and Schedule Scraper
Pricing
from $7.50 / 1,000 results
NHL Team Roster and Schedule Scraper
Pull NHL team roster and schedule data by tricode for all 32 franchises from Boston Bruins to Utah Hockey Club. Pick a mode for roster, schedule, or both. Useful for hockey fan sites, fantasy hockey tools, season recap builds, and tracking player movement across the league.
Pricing
from $7.50 / 1,000 results
Rating
0.0
(0)
Developer
ParseForge
Maintained by CommunityActor stats
0
Bookmarked
2
Total users
1
Monthly active users
2 days ago
Last modified
Categories
Share

🏒 NHL Roster and Schedule Scraper
🚀 Export every NHL team roster and upcoming game from the official api-web.nhle.com endpoints.
🕒 Last updated: 2026-06-05 · 📊 18 fields per record · Public REST API · No login required
The NHL Roster and Schedule Scraper turns the https://api-web.nhle.com/v1/roster public endpoint into a clean, structured dataset, parses the response, and flattens it into one row per record. You can scope the run with input filters and pull whichever subset you need.
| 🎯 Target Audience | 💡 Primary Use Cases |
|---|---|
| 📊 Data analysts | Pull the full public dataset into a warehouse |
| 🤖 ML engineers | Build clean training sets without writing client code |
| 📰 Journalists & researchers | Verify facts in seconds |
| 👩💻 Developers | Mirror the upstream data into a database |
| 🏢 Product teams | Power dashboards and internal tools |
| 🎓 Students & educators | Free, structured datasets for projects |
📋 What the NHL Roster and Schedule Scraper does
- Calls the public https://api-web.nhle.com/v1/roster endpoint with the input filters you supply.
- Parses the response, locates each record, and flattens it into a row.
- Casts numeric fields and surfaces upstream errors as a single record with the
errorfield populated. - Stops cleanly at
maxItemsso you never blow past your dataset budget. - Exports to every format the Apify dataset supports , spreadsheet, warehouse, RSS, HTML, and more.
💡 Why it matters: the upstream endpoint is public but the response is verbose and not analyst-ready. This actor normalizes it into one clean row per record so the data drops straight into BigQuery, a Google Sheet, or a pandas DataFrame.
🎬 Full Demo
🚧 Coming soon.
⚙️ Input
| Field | Type | Required | Description |
|---|---|---|---|
team | string | No | NHL team tricode. |
mode | string | No | Which data to pull. |
season | string | No | Optional season code (e.g. 20252026). Default current. |
maxItems | integer | No | Free users 10, paid users up to 1,000,000. Prefill 10. |
Example 1, default run:
{"maxItems": 10}
Example 2, larger pull:
{"maxItems": 500}
⚠️ Good to Know: all input is validated; trailing whitespace is trimmed before the request fires. Free accounts are capped at 10 items per run as a preview; upgrade for the full dataset.
📊 Output
Each record is a flat object. imageUrl is always first, error is always last.
| Field | Type | Description |
|---|---|---|
🖼️ imageUrl | string | Player headshot or team logo URL. |
📑 recordType | string | Either player or game. |
🏒 team | string | NHL team tricode. |
🆔 playerId | number | NHL player id. |
👤 firstName | string | Player first name. |
👤 lastName | string | Player last name. |
🔢 jerseyNumber | number | Jersey number. |
📍 position | string | Position code. |
🎂 birthDate | string | Date of birth. |
🌎 birthCountry | string | Birth country code. |
📏 heightInInches | number | Height in inches. |
⚖️ weightInPounds | number | Weight in pounds. |
🏟️ gameId | number | NHL game id (for schedule rows). |
📅 gameDate | string | Game date. |
🆚 opponent | string | Opponent tricode. |
🏛️ venue | string | Venue name. |
🕒 scrapedAt | string | When this row was fetched. |
❌ error | string | Error message. |
Sample record:
{"imageUrl": "example","recordType": "example","team": "example","playerId": 0,"firstName": "example","lastName": "example","jerseyNumber": 0,"position": "example","birthDate": "example","birthCountry": "example","heightInInches": 0,"weightInPounds": 0,"gameId": 0,"gameDate": "example","opponent": "example","venue": "example","scrapedAt": "2026-06-05T12:00:00.000Z","error": null}
✨ Why choose this Actor
| 🆓 | Works with the free Apify tier and the public upstream endpoint. |
| 🧹 | Clean column names ready for BI tools, spreadsheets, and warehouses. |
| 🔢 | Numeric strings auto-cast to real numbers when applicable. |
| 🛟 | Surfaces upstream rate-limit and error notes as a clean error record instead of crashing. |
| 🚦 | Respects maxItems for predictable run cost. |
| 💾 | Push to dataset, instant export to every format the Apify dataset UI supports. |
📈 How it compares to alternatives
| Approach | Setup time | Clean keys? | Numeric casting? | Rate-limit handling? |
|---|---|---|---|---|
Roll your own fetch | 30 min + | ❌ | ❌ | ❌ |
| Generic CKAN / API client | 1 hr install + script | partial | ❌ | partial |
| This Actor | 5 sec, no install | ✅ | ✅ | ✅ |
🚀 How to use
- Click Try for free.
- Pick your input filters (or leave defaults).
- Click Start. Within seconds your dataset is ready, download or pipe to your warehouse.
- (Optional) Schedule the actor to refresh automatically.
💼 Business use cases
📊 BI and reporting. Wire the actor to a scheduled run, push results to BigQuery or Postgres, and serve a live dashboard.
🤖 ML and feature engineering. Build a clean labelled dataset for training without writing client code or maintaining auth.
📰 Newsroom and research. Verify a fact, snapshot a public record, and embed structured tables in your story.
🧭 Operational monitoring. Track a public dataset over time, alert on changes, and feed downstream automation.
🔌 Automating NHL Roster and Schedule Scraper
- Make / Zapier: trigger this actor on a schedule, push results to Airtable, Google Sheets, or Slack.
- Cron schedule: native Apify scheduler, run hourly, daily, or weekly.
- Webhooks: get a POST to your endpoint the moment a run finishes.
- Pipe to BigQuery / Snowflake / Postgres: native Apify integrations move datasets straight into your warehouse.
🌟 Beyond business use cases
🎓 Education. Free, structured datasets for students learning data analysis or statistics.
🧪 Personal research. Track a topic you care about, build a personal data project, share it on GitHub.
🤝 Non-profit and open data. Power public dashboards and civic-tech projects without writing client code.
🧰 Tinkering and prototyping. Spin up a clean data feed in seconds to test a new chart library or app idea.
🤖 Ask an AI assistant about this scraper
Pop this README into ChatGPT, Claude, or any AI assistant and ask it to map your specific workflow to the actor inputs. The schema, examples, and field list above contain everything an LLM needs to design a working pipeline.
❓ Frequently Asked Questions
❓ Do I need an API key? No. The upstream endpoint is fully public.
❓ Is there a rate limit? The upstream endpoint may rate-limit. This actor surfaces any rate-limit notes as a clean error record.
❓ Which formats can I export? Every format the Apify dataset UI supports, including spreadsheet, warehouse, RSS, HTML, and feed formats.
❓ Can I schedule runs? Yes, use Apify native scheduler or hook this up to Make, Zapier, or cron.
❓ Is this scraping or API? API. The upstream endpoint is fully public, this actor just normalizes the response.
❓ Will the schema change? Core fields are stable. Source-specific fields are passed through as-is when present.
❓ How are errors handled? The actor never throws on the user. Upstream errors and rate-limit notes are pushed as a single record with error populated.
❓ Can I limit the run size? Yes. Set maxItems to cap the dataset; free accounts are auto-capped at 10.
❓ Does it work behind a proxy? Yes, the Apify platform handles outbound networking for you.
❓ Is the data deduplicated? Records are pushed as the upstream returns them; downstream deduping is up to you.
🔌 Integrate with any app
Apify ships native integrations with Make, Zapier, Slack, Discord, Google Drive, Google Sheets, Gmail, Airbyte, Keboola, Telegram, GitHub, and any REST API or webhook endpoint. Trigger runs from a calendar event, a form submission, a cron job, or pipe results straight into BigQuery, Snowflake, or a Postgres warehouse.
🔗 Recommended Actors
| Actor | What it does |
|---|---|
| ParseForge Alpha Vantage Scraper | Stocks, FX, crypto, indicators. |
| ParseForge OurAirports Scraper | Global airport database. |
| ParseForge USGS Earthquake Scraper | Real-time public earthquake feed. |
| ParseForge NWS Weather Alerts Scraper | Live US weather alerts. |
💡 Pro Tip: browse the complete ParseForge collection for 900+ production-grade scrapers across business intelligence, real estate, e-commerce, sports, finance, and public records.
Disclaimer: This actor scrapes only publicly available data. ParseForge is not affiliated with, endorsed by, or sponsored by any of the third-party services referenced. Users are responsible for complying with the target site terms of service and applicable law. Create a free account w/ $5 credit.