> For the complete documentation index, see [llms.txt](https://api.clearinghouse.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://api.clearinghouse.net/api-reference-v2p1/endpoints/settlement-judgement-date.md).

# Settlement Judgement Date

Use `settlement_judgment_date_from` and/or `settlement_judgment_date_to` to filter cases by the Both parameters accept dates in `YYYY-MM-DD` format. Either or both parameters may be provided.

### settlement\_judgement\_date\_from

<mark style="color:blue;">`GET`</mark> `https://clearinghouse.net/api/v2p1/cases/?settlement_judgement_date_from=YYYY-MM-DD`

Returns all cases with a filing date **on or after** the given date.

### settlement\_judgement\_date\_to

<mark style="color:blue;">`GET`</mark> `https://clearinghouse.net/api/v2p1/cases/?settlement_judgement_date_to=YYYY-MM-DD`

Returns all cases with a filing date **on or before** the given date.

### Headers

| Name                                            | Type   | Description                                                                                                                    |
| ----------------------------------------------- | ------ | ------------------------------------------------------------------------------------------------------------------------------ |
| Authorization<mark style="color:red;">\*</mark> | String | <p>Authorization</p><p><code>Token XXXXXXXXXXX</code></p><p>where</p><p><code>XXXXXXXXXXX</code></p><p>is the token string</p> |

### Example

{% tabs %}
{% tab title="URL" %}

```
https://clearinghouse.net/api/v2p1/cases?settlement_judgement_date_from=2020-01-01&settlement_judgement_date_to=2020-12-31
```

{% endtab %}

{% tab title="python" %}

```python
import requests

url = "https://clearinghouse.net/api/v2p1/cases?filing_date_from=2020-01-01&filing_date_to=2020-12-31"
headers = { 'Authorization': 'Token XXXXXXXXXX',
'User-Agent': 'Chrome v22.2 Linux Ubuntu'
}
response = requests.request("GET", url, headers=headers, data={})

print(response.text)
```

{% endtab %}
{% endtabs %}
