사이드 메뉴
Getting started
Kakao Developers
Login
Communication
Advertisement
- Concepts
- Ad creation: Ad account
- Ad creation: Campaign
- Ad creation: Ad group
- Targeting for ad group
- Custom audience targeting for ad group
- Ad creation: Creative common
- Ad creation: Display creative
- Ad creation: Message creative
- Ad creation: Personalized message creative
- Bizboard landing settings
- Report
- Message management
- Personalized message management
- Message ad management
- Message ad operation
- Ad View management
- Business Form linkage management
- Pixel & SDK linkage management
- Audience management
- Engagement targeting management
- Customer file management
- Friend group management
- Ad account management
- Reference
- Type information
- Error code
Kakao Moment
Ad account management
This document describes how to use the Ad account management API.
| Method | URL | Authorization |
|---|---|---|
GET | https://apis.moment.kakao.com/openapi/v4/companies | Business token |
| Permission | Prerequisite | Business Authentication | Business consent items |
|---|---|---|---|
| Required: Request permission | Switch to a Biz app Set Business redirect URI Business consent items | Required | Required |
Retrieves business information.
Send a GET request with the issued business token in the request header. You must also pass the business registration number of a company to be retrieved. If the request is successful, this API returns the detailed information of the requested company in JSON format. If failed, refer to Error code to figure out its failure cause.
| Name | Description | Required |
|---|---|---|
| Authorization | Authorization: Bearer ${BUSINESS_ACCESS_TOKEN}Business token as a type of user authentication. | O |
| Name | Type | Description | Required |
|---|---|---|---|
| bizNum | String | Business registration number. | O |
| Name | Type | Description |
|---|---|---|
| id | Long | Company's ID. |
| businessRegistrationNumber | String | Business registration number. |
| name | String | Company's name. |
| representationName | String | Company's representative. |
| address | Address | Company's address. |
| businessCategory | String | Type of business. |
| businessItem | String | Item of business. |
| Name | Type | Description |
|---|---|---|
| baseAddress | String | Base address. |
| detailAddress | String | Detailed address. |
| zipCode | String | Zip code. |
Request
curl -X GET "https://apis.moment.kakao.com/openapi/v4/companies?bizNum=120-81-47521" \-H "Authorization: Bearer ${BUSINESS_ACCESS_TOKEN}"
Response
{"id": 680,"businessRegistrationNumber": "123-12-12345","name": "company name","representationName": "company representative name","businessCategory": "business type","businessItem": "business item","address": {"zipCode": "13494","baseAddress": "경기 성남시 분당구 판교역로 235","detailAddress": "H스퀘어"}}