> For the complete documentation index, see [llms.txt](https://docs.bizspring.co.kr/bizspring-air-tm-api/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.bizspring.co.kr/bizspring-air-tm-api/getting-started/api.md).

# API 사용을 위한 순서

***

<table><thead><tr><th width="76.33333333333331" align="center">No.</th><th>API 사용을 위한 순서</th><th data-hidden>내용 상세</th></tr></thead><tbody><tr><td align="center">1</td><td><a href="/pages/8UxO0aiZz6wZurSQDPd5">BizSpring AIR™ 계정 생성/확인</a></td><td></td></tr><tr><td align="center">2</td><td><a href="/pages/UStLvmGyPcHeKP8Ts6zB">Auth Token(인증 토큰) 획득</a></td><td></td></tr><tr><td align="center">3</td><td><a href="/pages/xAP2LIyeqYh2gVPsMNz0">BizSpring AIR™ API 의 리포팅 데이터 요청</a></td><td></td></tr></tbody></table>

### 전체 Flow

```
1️⃣ Growth Platform™ 계정 생성
        ↓
2️⃣ AIR™ 광고주 및 광고 매체 계정 등록
        ↓
3️⃣ Auth Token 발행 (API 인증 토큰)
        ↓
4️⃣ API 호출 (리포팅 데이터 조회)
        ↓
5️⃣ 데이터 활용 (대시보드 / 보고서 / AI 등)
```

### Step 1 — Growth Platform™ 계정 생성

AIR™ API를 사용하기 위해서는 먼저 Growth Platform™ 계정이 필요합니다.

### Step 2 — 광고주 및 광고 매체 계정 등록

| 설정 항목       | 설명                         |
| ----------- | -------------------------- |
| 광고주 등록      | 데이터를 조회할 광고주(브랜드/기업) 정보 등록 |
| 광고 매체 등록    | 네이버, 카카오, 구글 등 집행 매체 등록    |
| 광고주 ↔ 매체 연동 | 각 광고주가 집행하는 매체 연결          |

매체별 연동 방식:

* **API 정보 입력**: 네이버 검색광고 (API Key, Secret Key)
* **OAuth 로그인**: 카카오, 구글 Ads, 메타
* **ID/PW 입력**: 모비온, 데이블, ADN 등

### Step 3 — Auth Token 발행

bash

```bash
curl -X POST https://api.bizspring.co.kr/air/v1/auth/token \
  -H "Content-Type: application/json" \
  -d '{
    "client_id": "YOUR_CLIENT_ID",
    "client_secret": "YOUR_CLIENT_SECRET",
    "grant_type": "client_credentials"
  }'
```

### Step 4 — API 호출

bash

```bash
curl -X GET "https://api.bizspring.co.kr/air/v1/report?rpt_no=1&client_seq=123&start_date=2024-01-01&end_date=2024-01-31" \
  -H "Authorization: Bearer YOUR_ACCESS_TOKEN"
```

### FAQ

| 질문               | 답변                         |
| ---------------- | -------------------------- |
| 데이터 업데이트 주기      | 매일 오전, 전일 기준 데이터 업데이트      |
| 실시간 조회 가능 여부     | 전일 기준 일별 데이터 제공, 실시간 미지원   |
| 매체별 토큰 별도 발행 필요? | 불필요. AIR™ 단일 토큰으로 모든 매체 조회 |


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.bizspring.co.kr/bizspring-air-tm-api/getting-started/api.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
