> ## Documentation Index
> Fetch the complete documentation index at: https://docs.fastino.ai/llms.txt
> Use this file to discover all available pages before exploring further.

> ## Agent Instructions
> Use https://docs.fastino.ai/openapi.json as the source of truth for customer-facing Fastino API routes. Only call operations present in that specification. Do not infer or call undocumented routes. Direct Fastino API integrations use https://api.fastino.ai, /v1 routes, and FASTINO_API_KEY.

# Trainingsjobs auflisten

> Listen und filtern Sie Fastino-Trainingsjobs.

`GET /v1/training-jobs`

Gibt die für den authentifizierten Account sichtbaren Trainingsjobs zurück.

## Request

<ParamField header="X-API-Key" type="string" required>
  Ihr Fastino-API-Schlüssel.
</ParamField>

<ParamField query="status" type="string">
  Nach gespeichertem Job-Status filtern.
</ParamField>

<ParamField query="project_id" type="string">
  Nach Projekt-ID filtern.
</ParamField>

<ParamField query="limit" type="integer" default="200">
  Seitengröße von `1` bis `200`.
</ParamField>

<ParamField query="offset" type="integer" default="0">
  Anzahl der zu überspringenden passenden Jobs.
</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.fastino.ai/v1/training-jobs?status=complete&limit=50&offset=0" \
    -H "X-API-Key: $FASTINO_API_KEY"
  ```
</RequestExample>

## Response

<ResponseField name="success" type="boolean">
  Gibt an, ob die Anfrage erfolgreich war.
</ResponseField>

<ResponseField name="training_jobs" type="object[]">
  Trainingsjob-Datensätze für diese Seite.
</ResponseField>

<ResponseField name="count" type="integer">
  Anzahl der Jobs auf dieser Seite.
</ResponseField>

<ResponseField name="total" type="integer">
  Gesamtzahl der passenden Jobs vor Paginierung.
</ResponseField>

<ResponseField name="has_more" type="boolean">
  Gibt an, ob nach dieser Seite eine weitere existiert.
</ResponseField>

<ResponseExample>
  ```json Response theme={null}
  {
    "success": true,
    "training_jobs": [],
    "count": 0,
    "total": 0,
    "has_more": false
  }
  ```
</ResponseExample>

Ungültige Paginierungswerte geben `422` zurück.
