Glowb Dev Docs
Main API인플루언서 API

GET /influence/profile

인플루언서 프로필 조회

프로필 조회

인플루언서 프로필을 조회합니다.

항목
메서드GET
경로/influence/profile
인증불필요

요청

GET /influence/profile?member_id=influencer_001 HTTP/1.1
Host: api.glowb.com
curl "https://api.glowb.com/influence/profile?member_id=influencer_001"
const response = await fetch(`/influence/profile?member_id=${memberId}`);
const profile = await response.json();

Query Parameters

Prop

Type

응답

성공 응답 (200 OK)

{
  "memberId": "influencer_001",
  "name": "크리에이터명",
  "profileImage": "https://...",
  "intro": "자기소개",
  "followerCount": 50000,
  "category": "뷰티",
  "platform": "인스타그램"
}

Response 스키마

Prop

Type

API 테스트

On this page