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

# Neueste Probe-Ergebnisse

> Neueste Probe-Ergebnisse für Apps, die Sie publishen.

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

Authentifizierung: API-Schlüssel erforderlich (`Authorization: Bearer <API Key>`).

Ergebnisse, neueste zuerst: `PASS`, `NO_DATA`, `FAIL`, `TIMEOUT` oder `SKIPPED` mit `skip_reason`.

## Anfrage

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

### Beispielanfrage

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

## Antwort

### 200 Erfolg

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

### Fehler

| HTTP | `code`         | `category`  | Beschreibung                                                          |
| ---- | -------------- | ----------- | --------------------------------------------------------------------- |
| 401  | `unauthorized` | `forbidden` | Fehlender oder ungültiger API-Schlüssel.                              |
| 404  | `*-not-found`  | `not_found` | Ziel existiert nicht oder ist für die aktuelle Credential unsichtbar. |

Fehlerantworten nutzen `{"error": {code, category, message, retryable}}`. Siehe <a href="/docs/de/datahub/api/reference/introduction#errors">Fehler</a>.

## Client-Bibliotheken

Die Python- und JavaScript-SDKs wrappen diesen Endpoint noch nicht. REST direkt aufrufen.
