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

# Get Prior Auth

> Returns a specific prior authorization by ID

## Path Parameters

<ParamField path="prior_auth_id" type="string" required>
  Unique identifier of the prior authorization (UUID format)
</ParamField>

## Response

<ResponseField name="id" type="string">
  Unique identifier for the prior authorization
</ResponseField>

<ResponseField name="status" type="string">
  Current status of the prior authorization. Possible values: `Processing`, `Succeeded`, `Cancelled`, `Failed`
</ResponseField>

<ResponseField name="intake_status" type="string">
  Current intake status of the prior authorization. Possible values: `Processing`, `Succeeded`, `Cancelled`, `Failed`
</ResponseField>

<ResponseField name="document_url" type="string">
  URL to the associated document
</ResponseField>

<ResponseField name="created_at" type="string">
  Timestamp when the prior authorization was created
</ResponseField>

<ResponseField name="updated_at" type="string">
  Timestamp when the prior authorization was last updated
</ResponseField>

<RequestExample>
  ```bash cURL theme={null}
  curl --location --request GET 'https://app.casehealth.com/api/v1/prior_auths/550e8400-e29b-41d4-a716-446655440000' \
  --header 'X-API-Key: YOUR_API_KEY'
  ```
</RequestExample>

<ResponseExample>
  ```json Response theme={null}
  {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "status": "pending",
    "intake_status": "Succeeded",
    "document_url": "https://chai-test-storage.nyc3.cdn.digitaloceanspaces.com/Jackie%20McDonald.pdf",
    "created_at": "2025-08-21T16:41:29.4822",
    "updated_at": "2025-08-21T16:42:56.1892"
  }
  ```
</ResponseExample>
