API Reference
CatchTable 예약 상세 조회
예약 ref로 예약 상세 정보를 조회합니다.
CatchTable 예약 상세 조회
예약 ref로 예약 상태, 방문 일시, 인원 등 상세 정보를 반환합니다.
엔드포인트
GET /v1/catchtable-reservation-detail
Upstream
- Base URL:
https://ct-api.catchtable.co.kr - Path:
/api/v3/reservation/detail
요청 파라미터
| 파라미터 | 타입 | 필수 | 기본값 | 설명 |
|---|---|---|---|---|
reservation_ref | string | ✅ | - | - |
요청 예시
{
"reservation_ref": "RES001"
}응답 스키마
아래 스키마는 adapter의 Zod output schema에서 직접 생성됩니다.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"reservation_ref": {
"type": "string"
},
"shop_ref": {
"type": "string"
},
"shop_name": {
"type": "string"
},
"status": {
"type": "string"
},
"visit_date": {
"type": "string"
},
"visit_time": {
"type": "string"
},
"person_count": {
"type": "number"
}
},
"required": [
"reservation_ref",
"shop_ref",
"shop_name",
"status",
"person_count"
],
"additionalProperties": false
}응답 예시
{
"data": {
"reservation_ref": "RES001",
"shop_ref": "SHOP001",
"shop_name": "맛있는 식당",
"status": "CONFIRMED",
"visit_date": "2026-04-01",
"visit_time": "19:00",
"person_count": 2
},
"pagination": null,
"meta": {
"source": "catchtable-reservation-detail",
"fetchedAt": "2026-03-24T00:00:00.000Z"
}
}