diff --git a/fern/api-reference/websockets/subscription-api.mdx b/fern/api-reference/websockets/subscription-api.mdx index 6a4b332d..15ba68fa 100644 --- a/fern/api-reference/websockets/subscription-api.mdx +++ b/fern/api-reference/websockets/subscription-api.mdx @@ -114,9 +114,9 @@ Next, install a command line tool for making WebSocket requests such as [wscat]( The following limits apply for WebSocket connections: -* There is a limit of **20,000 WebSocket connections** per API Key as well as **1,000 parallel WebSocket subscriptions** per WebSocket connection, creating a maximum of **20 million subscriptions per application**. -* The maximum size of a JSON-RPC `batch` request that can be sent over a WebSocket connection is 20 -* Free tier users will be limited to 10 concurrent requests per WebSocket connection. +* There is a limit of **100 WebSocket connections** for the FREE tier and **2,000 WebSocket connections** for all other tiers, with a maximum of 50,000 connections per instance. +* **No limits** on the number of **parallel** WebSocket subscriptions per WebSocket connection. +* The maximum size of a JSON-RPC `batch` request that can be sent over a WebSocket connection is 1000 *** @@ -124,7 +124,7 @@ The following limits apply for WebSocket connections: | Error Code | Error Message | Solution | | ---------- | ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `32600` | `"The maximum batch size that can be sent over a websocket connection is 10. Please decrease the batch size and try again."` | Occurs when user attempts to send high-volume JSON-RPC traffic over Websockets. We recommend this traffic be sent over HTTP instead to optimize server backends. | +| `32600` | `"Sorry, the maximum batch request size is 1000. Please reduce the size of your request and try again."` | Occurs when user attempts to send high-volume JSON-RPC traffic over Websockets. We recommend this traffic be sent over HTTP instead to optimize server backends. | ***