# Tips Using Chrome DevTools to Analyze Requests

By [bap2pecs](https://paragraph.com/@0xb2p) · 2022-10-05

---

Sometimes, you use Chrome’s DevTools to analyze network requests and you may want to copy the URL and request payload into your code to construct your own request.

The problem is the payload can get very complicated. It’s tiring to type it yourself. Recently, I found our Chrome has a nice feature which allows you to copy the entire payload object:

![](https://storage.googleapis.com/papyrus_images/9b25ba8fceaeb812990d82363f609a505627fef1472a5a29e773e9ceeffe96f6.png)

The copied string is a JavaScript object so you can paste directly into your JavaScript code without any modifications.

---

*Originally published on [bap2pecs](https://paragraph.com/@0xb2p/tips-using-chrome-devtools-to-analyze-requests)*
