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

# 액션 매개변수 가져오기

> **필수 플랜:** 프로페셔널 또는 엔터프라이즈.

지정한 액션을 기준으로 작업 매개변수를 가져옵니다. 예를 들어 '웹 페이지로 이동'의 URL 또는 '텍스트 입력'의 텍스트를 가져옵니다.



## OpenAPI

````yaml /ko/api/openapi.json post /task/getActions
openapi: 3.0.1
info:
  title: Octoparse API
  description: >-
    Octoparse OpenAPI를 사용하면 프로그래밍 방식으로 작업을 관리하고 클라우드 추출을 실행하며 수집된 데이터를 가져올 수
    있습니다. 기본 URL: `https://openapi.octoparse.com`
  version: 1.0.0
servers:
  - url: https://openapi.octoparse.com
    description: Octoparse API 서버
security: []
paths:
  /task/getActions:
    post:
      tags:
        - Task
      summary: 액션 매개변수 가져오기
      description: >-
        **필수 플랜:** 프로페셔널 또는 엔터프라이즈.


        지정한 액션을 기준으로 작업 매개변수를 가져옵니다. 예를 들어 '웹 페이지로 이동'의 URL 또는 '텍스트 입력'의 텍스트를
        가져옵니다.
      operationId: getActionParameters
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - taskIds
                - actionTypes
              properties:
                taskIds:
                  type: array
                  items:
                    type: string
                  description: 작업 ID 목록
                actionTypes:
                  type: array
                  items:
                    type: string
                  description: 매개변수를 가져올 액션 유형 목록
                  example:
                    - LoopAction
                    - NavigateAction
                    - EnterTextAction
      responses:
        '200':
          description: 액션 매개변수를 가져왔습니다
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      type: object
                      properties:
                        taskId:
                          type: string
                        actions:
                          type: array
                          items:
                            type: object
                  requestId:
                    type: string
      security:
        - apiKeyAuth: []
        - bearerAuth: []
components:
  securitySchemes:
    apiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        x-api-key 헤더에 Octoparse API 키를 보냅니다. Octoparse 계정 센터에서 키를 생성하고 관리하세요. 키는
        일반적으로 op_sk_로 시작합니다.
    bearerAuth:
      type: http
      scheme: bearer
      description: POST /token에서 발급받은 access_token을 사용하세요

````