Documentation Index
Fetch the complete documentation index at: https://developers.hubspot.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Scope requirements
Scope requirements
Create listings
To create new listings:- To create one listing, make a
POSTrequest to/crm/objects/2026-03/listings. - To create multiple listings, make a
POSTrequest to/crm/objects/2026-03/listings/batch/create.
properties object. You can also add an associations object to associate your new listing with existing records (e.g., contacts, companies), or activities (e.g., meetings, notes).
For batch create actions, you can enable multi-status errors which tell you which records were successfully created and which were not. Learn more about setting up multi-status error handling.
Create listings with property values
When creating a listing, include listing properties to store the listing’s details. For example, to create a new listing, your request may look similar to the following:GET request to /crm/properties/2026-03/listings. Learn more about the properties API.
Create listings with associations
When creating a new listing, you can also associate the listing with existing records or activities by including anassociations array.
For example, to associate a new listing with an existing contact, your request would look like the following:
| Parameter | Description |
|---|---|
to | The record or activity you want to associate with the listing, specified by its unique id value. |
types | The type of the association between the listing and the record/activity. Include the associationCategory and associationTypeId. Default association type IDs are listed on the associations API guide, or you can retrieve the value for custom association types via the associations API. |
Retrieve listings
You can retrieve listings individually or in batches. Include the following query parameters in your request URLs to retrieve certain data.| Parameter | Description |
|---|---|
properties | A comma-separated list of the properties to be returned in the response. If a requested property isn’t defined, it won’t be included in the response. If a requested property is defined but a listing doesn’t have a value, it will be returned as null. |
propertiesWithHistory | A comma-separated list of the current and historical properties to be returned in the response. |
associations | Supported when retrieving an individual listing or all listings, a comma-separated list of objects to retrieve associated IDs for. Learn more about the associations API. |
Retrieve an individual listing
To retrieve an individual listing by its record ID, make aGET request to /crm/objects/2026-03/listings/{listingId}.
Retrieve all listings
To request a list of all listings, make aGET request to /crm/objects/2026-03/listings.
You can retrieve up to 100 listings in one request.
- To retrieve a specific amount under 100, add a value to the
limitparameter. For example,?limit=50. - To paginate through results, include the
afterparameter with theaftervalue returned from the previous request.
Retrieve a batch of listings
To retrieve listings in batches, make aPOST request to /crm/objects/2026-03/listings/batch/read. Include the id values of the listings you want to retrieve.
For example, to retrieve a batch of listings by their record ID values:
Update listings
You can update listings individually or in batches.Update an individual listing
To update an individual listing by its record ID, make aPATCH request to /crm/objects/2026-03/listings/{listingId}, and include the data you want to update.
For example:
Update a batch of listings
To update multiple listings, make aPOST request to /crm/objects/2026-03/listings/batch/update. In your request body, include each listing’s record ID as the id and include the properties you want to update.
For example:
Upsert listings
You can batch create and update listings at the same time using the upsert endpoint. Following the request, if the listings already exist, they’ll be updated; if they don’t exist, they’ll be created. To upsert listings, make aPOST request to /crm/objects/2026-03/listings/batch/upsert.
Associate existing listings with records or activities
To associate a listing with other CRM records or an activity, make aPUT request to /crm/objects/2026-03/listings/{listingId}/associations/{toObjectType}/{toObjectId}/{associationTypeId}.
To retrieve the
associationTypeId value, refer to the list of default values, or make a GET request to /crm/associations/2026-03/{fromObjectType}/{toObjectType}/labels.Delete listings
You can delete listings individually or in batches, which will add the listing to the recycling bin in HubSpot. You can later restore the record within HubSpot.- To delete an individual listing, make a
DELETErequest to/crm/objects/2026-03/listings/{listingId}. - To delete listings in batches, make a
POSTrequest to/crm/objects/2026-03/listings/batch/archive.