> ## Content Index
> Fetch the complete content index at: https://catalins.tech/llms.txt
> Use this file to discover other available public pages before exploring further.

# Copy HTTP Requests From Developer Tools to Postman
- URL: https://catalins.tech/copy-http-requests-from-developer-tools/
- Published: 2024-06-26T07:20:44.000Z
- Updated: 2024-06-26T07:20:44.000Z
- Description: Learn how to copy HTTP requests from your browser developer tools and import them into Postman using cURL. Easily test and modify API calls for efficient development.
- Author: Catalin Pit
- Tags: API

To copy an HTTP request from your browser's developer tools:

1. Open the "*Network*" tab in your browser's developer tools.
2. Right-click on the request you want to copy.
3. Click the "*Copy as cURL*" option.

![](https://catalins.tech/content/images/2024/06/copy-http-request-dev-tools-curl-2.webp)

Import the request into Postman as follows:

1. Open Postman and click the "*Import*" button.
2. Paste the copied cURL command into the import dialog.
3. Postman will automatically parse and import the request.

![](https://catalins.tech/content/images/2024/06/import-curl-request-postman.webp)

Once imported, Postman configures the request headers and body based on the cURL data. You can immediately send the request by clicking the "Send" button, or modify the request body to customise the data being sent.

![](https://catalins.tech/content/images/2024/06/imported-curl-request-postman.webp)

![](https://catalins.tech/content/images/2024/06/imported-curl-request-body.webp)

While this article shows how to import a cURL command into Postman, you can do it with any tool that accepts cURL commands as input.