> For the complete documentation index, see [llms.txt](https://support.iafcertsearch.org/api-developer-guide/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://support.iafcertsearch.org/api-developer-guide/api-ko/api-integration/responses.md).

# 응답

### Content-Type Header

모든 응답은 JSON 형식으로 반환됩니다. 이를 위해 `Content-Type` 헤더를 보냅니다.

### 상태 코드

아래는 현재 지원하는 다양한 자원에 대한 상태 코드에 대한 설명을 담고 있는 테이블입니다.

| 응답 코드 | 설명           |
| ----- | ------------ |
| 200   | OK           |
| 201   | 리소스 생성됨      |
| 202   | 접수된          |
| 400   | 잘못된 요청       |
| 401   | 인증되지 않음      |
| 404   | 리소스 찾을 수 없음  |
| 406   | 허용되지 않음      |
| 422   | 처리할 수 없는 엔티티 |
| 429   | 요청이 너무 많음    |
| 500   | 내부 서버 오류     |

### 페이지네이션

페이지네이션 쿼리로 요청을 하는 경우, 응답에 메타 데이터가 포함되어 이전, 현재, 첫 번째 및 마지막 페이지를 쉽게 탐색할 수 있습니다.

```json
{
    "data": [
        // 응답 데이터 
    ],
    "meta": {
        "total_pages": 100,
        "total_rows": 2000,
        "order": "DESC",
        "order_by": "resource_field",
        "limit": 20,
        "offset": 0,
        "next_key": ""
    }
}
```
