curl --request GET \
--url https://api.hubapi.com/deals/v1/deal/{dealId}{
"portalId": 123,
"dealId": 123,
"isDeleted": true,
"associations": {},
"properties": {}
}The get a deal endpoint retrieves deal information from a HubSpot account, including any associated contact, company, and ticket information. It allows data syncing from HubSpot to external CRMs, accounting systems, forecasting software, and reporting applications. What’s a use case for this endpoint? Your business uses HubSpot for sales and another project management system for onboarding new customers. When a HubSpot deal moves to the closed-won stage, the get a deal endpoint syncs the data to your project management software and initiates a new onboarding project.
curl --request GET \
--url https://api.hubapi.com/deals/v1/deal/{dealId}{
"portalId": 123,
"dealId": 123,
"isDeleted": true,
"associations": {},
"properties": {}
}Scope requirements
Unique identifier for a particular deal.
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.
Was this page helpful?