게시글 검색·목록
curl --request GET \
--url https://openapi.rocketpunch.com/api/v1/posts \
--header 'X-RP-API-Key: <api-key>'import requests
url = "https://openapi.rocketpunch.com/api/v1/posts"
headers = {"X-RP-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-RP-API-Key': '<api-key>'}};
fetch('https://openapi.rocketpunch.com/api/v1/posts', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://openapi.rocketpunch.com/api/v1/posts",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-RP-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://openapi.rocketpunch.com/api/v1/posts"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-RP-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://openapi.rocketpunch.com/api/v1/posts")
.header("X-RP-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://openapi.rocketpunch.com/api/v1/posts")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-RP-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"totalItems": 123,
"totalPages": 123,
"page": 123,
"pageSize": 123,
"items": [
{
"postId": 9876543,
"author": {
"type": "COMPANY",
"name": "<string>",
"certificated": true,
"id": "<string>",
"imageUrl": "<string>"
},
"images": [
{
"id": 12345,
"url": "https://cdn.example.com/images/2026/5/30/abcdef.jpg",
"width": 1920,
"height": 1080
}
],
"stats": {
"likeCount": 123,
"commentCount": 123
},
"owned": true,
"webUrl": "https://www.rocketpunch.com/post/9876543",
"postedAt": "<string>",
"content": "<string>",
"og": {
"link": "<string>",
"title": "<string>",
"source": "<string>",
"image": "<string>",
"description": "<string>"
}
}
]
}{
"code": "C0005",
"message": "요청 값이 올바르지 않습니다.",
"timestamp": "2026-05-20T09:00:00",
"details": "startDate"
}Posts
게시글 검색·목록
게시글을 검색·페이지네이션 조회한다.
GET
/
api
/
v1
/
posts
게시글 검색·목록
curl --request GET \
--url https://openapi.rocketpunch.com/api/v1/posts \
--header 'X-RP-API-Key: <api-key>'import requests
url = "https://openapi.rocketpunch.com/api/v1/posts"
headers = {"X-RP-API-Key": "<api-key>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {'X-RP-API-Key': '<api-key>'}};
fetch('https://openapi.rocketpunch.com/api/v1/posts', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://openapi.rocketpunch.com/api/v1/posts",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"X-RP-API-Key: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://openapi.rocketpunch.com/api/v1/posts"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("X-RP-API-Key", "<api-key>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://openapi.rocketpunch.com/api/v1/posts")
.header("X-RP-API-Key", "<api-key>")
.asString();require 'uri'
require 'net/http'
url = URI("https://openapi.rocketpunch.com/api/v1/posts")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["X-RP-API-Key"] = '<api-key>'
response = http.request(request)
puts response.read_body{
"totalItems": 123,
"totalPages": 123,
"page": 123,
"pageSize": 123,
"items": [
{
"postId": 9876543,
"author": {
"type": "COMPANY",
"name": "<string>",
"certificated": true,
"id": "<string>",
"imageUrl": "<string>"
},
"images": [
{
"id": 12345,
"url": "https://cdn.example.com/images/2026/5/30/abcdef.jpg",
"width": 1920,
"height": 1080
}
],
"stats": {
"likeCount": 123,
"commentCount": 123
},
"owned": true,
"webUrl": "https://www.rocketpunch.com/post/9876543",
"postedAt": "<string>",
"content": "<string>",
"og": {
"link": "<string>",
"title": "<string>",
"source": "<string>",
"image": "<string>",
"description": "<string>"
}
}
]
}{
"code": "C0005",
"message": "요청 값이 올바르지 않습니다.",
"timestamp": "2026-05-20T09:00:00",
"details": "startDate"
}인증
헤더
응답 지원 로케일: ko, en, ja, zh-CN, zh-TW, es, fr, de, pt, th, vi. 미지정 시 ko 기본값
예시:
"ko"
쿼리 매개변수
본문 검색어
Maximum string length:
100검색할 회사 handle
Maximum string length:
255Pattern:
^[A-Za-z0-9_-]+$이미지 포함만
Open Graph 포함만
게시 시각 ≥ (ISO datetime)
게시 시각 ≤ (ISO datetime)
조회할 페이지 번호 (1부터 시작, 기본값 1)
필수 범위:
x >= 1페이지 크기(1~50, 기본 20)
필수 범위:
1 <= x <= 50정렬 (RELEVANCE: 관련도순(기본), RECENT: 최신순)
사용 가능한 옵션:
RELEVANCE, RECENT 이 페이지가 도움이 되었나요?
⌘I