Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
GET /v1 HTTP/1.1 Host: realtime.blobhub.io Authorization: Bearer <your_token_here>
GET /v1 HTTP/1.1 Host: realtime.blobhub.io X-API-Key: <your_api_key_here>
Sec-WebSocket-Protocol
GET /v1 HTTP/1.1 Host: realtime.blobhub.io Sec-WebSocket-Protocol: authorization.bearer.base64, base64(<your_token_here>)
GET /v1 HTTP/1.1 Host: realtime.blobhub.io Sec-WebSocket-Protocol: x-api-key.base64, base64(<your_api_key_here>)
const accessToken = "..."; const base64EncodedToken = btoa(accessToken); var ws = new WebSocket( "wss://realtime.blobhub.io/v1", [ "authorization.bearer.base64", base64EncodedToken ] );