Links

GetStock API

Bulk query of current product information in CSV format

Queryable data

Field
Description
sku
The product's SKU (article number).
quantity
The warehouse quantity of the product. (It includes the available inventory and the quantity reserved by order(s) as well.)
available_quantity
The available quantity of the product. (It does not include the quantity reserved by order(s).)
reserved_by_orders
The quantity reserved by order(s).
inventory_updated_at
Last update in the inventory.
available_external_quantity
Available external stock (1-3 days delivery).
immediate_quantity
The immediately available inventory.

Filtering conditions

Field
Description
inventoryUpdatedSince
The date of the last stock update.
In case of XML:
Url: https://app.webshippy.com/wspyapi/getStockInfoCsv/xml/
Request:
<request>
<apiKey>api-key-comes-here</apiKey>
<inventoryUpdatedSince>2020-12-01 00:00:00</inventoryUpdatedSince>
</request>
In case of JSON:
Url: https://app.webshippy.com/wspyapi/getStockInfoCsv/json/
Request:
{
"apiKey": "api-key-comes-here",
"inventoryUpdatedSince": "2020-12-01"
}