Skip to main content
Three steps from issuing an App Key to your first API call. There is no approval process — you can start immediately.
1

Register an app and get an App Key

Sign in to the developer console with your Rocketpunch account and register an app. Enter a name and description, pick the type that matches what you are building, and your credentials are issued on the spot.If you only read public data, choose an App Key app. If you need to act on a user’s behalf — writing posts, for example — choose an OAuth client app. See Choosing an app type for the details.
The secret key (it starts with rp_sec_) is shown once, right after issuance or rotation. Once you leave the screen you cannot see it again, so move it somewhere safe immediately.
2

Set up the auth header

Send your App Key in the X-RP-API-Key header on every request.
No cookies, no query-string tokens, no sessions. One header per request.
3

Make your first call

Let’s search job postings.

Got a response?

List responses return items along with totalItems, totalPages, page, and pageSize. Page numbers start at 1. Set the response language with the Accept-Language header. Without it you get Korean.

Something not working?

Per-endpoint parameters, response schemas, and the full error code list are in the API reference.

Next steps

App Key authentication

Storing and rotating keys, and what to do if one leaks.

OAuth 2.0 integration

Get user consent and call user-context APIs.