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

# Ultimi risultati probe

> Ultimi risultati probe per le app che pubblichi.

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

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

Esiti, dal più recente: `PASS`, `NO_DATA`, `FAIL`, `TIMEOUT` o `SKIPPED` con `skip_reason`.

## Richiesta

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

### Esempio di richiesta

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

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