Skip to main content
GET
/
products
/
{id}
Get Product
curl --request GET \
  --url https://api.loopreturns.com/api/v1/products/{id} \
  --header 'X-Authorization: <api-key>'
{
  "product": {
    "id": 2,
    "external_id": "<string>",
    "channel": {},
    "sku": "<string>",
    "name": "<string>",
    "weight_grams": 123,
    "barcode": "<string>",
    "description": "<string>",
    "type": "<string>",
    "vendor": "<string>",
    "price": {
      "amount": 50000,
      "currency_code": "USD"
    },
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "collections": [
      {
        "id": 2,
        "external_id": "<string>",
        "name": "<string>"
      }
    ],
    "options": [
      {
        "position": 123,
        "values": [
          "<string>"
        ],
        "name": "<string>"
      }
    ],
    "images": [
      "<string>"
    ],
    "tags": [
      "<string>"
    ],
    "source": "<string>",
    "default_variant_id": "<string>"
  }
}

Authorizations

X-Authorization
string
header
required

API Scope: "Product (read)"

Path Parameters

id
integer
required

The product's unique identifier.

Response

OK

product
ProductResponse · object