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

# Ottenere lo stato delle attività V2

> **Piano richiesto:** Professionale o Enterprise.

Ottieni lo stato delle attività in base ai relativi ID. Frequenza delle richieste: 5 richieste al secondo.



## OpenAPI

````yaml /it/api/openapi.json post /cloudextraction/statuses/v2
openapi: 3.0.1
info:
  title: API Octoparse
  description: >-
    Octoparse OpenAPI consente di gestire le attività tramite codice, eseguire
    estrazioni cloud e recuperare i dati estratti. URL di base:
    `https://openapi.octoparse.com`
  version: 1.0.0
servers:
  - url: https://openapi.octoparse.com
    description: Server API Octoparse
security: []
paths:
  /cloudextraction/statuses/v2:
    post:
      tags:
        - Cloud Extraction
      summary: Ottenere lo stato delle attività V2
      description: >-
        **Piano richiesto:** Professionale o Enterprise.


        Ottieni lo stato delle attività in base ai relativi ID. Frequenza delle
        richieste: 5 richieste al secondo.
      operationId: getTaskStatusV2
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - taskIds
              properties:
                taskIds:
                  type: array
                  items:
                    type: string
      responses:
        '200':
          description: Stati dettagliati delle attività recuperati
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        taskId:
                          type: string
                        status:
                          type: string
                        currentTotalExtractCount:
                          type: integer
                        executedTimes:
                          type: integer
                        subTaskCount:
                          type: integer
                        nextExecuteTime:
                          type: string
                          format: date-time
                        startExecuteTime:
                          type: string
                          format: date-time
                        endExecuteTime:
                          type: string
                          format: date-time
                  requestId:
                    type: string
      security:
        - apiKeyAuth: []
        - bearerAuth: []
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        Invia una chiave API Octoparse nell'header x-api-key. Crea e gestisci le
        chiavi nel centro account Octoparse. In genere, le chiavi iniziano con
        op_sk_.
    bearerAuth:
      type: http
      scheme: bearer
      description: Usa l'access_token ottenuto da POST /token

````