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

Documentation Index

Fetch the complete documentation index at: https://developers.hubspot.es/docs/llms.txt

Use this file to discover all available pages before exploring further.

Parámetros de consulta

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 maximum amount of deals you can have returned to you via this parameter is 100.

Rango requerido: x <= 100
offset
integer

Used to page backwards through recent deals. Use the value of the offset field returned in the previous response to get the next set of deal records.

since
integer

Only return deals modified after and including timestamp x. x must be a UNIX formatted timestamp in milliseconds.

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.

Respuesta

200 - application/json

Successful response - Recently modified deals

results
object[]
hasMore
boolean
offset
integer
total
integer
Last modified on April 13, 2026