Main API비즈니스 API
GET /business/search
인플루언서 검색
인플루언서 검색
필터 조건으로 인플루언서를 검색합니다.
| 항목 | 값 |
|---|---|
| 메서드 | GET |
| 경로 | /business/search |
| 인증 | 필요 |
요청
GET /business/search?platform=1&category=뷰티&page=1&pageSize=10 HTTP/1.1
Host: api.glowb.com
Authorization: Bearer eyJhbGciOiJIUzI1NiIs...curl "https://api.glowb.com/business/search?platform=1&category=뷰티&page=1&pageSize=10" \
-H "Authorization: Bearer {access_token}"const params = new URLSearchParams({
platform: '1',
category: '뷰티',
page: '1',
pageSize: '10'
});
const response = await fetch(`/business/search?${params}`, {
headers: {
'Authorization': `Bearer ${accessToken}`
}
});
const influencers = await response.json();Query Parameters
Prop
Type
플랫폼 코드
| 코드 | 플랫폼 |
|---|---|
| 0 | 틱톡 |
| 1 | 인스타그램 |
| 2 | 페이스북 |
| 3 | 네이버 |
| 4 | 유튜브 |
응답
성공 응답 (200 OK)
[
{
"memberId": "influencer_001",
"name": "크리에이터명",
"profileImage": "https://...",
"followerCount": 50000,
"category": "뷰티",
"platform": "1"
}
]Response 스키마
Prop
Type