Skip to main content

Get Feed

GET 

/products/feed

Retrieves products feed. The endpoint can return variable products containing it's variants and simple products.

Responses

OK

Schema

    products

    object[]

  • Array [

  • oneOf

    id stringrequired

    Product's unique identifier

    title stringrequired
    stock integerrequired

    Available stock or -1 when backorders are allowed

    sku stringrequired
    description stringrequired
    image_url stringrequired
    price_cents int64required
    shippable booleanrequired

    Indicates whether product is physical or virtual

    category stringrequired
    url string

    variations

    object[]

    required

  • Array [

  • id stringrequired

    Product's unique identifier

    title stringrequired
    stock integerrequired

    Available stock or -1 when backorders are allowed

    sku stringrequired
    description stringrequired
    image_url stringrequired
    price_cents int64required
    shippable booleanrequired

    Indicates whether product is physical or virtual

    attributes

    object

    required

    Product attributes are the characteristics, such as color, size etc. that define a variation product or provide configuration information about a simple product. attributes object holds a list of attribute id/attribute value id pairs applied on this product. So for the following attribute applied on the product, {attribute_id => 1, attribute_label => color, attribute_option_label => black, attribute_option_id => 34}, this is expected as response: {'1':'34'}. These attributes are used during quote and order.

    property name* string
  • ]

  • options

    object[]

    required

  • Array [

  • id stringrequired

    Attribute's unique identifier e.g attr_color

    title stringrequired

    Attribute's user friendly title e.g Color

    values

    object[]

    required

    A list of possible values for this option

  • Array [

  • id stringrequired

    Value's unique identifier e.g. val_black

    title stringrequired

    Value's user friendly title e.g Black

  • ]

  • ]

  • ]

Loading...