# 인감/명판 조회 API

비즈니스의 인감/명판 데이터를 조회할 수 있는 API를 제공합니다.

<br>

## `GET` kit-api/v1/business/seals

Method: GET\
Endpoint: kit-api/v1/business/seals

<br>

## Example

```
...kit-api/v1/business/seals
```

<br>

## Response

```json
{
  "ok": true,
  "data": {
    "corporateItems": [
      // 법인 서명/인감
      "https://lattice-prix-public.s3.ap-northeast-2.amazonaws.com/..."
    ],
    "items": [
      // 서명/인감
      "https://lattice-prix-public.s3.ap-northeast-2.amazonaws.com/...",
      "https://lattice-prix-public.s3.ap-northeast-2.amazonaws.com/...",
      "https://lattice-prix-public.s3.ap-northeast-2.amazonaws.com/..."
    ],
    "stamps": [
      // 명판
      "https://lattice-prix-public.s3.ap-northeast-2.amazonaws.com/...",
      "https://lattice-prix-public.s3.ap-northeast-2.amazonaws.com/..."
    ]
  }
}
```

```json
{
  "ok": false, // api 실패
  "message": "error message", // Error가 존재하면 message(string)로 전달
  "errorCode": "ERROR_CODE"
}
```

<br>


---

# Agent Instructions: 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://api-kit.prix.im/business/get-seals.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.
