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

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

게시된 public/shared App에 대한 플랫폼 일일 헬스 체크. private App은 probe 하지 않음. probe 실행은 사용량/과금과 게시자 실행 목록에서 제외.

## 요청

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

<ParamField query="days" type="integer" default="30">
  필드
</ParamField>

<ParamField query="limit" type="integer" default="100">
  필드
</ParamField>

### 요청 예시

```bash theme={null}
curl \
  -H "Authorization: Bearer $OCTOPARSE_API_KEY" \
  "https://api-datahub.octoparse.com/v1/publisher/probes?days=30&limit=100"
```

## 응답

### 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를 직접 호출하세요.
