> ## Documentation Index
> Fetch the complete documentation index at: https://www.octoparse.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# 최신 probe

> 게시 App 최신 probe 결과.

**`GET`** `https://api-datahub.octoparse.com/v1/publisher/probes/latest`

인증: API 키 필요(`Authorization: Bearer <API Key>`).

최신순 결과: `PASS`, `NO_DATA`, `FAIL`, `TIMEOUT`, 또는 `SKIPPED`(`skip_reason` 포함).

## 요청

<ParamField query="data_app" type="string[]">
  필드
</ParamField>

### 요청 예시

```bash theme={null}
curl \
  -H "Authorization: Bearer $OCTOPARSE_API_KEY" \
  "https://api-datahub.octoparse.com/v1/publisher/probes/latest"
```

## 응답

### 200 성공

```json theme={null}
{
  "data": {
    "items": []
  }
}
```

### 오류

| HTTP | `code`         | `category`  | 설명                     |
| ---- | -------------- | ----------- | ---------------------- |
| 401  | `unauthorized` | `forbidden` | API 키 누락 또는 무효.        |
| 404  | `*-not-found`  | `not_found` | 대상이 없거나 현재 자격에 보이지 않음. |

오류 응답은 `{"error": {code, category, message, retryable}}`입니다. <a href="/docs/ko/datahub/api/reference/introduction#errors">오류</a> 참고.

## 클라이언트 라이브러리

Python / JavaScript SDK는 아직 이 엔드포인트를 감싸지 않습니다. REST를 직접 호출하세요.
