Main API인플루언서 API
GET /influence/mypage
마이페이지 조회
마이페이지 조회
마이페이지 표시용 정보를 조회합니다.
| 항목 | 값 |
|---|---|
| 메서드 | GET |
| 경로 | /influence/mypage |
| 인증 | 필요 |
요청
GET /influence/mypage HTTP/1.1
Host: api.glowb.com
Authorization: Bearer eyJhbGciOiJIUzI1NiIs...curl "https://api.glowb.com/influence/mypage" \
-H "Authorization: Bearer {access_token}"const response = await fetch('/influence/mypage', {
headers: {
'Authorization': `Bearer ${accessToken}`
}
});
const mypage = await response.json();응답
성공 응답 (200 OK)
{
"memberId": "influencer_001",
"name": "크리에이터명",
"profileImage": "https://...",
"followerCount": 50000,
"appliedCampaigns": 5,
"selectedCampaigns": 3
}