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>"
}
}Get the details about a single 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>"
}
}