Skip to main content
GET
/
item
/
find_by_barcode
Item - Find By Barcode
curl --request GET \
  --url https://api.skulabs.com/item/find_by_barcode \
  --header 'Authorization: Bearer <token>'
[
  {
    "_id": "507f1f77bcf86cd799439011",
    "sku": "<string>",
    "upc": "<string>",
    "serial_numbers": [
      "<string>"
    ],
    "barcodes": [
      "<string>"
    ]
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

barcode
string
required

Barcode to search for

Example:

"012345678901"

Response

Items matching the barcode

_id
string
required

Item ID

Example:

"507f1f77bcf86cd799439011"

sku
string

Item SKU

upc
string

Primary barcode

serial_numbers
string[]

Serial numbers

barcodes
string[]

Additional barcodes