> For the complete documentation index, see [llms.txt](https://help.thenorthcop.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://help.thenorthcop.com/tnc-extras/bestbuy-ca-precarting.md).

# Bestbuy CA Precarting

Pre-carting allows you to add any products to cart even if its out of stock. You can then wait on the page and complete checkout once the monitor pings instock!

1\) Login to your bestbuy account

2\) Visit a random product page that is in stock like <https://www.bestbuy.ca/en-ca/product/xbox-wireless-controller-shock-blue/14965239>

3\) Right click the page and select **inspect.**&#x20;

Select **network** at the top of the screen. Enabled on **preserve log** and make sure the **red recording** dot is on.

![](/files/-M_6rAoIMXRNjH1RztFS)

* In the filter section type in **basket.**&#x20;

4\) Add this random product to cart and you should see a baskets request show up.

* Right click this request and select **copy as fetch**

![](/files/-M_6rgnXze_I16bMd0z-)

```
fetch("https://www.bestbuy.ca/api/basket/v2/baskets", {
  "headers": {
    "accept": "*/*",
    "accept-language": "en-CA",
    "authorization": "Bearer 34563456345-2aab-4ed8-b851-345634563456",
    "content-type": "application/json",
    "postal-code": "ABC",
    "region-code": "ON",
    "sec-ch-ua": "\" Not A;Brand\";v=\"99\", \"Chromium\";v=\"90\", \"Google Chrome\";v=\"90\"",
    "sec-ch-ua-mobile": "?0",
    "sec-fetch-dest": "empty",
    "sec-fetch-mode": "cors",
    "sec-fetch-site": "same-origin",
    "x-dtpc": "4$408556215_695h43vFFTUTSOUAHEOPWUVUVWILMFPKCLCGBQK-0e14"
  },
  "referrer": "https://www.bestbuy.ca/en-ca/product/xbox-wireless-controller-shock-blue/14965239",
  "referrerPolicy": "strict-origin-when-cross-origin",
  "body": "{\"id\":\"cC4DF5fg4-308a-4c2b-8944-45634563456\",\"lineItems\":[{\"quantity\":1,\"sku\":\"14965239\"}]}",
  "method": "POST",
  "mode": "cors",
  "credentials": "include"
});
```

This was my fetch request from the in stock product.

5\) Navigate to the product that you want to precart such as a GPU like: <https://www.bestbuy.ca/en-ca/product/15459513>

The product SKU is [15459513](https://www.bestbuy.ca/en-ca/product/15459513) (the numbers at the end of the link)

* Change the sku at the end of the BODY to the new product sku you want to precart

![](/files/-M_6sQB4IBvtwB8plxBr)

6\) From the top of the inspect screen, select **console**

![](/files/-M_6sh9jjchmt7C7rc3G)

7\) Paste in the new edited fetch request and press enter&#x20;

![](/files/-M_6sz3gPqYb34XRflBa)

8\) The item should now be in your cart as a pre carted product.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://help.thenorthcop.com/tnc-extras/bestbuy-ca-precarting.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
