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

# Search Deed

> Search for a property deed by ID

### Headers

<ParamField header="Accept" type="string" required>
  Must be "application/json"
</ParamField>

### Body

<ParamField body="deed_id" type="number" required>
  The ID of the deed to search for
</ParamField>

<RequestExample>
  ```bash theme={null}
  curl --request POST \
    --url /tenant/v1/properties/search-deed \
    --header 'Accept: application/json' \
    --header 'Content-Type: application/json' \
    --header 'Authorization: Bearer {access_token}' \
    --data '{
      "deed_id": 920227005017
    }'
  ```
</RequestExample>
