Steps
Register an App
Head to developers.rocketpunch.com/apps/new and log in with your Rocketpunch account. Fill in the following fields:
Click Register. Your App Key is issued immediately — no review period, no waiting.
| Field | Description |
|---|---|
| App name | A short, recognizable name for your project |
| Description | What your app does and how it uses Rocketpunch data |
| Callback URI | (Optional) Required only if you plan to use OAuth 2.0 for user-consent flows |
Your App Key follows the format
rp_app_xxxxxxxxxxxxxxxx. Copy it now and store it somewhere safe; treat it like a password.Make Your First API Call
Add your App Key to the
X-RP-API-Key request header and call any endpoint. The example below searches for jobs matching the keyword AI:Inspect the Response
A successful request returns a JSON object containing an
A
items array. Each element in the array represents a single job posting:| Field | Type | Description |
|---|---|---|
items | array | The list of job objects matching your query |
total | integer | Total number of matching results across all pages |
page | integer | Current page number |
per_page | integer | Number of results returned per page |
200 OK status confirms your key is valid and the request succeeded. If you receive a 401, double-check that you included the X-RP-API-Key header and that your key is correct.Next Steps
Now that you’ve made your first call, explore the rest of the API:Authentication
Learn how App Key and OAuth 2.0 authentication work, and how to keep your credentials secure.
API Reference
Browse all available endpoints — jobs, companies, profiles, and events — with full parameter and response documentation.