# Date Range

The `DateRange` is an object used in the Marketplace APIs to represent a range between two dates. The Date Range object has two fields.

<table><thead><tr><th width="138">Field Name</th><th width="173">Data Type</th><th>Description</th></tr></thead><tbody><tr><td><code>start</code></td><td>string</td><td>The start date of the range.</td></tr><tr><td><code>end</code></td><td>string</td><td>The end date of the range.</td></tr></tbody></table>

### Example

{% code lineNumbers="true" %}

```json
{
  "start": "2019-02-10",
  "end": "2023-01-01"
}
```

{% endcode %}
