> ## 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[]">
  field
</ParamField>

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

<ParamField query="limit" type="integer" default="100">
  field
</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`  | Description         |
| ---- | -------------- | ----------- | ------------------- |
| 401  | `unauthorized` | `forbidden` | API キー欠落または無効。      |
| 404  | `*-not-found`  | `not_found` | 対象が存在しないか、現資格から不可視。 |

エラー応答は `{"error": {code, category, message, retryable}}` です。<a href="/docs/jp/datahub/api/reference/introduction#errors">エラー</a> を参照。

## クライアントライブラリ

Python / JavaScript SDK はまだこのエンドポイントをラップしていません。REST を直接呼び出してください。
