Glowb Dev Docs
Main APIAI API

GET /ai/business/info

기업 정보 조회

기업 정보 조회

기업 정보를 조회합니다.

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

요청

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

응답

성공 응답 (200 OK)

{
  "id": "business_id",
  "email": "business@example.com",
  "businessName": "기업명",
  "managerName": "담당자명",
  "phone": "010-1234-5678",
  "licenseImage": "https://..."
}

Response 스키마

Prop

Type

API 테스트

On this page