ApiFuseApiFuse
API Reference

CatchTable 웨이팅 현황

캐치테이블 매장의 현재 웨이팅 대기 현황을 조회합니다.

CatchTable 웨이팅 현황

현재 웨이팅 팀 수, 예상 대기 시간, 영업 여부를 반환합니다.

엔드포인트

GET /v1/catchtable-waiting-info

Upstream

  • Base URL: https://ct-api.catchtable.co.kr
  • Path: [dynamic]

요청 파라미터

파라미터타입필수기본값설명
shop_refstring-Catchtable shop ref

요청 예시

{
  "shop_ref": "shop-1"
}

응답 스키마

아래 스키마는 adapter의 Zod output schema에서 직접 생성됩니다.

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "shop_ref": {
      "type": "string"
    },
    "waiting_count": {
      "type": "number"
    },
    "estimated_wait_min": {
      "type": "number"
    },
    "is_open": {
      "type": "boolean"
    }
  },
  "required": [
    "shop_ref",
    "waiting_count",
    "is_open"
  ],
  "additionalProperties": false
}

응답 예시

{
  "data": {
    "shop_ref": "shop-1",
    "waiting_count": 4,
    "estimated_wait_min": 25,
    "is_open": true
  },
  "pagination": null,
  "meta": {
    "source": "catchtable-waiting-info",
    "fetchedAt": "2026-03-24T00:00:00.000Z"
  }
}

On this page