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

# Get operation by ID

> Retrieve details of a specific operation.

Retrieves details of a specific operation by its identifier. Requires an API key with access level 3 or higher.

## Path parameters

<ParamField path="operationId" type="string" required>
  Unique identifier of the operation to retrieve.
</ParamField>

## Response

<ResponseField name="id" type="string">
  Unique operation identifier.
</ResponseField>

<ResponseField name="description" type="string">
  Operation description.
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "https://api.cryptomate.me/management/operations/management" \
    -H "x-api-key: $CRYPTOMATE_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 OK theme={null}
  {
    "id": "management",
    "description": "Company management"
  }
  ```

  ```json 412 Precondition Failed theme={null}
  {
    "code": "VAL",
    "message": "Invalid operation"
  }
  ```
</ResponseExample>
