GET
/
deals
/
v1
/
deal
/
recent
/
created
Get recently created deals
curl --request GET \
  --url https://api.hubapi.com/deals/v1/deal/recent/created
{
  "results": [
    {}
  ],
  "hasMore": true,
  "offset": 123,
  "total": 123
}

Query Parameters

count
integer

This parameter lets you specify the amount of deals to return in your API call. The default for this parameter (if it isn't specified) is 20 deals. The max count per paginated response is 100.

Required range: x <= 100
offset
integer

Pages back through recent deals.

since
integer

Only return deals created after the given timestamp.

includePropertyVersions
boolean

By default, you will only get data for the most recent version of a property in the "versions" data. If you include this parameter, you will get data for all previous versions.

Response

200 - application/json

Successful response - Recently created deals

The response is of type object.