How to make autocomplete for products like in shiphero create order

hello, i want to make an autocomplete for products like in shiphero create order in my system’s end
how to implement this and if their any alternative solution
thanks a lot

Hi @karimedrees,
I am not sure I understand, how can we help? What kind of information would you need from the public-API?

Hi @Theresa
I need an endpoint to get the product/products information’s once I search for its name (autocomplete) like this in shiphero app

You can get product information with the products query. The products query will use the sku as input data.

query{
  products(sku:"<product sku here>") {
    request_id
    complexity
    data{
      edges{
        node{
          id
          legacy_id
          account_id
          name
          barcode
          country_of_manufacture
          dimensions{
            length
            width
            height
          }

          tariff_code
        }
      }
    }
  }
}