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

# Elenca probe publisher

> Elenca probe/health check configurati per le tue app.

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

Autenticazione: API key obbligatoria (`Authorization: Bearer <API Key>`).

Controlli di salute giornalieri della piattaforma sulle app pubblicate pubbliche/condivise. Le app private non vengono mai sondate. I run delle sonde sono esclusi da utilizzo/fatturazione e dalle liste dei run del publisher.

## Richiesta

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

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

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

### Esempio di richiesta

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

## Risposta

### 200 successo

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

### Errori

| HTTP | `code`         | `category`  | Descrizione                                                    |
| ---- | -------------- | ----------- | -------------------------------------------------------------- |
| 401  | `unauthorized` | `forbidden` | API key mancante o non valida.                                 |
| 404  | `*-not-found`  | `not_found` | Il target non esiste o è invisibile alla credenziale corrente. |

Le risposte di errore usano `{"error": {code, category, message, retryable}}`. Vedi <a href="/docs/it/datahub/api/reference/introduction#errors">Errori</a>.

## Librerie client

Gli SDK Python e JavaScript non wrappano ancora questo endpoint. Chiama REST direttamente.
