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
          • Request basics
          • Parameters and body data
          • Request headers
          • Test data storage
          • Customize request settings
          • Group requests in collections
          • Generate client code
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
  • Configure custom request settings
  • Encode your request URLs
Use PostmanSend requestsCreate requests

Select custom settings for API requests in Postman

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

Upload files for shared requests and cloud runs

Next

Group API requests with Postman Collections

Built with

You can configure a variety of settings for your API requests in Postman. These settings enable you to customize Postman’s behavior when sending a request. For example, you can turn on SSL certificate validation or turn off URL encoding for a request.

Configure custom request settings

To configure custom settings, click the Settings tab of your request. Each setting provides a description of its effect when sending the request.

When you’re done configuring settings, click Send to send the request. Learn more about creating and sending requests in Postman.

Encode your request URLs

Postman parses and encodes your request’s URL to help ensure a successful API call. Postman encodes the characters in the URL and maps them to a representation that your API is expected to accept. The Postman URL processor increases the chances that your request will be handled correctly by many different server types.

The processor encodes characters depending on where they occur in the URL:

URL componentCharacters to encode
Path" < > ` # ? { } SPACE
Query" # & ' < = > SPACE
Userinfo" < > ` # ? { } / : ; = @ [ \ ] ^ SPACE

The processor is turned on by default in Postman, but you can turn off encoding if you’re working with an unusual server implementation. To change this setting in your request, select the Settings tab, then turn off Encode URL automatically.

To selectively encode parts of your URL, highlight the text and right-click, then select EncodeURIComponent.