ConvertedIn | DOCS
  • Overview
  • Before you start
    • Integrating Firebase Cloud Messaging for Push Notifications
  • Android
    • Getting started with Android SDK
  • IOS
    • Getting started with the iOS SDK
  • WooCommerce
    • Getting Started
    • Plugin installation steps
  • Shopify
    • Getting Started
  • API
    • Connect your store using API, Getting started
    • Categories
    • Products
    • Customers
    • Orders
    • Webhooks
  • magento | webhooks
    • Getting started
  • Salla
    • Getting started
  • Pixel
    • Getting Started
    • Client SDK
    • Integrate ConvertedIn Pixel using GTM
    • Shopify Integration for Initiate checkout Event
  • DSP
    • Getting Started
Powered by GitBook
On this page
  • Request
  • Parameters
  • Response

Was this helpful?

  1. Loyalty & POS integration

Products

Retrieve a list of products.

Request

curl -X GET "{domain}/api/products?page=1&limit=100" \
-H "Access-Token: {access_token}"

Parameters

Name
Type
Required
Description

page

int

true

page number

limit

int

true

count items per page

collection_id

int

false

used to fetch only products related to this collection

Response

{
    "data": [
        {
            "id": 632910392,
            "title": "IPod Nano - 8GB",
            "content": "<p>It's the small iPod with one very big idea: Video. Now the world's most popular music player, available in 4GB and 8GB models, lets you enjoy TV shows, movies, video podcasts, and more. The larger, brighter display means amazing picture quality. In six eye-catching colors, iPod nano is stunning all around. And with models starting at just $149, little speaks volumes.</p>",
            "vendor": "Apple",
            "created_at": "2021-10-01T16:42:46-04:00",
            "handle": "ipod-nano",
            "updated_at": "2021-10-01T16:42:46-04:00",
            "published_at": "2007-12-31T19:00:00-05:00",
            "available": true,
            "tags": "Emotive, Flash Memory, MP3, Music",
            "variants": [
                {
                    "id": 808950810,
                    "product_id": 632910392,
                    "title": "Pink",
                    "price": "199.00",
                    "sku": "IPOD2008PINK",
                    "position": 1,
                    "compare_at_price": null,
                    "created_at": "2021-10-01T16:42:46-04:00",
                    "updated_at": "2021-10-01T16:42:46-04:00",
                    "barcode": "1234_pink",
                    "grams": 567,
                    "image_id": 562641783,
                    "weight": 1.25,
                    "weight_unit": "lb",
                    "inventory_quantity": 10
                },
                {
                    "id": 49148385,
                    "product_id": 632910392,
                    "title": "Red",
                    "price": "199.00",
                    "sku": "IPOD2008RED",
                    "position": 2,
                    "compare_at_price": null,
                    "created_at": "2021-10-01T16:42:46-04:00",
                    "updated_at": "2021-10-01T16:42:46-04:00",
                    "barcode": "1234_red",
                    "grams": 567,
                    "image_id": null,
                    "weight": 1.25,
                    "weight_unit": "lb",
                    "inventory_quantity": 20
                }
            ],
            "options": [
                {
                    "id": 594680422,
                    "product_id": 632910392,
                    "name": "Color",
                    "position": 1,
                    "values": [
                        "Pink",
                        "Red"
                    ]
                }
            ],
            "images": [
                {
                    "id": 850703190,
                    "product_id": 632910392,
                    "position": 1,
                    "created_at": "2021-10-01T16:42:46-04:00",
                    "updated_at": "2021-10-01T16:42:46-04:00",
                    "alt": null,
                    "width": 123,
                    "height": 456,
                    "src": "https://cdn.shopify.com/s/files/1/0006/9093/3842/products/ipod-nano.png?v=1633120966",
                    "variant_ids": []
                },
                {
                    "id": 562641783,
                    "product_id": 632910392,
                    "position": 2,
                    "created_at": "2021-10-01T16:42:46-04:00",
                    "updated_at": "2021-10-01T16:42:46-04:00",
                    "alt": null,
                    "width": 123,
                    "height": 456,
                    "src": "https://cdn.shopify.com/s/files/1/0006/9093/3842/products/ipod-nano-2.png?v=1633120966",
                    "variant_ids": [
                        808950810
                    ]
                }
            ],
            "image": "https://cdn.shopify.com/s/files/1/0006/9093/3842/products/ipod-nano.png?v=1633120966"
        }
    ],
    "total": 1000,
    "per_page": 100,
    "current_page": 1,
    "last_page": 10,
    "from": 1,
    "to": 100
}

Last updated 6 months ago

Was this helpful?