ZuploZuplo
LoginSign Up
  • Documentation
  • API Reference
Introduction
Getting Started
    Develop using the Portal
      1 - Setup Your Gateway2 - Rate Limiting3 - API Key Auth4 - Deploy5 - Dynamic Rate LimitingMCP - Quick start
    Develop Locally
      1 - Setup Your Gateway2 - Rate Limiting3 - API Key Auth
Concepts
Development
    CORSEnvironment VariablesBranch-Based DeploymentsTestingTroubleshootingGitOps vs TerraformCustom Code
    Local Development
    Guides
      Advanced Path MatchingAPI VersioningOpenAPI Server URLsConvert URLs to OpenAPIOpenAPI Extension DataPath Modification ScriptsOpenAPI OverlaysCanary Routing for EmployeesGeolocation Backend RoutingUser-Based Backend RoutingBypass a PolicyTesting GraphQL QueriesHealth ChecksPerformance TestingTroubleshooting Slow ResponsesNon-Standard PortsHandling FormDataS3 Signed URL UploadsCheck IP AddressLazy Load ConfigurationSharing Code Across ProjectsBackstage IntegrationGitHub Action Automation
Policies
Handlers
API Keys
MCP Server
MCP Gateway
AI Gateway
Developer Portal
Monetization
Deploying & Source Control
Observability
Networking & Infrastructure
Account Management
Programming API
Build with AI
Zuplo CLI
Migration Guides
Platform LimitsSecuritySupportTrust & ComplianceChangelog
powered by Zudoku
Guides

Non-Standard Ports

Zuplo supports making requests to non-standard ports when your runtime is configured with a compatibility date of 2024-09-02 or later.

Making a Request to a Non-Supported Port

Making requests to non-standard ports can be done using the built in handlers or fetch API. Simply set the URL to use the port, for example http://example.com:8080.

Code
const response = await fetch("http://example.com:8080");

Older Compatibility Dates

Before 2024-09-02, Zuplo didn't support making requests to non-standard ports. If you make a request to a non-standard port on an older runtime, the port will be ignored.

Edit this page
Last modified on March 23, 2026
Troubleshooting Slow ResponsesHandling FormData
On this page
  • Making a Request to a Non-Supported Port
  • Older Compatibility Dates
TypeScript