Glowb Dev Docs
SaaS APICollab 이벤트 API

GET /ai/collab

캠페인 목록 조회

캠페인 목록 조회

로그인한 사용자의 캠페인 목록을 조회합니다.

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

요청

GET /ai/collab HTTP/1.1
Host: api.glowb.com
Authorization: Bearer eyJhbGciOiJIUzI1NiIs...
curl "https://api.glowb.com/ai/collab" \
  -H "Authorization: Bearer {access_token}"
const response = await fetch('/ai/collab', {
  headers: {
    'Authorization': `Bearer ${accessToken}`
  }
});
const campaigns = await response.json();

응답

성공 응답 (200 OK)

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

Response 스키마

Prop

Type

API 테스트

On this page