럽킷 API - mash-up-kr/luvket-backend GitHub Wiki

럽킷 목록 조회

  • Endpoint: GET /api/luvkets

  • Header

key value
uid 837DFH97DFJKE8
  • Request Param
key value description
page 0 0부터 시작
title 타이틀 해당 Param으로 시작되는 title을 조회
categoryIds 1,2,3 필요한 카테고리 Id
complete 0 완료여부
publicOpen 0 나만보기 여부
  • Response
    • status code: 200
{
  "code": 200,
  "message": "럽킷 목록 조회",
  "data": [
    {
      "user_id": 2,
      "title": "title",
      "category_id": 1,
      "status": "OK",
      "public_open": true
    }
  ]
}