Build faster with AI AI icon Get started with Webflow’s MCP Server

Log inSubmit an appGet started
ReferenceGuidesExamplesChangelog
ReferenceGuidesExamplesChangelog
  • Data API
    • Introduction
  • Token
    • GETGet Authorization User Info
    • GETGet Authorization Info
  • Sites
    • GETList Sites
    • GETGet Site
    • GETGet Custom Domains
    • POSTPublish Site
  • Pages and Components
  • CMS
  • Forms
  • Custom Code
  • Assets
  • Comments
    • GETList Comment Threads
    • GETGet Comment Thread
    • GETList Comment Replies
  • Users
  • Ecommerce
  • Webhooks
    • GETList Webhooks
    • GETGet Webhook
    • POSTCreate Webhook
    • DELRemove Webhook
  • Enterprise
LogoLogo
Log inSubmit an appGet started
EcommerceInventory

List Inventory

GET
https://api.webflow.com/v2/collections/:sku_collection_id/items/:sku_id/inventory
GET
/v2/collections/:sku_collection_id/items/:sku_id/inventory
1curl https://api.webflow.com/v2/collections/6377a7c4b7a79608c34a46f7/items/5e8518516e147040726cc415/inventory \
2 -H "Authorization: Bearer <token>"
Try it
200Retrieved
1{
2 "id": "5bfedb42bab0ad90fa7dad39",
3 "quantity": 100,
4 "inventoryType": "finite"
5}
List the current inventory levels for a particular SKU item. Required scope | `ecommerce:read`
Was this page helpful?
Previous

Update Item Inventory

Next
Built with
Update Item Inventory

List the current inventory levels for a particular SKU item.

Required scope | ecommerce:read

Authentication

AuthorizationBearer

Bearer authentication of the form Bearer <token>, where token is your auth token.

Path Parameters

sku_collection_idstringRequiredformat: "objectid"
Unique identifier for a SKU collection. Use the List Collections API to find this ID.
sku_idstringRequiredformat: "objectid"
Unique identifier for a SKU

Response

Request was successful
idstring or nullformat: "objectid"
Unique identifier for a SKU item
quantitydouble or null

Total quantity of items remaining in inventory (if inventoryType is finite)

inventoryTypeenum or null
infinite or finite
Allowed values:

Errors

Request was successful