For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Postman
PricingEnterprise
Contact SalesSign InSign Up for Free
HomeDocs
HomeDocs
      • Overview
        • Overview
          • Overview
          • Exchange data between systems
          • Create a dashboard in Flows
          • Automate repetitive tasks
          • Run requests in sequence
Postman API Platform

Product

  • Postman Overview
  • Enterprise
  • Spec Hub
  • Flows
  • Agent Mode
  • API Catalog
  • Fern
  • Postman CLI
  • Integrations
  • Workspaces
  • Plans and pricing

API Network

  • App Security
  • Artificial Intelligence
  • Communication
  • Data Analytics
  • Database
  • Developer Productivity
  • DevOps
  • Ecommerce
  • eSignature
  • Financial Services
  • Payments
  • Travel

Resources

  • Postman Docs
  • Academy
  • Community
  • Templates
  • Intergalactic
  • Videos
  • MCP Servers

Legal and Security

  • Legal Terms Hub
  • Terms of Service
  • Postman Product Terms
  • Security
  • Website Terms of Use

Company

  • About
  • Careers and culture
  • Contact us
  • Partner program
  • Customer stories
  • Student programs
  • Press and media
Twitter iconLinkedIn iconGithub iconYouTube iconInstagram iconDiscord icon
Download Postman
Privacy Policy

© 2026 Postman, Inc.

On this page
  • Run multiple requests in sequence
Postman FlowsLearn Flows with tutorialsAdvanced tutorials

Run requests in sequence using Postman Flows

||View as Markdown|
Was this page helpful?
Previous

Automate repetitive tasks using Postman Flows

Next

Watch Flows video tutorials

Built with

When you have several requests with no dependency on each other and you want them sent in a specific order, you can connect multiple HTTP Request blocks in sequence. This tutorial shows you how.

For an example, see the Chaining requests example flow.

Run multiple requests in sequence

To run several requests in a specific order, do the following:

  1. Create a new flow.

  2. Select Send a request to add the first HTTP Request block.

    Select Send a request

  3. Drag and drop the HTTP Request block’s Success output port to the canvas next to it and click HTTP Request.

    Add a block
  4. Repeat the previous step with the second HTTP Request block so you have three connected blocks.

    Three HTTP Request blocks

  5. In each HTTP Request block, click Find or create new request and select a request from the dropdown list.

  6. Click Run to start the flow. The requests run in the order you specified.

If any request returns a response code other than 200 OK, the flow stops and requests that follow won’t run.

The requests in this tutorial run in sequence but don’t interact with each other. You can also use data from one request in another request.