> For the complete documentation index, see [llms.txt](https://tech.x2bee.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://tech.x2bee.com/api/back-office-api/system-bo-api/ai-1.md).

# AI 가용성

## AI agent 가용성 일괄 조회

> 모든 ST025 agent 의 가용성을 한 번에 반환합니다. 프론트는 enum 이름(AI\_TRANSLATE, COPY\_WRITER 등)으로 단건 조회합니다.

```json
{"openapi":"3.1.0","info":{"title":"X2BEE BO API","version":"v1"},"servers":[{"url":"https://api-bo.x2bee.com/api/bo/","description":"prd"}],"security":[{"accessToken":[]}],"components":{"securitySchemes":{"accessToken":{"type":"http","name":"accessToken","scheme":"bearer","bearerFormat":"JWT"}},"schemas":{"AiAvailabilityResponse":{"type":"object","description":"AI agent 가용성 일괄 응답","properties":{"xgenEnabled":{"type":"boolean","description":"xgen 마스터 스위치 여부"},"agents":{"type":"object","additionalProperties":{"type":"boolean"},"description":"agent 별 가용성"}}}}},"paths":{"/v1/common/ai/availability":{"get":{"tags":["AI 가용성"],"summary":"AI agent 가용성 일괄 조회","description":"모든 ST025 agent 의 가용성을 한 번에 반환합니다. 프론트는 enum 이름(AI_TRANSLATE, COPY_WRITER 등)으로 단건 조회합니다.","operationId":"getAvailability","responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"$ref":"#/components/schemas/AiAvailabilityResponse"}}}}}}}}}
```

## 단일 AI agent 가용성 조회

> 특정 agent 의 가용성을 단건으로 반환합니다. agent 는 ST025 enum 이름입니다.

```json
{"openapi":"3.1.0","info":{"title":"X2BEE BO API","version":"v1"},"servers":[{"url":"https://api-bo.x2bee.com/api/bo/","description":"prd"}],"security":[{"accessToken":[]}],"components":{"securitySchemes":{"accessToken":{"type":"http","name":"accessToken","scheme":"bearer","bearerFormat":"JWT"}}},"paths":{"/v1/common/ai/availability/{agent}":{"get":{"tags":["AI 가용성"],"summary":"단일 AI agent 가용성 조회","description":"특정 agent 의 가용성을 단건으로 반환합니다. agent 는 ST025 enum 이름입니다.","operationId":"getAgentAvailability","parameters":[{"name":"agent","in":"path","required":true,"schema":{"type":"string"}}],"responses":{"200":{"description":"OK","content":{"*/*":{"schema":{"type":"boolean"}}}}}}}}}
```


---

# 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:

```
GET https://tech.x2bee.com/api/back-office-api/system-bo-api/ai-1.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
