- Introduction
- Getting started
- Webhooks
- API Reference
- Order
- Shipping Method
- Product
- Variant
- Payment Method
- Customer
- Category
- Currency
Find product by sku or id
GET
/products/find
Request
Query Params
id
integer | null
optional
Example:
1258
sku
string | null
optional
Example:
abc-123
Header Params
X-Identifier
string
optional
Example:
{{x_identifier}}
Authorization
string
optional
Example:
Bearer {{token}}
Accept
string
optional
Example:
application/json
Content-Type
string
optional
Example:
application/json
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/products/find?id=1258&sku=abc-123' \
--header 'X-Identifier: {{x_identifier}}' \
--header 'Authorization: Bearer {{token}}' \
--header 'Accept: application/json' \
--header 'Content-Type: application/json'
Responses
🟢200OK
application/json
Body
data
object
required
id
integer
required
status
string
required
type
string
required
name
string
required
meta_title
string
required
meta_description
string
required
external_reference
string
required
description
string
required
hs_code
null
required
country_of_origin
null
required
filterTags
null
required
variants
array [object {15}]
required
categories
array [object {3}]
required
brand
null
required
supplier
null
required
created_at
string
required
Example
{
"data": {
"id": 36120,
"status": "published",
"type": "Ej lagerförd",
"name": "Ledlampa NEDIS E14 4,5W",
"meta_title": "Ledlampa NEDIS E14 4,5W",
"meta_description": "",
"external_reference": "548289 75001224",
"description": "Kronljusformad LED-LAMPA med E14-sockel, 470 lumen och låg strömförbrukning på 4.5 W som ersätter traditionella 42-Watts glödlampor. Den energieffektiva LED-lampan sprider ett varmt vitt ljus med en färgtemperatur på 2 700 Kelvin",
"hs_code": null,
"country_of_origin": null,
"filterTags": null,
"variants": [
{
"id": 36115,
"product_id": 36120,
"sku": "75001224",
"gtin": null,
"stock": "0.00",
"weight": 0,
"purchase_price": 0,
"stock_price": 0,
"price": 0,
"compare_price": 0,
"package_size": 1,
"supplier_sku": null,
"external_reference": "548289",
"always_orderable": true,
"created_at": "2024-08-28T08:09:21.000000Z"
}
],
"categories": [
{
"id": 50,
"external_reference": null,
"name": "Möbler & Inredning"
},
{
"id": 51,
"external_reference": null,
"name": "Lampor och tillbehör"
},
{
"id": 1331,
"external_reference": null,
"name": "Glödlampor"
},
{
"id": 36,
"external_reference": null,
"name": "Kontor & Lager"
}
],
"brand": null,
"supplier": null,
"created_at": "2024-08-28T08:09:21.000000Z"
}
}
Modified at 2024-11-01 09:13:22