Glowb Dev Docs
SaaS APICollab 이벤트 API

GET /ai/collab/landing

모집중인 캠페인 목록

모집중인 캠페인 목록

현재 모집 중인 캠페인 목록을 조회합니다. 랜딩 페이지에서 사용됩니다.

항목
메서드GET
경로/ai/collab/landing
인증불필요

요청

GET /ai/collab/landing HTTP/1.1
Host: api.glowb.com
curl "https://api.glowb.com/ai/collab/landing"
const response = await fetch('/ai/collab/landing');
const campaigns = await response.json();

응답

성공 응답 (200 OK)

{
  "status": 200,
  "code": null,
  "message": "캠페인 목록 조회 완료",
  "data": [
    {
      "no": 1,
      "title": "여름 뷰티 캠페인",
      "thumbnail": "https://...",
      "platform": "INSTAGRAM",
      "status": "RECRUITING",
      "recruitCount": 10,
      "endDate": "2024-07-31"
    }
  ]
}

Response 스키마

Prop

Type

API 테스트

On this page