LogoLogo
API StatusSupportPostmanContact Us
🇦🇺 AU AutoGrab API Doc
🇦🇺 AU AutoGrab API Doc
  • AutoGrab Basics
    • AutoGrab Developer Hub
    • Integration Overview
    • API Test Cases
    • FAQ
  • Authentication
    • API Key
    • OAuth Authentication
  • Vehicle Search
    • Vehicle Searching Basics
    • Plain-text Search
    • Registration Plate Search
    • Registration Status
    • VIN Search
    • Facet Search
    • Vehicle ID Search
    • Upstream Vehicle Search
    • Marketplace ID Lookup
  • Sourcing
    • Sourcing Basics
    • Market Overlay
    • Market Statistics
    • Stock Feeds
  • Vehicle Data
    • Vehicle Data Basics
    • Detailed Specifications Data
    • Vehicle History
    • Factory Build Data
  • Valuation
    • Valuation Basics
    • Valuation Predict
    • Residual Valuations
    • Max Offer Configuration
    • Gauge API
  • Embeddable Products
    • Embeddable Basics
    • Gauge Widget
    • Valuation Widget
    • Market Overlay Widget
  • REPORTS
    • Car Analysis
    • PPSR
    • Certificates
  • Customer Recapture
    • Customer Recapture API
    • Webhooks
  • Insurance
    • Pre-Accident Valuation (PAV)
    • AutoPAV
    • Repair Decision
  • AutoMate
    • AutoMate Usage Guidance
Powered by GitBook
LogoLogo

Links

  • Terms of Use

2024 © AutoGrab Pty Ltd. ABN 79 638 468 569

On this page

Was this helpful?

Export as PDF
  1. Sourcing

Stock Feeds

Pipe your stock feed into a range of AutoGrab products.

PreviousMarket StatisticsNextVehicle Data Basics

Last updated 3 months ago

Was this helpful?

Creating a stock feed

Your organisation will need at least one stock feed before uploading stock to the platform.

To create a stock feed, make a single POST request to the following Autograb API:

POST /v2/stock?region=au

Create a stock feed.

post

Create a stock feed.

Authorizations
Query parameters
regionstring · enumOptional

The region to perform this request in

Possible values:
reference_idstringOptional

An optional reference id which will be stored against usage records if supplied

Responses
200
Success
application/json
400
Bad Request
application/json
401
Unauthorized
application/json
post
POST /v2/stock/create HTTP/1.1
Host: api.autograb.com.au
ApiKey: YOUR_API_KEY
Accept: */*
{
  "error": true,
  "message": "text"
}
  • Creating a stock feed
  • POSTPost or update a stock item.
  • POSTCreate a stock feed.

Post or update a stock item.

post

Post or update a stock item.

Authorizations
Path parameters
stock_feed_idstringRequired
external_dealership_idstringRequired
external_idstringRequired
Query parameters
regionstring · enumOptional

The region to perform this request in

Possible values:
reference_idstringOptional

An optional reference id which will be stored against usage records if supplied

Body
regionstringRequired

The stock item region

created_atstringRequired

ISO 8601 created at utc date and time string

updated_atstringRequired

ISO 8601 updated at utc date and time string

checked_atstringRequired

ISO 8601 checked at utc date and time string

stocked_atstringRequired

ISO 8601 stocked at utc date and time string

removed_atstringOptional

ISO 8601 removed at utc date and time string, only to be supplied for items that have been removed

conditionstringRequired

The stock condition

stock_nostringOptional

The stock number

regostringOptional

The registration plate

rego_expirystringOptional

ISO 8601 rego_expiry utc date and time string

vinstringOptional

The Vehicle Identification Number

yearnumberOptional

The vehicle year

kmsnumberOptional

The vehicle odometer reading

colorstringOptional

The vehicle body colour

descriptionstringOptional

The vehicle description

makestringOptional

The vehicle make

modelstringOptional

The vehicle model

seriesstringOptional

The vehicle series

badgestringOptional

The vehicle badge

tranmissionstringOptional

The vehicle tranmission

locationstringOptional

The vehicle location

suburbstringOptional

The vehicle suburb

postcodestringOptional

The vehicle postcode

latnumberOptional

The vehicle latitude

lngnumberOptional

The vehicle longtitude

price_egcnumberOptional

The vehicle price excluding government charges

price_dapnumberOptional

The vehicle drive away price

purchase_pricenumberOptional

The vehicle purchase price

video_urlstringOptional

The vehicle video url

Responses
200
Success
application/json
400
Bad Request
application/json
401
Unauthorized
application/json
post
POST /v2/stock/{stock_feed_id}/{external_dealership_id}/{external_id} HTTP/1.1
Host: api.autograb.com.au
ApiKey: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 496

{
  "region": "text",
  "created_at": "text",
  "updated_at": "text",
  "checked_at": "text",
  "stocked_at": "text",
  "removed_at": "text",
  "condition": "text",
  "stock_no": "text",
  "rego": "text",
  "rego_expiry": "text",
  "vin": "text",
  "year": 1,
  "kms": 1,
  "color": "text",
  "description": "text",
  "make": "text",
  "model": "text",
  "series": "text",
  "badge": "text",
  "tranmission": "text",
  "location": "text",
  "suburb": "text",
  "postcode": "text",
  "lat": 1,
  "lng": 1,
  "price_egc": 1,
  "price_dap": 1,
  "purchase_price": 1,
  "video_url": "text",
  "images": [
    {
      "url": "text"
    }
  ]
}
{
  "error": true,
  "message": "text"
}