Syndications
Syndications are outgoing inventory files that are sent to a 3rd party vendor or service provider. Delivery methods are FTP, SFTP, and Web. To expedite the formatting for standard vendors/providers we offer a selection of pre-formatted file formats that are built to their existing specifications.
Syndication Providers
Provider | Value |
---|---|
AutoTrader | autotrader |
Cars.com | carsdotcom |
Cars For Sale | carsforsale |
CarGurus | cargurus |
Carfax | carfax |
Capital One | capitalone |
CUDL | cudl |
Dealer Socket | dealersocket |
Facebook | |
Google Vehicle Listing Ads (Merchant Center) | google-vla |
Google Ads | google-ads |
Inventory Command Center | icc |
Lotlinx | lotlinx |
OfferUp | offerup |
Pinterest | |
Truecar | truecar |
vAuto | vauto |
List Syndications
GET Request: https://api.autoznetwork.com/v1/syndications
CURL
AUTOZNETWORK_TOKEN="your API token"
AUTOZNETWORK_ORG_ID="your organization id"
curl https://api.autoznetwork.com/v1/syndications \
-H "Authorization: Bearer $AUTOZNETWORK_TOKEN" \
-H "X-AutozNetwork-Organization-Id: $AUTOZNETWORK_ORG_ID" \
-H 'Accept: application/json'
Create a Syndication
POST Request: https://api.autoznetwork.com/v1/syndications
CURL
AUTOZNETWORK_TOKEN="your API token"
AUTOZNETWORK_ORG_ID="your organization id"
curl -X POST https://api.autoznetwork.com/v1/syndications \
-H "Authorization: Bearer $AUTOZNETWORK_TOKEN" \
-H "X-AutozNetwork-Organization-Id: $AUTOZNETWORK_ORG_ID" \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
-d '{
'provider': 'autotrader',
'name': 'AutoTrader Syndication',
'compression_extension': 'zip'
}
Table of Contents