Social · head-to-head
Discord vs HackerNews
Discord's REST and Gateway APIs let bots and apps manage servers, channels, messages, and slash commands, authenticated with a bot token for server-side integrations or OAuth2 for user-facing flows like account linking. Rate limits are enforced per route and per bucket, and most guild-management scopes only work once the bot has been added to a server with matching OAuth2 permission scopes.
The official Hacker News API is a read-only Firebase-backed REST feed publishing items (stories, comments, jobs, polls) and user profiles as simple JSON, with helper endpoints for the current top/new/best/ask/show/job story ID lists. It requires no API key or registration, updates roughly every 30 seconds to reflect live site activity, and has stayed structurally unchanged since Y Combinator open-sourced it in 2015.
| Discord | HackerNews | |
|---|---|---|
| Authentication | OAuth | None |
| Pricing | free | free |
| Formats | JSON | JSON |
| CORS | yes | yes |
| HTTPS | Yes | Yes |
HackerNews needs no API key, while Discord requires OAuth — pick HackerNews to start without signup.