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

# Get Clinical Procedure

> Retrieve a single clinical procedure

## Path Parameters

<ParamField path="id" type="string" required>The procedure ID</ParamField>

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET "https://api.nevatal.com/api/v1/clinical-procedures/proc_general_consult" \
    -H "Authorization: Bearer nvtl_your_api_key"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  {
    "id": "proc_general_consult",
    "name": "Consulta General",
    "code": "890101",
    "specialty": "Odontología General",
    "description": "Consulta de valoración general",
    "duration": 30,
    "price": 150000,
    "currency": "COP",
    "requiredEquipment": [],
    "status": "active",
    "createdAt": "2025-01-10T08:00:00Z"
  }
  ```
</ResponseExample>
