Glowb Dev Docs
Main API인플루언서 API

GET /influence/account/search

계정 정보 조회

계정 정보 조회

인플루언서 계정 상세 정보를 조회합니다.

항목
메서드GET
경로/influence/account/search
인증필요

요청

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

응답

성공 응답 (200 OK)

{
  "memberId": "influencer_001",
  "email": "influencer@example.com",
  "name": "크리에이터명",
  "category": "뷰티",
  "age": "20대",
  "gender": "여성",
  "platforms": ["인스타그램", "유튜브"]
}

API 테스트

On this page