Endpoint
Request Headers
| Header | Required | Description |
|---|---|---|
X-RP-API-Key | Yes | Your App Key, in the format rp_app_xxxxxxxxxxxxxxxx. Obtain this from the developer portal. |
Query Parameters
The search term used to filter companies. Matched against company names and descriptions. For example,
fintech, kakao, or SaaS.The language code for the response content. Supported values include
ko (Korean) and en (English), among 11 total supported languages. The response schema is consistent across all languages.The page number to retrieve. Page numbering starts at
1. Use together with per_page to paginate through result sets larger than a single page.The number of company profiles to return per page. Tune this to balance payload size against the number of API calls your integration requires.
Example Request
Response
A successful request returns HTTP200 with a JSON body containing a paginated list of company profiles under the items key.
The field values shown above are illustrative examples. Actual values reflect live data at query time. Fields such as
employee_count and founded_year may be null if the company has not provided that information on their Rocketpunch profile.Response Fields
An array of company profile objects matching your query. Returns an empty array if no companies match the given
keyword.The total count of company profiles matching your query across all pages.
The current page number reflected in this response.
The number of results per page reflected in this response.
Error Responses
| HTTP Status | Meaning |
|---|---|
401 Unauthorized | Your X-RP-API-Key is missing or invalid. |
429 Too Many Requests | You have exceeded your plan’s rate limit. |
500 Internal Server Error | An unexpected server-side error occurred. Retry with exponential backoff. |