Parameters are properties that can be paired with any event to impact campaign performance. While not all are required, all are highly recommended to improve performance.
The three most important parameters to implement are:
Content_id
Make
Model
Note: Your parameter values must match the corresponding values used in your catalog for full effect. In the case of content_id, the value must match your "Vehicle ID" field in the catalog.
For more information about implementing parameters, review our developer documentation.
The following parameters are available for Automotive Ads:
Required | Field and Type | Description |
Yes |
Type: string | Product IDs associated with the event, such as SKUs. Example: |
No |
Type: string | We recommend using the value "vehicle" for this parameter. |
No |
Type: string | Postal code for the vehicle location. Example: |
No |
Type: string | Country name for the vehicle location. Example: |
No |
Type: string | Vehicle make/brand/manufacturer. Example: |
No |
Type: string | Vehicle model. Example: |
No |
Type: integer | Year the vehicle was launched in yyyy format. Example: |
No |
Type: enum | Essential to know whether the vehicle is new or used. Supported values: |
No |
Type: integer | Vehicle mileage (in km or miles); zero ( Example: |
No |
Type: string | Mileage units in miles ( |
No |
Type: string | Vehicle exterior color. Example: |
No |
Type: enum | Vehicle transmission type. Supported values: |
No |
Type: enum | Vehicle body style. Supported values: |
No |
Type: enum | Vehicle fuel type. Supported values: |
No |
Type: enum | Vehicle drivetrain. Supported values: |
No |
Type: [float (min), float (max)] | Vehicle price range. Example: |
No |
Type: string | Vehicle trim. Example: |
No |
Type: string | Vehicle identification number. Maximum characters: 17 Example: |
No |
Type: string | Vehicle interior color. Example: |
No |
Type: enum | Vehicle physical condition. Supported values: |
No |
Type: string | Optional for Use Example: |
No |
Type: string | Optional for Use Example: |
No |
Type: string | Optional for Use Example: |
No | page_type | Example values: vehicle inventory, model, offers, configurator start, login |
No | lead_type | Example values: brochure, test drive, quote, inventory |
No | softlead_type | Example values: brochure, test drive, quote, inventory |
// This sample assumes the TikTok Pixel base code is already loaded ttq.track('Search',{
content_type: 'vehicle', // RECOMMENDED: If sent, it must be set to 'vehicle'
content_ids: ['123'],
postal_code: '94025', // RECOMMENDED
country: 'United States', // RECOMMENDED: don't use abbreviations
make: 'Lexus', // RECOMMENDED
model: 'ES', // RECOMMENDED
year: '2017', // RECOMMENDED
state_of_vehicle: 'CPO', // RECOMMENDED
exterior_color: 'black', // RECOMMENDED
transmission: 'automatic', // RECOMMENDED
body_style: 'sedan', // RECOMMENDED
fuel_type: 'gasoline', // RECOMMENDED
drivetrain: 'awd', // RECOMMDENDED
price: 1234.99, // RECOMMENDED, up to 2 decimals optional
currency: 'USD', // REQUIRED if price and preferred_price_range is used, currency has to be the same for both price and preferred_price_range
preferred_price_range: '[10000,20000]' // Optional up to two decimals, min,max });