What is Reqeast?
Reqeast is a native API client for Mac, iPhone, and iPad, similar to Postman or Insomnia but built with SwiftUI instead of Electron. It supports HTTP, WebSocket, SSE, TCP/TLS, and UDP in one app.
How do I join the beta?
Reqeast is available on TestFlight while we wait for App Store review. Join the TestFlight beta to get started.
Which protocols does Reqeast support?
Reqeast supports HTTP, WebSocket, SSE, TCP/TLS, and UDP.
Is Reqeast free to use?
Yes. All features are available at no cost. If you find it useful, you can sponsor development on GitHub.
Does Reqeast sync across devices?
Projects and requests sync across Mac, iPhone, and iPad through iCloud. Credentials are stored using Keychain.
Can I import existing commands?
Yes. Reqeast parses cURL, HTTPie, and wget commands. If the format isn't recognized, Apple Intelligence parses the input on-device as a fallback.
Can Reqeast generate code snippets?
Yes. Reqeast can generate snippets for cURL, JavaScript fetch, Node axios, Python requests, Swift URLSession, Go, Rust reqwest, Java, and C#.
Does Reqeast run on iPhone and iPad?
Yes. Reqeast supports iPhone and iPad with adaptive layouts, and shares data with macOS using iCloud.
Does Reqeast support Apple Shortcuts?
Yes. Reqeast provides five Shortcuts actions, one for each protocol: Send HTTP Request, Send TCP Message, Send UDP Message, Send WebSocket Message, and Listen to SSE Stream. You can trigger them from Shortcuts, Siri, or any automation.
What is the MCP server?
Reqeast includes an MCP (Model Context Protocol) server that gives AI coding tools read-only access to your requests, responses, history, and cookies. It runs locally on macOS, never sends credentials, and works with Claude Code, Cursor, VS Code, and other MCP-compatible tools. Configure it from Settings > MCP Server in the app, which includes a setup guide for each supported tool.
Why does Reqeast use Rust in its networking core?
Rust is used in the networking layer for reliability and consistent performance under heavy IO. The app interface remains native SwiftUI.