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

# Aufgabenstatus abrufen

> **Erforderlicher Plan:** Professional oder Enterprise.

Rufen Sie den Status von Aufgaben anhand ihrer IDs ab. Anfragehäufigkeit: 1 Anfrage alle 5 Sekunden.



## OpenAPI

````yaml /de/api/openapi.json post /cloudextraction/statuses
openapi: 3.0.1
info:
  title: Octoparse API
  description: >-
    Mit der Octoparse OpenAPI können Sie Aufgaben programmgesteuert verwalten,
    Cloud-Extraktionen ausführen und gescrapte Daten abrufen. Basis-URL:
    `https://openapi.octoparse.com`
  version: 1.0.0
servers:
  - url: https://openapi.octoparse.com
    description: Octoparse API-Server
security: []
paths:
  /cloudextraction/statuses:
    post:
      tags:
        - Cloud Extraction
      summary: Aufgabenstatus abrufen
      description: >-
        **Erforderlicher Plan:** Professional oder Enterprise.


        Rufen Sie den Status von Aufgaben anhand ihrer IDs ab.
        Anfragehäufigkeit: 1 Anfrage alle 5 Sekunden.
      operationId: getTaskStatus
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - taskIds
              properties:
                taskIds:
                  type: array
                  items:
                    type: string
      responses:
        '200':
          description: Aufgabenstatus abgerufen
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        taskId:
                          type: string
                        taskName:
                          type: string
                        status:
                          type: string
                  requestId:
                    type: string
      security:
        - apiKeyAuth: []
        - bearerAuth: []
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        Senden Sie einen Octoparse-API-Schlüssel im Header x-api-key. Schlüssel
        können Sie im Octoparse-Kontocenter erstellen und verwalten. Sie
        beginnen normalerweise mit op_sk_.
    bearerAuth:
      type: http
      scheme: bearer
      description: Verwenden Sie das mit POST /token abgerufene access_token.

````