How many endpoints does the Reddit API have?
Redditapis exposes 52 REST endpoints covering the actions most projects need: 29 GET read endpoints for posts, comments, users, search, and communities at $0.002 per call, 6 write endpoints at $0.012, 3 direct-message endpoints at $0.025, 1 vote endpoint at $0.005, and 12 free account endpoints. Pricing is per call and tiered by action, so you pay only for the endpoints you actually use.
The 52 endpoints by tier
| Tier | Count | Price | Covers |
|---|---|---|---|
| Read (GET) | 29 endpoints | $0.002 per call | Posts, comments, users, search, and communities. |
| Write (POST) | 6 endpoints | $0.012 per call | Comments, submissions, and profile actions. |
| Direct messages | 3 endpoints | $0.025 per call | Send DMs, list threads, read messages. |
| Vote | 1 endpoint | $0.005 per call | Upvote or downvote a post or comment. |
| Account | 2 endpoints | Free | Read your own account and payments. |
| Monitoring | 10 endpoints | Billed by plan | Keyword monitors, their health, deliveries, and webhooks. |
Which endpoints most projects use
Most integrations are read-heavy, so the 29 GET endpoints at $0.002 do the bulk of the work: pulling posts and comments, resolving users, running search, and listing communities. Writes, votes, and direct messages are there when you need them, priced higher because they act on Reddit rather than just read it. See the per-call math on how much the Reddit API costs and the full tiers on the pricing page.
The 12 endpoints you are never billed per call for
12 endpoints of the 52 endpoints cost nothing per request, and they are two different things rather than one free tier.
2 endpoints are account reads. /account/me and /account/payments return your own key status and billing history, and they are free on every plan so that checking what you have spent never becomes part of what you spend. Poll them as often as a dashboard needs.
The other 10 endpoints are the monitoring surface: creating and updating keyword monitors, listing them, checking their health, reading deliveries, and managing webhooks. Those are billed by plan rather than per call, so a monitor that fires a thousand times does not bill a thousand times. Free per call is not the same as free, and this is the tier where that distinction matters.
How to check the number yourself
Endpoint counts are the easiest number in developer marketing to inflate, so here is
where ours comes from. The 52 endpoints is the number of paths in the OpenAPI
document we publish at docs.redditapis.com/openapi.json. Fetch it, count the keys under paths, and you should get the same figure as the table above. The health probe is
deliberately excluded, because a status check is not something you build against.
The tier counts add up to the total on purpose: 29 endpoints reads, 6 endpoints writes, 3 endpoints direct-message endpoints, 1 endpoint vote endpoint, and 12 endpoints unbilled. If a breakdown does not sum to the headline, one of the two numbers is decoration.
Frequently asked
How many endpoints does the Reddit API have on Redditapis?
There are 52 REST endpoints in total: 29 GET reads, 6 writes, 3 direct-message endpoints, 1 vote endpoint, and 12 free account endpoints. Each tier is priced by action.
Which endpoints are the cheapest?
The 29 read endpoints are the cheapest at $0.002 per call, and they cover the most common needs: posts, comments, users, search, and communities. Reads are what most integrations spend the most calls on.
Are any endpoints free?
Yes. The 12 account endpoints, reading your own account and your payments, are free. Everything else is per call, and you start with $0.50 in credits, about 250 reads, to test before you pay.
How are the endpoints priced?
Per call, tiered by action: reads $0.002, votes $0.005, writes $0.012, and direct messages $0.025. There is no subscription, so a read-heavy project pays cents for thousands of calls.
Call any of the 52 endpoints in minutes
Reads from $0.002, $0.50 in free credits, no approval. Generate a key and make your first call now.
Get your Reddit API key