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

# Consultar autorização PIX Automático

> Retorna status, QR e vínculo com assinatura.

<RequestExample>
  ```bash cURL theme={null}
  curl -X GET 'https://api.goatpay.com.br/v1/pix-automatic/authorizations/get/a33047b1-fb19-4b68-9373-a7ba8a8162aa' \
    -H 'X-API-Key: gp_live_SUA_CHAVE'
  ```
</RequestExample>

<ResponseExample>
  ```json Success theme={null}
  {
    "success": true,
    "message": "Autorização PIX Automático encontrada",
    "data": {
      "id": "a33047b1-fb19-4b68-9373-a7ba8a8162aa",
      "status": "ACTIVE",
      "frequency": "MONTHLY",
      "contractId": "CONTRACT-123",
      "value": 99.9,
      "startDate": "2026-06-01",
      "customerId": "clx_customer",
      "description": "Assinatura mensal",
      "dateCreated": "2026-05-31T10:00:00.000Z"
    },
    "requestId": "req_abc"
  }
  ```
</ResponseExample>

### Parâmetros de rota

<ParamField path="id" type="string" required>
  ID da autorização retornado na criação.
</ParamField>
