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

# Calculate Title Fees

> Trigger fee calculation for a specific title entry

This endpoint initiates fee calculation for a title entry by publishing a fee calculation event and updating the job status to "enriching".

## Path Parameters

<ParamField path="id" type="string" required>
  The unique identifier of the title entry
</ParamField>

## Response

<ResponseField name="entryId" type="string">
  The ID of the title entry for which fees are being calculated
</ResponseField>

<ResponseField name="job_status" type="string">
  Updated job status, set to "enriching" after fee calculation is initiated
</ResponseField>

<RequestExample>
  ```bash theme={null}
  curl -X POST "https://api.cardinalgray.com/title/123e4567-e89b-12d3-a456-426614174000/fees" \
    -H "Authorization: Bearer YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json theme={null}
  {
    "entryId": "123e4567-e89b-12d3-a456-426614174000",
    "job_status": "enriching"
  }
  ```
</ResponseExample>
