Development — entry 038 of 98
Heroku
The Heroku Platform API is a JSON-only REST interface, versioned via an `Accept: application/vnd.heroku+json` header, for programmatically creating apps and managing dynos, add-ons, config vars, and releases with OAuth or bearer-token auth. Heroku removed its free dyno, Postgres, and Redis tiers in November 2022, so the entry point today is the paid Eco plan, with Basic, Standard, Performance, and newer Kubernetes-backed Fir dynos above it.
GreatAPIs Score
Auth quickstart
- Register an app / run the OAuth flow to obtain a bearer token.
- Send it as an Authorization header
Authorization: Bearer <token>
Your key is stored only in this browser (localStorage) and sent directly to the API — never to greatapis.
Developer reference
4,500-token max pool per account, replenished at ~75 tokens/minute (up to 4,500/hour); each API call consumes one token, tracked via the RateLimit-Remaining response header, per devcenter.heroku.com/articles/platform-api-reference