Glowb Dev Docs
Main API비즈니스 API

GET /business/recommend

추천 크리에이터 조회

추천 크리에이터 조회

온보딩 시 추천 크리에이터 목록을 조회합니다.

항목
메서드GET
경로/business/recommend
인증필요

요청

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

응답

성공 응답 (200 OK)

{
  "result": [
    {
      "memberId": "influencer_001",
      "name": "크리에이터명",
      "profileImage": "https://...",
      "followerCount": 50000,
      "category": "뷰티",
      "platform": "인스타그램"
    }
  ],
  "resultCode": 200,
  "resultMsg": "추천 목록 조회에 성공했습니다."
}

Response 스키마

Prop

Type

API 테스트

On this page