From fcf1d30e57f1bd7b23589bb8c19e8d41c27bcf4d Mon Sep 17 00:00:00 2001 From: vedantsahai18 Date: Sun, 5 Jan 2025 19:14:05 -0500 Subject: [PATCH] docs(coobooks): add new cookboks --- cookbooks/08_customer_support_chatbot.ipynb | 6324 +++++++++++++++++++ cookbooks/09_companion_agent.ipynb | 1523 +++++ cookbooks/README.md | 6 +- memory-store/README.md | 4 +- 4 files changed, 7852 insertions(+), 5 deletions(-) create mode 100644 cookbooks/08_customer_support_chatbot.ipynb create mode 100644 cookbooks/09_companion_agent.ipynb diff --git a/cookbooks/08_customer_support_chatbot.ipynb b/cookbooks/08_customer_support_chatbot.ipynb new file mode 100644 index 000000000..9b9a0a69c --- /dev/null +++ b/cookbooks/08_customer_support_chatbot.ipynb @@ -0,0 +1,6324 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "
\n", + " \"julep\"\n", + "
\n", + "\n", + "

\n", + "
\n", + " Explore Docs (wip)\n", + " ·\n", + " Discord\n", + " ·\n", + " 𝕏\n", + " ·\n", + " LinkedIn\n", + "

\n", + "\n", + "

\n", + " \"NPM\n", + "  \n", + " \"PyPI\n", + "  \n", + " \"Docker\n", + "  \n", + " \"GitHub\n", + "

\n", + "\n", + "# Task Definition: Customer Support Chatbot\n", + "\n", + "### Overview\n", + "\n", + "This task implements an automated system to index and process QuickBlox's website. The system crawls the QuickBlox website, extracts relevant information, and creates a searchable knowledge base that can be queried programmatically. Finally, it creates a chatbot that can answer questions about the website using the RAG knowledge base.\n", + "\n", + "### Task Tools:\n", + "\n", + "- **spider_crawler**: Web crawler component for systematically traversing the QuickBlox website\n", + "- **create_agent_doc**: Document processor for converting web content into indexed, searchable documents\n", + "\n", + "### Task Input:\n", + "\n", + "Required parameter:\n", + "- **url**: Entry point URL for the crawler (e.g., \"https://quickblox.com/\")\n", + "\n", + "### Task Output:\n", + "\n", + "- Indexed knowledge base containing processed QuickBlox documentation\n", + "- Query interface for programmatic access to the documentation\n", + "\n", + "### Task Flow\n", + "\n", + "1. Create an agent with the spider_crawler tool\n", + "2. Get the Spider tool's API key \n", + "3. Crawl website using spider_crawler tool:\n", + " - Specify URL and page limit\n", + " - Enable smart mode, proxy, readability\n", + " - Filter out images and SVGs\n", + " - Use sentence-based chunking (15 sentences per chunk)\n", + "4. For each crawled page:\n", + " - Extract content\n", + " - Break into chunks\n", + " - Generate succinct context for each chunk\n", + " - Combine chunk with context\n", + "5. Create agent documents:\n", + " - Store processed chunks as documents\n", + " - Add metadata like source\n", + " - Index for search/retrieval\n", + "6. Finally chat with the agent in the session and retrieve the documents that are relevant to the user's query\n", + "\n", + "```plaintext\n", + "+----------------+ +----------------+ +----------------+ +----------------+\n", + "| Spider | | Extract | | Process | | Create |\n", + "| Crawler | --> | Content | --> | Content | --> | Agent Docs |\n", + "| (URL Entry) | | (Web Pages) | | (Chunks) | | (Index) |\n", + "+----------------+ +----------------+ +----------------+ +----------------+\n", + " |\n", + "+----------------+ +----------------+ +----------------+ +----------------+\n", + "| Query | | Search | | Retrieve | | Chat with |\n", + "| Interface | <-- | Index | <-- | Documents | <-- | Agent |\n", + "| (User Input) | | (Knowledge) | | (Context) | | (Session) |\n", + "+----------------+ +----------------+ +----------------+ +----------------+\n", + "```" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Implementation\n", + "\n", + "To recreate the notebook and see the code implementation for this task, you can access the Google Colab notebook using the link below:\n", + "\n", + "\n", + " \"Open\n", + "\n", + "\n", + "### Additional Information\n", + "\n", + "For more details about the task or if you have any questions, please don't hesitate to contact the author:\n", + "\n", + "**Author:** Julep AI \n", + "**Contact:** [hey@julep.ai](mailto:hey@julep.ai) or Discord" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "# Global UUID is generated for agent and task\n", + "from dotenv import load_dotenv\n", + "from julep import Client\n", + "import os\n", + "import uuid\n", + "\n", + "load_dotenv()\n", + "\n", + "# NOTE: these UUIDs are used in order not to use the `create_or_update` methods instead of\n", + "# the `create` methods for the sake of not creating new resources every time a cell is run.\n", + "AGENT_UUID =\"123e4567-e89b-12d3-a456-426614174000\"\n", + "TASK_UUID = \"123e4567-e89b-12d3-a456-426614174001\"\n", + "SESSION_UUID = \"123e4567-e89b-12d3-a456-426614174002\"\n", + "JULEP_API_KEY = os.getenv(\"JULEP_API_KEY\")\n", + "SPIDER_API_KEY = os.getenv(\"SPIDER_API_KEY\")\n", + "\n", + "\n", + "# Create a Julep client\n", + "client = Client(api_key=JULEP_API_KEY, environment=\"dev\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Creating an \"agent\"\n", + "\n", + "Agent is the object to which LLM settings, like model, temperature along with tools are scoped to.\n", + "\n", + "To learn more about the agent, please refer to the [documentation](https://github.com/julep-ai/julep/blob/dev/docs/julep-concepts.md#agent)." + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "# Create agent\n", + "agent = client.agents.create_or_update(\n", + " agent_id=AGENT_UUID,\n", + " name=\"Quickblox Navigator\",\n", + " about=\"An AI assistant that can navigate the Quickblox website and assist you in finding the information you need to make the most of our services.\",\n", + " model=\"gpt-4o\",\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Number of documents in the agent's document store: 0\n" + ] + } + ], + "source": [ + "num_docs = len(client.agents.docs.list(agent_id=AGENT_UUID, limit=1000).items)\n", + "print(f\"Number of documents in the agent's document store: {num_docs}\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Defining a Task\n", + "\n", + "Tasks in Julep are Github-Actions-style workflows that define long-running, multi-step actions.\n", + "\n", + "You can use them to conduct complex actions by defining them step-by-step.\n", + "\n", + "To learn more about tasks, please refer to the `Tasks` section in [Julep Concepts](https://github.com/julep-ai/julep/blob/dev/docs/julep-concepts.md#tasks)." + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [], + "source": [ + "import yaml\n", + "\n", + "task_def = yaml.safe_load(f\"\"\"\n", + "name: Crawl a website and create a agent document\n", + "\n", + "# Define the tools that the agent will use in this workflow\n", + "tools:\n", + "- name: spider_crawler\n", + " type: integration\n", + " integration:\n", + " provider: spider\n", + " method: crawl\n", + " setup:\n", + " spider_api_key: \"{SPIDER_API_KEY}\"\n", + "\n", + "- name : create_agent_doc\n", + " description: Create an agent doc\n", + " type: system\n", + " system:\n", + " resource: agent\n", + " subresource: doc\n", + " operation: create\n", + "\n", + "index_page:\n", + "\n", + "- evaluate:\n", + " documents: _['content']\n", + "\n", + "- over: \"[(_0.content, chunk) for chunk in _['documents']]\"\n", + " parallelism: 3\n", + " map:\n", + " prompt: \n", + " - role: user\n", + " content: >-\n", + " \n", + " {{{{_[0]}}}}\n", + " \n", + "\n", + " Here is the chunk we want to situate within the whole document\n", + " \n", + " {{{{_[1]}}}}\n", + " \n", + "\n", + " Please give a short succinct context to situate this chunk within the overall document for the purposes of improving search retrieval of the chunk. \n", + " Answer only with the succinct context and nothing else. \n", + " \n", + " unwrap: true\n", + " settings:\n", + " max_tokens: 16000\n", + "\n", + "- evaluate:\n", + " final_chunks: |\n", + " [\n", + " NEWLINE.join([chunk, succint]) for chunk, succint in zip(_1.documents, _)\n", + " ]\n", + "\n", + "# Create a new document and add it to the agent docs store\n", + "- over: _['final_chunks']\n", + " parallelism: 3\n", + " map:\n", + " tool: create_agent_doc\n", + " arguments:\n", + " agent_id: \"'{agent.id}'\"\n", + " data:\n", + " metadata:\n", + " source: \"'spider_crawler'\"\n", + "\n", + " title: \"'Quickblox Website'\"\n", + " content: _\n", + "\n", + "# Define the steps of the workflow\n", + "main:\n", + "\n", + "# Define a tool call step that calls the spider_crawler tool with the url input\n", + "- tool: spider_crawler\n", + " arguments:\n", + " url: \"_['url']\" # You can also use 'inputs[0]['url']'\n", + " params:\n", + " request: \"'smart_mode'\"\n", + " limit: _['pages_limit'] # <--- This is the number of pages to crawl (taken from the input of the task)\n", + " return_format: \"'markdown'\"\n", + " proxy_enabled: \"True\"\n", + " filter_output_images: \"True\" # <--- This is to execlude images from the output\n", + " filter_output_svg: \"True\" # <--- This is to execlude svg from the output\n", + " # filter_output_main_only: \"True\"\n", + " readability: \"True\" # <--- This is to make the output more readable\n", + " sitemap: \"True\" # <--- This is to crawl the sitemap\n", + " chunking_alg: # <--- Using spider's bysentence algorithm to chunk the output\n", + " type: \"'bysentence'\"\n", + " value: \"15\" # <--- This is the number of sentences per chunk\n", + "\n", + "# Evaluate step to document chunks\n", + "- foreach:\n", + " in: _['result']\n", + " do:\n", + " workflow: index_page\n", + " arguments:\n", + " content: _.content\n", + "\"\"\")\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Notes:\n", + "- The reason for using the quadruple curly braces `{{{{}}}}` for the jinja template is to avoid conflicts with the curly braces when using the `f` formatted strings in python. [More information here](https://stackoverflow.com/questions/64493332/jinja-templating-in-airflow-along-with-formatted-text)\n", + "- The `unwrap: True` in the prompt step is used to unwrap the output of the prompt step (to unwrap the `choices[0].message.content` from the output of the model).\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Creating a task" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "# Create the task\n", + "task = client.tasks.create_or_update(\n", + " task_id=TASK_UUID,\n", + " agent_id=AGENT_UUID,\n", + " **task_def\n", + ")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Creating an Execution (Starting from the Homepage)\n", + "\n", + "An execution is a single run of a task. It is a way to run a task with a specific set of inputs." + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [], + "source": [ + "execution_homepage = client.executions.create(\n", + " task_id=TASK_UUID,\n", + " input={\n", + " \"url\": \"https://quickblox.com/\",\n", + " \"pages_limit\": 5,\n", + " }\n", + ")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Checking execution details and output\n", + "\n", + "There are multiple ways to get the execution details and the output:\n", + "\n", + "1. **Get Execution Details**: This method retrieves the details of the execution, including the output of the last transition that took place.\n", + "\n", + "2. **List Transitions**: This method lists all the task steps that have been executed up to this point in time, so the output of a successful execution will be the output of the last transition (first in the transition list as it is in reverse chronological order), which should have a type of `finish`.\n", + "\n", + "\n", + "Note: You need to wait for a few seconds for the execution to complete before you can get the final output, so feel free to run the following cells multiple times until you get the final output.\n" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Execution status: succeeded\n" + ] + } + ], + "source": [ + "status = client.executions.get(execution_id=execution_homepage.id).status\n", + "\n", + "print(\"Execution status: \", status)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Index: 0 Type: finish\n", + "output: [\n", + " [\n", + " {\n", + " \"created_at\": \"2024-12-16T20:09:56.144855Z\",\n", + " \"id\": \"df682ff9-595c-403e-853e-a292a30d8c1b\",\n", + " \"jobs\": [\n", + " \"53a783b5-e5fd-4412-a63c-8d4d9327587e\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:09:56.121164Z\",\n", + " \"id\": \"caf19cfa-3969-4ba3-bc42-4190c8ef5a09\",\n", + " \"jobs\": [\n", + " \"83dcbbee-cf29-47ad-9991-412927946f7f\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:09:56.192716Z\",\n", + " \"id\": \"ecf13b56-070c-4deb-8ca2-333891d14d7f\",\n", + " \"jobs\": [\n", + " \"8ffda58e-b473-4b9f-b59b-aafddba12b30\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:09:59.306138Z\",\n", + " \"id\": \"4f86452c-8c52-4f5e-814d-4c79d43ce093\",\n", + " \"jobs\": [\n", + " \"4e9c6028-c35c-4529-b420-5898f0bee811\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:09:59.288487Z\",\n", + " \"id\": \"f535903f-f4f9-4195-86e6-e121d8d2df4f\",\n", + " \"jobs\": [\n", + " \"44b556d7-07ca-41f5-b0b6-492a473da0a7\"\n", + " ]\n", + " }\n", + " ],\n", + " [\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:19.799505Z\",\n", + " \"id\": \"73a41ed3-cb7d-4bc1-a129-bb1e28e9ab49\",\n", + " \"jobs\": [\n", + " \"de00a0ee-d4b9-410d-b5d9-442a3a0bc6e5\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:19.767891Z\",\n", + " \"id\": \"26415c9a-91b5-4120-82f8-bdce4a83306e\",\n", + " \"jobs\": [\n", + " \"c9340723-e417-4642-9711-549c6ce76654\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:19.750657Z\",\n", + " \"id\": \"2cabf7cd-4d82-414a-8bee-b5290e9392d7\",\n", + " \"jobs\": [\n", + " \"ad6fb820-bca9-4976-9d78-163589bf2590\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:21.533152Z\",\n", + " \"id\": \"a4f2733a-7e8c-43b5-a1f7-bb3ea41d9af8\",\n", + " \"jobs\": [\n", + " \"28e0797d-7fa9-46e3-b29e-9b1712490e32\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:21.592902Z\",\n", + " \"id\": \"ff665acb-7803-4cc4-a097-29dfefd58960\",\n", + " \"jobs\": [\n", + " \"5a53a8bd-f36a-4b1f-8937-0771f90ebb9d\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:21.602391Z\",\n", + " \"id\": \"e210e72d-8863-4958-9a5a-251f4d178bcc\",\n", + " \"jobs\": [\n", + " \"40f5b5b1-b44b-42ef-8fda-30853fa74da1\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:23.191827Z\",\n", + " \"id\": \"6d790638-313d-4611-a212-6d16e419f8b5\",\n", + " \"jobs\": [\n", + " \"45f94f9b-6c75-422d-9579-407cac7c1a41\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:23.183561Z\",\n", + " \"id\": \"45aa7303-1680-4ca2-99be-60238547fbcb\",\n", + " \"jobs\": [\n", + " \"7dd5972f-eb31-4a18-aa75-3334e75490d2\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:23.127000Z\",\n", + " \"id\": \"aed9157b-c70c-440f-a7aa-e819ef6f3735\",\n", + " \"jobs\": [\n", + " \"74943429-08ce-4701-bb1b-62311a8605d1\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:24.925122Z\",\n", + " \"id\": \"09585594-7010-4ee7-babd-fe6c454cad94\",\n", + " \"jobs\": [\n", + " \"9ca0f2ee-c35f-45c5-a822-87695958f17d\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:24.900010Z\",\n", + " \"id\": \"1b0170c6-a29c-4831-b47b-c46eac9409a5\",\n", + " \"jobs\": [\n", + " \"c67d05c8-813b-454d-9295-2aef1eb87fa6\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:24.911464Z\",\n", + " \"id\": \"869b2a99-0268-4d0f-a715-ca850ecae0fd\",\n", + " \"jobs\": [\n", + " \"04657969-f8fe-4bb4-9873-884a8fb630bf\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:26.831776Z\",\n", + " \"id\": \"55e0f466-b723-4af1-8210-777d320a9fe6\",\n", + " \"jobs\": [\n", + " \"5637e5d2-91c4-46b9-99ec-fe1e6a721b49\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:26.809754Z\",\n", + " \"id\": \"9b05a9aa-f293-45e4-b0e4-95cdcbd7b3ce\",\n", + " \"jobs\": [\n", + " \"b1ceaa71-2e3a-4c36-87ae-7e542c98525b\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:26.841526Z\",\n", + " \"id\": \"1595cd64-7e2c-40c6-a43c-3a44147bde30\",\n", + " \"jobs\": [\n", + " \"7baa45b8-d572-4e2c-af51-32235c3fe78e\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:28.616707Z\",\n", + " \"id\": \"725e1874-8f9f-48f3-8712-cfd8d5203db3\",\n", + " \"jobs\": [\n", + " \"66ad4ddd-27c5-4fd4-b764-412cb673ad2f\"\n", + " ]\n", + " }\n", + " ],\n", + " [\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:38.769891Z\",\n", + " \"id\": \"6002fbc6-3d37-4f5b-b172-0464ecafbed6\",\n", + " \"jobs\": [\n", + " \"41bb0089-0a67-456e-9aba-36b2d78f5cd8\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:38.465787Z\",\n", + " \"id\": \"b394f62a-13f5-4c2a-bb15-d9022da7b597\",\n", + " \"jobs\": [\n", + " \"ecef4743-a406-4576-b2dc-495129034923\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:38.504964Z\",\n", + " \"id\": \"96201f76-4c5e-4103-aa5b-7f395d4ca8a1\",\n", + " \"jobs\": [\n", + " \"a2f594a4-f77c-4865-952c-94f1e987925a\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:40.586703Z\",\n", + " \"id\": \"e20d60e0-432a-413e-8f84-b0fd01cf9dee\",\n", + " \"jobs\": [\n", + " \"84f367a4-d8a4-481f-8d50-a595b1d6a030\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:40.571820Z\",\n", + " \"id\": \"cd417282-9b17-4dc0-884a-b5334d71dc43\",\n", + " \"jobs\": [\n", + " \"d46a776e-35be-4157-87fa-f221b9a66276\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:40.346506Z\",\n", + " \"id\": \"7038c38c-2216-4065-8ba3-710d4b2f6163\",\n", + " \"jobs\": [\n", + " \"b542edc5-ca7d-45ac-b01e-87fbcf2ac031\"\n", + " ]\n", + " }\n", + " ],\n", + " [\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:48.382252Z\",\n", + " \"id\": \"052ee230-7431-4405-8f2c-bcc429c72121\",\n", + " \"jobs\": [\n", + " \"c4867237-703b-490b-b929-c2105c15f4aa\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:48.426000Z\",\n", + " \"id\": \"784f5b53-5d4c-49ff-b558-3c8d5d4c18b3\",\n", + " \"jobs\": [\n", + " \"bacf77d3-a42c-4df1-a42f-201ff114af0e\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:48.367449Z\",\n", + " \"id\": \"61af7c00-a48a-4c28-8446-857799d26899\",\n", + " \"jobs\": [\n", + " \"2cdfa970-e8f7-49e1-99d1-2d3feb192846\"\n", + " ]\n", + " }\n", + " ],\n", + " [\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:57.891338Z\",\n", + " \"id\": \"b9440866-a39d-4190-8389-025cf8396f28\",\n", + " \"jobs\": [\n", + " \"ad037e50-da50-471c-86c6-c76dd5380a61\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:57.877442Z\",\n", + " \"id\": \"15c9e674-e274-4d8e-942b-8caea97aa05a\",\n", + " \"jobs\": [\n", + " \"11b1d288-b638-48d7-8575-0d3e5b2f65f4\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:57.854394Z\",\n", + " \"id\": \"99964697-7811-4b2b-953c-86517a7df122\",\n", + " \"jobs\": [\n", + " \"0525862e-1555-4b01-8c48-c827488c36a4\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:59.386636Z\",\n", + " \"id\": \"95057153-10a5-49a8-aad8-7a87b6505e20\",\n", + " \"jobs\": [\n", + " \"1a1865dc-de24-4817-bd5d-721078b48ebb\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:59.372539Z\",\n", + " \"id\": \"7dd43c2d-822f-4c76-96fe-1100cdbf20dd\",\n", + " \"jobs\": [\n", + " \"3a1b11df-73dc-4b6e-b79a-4dd90515020c\"\n", + " ]\n", + " }\n", + " ]\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 1 Type: finish_branch\n", + "output: [\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:57.891338Z\",\n", + " \"id\": \"b9440866-a39d-4190-8389-025cf8396f28\",\n", + " \"jobs\": [\n", + " \"ad037e50-da50-471c-86c6-c76dd5380a61\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:57.877442Z\",\n", + " \"id\": \"15c9e674-e274-4d8e-942b-8caea97aa05a\",\n", + " \"jobs\": [\n", + " \"11b1d288-b638-48d7-8575-0d3e5b2f65f4\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:57.854394Z\",\n", + " \"id\": \"99964697-7811-4b2b-953c-86517a7df122\",\n", + " \"jobs\": [\n", + " \"0525862e-1555-4b01-8c48-c827488c36a4\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:59.386636Z\",\n", + " \"id\": \"95057153-10a5-49a8-aad8-7a87b6505e20\",\n", + " \"jobs\": [\n", + " \"1a1865dc-de24-4817-bd5d-721078b48ebb\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:59.372539Z\",\n", + " \"id\": \"7dd43c2d-822f-4c76-96fe-1100cdbf20dd\",\n", + " \"jobs\": [\n", + " \"3a1b11df-73dc-4b6e-b79a-4dd90515020c\"\n", + " ]\n", + " }\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 2 Type: finish_branch\n", + "output: [\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:57.891338Z\",\n", + " \"id\": \"b9440866-a39d-4190-8389-025cf8396f28\",\n", + " \"jobs\": [\n", + " \"ad037e50-da50-471c-86c6-c76dd5380a61\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:57.877442Z\",\n", + " \"id\": \"15c9e674-e274-4d8e-942b-8caea97aa05a\",\n", + " \"jobs\": [\n", + " \"11b1d288-b638-48d7-8575-0d3e5b2f65f4\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:57.854394Z\",\n", + " \"id\": \"99964697-7811-4b2b-953c-86517a7df122\",\n", + " \"jobs\": [\n", + " \"0525862e-1555-4b01-8c48-c827488c36a4\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:59.386636Z\",\n", + " \"id\": \"95057153-10a5-49a8-aad8-7a87b6505e20\",\n", + " \"jobs\": [\n", + " \"1a1865dc-de24-4817-bd5d-721078b48ebb\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:59.372539Z\",\n", + " \"id\": \"7dd43c2d-822f-4c76-96fe-1100cdbf20dd\",\n", + " \"jobs\": [\n", + " \"3a1b11df-73dc-4b6e-b79a-4dd90515020c\"\n", + " ]\n", + " }\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 3 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:59.372539Z\",\n", + " \"id\": \"7dd43c2d-822f-4c76-96fe-1100cdbf20dd\",\n", + " \"jobs\": [\n", + " \"3a1b11df-73dc-4b6e-b79a-4dd90515020c\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 4 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:59.386636Z\",\n", + " \"id\": \"95057153-10a5-49a8-aad8-7a87b6505e20\",\n", + " \"jobs\": [\n", + " \"1a1865dc-de24-4817-bd5d-721078b48ebb\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 5 Type: init_branch\n", + "output: \"#### System Integration\\nBackend API & 3rd\\u2011party integrations can be developed for your use case to enable seamless interoperability ## Are you in need of a white-label video consultation solution withinstant messaging ## Ready to get started Book a free call to request a demo or to discuss how Q\\u2011Consultation can serve your business needs ## Frequently Asked Questions\\n### What is white label video conferencing White label video conferencing refers to a software solution that is developed by one company but is rebranded and offered by another company as if it were their own product While QuickBlox has built the underlying technology and infrastructure of Q-Consultation, we invite our customers to offer our video conferencing services to their own customers under their own brand name and logo ### What are the benefits of using a white label video conferencing solution with a Chat API A Chat API allows users to engage in[real-time text-based conversations](https://quickblox.com/blog/real-time-communication-and-the-rise-of-neobanks/)alongside video consultations This can be valuable for sending text messages, sharing links or documents, asking quick questions, or providing additional context during the consultation ### Do I need technical expertise to set up and manage a white label video conferencing platform QuickBlox\\u2019s white label video consultation solution is designed to accommodate different levels of technical expertise by offering a range of options, from open source code that allows for extensive customization to a more turnkey and fully managed system ### Is white label video conferencing secure Q-Consultation is built on QuickBlox\\u2019s robust communication platform and offers a secure white label video conferencing solution All customer data and communication is encrypted and secure, and the solution can be deployed in your own cloud infrastructure for added control\\nThe chunk is part of the section detailing the features and benefits of QuickBlox's white-label video conferencing solution, Q-Consultation. It highlights system integration capabilities, the ease of setup and management for varying technical expertise levels, security measures, and the advantages of incorporating a Chat API. Additionally, it addresses common questions about white-label solutions, emphasizing customization and rebranding options for businesses.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 6 Type: init_branch\n", + "output: \"### Is white label video conferencing suitable for remote work White label video conferencing is well-suited for remote work Q-Consultation enables remote teams to conduct seamless virtual meetings, share screens and documents, and maintain secure communication, fostering collaboration regardless of physical location ### Can I customize the white label video conferencing solution to match my brand Q-Consultation offers extensive customization options to align the platform with your brand and your specific needs You can alter the name and logo, the UI colors and fonts, and customize the text throughout, ensuring that the platform carries your brand identity QuickBlox allows you to use a custom domain, reinforcing your brand\\u2019s presence by incorporating it into the platform\\u2019s web address #### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\\nThe chunk discusses the suitability of QuickBlox's white-label video conferencing solution, Q-Consultation, for remote work, emphasizing its customization options to align with a brand's identity. It highlights the solution's capabilities for seamless virtual meetings, screen sharing, secure communication, and mentions various products, solutions, enterprise features, and resources offered by QuickBlox, including AI integrations, SDKs, APIs, and support documentation.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 7 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:57.891338Z\",\n", + " \"id\": \"b9440866-a39d-4190-8389-025cf8396f28\",\n", + " \"jobs\": [\n", + " \"ad037e50-da50-471c-86c6-c76dd5380a61\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 8 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:57.854394Z\",\n", + " \"id\": \"99964697-7811-4b2b-953c-86517a7df122\",\n", + " \"jobs\": [\n", + " \"0525862e-1555-4b01-8c48-c827488c36a4\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 9 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:57.877442Z\",\n", + " \"id\": \"15c9e674-e274-4d8e-942b-8caea97aa05a\",\n", + " \"jobs\": [\n", + " \"11b1d288-b638-48d7-8575-0d3e5b2f65f4\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 10 Type: init_branch\n", + "output: \"### Ross Sommers,MD Founder\\nI integrated Q-Consultation into a Hospital\\u2019s EHR system to provide real-time video communication for doctors working with patients in acute care We were able to deploy the software in our cloud and deliver new functionality to create a better user experience ### Manish Verma,Former Development Lead\\n## What sets our AI-enhanced white label video platform apart Q-Consultation takes your business consultations to the next level by integrating Open AI models including ChatGPT, the powerful AI assistant Unlock a range of advanced features that revolutionize the way you connect with your clients #### Contextual assistance\\nAI provides real-time contextual assistance during online video consultations It can help users find relevant information, answer frequently asked questions, or offer suggestions based on the ongoing conversation #### Local Knowledge Expert\\nUpload company documents and URLs into the[SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)and create an in-app knowledge bot that knows everything about your specific your case #### Call summary\\nSaving time & resources, AI can create an automatic summary from a video recording, highlighting a list of action points and serving as a valuable virtual assistant [Request a Demo](#contact-us)\\n## Why do businesses choose our online video platform #### Ready to Go Developing applications from scratch is costly & time consuming License our ready application now #### Embeddable\\nCan be integrated into your existing software platform, embedded into your website or app, and hosted in your preferred domain #### Compliant\\nCompatible by design with most compliance regulations including HIPAA, PIPEDA, and GDPR\\nThis chunk is part of a section highlighting the advantages of QuickBlox's AI-enhanced white label video platform, Q-Consultation. It features testimonials from users like Ross Sommers and Manish Verma, describing successful integrations and deployments. The section emphasizes the platform's integration with AI models like ChatGPT for enhanced features such as contextual assistance and call summaries. It also outlines the platform's benefits, including easy integration, compliance with regulations, and readiness for use without needing to develop from scratch.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 11 Type: init_branch\n", + "output: \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# White Label Video Consultation Solution for Your Business\\nYour virtual room application with private messaging, integrated with OpenAI Q-Consultation is an AI enhanced video calling solution that provides a secure means to hold private meetings via video and chat With file sharing, scheduling, and a host of user management features [Contact us](#contact-us)\\n## How does our customizable video software adapt to different use cases * #### Healthcare and HealthTech\\nManage patient appointments remotely, exchange secure messages, share photos & videos, and provide HIPAA compliant video visits [Learn more](https://quickblox.com/products/q-consultation/telehealth-app/)\\n* #### HR & Recruitment\\nInterview large numbers of candidates with queue management tools and private video consultation and hire people remotely [Learn more](https://quickblox.com/products/q-consultation/recruitment-app/)\\n* #### Banking & Finance\\nConsult with clients on a secure video consultation platform hosted within your own cloud infrastructure to ensure the highest level of data security [Learn more](https://quickblox.com/products/q-consultation/finance-app/)\\n* #### Customer Support\\nOffer customers a personal touch by providing technical support and customer care via private online consultation [Learn more](https://quickblox.com/products/q-consultation/customer-support-app/)\\n* #### Operator Driven Chat\\nEnable operators to seamlessly connect with multiple online participants in private chat rooms [Learn more](https://quickblox.com/products/q-consultation/social-app/)\\n* #### E-Commerce\\nEffortlessly guide customers through a purchase with in\\u2011person sales and product demonstrations via remote video consultation * #### Education & Coaching\\nUse a fully\\u2011featured virtual appointment room to consult with students any time you want ## Need white label video software for your business [Tell us about your use case](#contact-us)\\n## What our Customers Say\\n1 2 Using Q-Consultation we were able to set up a secure communication command center to monitor pediatric patients, in weeks not months, This software allows us to provide HIPAA compliant communication between doctors and patients regarding the health of their child\\nThe chunk provides a detailed overview of QuickBlox's product offerings, specifically focusing on communication tools, AI features, and white-label solutions. It highlights various SDKs, APIs, and chat UI kits available for different platforms, as well as AI-enhanced features like SmartChat Assistant. Additionally, it outlines white-label solutions such as Q-Consultation and Q-Municate, designed for secure video calling and messaging. The chunk also touches on industry-specific solutions, enterprise features, developer resources, and support options, making it a comprehensive summary of QuickBlox's capabilities in enhancing app communication features.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 12 Type: init_branch\n", + "output: \"#### Scalable\\nBuilt on the QuickBlox platform, our solution is fully scalable to adapt to your changing business needs #### Customizable\\nCustomize the app to suit your company brand and specific use case to create the user experience you want #### Secure\\nCustomer data and communication is encrypted and secure Our solution can be deployed in your own cloud infrastructure for added control #### Cross Platform\\nA web application that is adaptable to mobile web browsers so that it can work on iOS and Android #### AI Integrated\\nStay ahead of the competition with cutting-edge technology AI enhanced video consultation demonstrates your commitment to innovation #### Flexible Pricing & Support\\nWe offer several pricing models based on usage and business needs Q\\u2011Consultation is offered as a managed service and is bundled with QuickBlox support and services ## Looking for a free white label video solution We offer Q-Consultation Lite, open-source code that is freely available to implement and customize today at no cost [Try Q-Consultation Lite](https://quickblox.com/products/q-consultation/open-source/)\\n## Private Video Consultation for Multiple Use Cases\\n[\\n### Healthcare and HealthTech\\n](https://quickblox.com/products/q-consultation/telehealth-app/)[\\n### Customer Support\\n](https://quickblox.com/products/q-consultation/customer-support-app/)[\\n### HR & Recruitment\\n](https://quickblox.com/products/q-consultation/recruitment-app/)[\\n### Banking & Finance\\n](https://quickblox.com/products/q-consultation/finance-app/)[\\n### Operator Driven Chat\\n](https://quickblox.com/products/q-consultation/social-app/)\\n## Create a virtual meeting room experience that works on any mobile device and the web ### Communication features\\n* Real-time Chat & Messaging\\n* Video & audio calling\\n* File sharing\\n* Call recording\\n* Camera Input selection\\n* Customizable data capture forms\\n* Private chat rooms\\n### User management features\\n* User authentication\\n* Real-time customer queue\\n* Virtual waiting & meeting rooms\\n* Customer and provider profiles\\n* Invitation sharing by link & text\\n* Capture user data, add, share, send notes, and share files\\n* Message and call history\\n* Appointment scheduler\\n[Ask About our Chat-Only Version](#contact-us)\\n## Interested in an enterprise-ready white-label video consultation solution Supercharge your client consultations with these additional services for Enterprise\\n#### Professional Services\\nCustom functionality modifications are available by the Quickblox professional services team #### Service Management & DevOps\\nHybrid, on\\u2011premise and internal deployment can also be managed by the QuickBlox team, if needed\\nThis chunk focuses on the scalability, customization, security, cross-platform compatibility, AI integration, and flexible pricing of QuickBlox's Q-Consultation, a white-label video consultation solution. It highlights features like real-time chat, video calling, user management, and professional services, emphasizing its adaptability for various industries such as healthcare, customer support, HR, finance, and e-commerce. The segment also introduces Q-Consultation Lite, an open-source version for free implementation.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 13 Type: step\n", + "output: {\n", + " \"final_chunks\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# White Label Video Consultation Solution for Your Business\\nYour virtual room application with private messaging, integrated with OpenAI Q-Consultation is an AI enhanced video calling solution that provides a secure means to hold private meetings via video and chat With file sharing, scheduling, and a host of user management features [Contact us](#contact-us)\\n## How does our customizable video software adapt to different use cases * #### Healthcare and HealthTech\\nManage patient appointments remotely, exchange secure messages, share photos & videos, and provide HIPAA compliant video visits [Learn more](https://quickblox.com/products/q-consultation/telehealth-app/)\\n* #### HR & Recruitment\\nInterview large numbers of candidates with queue management tools and private video consultation and hire people remotely [Learn more](https://quickblox.com/products/q-consultation/recruitment-app/)\\n* #### Banking & Finance\\nConsult with clients on a secure video consultation platform hosted within your own cloud infrastructure to ensure the highest level of data security [Learn more](https://quickblox.com/products/q-consultation/finance-app/)\\n* #### Customer Support\\nOffer customers a personal touch by providing technical support and customer care via private online consultation [Learn more](https://quickblox.com/products/q-consultation/customer-support-app/)\\n* #### Operator Driven Chat\\nEnable operators to seamlessly connect with multiple online participants in private chat rooms [Learn more](https://quickblox.com/products/q-consultation/social-app/)\\n* #### E-Commerce\\nEffortlessly guide customers through a purchase with in\\u2011person sales and product demonstrations via remote video consultation * #### Education & Coaching\\nUse a fully\\u2011featured virtual appointment room to consult with students any time you want ## Need white label video software for your business [Tell us about your use case](#contact-us)\\n## What our Customers Say\\n1 2 Using Q-Consultation we were able to set up a secure communication command center to monitor pediatric patients, in weeks not months, This software allows us to provide HIPAA compliant communication between doctors and patients regarding the health of their child\\nThe chunk provides a detailed overview of QuickBlox's product offerings, specifically focusing on communication tools, AI features, and white-label solutions. It highlights various SDKs, APIs, and chat UI kits available for different platforms, as well as AI-enhanced features like SmartChat Assistant. Additionally, it outlines white-label solutions such as Q-Consultation and Q-Municate, designed for secure video calling and messaging. The chunk also touches on industry-specific solutions, enterprise features, developer resources, and support options, making it a comprehensive summary of QuickBlox's capabilities in enhancing app communication features.\",\n", + " \"### Ross Sommers,MD Founder\\nI integrated Q-Consultation into a Hospital\\u2019s EHR system to provide real-time video communication for doctors working with patients in acute care We were able to deploy the software in our cloud and deliver new functionality to create a better user experience ### Manish Verma,Former Development Lead\\n## What sets our AI-enhanced white label video platform apart Q-Consultation takes your business consultations to the next level by integrating Open AI models including ChatGPT, the powerful AI assistant Unlock a range of advanced features that revolutionize the way you connect with your clients #### Contextual assistance\\nAI provides real-time contextual assistance during online video consultations It can help users find relevant information, answer frequently asked questions, or offer suggestions based on the ongoing conversation #### Local Knowledge Expert\\nUpload company documents and URLs into the[SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)and create an in-app knowledge bot that knows everything about your specific your case #### Call summary\\nSaving time & resources, AI can create an automatic summary from a video recording, highlighting a list of action points and serving as a valuable virtual assistant [Request a Demo](#contact-us)\\n## Why do businesses choose our online video platform #### Ready to Go Developing applications from scratch is costly & time consuming License our ready application now #### Embeddable\\nCan be integrated into your existing software platform, embedded into your website or app, and hosted in your preferred domain #### Compliant\\nCompatible by design with most compliance regulations including HIPAA, PIPEDA, and GDPR\\nThis chunk is part of a section highlighting the advantages of QuickBlox's AI-enhanced white label video platform, Q-Consultation. It features testimonials from users like Ross Sommers and Manish Verma, describing successful integrations and deployments. The section emphasizes the platform's integration with AI models like ChatGPT for enhanced features such as contextual assistance and call summaries. It also outlines the platform's benefits, including easy integration, compliance with regulations, and readiness for use without needing to develop from scratch.\",\n", + " \"#### Scalable\\nBuilt on the QuickBlox platform, our solution is fully scalable to adapt to your changing business needs #### Customizable\\nCustomize the app to suit your company brand and specific use case to create the user experience you want #### Secure\\nCustomer data and communication is encrypted and secure Our solution can be deployed in your own cloud infrastructure for added control #### Cross Platform\\nA web application that is adaptable to mobile web browsers so that it can work on iOS and Android #### AI Integrated\\nStay ahead of the competition with cutting-edge technology AI enhanced video consultation demonstrates your commitment to innovation #### Flexible Pricing & Support\\nWe offer several pricing models based on usage and business needs Q\\u2011Consultation is offered as a managed service and is bundled with QuickBlox support and services ## Looking for a free white label video solution We offer Q-Consultation Lite, open-source code that is freely available to implement and customize today at no cost [Try Q-Consultation Lite](https://quickblox.com/products/q-consultation/open-source/)\\n## Private Video Consultation for Multiple Use Cases\\n[\\n### Healthcare and HealthTech\\n](https://quickblox.com/products/q-consultation/telehealth-app/)[\\n### Customer Support\\n](https://quickblox.com/products/q-consultation/customer-support-app/)[\\n### HR & Recruitment\\n](https://quickblox.com/products/q-consultation/recruitment-app/)[\\n### Banking & Finance\\n](https://quickblox.com/products/q-consultation/finance-app/)[\\n### Operator Driven Chat\\n](https://quickblox.com/products/q-consultation/social-app/)\\n## Create a virtual meeting room experience that works on any mobile device and the web ### Communication features\\n* Real-time Chat & Messaging\\n* Video & audio calling\\n* File sharing\\n* Call recording\\n* Camera Input selection\\n* Customizable data capture forms\\n* Private chat rooms\\n### User management features\\n* User authentication\\n* Real-time customer queue\\n* Virtual waiting & meeting rooms\\n* Customer and provider profiles\\n* Invitation sharing by link & text\\n* Capture user data, add, share, send notes, and share files\\n* Message and call history\\n* Appointment scheduler\\n[Ask About our Chat-Only Version](#contact-us)\\n## Interested in an enterprise-ready white-label video consultation solution Supercharge your client consultations with these additional services for Enterprise\\n#### Professional Services\\nCustom functionality modifications are available by the Quickblox professional services team #### Service Management & DevOps\\nHybrid, on\\u2011premise and internal deployment can also be managed by the QuickBlox team, if needed\\nThis chunk focuses on the scalability, customization, security, cross-platform compatibility, AI integration, and flexible pricing of QuickBlox's Q-Consultation, a white-label video consultation solution. It highlights features like real-time chat, video calling, user management, and professional services, emphasizing its adaptability for various industries such as healthcare, customer support, HR, finance, and e-commerce. The segment also introduces Q-Consultation Lite, an open-source version for free implementation.\",\n", + " \"#### System Integration\\nBackend API & 3rd\\u2011party integrations can be developed for your use case to enable seamless interoperability ## Are you in need of a white-label video consultation solution withinstant messaging ## Ready to get started Book a free call to request a demo or to discuss how Q\\u2011Consultation can serve your business needs ## Frequently Asked Questions\\n### What is white label video conferencing White label video conferencing refers to a software solution that is developed by one company but is rebranded and offered by another company as if it were their own product While QuickBlox has built the underlying technology and infrastructure of Q-Consultation, we invite our customers to offer our video conferencing services to their own customers under their own brand name and logo ### What are the benefits of using a white label video conferencing solution with a Chat API A Chat API allows users to engage in[real-time text-based conversations](https://quickblox.com/blog/real-time-communication-and-the-rise-of-neobanks/)alongside video consultations This can be valuable for sending text messages, sharing links or documents, asking quick questions, or providing additional context during the consultation ### Do I need technical expertise to set up and manage a white label video conferencing platform QuickBlox\\u2019s white label video consultation solution is designed to accommodate different levels of technical expertise by offering a range of options, from open source code that allows for extensive customization to a more turnkey and fully managed system ### Is white label video conferencing secure Q-Consultation is built on QuickBlox\\u2019s robust communication platform and offers a secure white label video conferencing solution All customer data and communication is encrypted and secure, and the solution can be deployed in your own cloud infrastructure for added control\\nThe chunk is part of the section detailing the features and benefits of QuickBlox's white-label video conferencing solution, Q-Consultation. It highlights system integration capabilities, the ease of setup and management for varying technical expertise levels, security measures, and the advantages of incorporating a Chat API. Additionally, it addresses common questions about white-label solutions, emphasizing customization and rebranding options for businesses.\",\n", + " \"### Is white label video conferencing suitable for remote work White label video conferencing is well-suited for remote work Q-Consultation enables remote teams to conduct seamless virtual meetings, share screens and documents, and maintain secure communication, fostering collaboration regardless of physical location ### Can I customize the white label video conferencing solution to match my brand Q-Consultation offers extensive customization options to align the platform with your brand and your specific needs You can alter the name and logo, the UI colors and fonts, and customize the text throughout, ensuring that the platform carries your brand identity QuickBlox allows you to use a custom domain, reinforcing your brand\\u2019s presence by incorporating it into the platform\\u2019s web address #### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\\nThe chunk discusses the suitability of QuickBlox's white-label video conferencing solution, Q-Consultation, for remote work, emphasizing its customization options to align with a brand's identity. It highlights the solution's capabilities for seamless virtual meetings, screen sharing, secure communication, and mentions various products, solutions, enterprise features, and resources offered by QuickBlox, including AI integrations, SDKs, APIs, and support documentation.\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 14 Type: step\n", + "output: [\n", + " \"The chunk provides a detailed overview of QuickBlox's product offerings, specifically focusing on communication tools, AI features, and white-label solutions. It highlights various SDKs, APIs, and chat UI kits available for different platforms, as well as AI-enhanced features like SmartChat Assistant. Additionally, it outlines white-label solutions such as Q-Consultation and Q-Municate, designed for secure video calling and messaging. The chunk also touches on industry-specific solutions, enterprise features, developer resources, and support options, making it a comprehensive summary of QuickBlox's capabilities in enhancing app communication features.\",\n", + " \"This chunk is part of a section highlighting the advantages of QuickBlox's AI-enhanced white label video platform, Q-Consultation. It features testimonials from users like Ross Sommers and Manish Verma, describing successful integrations and deployments. The section emphasizes the platform's integration with AI models like ChatGPT for enhanced features such as contextual assistance and call summaries. It also outlines the platform's benefits, including easy integration, compliance with regulations, and readiness for use without needing to develop from scratch.\",\n", + " \"This chunk focuses on the scalability, customization, security, cross-platform compatibility, AI integration, and flexible pricing of QuickBlox's Q-Consultation, a white-label video consultation solution. It highlights features like real-time chat, video calling, user management, and professional services, emphasizing its adaptability for various industries such as healthcare, customer support, HR, finance, and e-commerce. The segment also introduces Q-Consultation Lite, an open-source version for free implementation.\",\n", + " \"The chunk is part of the section detailing the features and benefits of QuickBlox's white-label video conferencing solution, Q-Consultation. It highlights system integration capabilities, the ease of setup and management for varying technical expertise levels, security measures, and the advantages of incorporating a Chat API. Additionally, it addresses common questions about white-label solutions, emphasizing customization and rebranding options for businesses.\",\n", + " \"The chunk discusses the suitability of QuickBlox's white-label video conferencing solution, Q-Consultation, for remote work, emphasizing its customization options to align with a brand's identity. It highlights the solution's capabilities for seamless virtual meetings, screen sharing, secure communication, and mentions various products, solutions, enterprise features, and resources offered by QuickBlox, including AI integrations, SDKs, APIs, and support documentation.\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 15 Type: finish_branch\n", + "output: \"The chunk discusses the suitability of QuickBlox's white-label video conferencing solution, Q-Consultation, for remote work, emphasizing its customization options to align with a brand's identity. It highlights the solution's capabilities for seamless virtual meetings, screen sharing, secure communication, and mentions various products, solutions, enterprise features, and resources offered by QuickBlox, including AI integrations, SDKs, APIs, and support documentation.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 16 Type: finish_branch\n", + "output: \"The chunk is part of the section detailing the features and benefits of QuickBlox's white-label video conferencing solution, Q-Consultation. It highlights system integration capabilities, the ease of setup and management for varying technical expertise levels, security measures, and the advantages of incorporating a Chat API. Additionally, it addresses common questions about white-label solutions, emphasizing customization and rebranding options for businesses.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 17 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# White Label Video Consultation Solution for Your Business\\nYour virtual room application with private messaging, integrated with OpenAI Q-Consultation is an AI enhanced video calling solution that provides a secure means to hold private meetings via video and chat With file sharing, scheduling, and a host of user management features [Contact us](#contact-us)\\n## How does our customizable video software adapt to different use cases * #### Healthcare and HealthTech\\nManage patient appointments remotely, exchange secure messages, share photos & videos, and provide HIPAA compliant video visits [Learn more](https://quickblox.com/products/q-consultation/telehealth-app/)\\n* #### HR & Recruitment\\nInterview large numbers of candidates with queue management tools and private video consultation and hire people remotely [Learn more](https://quickblox.com/products/q-consultation/recruitment-app/)\\n* #### Banking & Finance\\nConsult with clients on a secure video consultation platform hosted within your own cloud infrastructure to ensure the highest level of data security [Learn more](https://quickblox.com/products/q-consultation/finance-app/)\\n* #### Customer Support\\nOffer customers a personal touch by providing technical support and customer care via private online consultation [Learn more](https://quickblox.com/products/q-consultation/customer-support-app/)\\n* #### Operator Driven Chat\\nEnable operators to seamlessly connect with multiple online participants in private chat rooms [Learn more](https://quickblox.com/products/q-consultation/social-app/)\\n* #### E-Commerce\\nEffortlessly guide customers through a purchase with in\\u2011person sales and product demonstrations via remote video consultation * #### Education & Coaching\\nUse a fully\\u2011featured virtual appointment room to consult with students any time you want ## Need white label video software for your business [Tell us about your use case](#contact-us)\\n## What our Customers Say\\n1 2 Using Q-Consultation we were able to set up a secure communication command center to monitor pediatric patients, in weeks not months, This software allows us to provide HIPAA compliant communication between doctors and patients regarding the health of their child\",\n", + " \"### Ross Sommers,MD Founder\\nI integrated Q-Consultation into a Hospital\\u2019s EHR system to provide real-time video communication for doctors working with patients in acute care We were able to deploy the software in our cloud and deliver new functionality to create a better user experience ### Manish Verma,Former Development Lead\\n## What sets our AI-enhanced white label video platform apart Q-Consultation takes your business consultations to the next level by integrating Open AI models including ChatGPT, the powerful AI assistant Unlock a range of advanced features that revolutionize the way you connect with your clients #### Contextual assistance\\nAI provides real-time contextual assistance during online video consultations It can help users find relevant information, answer frequently asked questions, or offer suggestions based on the ongoing conversation #### Local Knowledge Expert\\nUpload company documents and URLs into the[SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)and create an in-app knowledge bot that knows everything about your specific your case #### Call summary\\nSaving time & resources, AI can create an automatic summary from a video recording, highlighting a list of action points and serving as a valuable virtual assistant [Request a Demo](#contact-us)\\n## Why do businesses choose our online video platform #### Ready to Go Developing applications from scratch is costly & time consuming License our ready application now #### Embeddable\\nCan be integrated into your existing software platform, embedded into your website or app, and hosted in your preferred domain #### Compliant\\nCompatible by design with most compliance regulations including HIPAA, PIPEDA, and GDPR\",\n", + " \"#### Scalable\\nBuilt on the QuickBlox platform, our solution is fully scalable to adapt to your changing business needs #### Customizable\\nCustomize the app to suit your company brand and specific use case to create the user experience you want #### Secure\\nCustomer data and communication is encrypted and secure Our solution can be deployed in your own cloud infrastructure for added control #### Cross Platform\\nA web application that is adaptable to mobile web browsers so that it can work on iOS and Android #### AI Integrated\\nStay ahead of the competition with cutting-edge technology AI enhanced video consultation demonstrates your commitment to innovation #### Flexible Pricing & Support\\nWe offer several pricing models based on usage and business needs Q\\u2011Consultation is offered as a managed service and is bundled with QuickBlox support and services ## Looking for a free white label video solution We offer Q-Consultation Lite, open-source code that is freely available to implement and customize today at no cost [Try Q-Consultation Lite](https://quickblox.com/products/q-consultation/open-source/)\\n## Private Video Consultation for Multiple Use Cases\\n[\\n### Healthcare and HealthTech\\n](https://quickblox.com/products/q-consultation/telehealth-app/)[\\n### Customer Support\\n](https://quickblox.com/products/q-consultation/customer-support-app/)[\\n### HR & Recruitment\\n](https://quickblox.com/products/q-consultation/recruitment-app/)[\\n### Banking & Finance\\n](https://quickblox.com/products/q-consultation/finance-app/)[\\n### Operator Driven Chat\\n](https://quickblox.com/products/q-consultation/social-app/)\\n## Create a virtual meeting room experience that works on any mobile device and the web ### Communication features\\n* Real-time Chat & Messaging\\n* Video & audio calling\\n* File sharing\\n* Call recording\\n* Camera Input selection\\n* Customizable data capture forms\\n* Private chat rooms\\n### User management features\\n* User authentication\\n* Real-time customer queue\\n* Virtual waiting & meeting rooms\\n* Customer and provider profiles\\n* Invitation sharing by link & text\\n* Capture user data, add, share, send notes, and share files\\n* Message and call history\\n* Appointment scheduler\\n[Ask About our Chat-Only Version](#contact-us)\\n## Interested in an enterprise-ready white-label video consultation solution Supercharge your client consultations with these additional services for Enterprise\\n#### Professional Services\\nCustom functionality modifications are available by the Quickblox professional services team #### Service Management & DevOps\\nHybrid, on\\u2011premise and internal deployment can also be managed by the QuickBlox team, if needed\",\n", + " \"#### System Integration\\nBackend API & 3rd\\u2011party integrations can be developed for your use case to enable seamless interoperability ## Are you in need of a white-label video consultation solution withinstant messaging ## Ready to get started Book a free call to request a demo or to discuss how Q\\u2011Consultation can serve your business needs ## Frequently Asked Questions\\n### What is white label video conferencing White label video conferencing refers to a software solution that is developed by one company but is rebranded and offered by another company as if it were their own product While QuickBlox has built the underlying technology and infrastructure of Q-Consultation, we invite our customers to offer our video conferencing services to their own customers under their own brand name and logo ### What are the benefits of using a white label video conferencing solution with a Chat API A Chat API allows users to engage in[real-time text-based conversations](https://quickblox.com/blog/real-time-communication-and-the-rise-of-neobanks/)alongside video consultations This can be valuable for sending text messages, sharing links or documents, asking quick questions, or providing additional context during the consultation ### Do I need technical expertise to set up and manage a white label video conferencing platform QuickBlox\\u2019s white label video consultation solution is designed to accommodate different levels of technical expertise by offering a range of options, from open source code that allows for extensive customization to a more turnkey and fully managed system ### Is white label video conferencing secure Q-Consultation is built on QuickBlox\\u2019s robust communication platform and offers a secure white label video conferencing solution All customer data and communication is encrypted and secure, and the solution can be deployed in your own cloud infrastructure for added control\",\n", + " \"### Is white label video conferencing suitable for remote work White label video conferencing is well-suited for remote work Q-Consultation enables remote teams to conduct seamless virtual meetings, share screens and documents, and maintain secure communication, fostering collaboration regardless of physical location ### Can I customize the white label video conferencing solution to match my brand Q-Consultation offers extensive customization options to align the platform with your brand and your specific needs You can alter the name and logo, the UI colors and fonts, and customize the text throughout, ensuring that the platform carries your brand identity QuickBlox allows you to use a custom domain, reinforcing your brand\\u2019s presence by incorporating it into the platform\\u2019s web address #### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"### Is white label video conferencing suitable for remote work White label video conferencing is well-suited for remote work Q-Consultation enables remote teams to conduct seamless virtual meetings, share screens and documents, and maintain secure communication, fostering collaboration regardless of physical location ### Can I customize the white label video conferencing solution to match my brand Q-Consultation offers extensive customization options to align the platform with your brand and your specific needs You can alter the name and logo, the UI colors and fonts, and customize the text throughout, ensuring that the platform carries your brand identity QuickBlox allows you to use a custom domain, reinforcing your brand\\u2019s presence by incorporating it into the platform\\u2019s web address #### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 18 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# White Label Video Consultation Solution for Your Business\\nYour virtual room application with private messaging, integrated with OpenAI Q-Consultation is an AI enhanced video calling solution that provides a secure means to hold private meetings via video and chat With file sharing, scheduling, and a host of user management features [Contact us](#contact-us)\\n## How does our customizable video software adapt to different use cases * #### Healthcare and HealthTech\\nManage patient appointments remotely, exchange secure messages, share photos & videos, and provide HIPAA compliant video visits [Learn more](https://quickblox.com/products/q-consultation/telehealth-app/)\\n* #### HR & Recruitment\\nInterview large numbers of candidates with queue management tools and private video consultation and hire people remotely [Learn more](https://quickblox.com/products/q-consultation/recruitment-app/)\\n* #### Banking & Finance\\nConsult with clients on a secure video consultation platform hosted within your own cloud infrastructure to ensure the highest level of data security [Learn more](https://quickblox.com/products/q-consultation/finance-app/)\\n* #### Customer Support\\nOffer customers a personal touch by providing technical support and customer care via private online consultation [Learn more](https://quickblox.com/products/q-consultation/customer-support-app/)\\n* #### Operator Driven Chat\\nEnable operators to seamlessly connect with multiple online participants in private chat rooms [Learn more](https://quickblox.com/products/q-consultation/social-app/)\\n* #### E-Commerce\\nEffortlessly guide customers through a purchase with in\\u2011person sales and product demonstrations via remote video consultation * #### Education & Coaching\\nUse a fully\\u2011featured virtual appointment room to consult with students any time you want ## Need white label video software for your business [Tell us about your use case](#contact-us)\\n## What our Customers Say\\n1 2 Using Q-Consultation we were able to set up a secure communication command center to monitor pediatric patients, in weeks not months, This software allows us to provide HIPAA compliant communication between doctors and patients regarding the health of their child\",\n", + " \"### Ross Sommers,MD Founder\\nI integrated Q-Consultation into a Hospital\\u2019s EHR system to provide real-time video communication for doctors working with patients in acute care We were able to deploy the software in our cloud and deliver new functionality to create a better user experience ### Manish Verma,Former Development Lead\\n## What sets our AI-enhanced white label video platform apart Q-Consultation takes your business consultations to the next level by integrating Open AI models including ChatGPT, the powerful AI assistant Unlock a range of advanced features that revolutionize the way you connect with your clients #### Contextual assistance\\nAI provides real-time contextual assistance during online video consultations It can help users find relevant information, answer frequently asked questions, or offer suggestions based on the ongoing conversation #### Local Knowledge Expert\\nUpload company documents and URLs into the[SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)and create an in-app knowledge bot that knows everything about your specific your case #### Call summary\\nSaving time & resources, AI can create an automatic summary from a video recording, highlighting a list of action points and serving as a valuable virtual assistant [Request a Demo](#contact-us)\\n## Why do businesses choose our online video platform #### Ready to Go Developing applications from scratch is costly & time consuming License our ready application now #### Embeddable\\nCan be integrated into your existing software platform, embedded into your website or app, and hosted in your preferred domain #### Compliant\\nCompatible by design with most compliance regulations including HIPAA, PIPEDA, and GDPR\",\n", + " \"#### Scalable\\nBuilt on the QuickBlox platform, our solution is fully scalable to adapt to your changing business needs #### Customizable\\nCustomize the app to suit your company brand and specific use case to create the user experience you want #### Secure\\nCustomer data and communication is encrypted and secure Our solution can be deployed in your own cloud infrastructure for added control #### Cross Platform\\nA web application that is adaptable to mobile web browsers so that it can work on iOS and Android #### AI Integrated\\nStay ahead of the competition with cutting-edge technology AI enhanced video consultation demonstrates your commitment to innovation #### Flexible Pricing & Support\\nWe offer several pricing models based on usage and business needs Q\\u2011Consultation is offered as a managed service and is bundled with QuickBlox support and services ## Looking for a free white label video solution We offer Q-Consultation Lite, open-source code that is freely available to implement and customize today at no cost [Try Q-Consultation Lite](https://quickblox.com/products/q-consultation/open-source/)\\n## Private Video Consultation for Multiple Use Cases\\n[\\n### Healthcare and HealthTech\\n](https://quickblox.com/products/q-consultation/telehealth-app/)[\\n### Customer Support\\n](https://quickblox.com/products/q-consultation/customer-support-app/)[\\n### HR & Recruitment\\n](https://quickblox.com/products/q-consultation/recruitment-app/)[\\n### Banking & Finance\\n](https://quickblox.com/products/q-consultation/finance-app/)[\\n### Operator Driven Chat\\n](https://quickblox.com/products/q-consultation/social-app/)\\n## Create a virtual meeting room experience that works on any mobile device and the web ### Communication features\\n* Real-time Chat & Messaging\\n* Video & audio calling\\n* File sharing\\n* Call recording\\n* Camera Input selection\\n* Customizable data capture forms\\n* Private chat rooms\\n### User management features\\n* User authentication\\n* Real-time customer queue\\n* Virtual waiting & meeting rooms\\n* Customer and provider profiles\\n* Invitation sharing by link & text\\n* Capture user data, add, share, send notes, and share files\\n* Message and call history\\n* Appointment scheduler\\n[Ask About our Chat-Only Version](#contact-us)\\n## Interested in an enterprise-ready white-label video consultation solution Supercharge your client consultations with these additional services for Enterprise\\n#### Professional Services\\nCustom functionality modifications are available by the Quickblox professional services team #### Service Management & DevOps\\nHybrid, on\\u2011premise and internal deployment can also be managed by the QuickBlox team, if needed\",\n", + " \"#### System Integration\\nBackend API & 3rd\\u2011party integrations can be developed for your use case to enable seamless interoperability ## Are you in need of a white-label video consultation solution withinstant messaging ## Ready to get started Book a free call to request a demo or to discuss how Q\\u2011Consultation can serve your business needs ## Frequently Asked Questions\\n### What is white label video conferencing White label video conferencing refers to a software solution that is developed by one company but is rebranded and offered by another company as if it were their own product While QuickBlox has built the underlying technology and infrastructure of Q-Consultation, we invite our customers to offer our video conferencing services to their own customers under their own brand name and logo ### What are the benefits of using a white label video conferencing solution with a Chat API A Chat API allows users to engage in[real-time text-based conversations](https://quickblox.com/blog/real-time-communication-and-the-rise-of-neobanks/)alongside video consultations This can be valuable for sending text messages, sharing links or documents, asking quick questions, or providing additional context during the consultation ### Do I need technical expertise to set up and manage a white label video conferencing platform QuickBlox\\u2019s white label video consultation solution is designed to accommodate different levels of technical expertise by offering a range of options, from open source code that allows for extensive customization to a more turnkey and fully managed system ### Is white label video conferencing secure Q-Consultation is built on QuickBlox\\u2019s robust communication platform and offers a secure white label video conferencing solution All customer data and communication is encrypted and secure, and the solution can be deployed in your own cloud infrastructure for added control\",\n", + " \"### Is white label video conferencing suitable for remote work White label video conferencing is well-suited for remote work Q-Consultation enables remote teams to conduct seamless virtual meetings, share screens and documents, and maintain secure communication, fostering collaboration regardless of physical location ### Can I customize the white label video conferencing solution to match my brand Q-Consultation offers extensive customization options to align the platform with your brand and your specific needs You can alter the name and logo, the UI colors and fonts, and customize the text throughout, ensuring that the platform carries your brand identity QuickBlox allows you to use a custom domain, reinforcing your brand\\u2019s presence by incorporating it into the platform\\u2019s web address #### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"#### System Integration\\nBackend API & 3rd\\u2011party integrations can be developed for your use case to enable seamless interoperability ## Are you in need of a white-label video consultation solution withinstant messaging ## Ready to get started Book a free call to request a demo or to discuss how Q\\u2011Consultation can serve your business needs ## Frequently Asked Questions\\n### What is white label video conferencing White label video conferencing refers to a software solution that is developed by one company but is rebranded and offered by another company as if it were their own product While QuickBlox has built the underlying technology and infrastructure of Q-Consultation, we invite our customers to offer our video conferencing services to their own customers under their own brand name and logo ### What are the benefits of using a white label video conferencing solution with a Chat API A Chat API allows users to engage in[real-time text-based conversations](https://quickblox.com/blog/real-time-communication-and-the-rise-of-neobanks/)alongside video consultations This can be valuable for sending text messages, sharing links or documents, asking quick questions, or providing additional context during the consultation ### Do I need technical expertise to set up and manage a white label video conferencing platform QuickBlox\\u2019s white label video consultation solution is designed to accommodate different levels of technical expertise by offering a range of options, from open source code that allows for extensive customization to a more turnkey and fully managed system ### Is white label video conferencing secure Q-Consultation is built on QuickBlox\\u2019s robust communication platform and offers a secure white label video conferencing solution All customer data and communication is encrypted and secure, and the solution can be deployed in your own cloud infrastructure for added control\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 19 Type: finish_branch\n", + "output: \"The chunk provides a detailed overview of QuickBlox's product offerings, specifically focusing on communication tools, AI features, and white-label solutions. It highlights various SDKs, APIs, and chat UI kits available for different platforms, as well as AI-enhanced features like SmartChat Assistant. Additionally, it outlines white-label solutions such as Q-Consultation and Q-Municate, designed for secure video calling and messaging. The chunk also touches on industry-specific solutions, enterprise features, developer resources, and support options, making it a comprehensive summary of QuickBlox's capabilities in enhancing app communication features.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 20 Type: finish_branch\n", + "output: \"This chunk is part of a section highlighting the advantages of QuickBlox's AI-enhanced white label video platform, Q-Consultation. It features testimonials from users like Ross Sommers and Manish Verma, describing successful integrations and deployments. The section emphasizes the platform's integration with AI models like ChatGPT for enhanced features such as contextual assistance and call summaries. It also outlines the platform's benefits, including easy integration, compliance with regulations, and readiness for use without needing to develop from scratch.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 21 Type: finish_branch\n", + "output: \"This chunk focuses on the scalability, customization, security, cross-platform compatibility, AI integration, and flexible pricing of QuickBlox's Q-Consultation, a white-label video consultation solution. It highlights features like real-time chat, video calling, user management, and professional services, emphasizing its adaptability for various industries such as healthcare, customer support, HR, finance, and e-commerce. The segment also introduces Q-Consultation Lite, an open-source version for free implementation.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 22 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# White Label Video Consultation Solution for Your Business\\nYour virtual room application with private messaging, integrated with OpenAI Q-Consultation is an AI enhanced video calling solution that provides a secure means to hold private meetings via video and chat With file sharing, scheduling, and a host of user management features [Contact us](#contact-us)\\n## How does our customizable video software adapt to different use cases * #### Healthcare and HealthTech\\nManage patient appointments remotely, exchange secure messages, share photos & videos, and provide HIPAA compliant video visits [Learn more](https://quickblox.com/products/q-consultation/telehealth-app/)\\n* #### HR & Recruitment\\nInterview large numbers of candidates with queue management tools and private video consultation and hire people remotely [Learn more](https://quickblox.com/products/q-consultation/recruitment-app/)\\n* #### Banking & Finance\\nConsult with clients on a secure video consultation platform hosted within your own cloud infrastructure to ensure the highest level of data security [Learn more](https://quickblox.com/products/q-consultation/finance-app/)\\n* #### Customer Support\\nOffer customers a personal touch by providing technical support and customer care via private online consultation [Learn more](https://quickblox.com/products/q-consultation/customer-support-app/)\\n* #### Operator Driven Chat\\nEnable operators to seamlessly connect with multiple online participants in private chat rooms [Learn more](https://quickblox.com/products/q-consultation/social-app/)\\n* #### E-Commerce\\nEffortlessly guide customers through a purchase with in\\u2011person sales and product demonstrations via remote video consultation * #### Education & Coaching\\nUse a fully\\u2011featured virtual appointment room to consult with students any time you want ## Need white label video software for your business [Tell us about your use case](#contact-us)\\n## What our Customers Say\\n1 2 Using Q-Consultation we were able to set up a secure communication command center to monitor pediatric patients, in weeks not months, This software allows us to provide HIPAA compliant communication between doctors and patients regarding the health of their child\",\n", + " \"### Ross Sommers,MD Founder\\nI integrated Q-Consultation into a Hospital\\u2019s EHR system to provide real-time video communication for doctors working with patients in acute care We were able to deploy the software in our cloud and deliver new functionality to create a better user experience ### Manish Verma,Former Development Lead\\n## What sets our AI-enhanced white label video platform apart Q-Consultation takes your business consultations to the next level by integrating Open AI models including ChatGPT, the powerful AI assistant Unlock a range of advanced features that revolutionize the way you connect with your clients #### Contextual assistance\\nAI provides real-time contextual assistance during online video consultations It can help users find relevant information, answer frequently asked questions, or offer suggestions based on the ongoing conversation #### Local Knowledge Expert\\nUpload company documents and URLs into the[SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)and create an in-app knowledge bot that knows everything about your specific your case #### Call summary\\nSaving time & resources, AI can create an automatic summary from a video recording, highlighting a list of action points and serving as a valuable virtual assistant [Request a Demo](#contact-us)\\n## Why do businesses choose our online video platform #### Ready to Go Developing applications from scratch is costly & time consuming License our ready application now #### Embeddable\\nCan be integrated into your existing software platform, embedded into your website or app, and hosted in your preferred domain #### Compliant\\nCompatible by design with most compliance regulations including HIPAA, PIPEDA, and GDPR\",\n", + " \"#### Scalable\\nBuilt on the QuickBlox platform, our solution is fully scalable to adapt to your changing business needs #### Customizable\\nCustomize the app to suit your company brand and specific use case to create the user experience you want #### Secure\\nCustomer data and communication is encrypted and secure Our solution can be deployed in your own cloud infrastructure for added control #### Cross Platform\\nA web application that is adaptable to mobile web browsers so that it can work on iOS and Android #### AI Integrated\\nStay ahead of the competition with cutting-edge technology AI enhanced video consultation demonstrates your commitment to innovation #### Flexible Pricing & Support\\nWe offer several pricing models based on usage and business needs Q\\u2011Consultation is offered as a managed service and is bundled with QuickBlox support and services ## Looking for a free white label video solution We offer Q-Consultation Lite, open-source code that is freely available to implement and customize today at no cost [Try Q-Consultation Lite](https://quickblox.com/products/q-consultation/open-source/)\\n## Private Video Consultation for Multiple Use Cases\\n[\\n### Healthcare and HealthTech\\n](https://quickblox.com/products/q-consultation/telehealth-app/)[\\n### Customer Support\\n](https://quickblox.com/products/q-consultation/customer-support-app/)[\\n### HR & Recruitment\\n](https://quickblox.com/products/q-consultation/recruitment-app/)[\\n### Banking & Finance\\n](https://quickblox.com/products/q-consultation/finance-app/)[\\n### Operator Driven Chat\\n](https://quickblox.com/products/q-consultation/social-app/)\\n## Create a virtual meeting room experience that works on any mobile device and the web ### Communication features\\n* Real-time Chat & Messaging\\n* Video & audio calling\\n* File sharing\\n* Call recording\\n* Camera Input selection\\n* Customizable data capture forms\\n* Private chat rooms\\n### User management features\\n* User authentication\\n* Real-time customer queue\\n* Virtual waiting & meeting rooms\\n* Customer and provider profiles\\n* Invitation sharing by link & text\\n* Capture user data, add, share, send notes, and share files\\n* Message and call history\\n* Appointment scheduler\\n[Ask About our Chat-Only Version](#contact-us)\\n## Interested in an enterprise-ready white-label video consultation solution Supercharge your client consultations with these additional services for Enterprise\\n#### Professional Services\\nCustom functionality modifications are available by the Quickblox professional services team #### Service Management & DevOps\\nHybrid, on\\u2011premise and internal deployment can also be managed by the QuickBlox team, if needed\",\n", + " \"#### System Integration\\nBackend API & 3rd\\u2011party integrations can be developed for your use case to enable seamless interoperability ## Are you in need of a white-label video consultation solution withinstant messaging ## Ready to get started Book a free call to request a demo or to discuss how Q\\u2011Consultation can serve your business needs ## Frequently Asked Questions\\n### What is white label video conferencing White label video conferencing refers to a software solution that is developed by one company but is rebranded and offered by another company as if it were their own product While QuickBlox has built the underlying technology and infrastructure of Q-Consultation, we invite our customers to offer our video conferencing services to their own customers under their own brand name and logo ### What are the benefits of using a white label video conferencing solution with a Chat API A Chat API allows users to engage in[real-time text-based conversations](https://quickblox.com/blog/real-time-communication-and-the-rise-of-neobanks/)alongside video consultations This can be valuable for sending text messages, sharing links or documents, asking quick questions, or providing additional context during the consultation ### Do I need technical expertise to set up and manage a white label video conferencing platform QuickBlox\\u2019s white label video consultation solution is designed to accommodate different levels of technical expertise by offering a range of options, from open source code that allows for extensive customization to a more turnkey and fully managed system ### Is white label video conferencing secure Q-Consultation is built on QuickBlox\\u2019s robust communication platform and offers a secure white label video conferencing solution All customer data and communication is encrypted and secure, and the solution can be deployed in your own cloud infrastructure for added control\",\n", + " \"### Is white label video conferencing suitable for remote work White label video conferencing is well-suited for remote work Q-Consultation enables remote teams to conduct seamless virtual meetings, share screens and documents, and maintain secure communication, fostering collaboration regardless of physical location ### Can I customize the white label video conferencing solution to match my brand Q-Consultation offers extensive customization options to align the platform with your brand and your specific needs You can alter the name and logo, the UI colors and fonts, and customize the text throughout, ensuring that the platform carries your brand identity QuickBlox allows you to use a custom domain, reinforcing your brand\\u2019s presence by incorporating it into the platform\\u2019s web address #### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"#### Scalable\\nBuilt on the QuickBlox platform, our solution is fully scalable to adapt to your changing business needs #### Customizable\\nCustomize the app to suit your company brand and specific use case to create the user experience you want #### Secure\\nCustomer data and communication is encrypted and secure Our solution can be deployed in your own cloud infrastructure for added control #### Cross Platform\\nA web application that is adaptable to mobile web browsers so that it can work on iOS and Android #### AI Integrated\\nStay ahead of the competition with cutting-edge technology AI enhanced video consultation demonstrates your commitment to innovation #### Flexible Pricing & Support\\nWe offer several pricing models based on usage and business needs Q\\u2011Consultation is offered as a managed service and is bundled with QuickBlox support and services ## Looking for a free white label video solution We offer Q-Consultation Lite, open-source code that is freely available to implement and customize today at no cost [Try Q-Consultation Lite](https://quickblox.com/products/q-consultation/open-source/)\\n## Private Video Consultation for Multiple Use Cases\\n[\\n### Healthcare and HealthTech\\n](https://quickblox.com/products/q-consultation/telehealth-app/)[\\n### Customer Support\\n](https://quickblox.com/products/q-consultation/customer-support-app/)[\\n### HR & Recruitment\\n](https://quickblox.com/products/q-consultation/recruitment-app/)[\\n### Banking & Finance\\n](https://quickblox.com/products/q-consultation/finance-app/)[\\n### Operator Driven Chat\\n](https://quickblox.com/products/q-consultation/social-app/)\\n## Create a virtual meeting room experience that works on any mobile device and the web ### Communication features\\n* Real-time Chat & Messaging\\n* Video & audio calling\\n* File sharing\\n* Call recording\\n* Camera Input selection\\n* Customizable data capture forms\\n* Private chat rooms\\n### User management features\\n* User authentication\\n* Real-time customer queue\\n* Virtual waiting & meeting rooms\\n* Customer and provider profiles\\n* Invitation sharing by link & text\\n* Capture user data, add, share, send notes, and share files\\n* Message and call history\\n* Appointment scheduler\\n[Ask About our Chat-Only Version](#contact-us)\\n## Interested in an enterprise-ready white-label video consultation solution Supercharge your client consultations with these additional services for Enterprise\\n#### Professional Services\\nCustom functionality modifications are available by the Quickblox professional services team #### Service Management & DevOps\\nHybrid, on\\u2011premise and internal deployment can also be managed by the QuickBlox team, if needed\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 23 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# White Label Video Consultation Solution for Your Business\\nYour virtual room application with private messaging, integrated with OpenAI Q-Consultation is an AI enhanced video calling solution that provides a secure means to hold private meetings via video and chat With file sharing, scheduling, and a host of user management features [Contact us](#contact-us)\\n## How does our customizable video software adapt to different use cases * #### Healthcare and HealthTech\\nManage patient appointments remotely, exchange secure messages, share photos & videos, and provide HIPAA compliant video visits [Learn more](https://quickblox.com/products/q-consultation/telehealth-app/)\\n* #### HR & Recruitment\\nInterview large numbers of candidates with queue management tools and private video consultation and hire people remotely [Learn more](https://quickblox.com/products/q-consultation/recruitment-app/)\\n* #### Banking & Finance\\nConsult with clients on a secure video consultation platform hosted within your own cloud infrastructure to ensure the highest level of data security [Learn more](https://quickblox.com/products/q-consultation/finance-app/)\\n* #### Customer Support\\nOffer customers a personal touch by providing technical support and customer care via private online consultation [Learn more](https://quickblox.com/products/q-consultation/customer-support-app/)\\n* #### Operator Driven Chat\\nEnable operators to seamlessly connect with multiple online participants in private chat rooms [Learn more](https://quickblox.com/products/q-consultation/social-app/)\\n* #### E-Commerce\\nEffortlessly guide customers through a purchase with in\\u2011person sales and product demonstrations via remote video consultation * #### Education & Coaching\\nUse a fully\\u2011featured virtual appointment room to consult with students any time you want ## Need white label video software for your business [Tell us about your use case](#contact-us)\\n## What our Customers Say\\n1 2 Using Q-Consultation we were able to set up a secure communication command center to monitor pediatric patients, in weeks not months, This software allows us to provide HIPAA compliant communication between doctors and patients regarding the health of their child\",\n", + " \"### Ross Sommers,MD Founder\\nI integrated Q-Consultation into a Hospital\\u2019s EHR system to provide real-time video communication for doctors working with patients in acute care We were able to deploy the software in our cloud and deliver new functionality to create a better user experience ### Manish Verma,Former Development Lead\\n## What sets our AI-enhanced white label video platform apart Q-Consultation takes your business consultations to the next level by integrating Open AI models including ChatGPT, the powerful AI assistant Unlock a range of advanced features that revolutionize the way you connect with your clients #### Contextual assistance\\nAI provides real-time contextual assistance during online video consultations It can help users find relevant information, answer frequently asked questions, or offer suggestions based on the ongoing conversation #### Local Knowledge Expert\\nUpload company documents and URLs into the[SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)and create an in-app knowledge bot that knows everything about your specific your case #### Call summary\\nSaving time & resources, AI can create an automatic summary from a video recording, highlighting a list of action points and serving as a valuable virtual assistant [Request a Demo](#contact-us)\\n## Why do businesses choose our online video platform #### Ready to Go Developing applications from scratch is costly & time consuming License our ready application now #### Embeddable\\nCan be integrated into your existing software platform, embedded into your website or app, and hosted in your preferred domain #### Compliant\\nCompatible by design with most compliance regulations including HIPAA, PIPEDA, and GDPR\",\n", + " \"#### Scalable\\nBuilt on the QuickBlox platform, our solution is fully scalable to adapt to your changing business needs #### Customizable\\nCustomize the app to suit your company brand and specific use case to create the user experience you want #### Secure\\nCustomer data and communication is encrypted and secure Our solution can be deployed in your own cloud infrastructure for added control #### Cross Platform\\nA web application that is adaptable to mobile web browsers so that it can work on iOS and Android #### AI Integrated\\nStay ahead of the competition with cutting-edge technology AI enhanced video consultation demonstrates your commitment to innovation #### Flexible Pricing & Support\\nWe offer several pricing models based on usage and business needs Q\\u2011Consultation is offered as a managed service and is bundled with QuickBlox support and services ## Looking for a free white label video solution We offer Q-Consultation Lite, open-source code that is freely available to implement and customize today at no cost [Try Q-Consultation Lite](https://quickblox.com/products/q-consultation/open-source/)\\n## Private Video Consultation for Multiple Use Cases\\n[\\n### Healthcare and HealthTech\\n](https://quickblox.com/products/q-consultation/telehealth-app/)[\\n### Customer Support\\n](https://quickblox.com/products/q-consultation/customer-support-app/)[\\n### HR & Recruitment\\n](https://quickblox.com/products/q-consultation/recruitment-app/)[\\n### Banking & Finance\\n](https://quickblox.com/products/q-consultation/finance-app/)[\\n### Operator Driven Chat\\n](https://quickblox.com/products/q-consultation/social-app/)\\n## Create a virtual meeting room experience that works on any mobile device and the web ### Communication features\\n* Real-time Chat & Messaging\\n* Video & audio calling\\n* File sharing\\n* Call recording\\n* Camera Input selection\\n* Customizable data capture forms\\n* Private chat rooms\\n### User management features\\n* User authentication\\n* Real-time customer queue\\n* Virtual waiting & meeting rooms\\n* Customer and provider profiles\\n* Invitation sharing by link & text\\n* Capture user data, add, share, send notes, and share files\\n* Message and call history\\n* Appointment scheduler\\n[Ask About our Chat-Only Version](#contact-us)\\n## Interested in an enterprise-ready white-label video consultation solution Supercharge your client consultations with these additional services for Enterprise\\n#### Professional Services\\nCustom functionality modifications are available by the Quickblox professional services team #### Service Management & DevOps\\nHybrid, on\\u2011premise and internal deployment can also be managed by the QuickBlox team, if needed\",\n", + " \"#### System Integration\\nBackend API & 3rd\\u2011party integrations can be developed for your use case to enable seamless interoperability ## Are you in need of a white-label video consultation solution withinstant messaging ## Ready to get started Book a free call to request a demo or to discuss how Q\\u2011Consultation can serve your business needs ## Frequently Asked Questions\\n### What is white label video conferencing White label video conferencing refers to a software solution that is developed by one company but is rebranded and offered by another company as if it were their own product While QuickBlox has built the underlying technology and infrastructure of Q-Consultation, we invite our customers to offer our video conferencing services to their own customers under their own brand name and logo ### What are the benefits of using a white label video conferencing solution with a Chat API A Chat API allows users to engage in[real-time text-based conversations](https://quickblox.com/blog/real-time-communication-and-the-rise-of-neobanks/)alongside video consultations This can be valuable for sending text messages, sharing links or documents, asking quick questions, or providing additional context during the consultation ### Do I need technical expertise to set up and manage a white label video conferencing platform QuickBlox\\u2019s white label video consultation solution is designed to accommodate different levels of technical expertise by offering a range of options, from open source code that allows for extensive customization to a more turnkey and fully managed system ### Is white label video conferencing secure Q-Consultation is built on QuickBlox\\u2019s robust communication platform and offers a secure white label video conferencing solution All customer data and communication is encrypted and secure, and the solution can be deployed in your own cloud infrastructure for added control\",\n", + " \"### Is white label video conferencing suitable for remote work White label video conferencing is well-suited for remote work Q-Consultation enables remote teams to conduct seamless virtual meetings, share screens and documents, and maintain secure communication, fostering collaboration regardless of physical location ### Can I customize the white label video conferencing solution to match my brand Q-Consultation offers extensive customization options to align the platform with your brand and your specific needs You can alter the name and logo, the UI colors and fonts, and customize the text throughout, ensuring that the platform carries your brand identity QuickBlox allows you to use a custom domain, reinforcing your brand\\u2019s presence by incorporating it into the platform\\u2019s web address #### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# White Label Video Consultation Solution for Your Business\\nYour virtual room application with private messaging, integrated with OpenAI Q-Consultation is an AI enhanced video calling solution that provides a secure means to hold private meetings via video and chat With file sharing, scheduling, and a host of user management features [Contact us](#contact-us)\\n## How does our customizable video software adapt to different use cases * #### Healthcare and HealthTech\\nManage patient appointments remotely, exchange secure messages, share photos & videos, and provide HIPAA compliant video visits [Learn more](https://quickblox.com/products/q-consultation/telehealth-app/)\\n* #### HR & Recruitment\\nInterview large numbers of candidates with queue management tools and private video consultation and hire people remotely [Learn more](https://quickblox.com/products/q-consultation/recruitment-app/)\\n* #### Banking & Finance\\nConsult with clients on a secure video consultation platform hosted within your own cloud infrastructure to ensure the highest level of data security [Learn more](https://quickblox.com/products/q-consultation/finance-app/)\\n* #### Customer Support\\nOffer customers a personal touch by providing technical support and customer care via private online consultation [Learn more](https://quickblox.com/products/q-consultation/customer-support-app/)\\n* #### Operator Driven Chat\\nEnable operators to seamlessly connect with multiple online participants in private chat rooms [Learn more](https://quickblox.com/products/q-consultation/social-app/)\\n* #### E-Commerce\\nEffortlessly guide customers through a purchase with in\\u2011person sales and product demonstrations via remote video consultation * #### Education & Coaching\\nUse a fully\\u2011featured virtual appointment room to consult with students any time you want ## Need white label video software for your business [Tell us about your use case](#contact-us)\\n## What our Customers Say\\n1 2 Using Q-Consultation we were able to set up a secure communication command center to monitor pediatric patients, in weeks not months, This software allows us to provide HIPAA compliant communication between doctors and patients regarding the health of their child\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 24 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# White Label Video Consultation Solution for Your Business\\nYour virtual room application with private messaging, integrated with OpenAI Q-Consultation is an AI enhanced video calling solution that provides a secure means to hold private meetings via video and chat With file sharing, scheduling, and a host of user management features [Contact us](#contact-us)\\n## How does our customizable video software adapt to different use cases * #### Healthcare and HealthTech\\nManage patient appointments remotely, exchange secure messages, share photos & videos, and provide HIPAA compliant video visits [Learn more](https://quickblox.com/products/q-consultation/telehealth-app/)\\n* #### HR & Recruitment\\nInterview large numbers of candidates with queue management tools and private video consultation and hire people remotely [Learn more](https://quickblox.com/products/q-consultation/recruitment-app/)\\n* #### Banking & Finance\\nConsult with clients on a secure video consultation platform hosted within your own cloud infrastructure to ensure the highest level of data security [Learn more](https://quickblox.com/products/q-consultation/finance-app/)\\n* #### Customer Support\\nOffer customers a personal touch by providing technical support and customer care via private online consultation [Learn more](https://quickblox.com/products/q-consultation/customer-support-app/)\\n* #### Operator Driven Chat\\nEnable operators to seamlessly connect with multiple online participants in private chat rooms [Learn more](https://quickblox.com/products/q-consultation/social-app/)\\n* #### E-Commerce\\nEffortlessly guide customers through a purchase with in\\u2011person sales and product demonstrations via remote video consultation * #### Education & Coaching\\nUse a fully\\u2011featured virtual appointment room to consult with students any time you want ## Need white label video software for your business [Tell us about your use case](#contact-us)\\n## What our Customers Say\\n1 2 Using Q-Consultation we were able to set up a secure communication command center to monitor pediatric patients, in weeks not months, This software allows us to provide HIPAA compliant communication between doctors and patients regarding the health of their child\",\n", + " \"### Ross Sommers,MD Founder\\nI integrated Q-Consultation into a Hospital\\u2019s EHR system to provide real-time video communication for doctors working with patients in acute care We were able to deploy the software in our cloud and deliver new functionality to create a better user experience ### Manish Verma,Former Development Lead\\n## What sets our AI-enhanced white label video platform apart Q-Consultation takes your business consultations to the next level by integrating Open AI models including ChatGPT, the powerful AI assistant Unlock a range of advanced features that revolutionize the way you connect with your clients #### Contextual assistance\\nAI provides real-time contextual assistance during online video consultations It can help users find relevant information, answer frequently asked questions, or offer suggestions based on the ongoing conversation #### Local Knowledge Expert\\nUpload company documents and URLs into the[SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)and create an in-app knowledge bot that knows everything about your specific your case #### Call summary\\nSaving time & resources, AI can create an automatic summary from a video recording, highlighting a list of action points and serving as a valuable virtual assistant [Request a Demo](#contact-us)\\n## Why do businesses choose our online video platform #### Ready to Go Developing applications from scratch is costly & time consuming License our ready application now #### Embeddable\\nCan be integrated into your existing software platform, embedded into your website or app, and hosted in your preferred domain #### Compliant\\nCompatible by design with most compliance regulations including HIPAA, PIPEDA, and GDPR\",\n", + " \"#### Scalable\\nBuilt on the QuickBlox platform, our solution is fully scalable to adapt to your changing business needs #### Customizable\\nCustomize the app to suit your company brand and specific use case to create the user experience you want #### Secure\\nCustomer data and communication is encrypted and secure Our solution can be deployed in your own cloud infrastructure for added control #### Cross Platform\\nA web application that is adaptable to mobile web browsers so that it can work on iOS and Android #### AI Integrated\\nStay ahead of the competition with cutting-edge technology AI enhanced video consultation demonstrates your commitment to innovation #### Flexible Pricing & Support\\nWe offer several pricing models based on usage and business needs Q\\u2011Consultation is offered as a managed service and is bundled with QuickBlox support and services ## Looking for a free white label video solution We offer Q-Consultation Lite, open-source code that is freely available to implement and customize today at no cost [Try Q-Consultation Lite](https://quickblox.com/products/q-consultation/open-source/)\\n## Private Video Consultation for Multiple Use Cases\\n[\\n### Healthcare and HealthTech\\n](https://quickblox.com/products/q-consultation/telehealth-app/)[\\n### Customer Support\\n](https://quickblox.com/products/q-consultation/customer-support-app/)[\\n### HR & Recruitment\\n](https://quickblox.com/products/q-consultation/recruitment-app/)[\\n### Banking & Finance\\n](https://quickblox.com/products/q-consultation/finance-app/)[\\n### Operator Driven Chat\\n](https://quickblox.com/products/q-consultation/social-app/)\\n## Create a virtual meeting room experience that works on any mobile device and the web ### Communication features\\n* Real-time Chat & Messaging\\n* Video & audio calling\\n* File sharing\\n* Call recording\\n* Camera Input selection\\n* Customizable data capture forms\\n* Private chat rooms\\n### User management features\\n* User authentication\\n* Real-time customer queue\\n* Virtual waiting & meeting rooms\\n* Customer and provider profiles\\n* Invitation sharing by link & text\\n* Capture user data, add, share, send notes, and share files\\n* Message and call history\\n* Appointment scheduler\\n[Ask About our Chat-Only Version](#contact-us)\\n## Interested in an enterprise-ready white-label video consultation solution Supercharge your client consultations with these additional services for Enterprise\\n#### Professional Services\\nCustom functionality modifications are available by the Quickblox professional services team #### Service Management & DevOps\\nHybrid, on\\u2011premise and internal deployment can also be managed by the QuickBlox team, if needed\",\n", + " \"#### System Integration\\nBackend API & 3rd\\u2011party integrations can be developed for your use case to enable seamless interoperability ## Are you in need of a white-label video consultation solution withinstant messaging ## Ready to get started Book a free call to request a demo or to discuss how Q\\u2011Consultation can serve your business needs ## Frequently Asked Questions\\n### What is white label video conferencing White label video conferencing refers to a software solution that is developed by one company but is rebranded and offered by another company as if it were their own product While QuickBlox has built the underlying technology and infrastructure of Q-Consultation, we invite our customers to offer our video conferencing services to their own customers under their own brand name and logo ### What are the benefits of using a white label video conferencing solution with a Chat API A Chat API allows users to engage in[real-time text-based conversations](https://quickblox.com/blog/real-time-communication-and-the-rise-of-neobanks/)alongside video consultations This can be valuable for sending text messages, sharing links or documents, asking quick questions, or providing additional context during the consultation ### Do I need technical expertise to set up and manage a white label video conferencing platform QuickBlox\\u2019s white label video consultation solution is designed to accommodate different levels of technical expertise by offering a range of options, from open source code that allows for extensive customization to a more turnkey and fully managed system ### Is white label video conferencing secure Q-Consultation is built on QuickBlox\\u2019s robust communication platform and offers a secure white label video conferencing solution All customer data and communication is encrypted and secure, and the solution can be deployed in your own cloud infrastructure for added control\",\n", + " \"### Is white label video conferencing suitable for remote work White label video conferencing is well-suited for remote work Q-Consultation enables remote teams to conduct seamless virtual meetings, share screens and documents, and maintain secure communication, fostering collaboration regardless of physical location ### Can I customize the white label video conferencing solution to match my brand Q-Consultation offers extensive customization options to align the platform with your brand and your specific needs You can alter the name and logo, the UI colors and fonts, and customize the text throughout, ensuring that the platform carries your brand identity QuickBlox allows you to use a custom domain, reinforcing your brand\\u2019s presence by incorporating it into the platform\\u2019s web address #### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"### Ross Sommers,MD Founder\\nI integrated Q-Consultation into a Hospital\\u2019s EHR system to provide real-time video communication for doctors working with patients in acute care We were able to deploy the software in our cloud and deliver new functionality to create a better user experience ### Manish Verma,Former Development Lead\\n## What sets our AI-enhanced white label video platform apart Q-Consultation takes your business consultations to the next level by integrating Open AI models including ChatGPT, the powerful AI assistant Unlock a range of advanced features that revolutionize the way you connect with your clients #### Contextual assistance\\nAI provides real-time contextual assistance during online video consultations It can help users find relevant information, answer frequently asked questions, or offer suggestions based on the ongoing conversation #### Local Knowledge Expert\\nUpload company documents and URLs into the[SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)and create an in-app knowledge bot that knows everything about your specific your case #### Call summary\\nSaving time & resources, AI can create an automatic summary from a video recording, highlighting a list of action points and serving as a valuable virtual assistant [Request a Demo](#contact-us)\\n## Why do businesses choose our online video platform #### Ready to Go Developing applications from scratch is costly & time consuming License our ready application now #### Embeddable\\nCan be integrated into your existing software platform, embedded into your website or app, and hosted in your preferred domain #### Compliant\\nCompatible by design with most compliance regulations including HIPAA, PIPEDA, and GDPR\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 25 Type: step\n", + "output: {\n", + " \"documents\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# White Label Video Consultation Solution for Your Business\\nYour virtual room application with private messaging, integrated with OpenAI Q-Consultation is an AI enhanced video calling solution that provides a secure means to hold private meetings via video and chat With file sharing, scheduling, and a host of user management features [Contact us](#contact-us)\\n## How does our customizable video software adapt to different use cases * #### Healthcare and HealthTech\\nManage patient appointments remotely, exchange secure messages, share photos & videos, and provide HIPAA compliant video visits [Learn more](https://quickblox.com/products/q-consultation/telehealth-app/)\\n* #### HR & Recruitment\\nInterview large numbers of candidates with queue management tools and private video consultation and hire people remotely [Learn more](https://quickblox.com/products/q-consultation/recruitment-app/)\\n* #### Banking & Finance\\nConsult with clients on a secure video consultation platform hosted within your own cloud infrastructure to ensure the highest level of data security [Learn more](https://quickblox.com/products/q-consultation/finance-app/)\\n* #### Customer Support\\nOffer customers a personal touch by providing technical support and customer care via private online consultation [Learn more](https://quickblox.com/products/q-consultation/customer-support-app/)\\n* #### Operator Driven Chat\\nEnable operators to seamlessly connect with multiple online participants in private chat rooms [Learn more](https://quickblox.com/products/q-consultation/social-app/)\\n* #### E-Commerce\\nEffortlessly guide customers through a purchase with in\\u2011person sales and product demonstrations via remote video consultation * #### Education & Coaching\\nUse a fully\\u2011featured virtual appointment room to consult with students any time you want ## Need white label video software for your business [Tell us about your use case](#contact-us)\\n## What our Customers Say\\n1 2 Using Q-Consultation we were able to set up a secure communication command center to monitor pediatric patients, in weeks not months, This software allows us to provide HIPAA compliant communication between doctors and patients regarding the health of their child\",\n", + " \"### Ross Sommers,MD Founder\\nI integrated Q-Consultation into a Hospital\\u2019s EHR system to provide real-time video communication for doctors working with patients in acute care We were able to deploy the software in our cloud and deliver new functionality to create a better user experience ### Manish Verma,Former Development Lead\\n## What sets our AI-enhanced white label video platform apart Q-Consultation takes your business consultations to the next level by integrating Open AI models including ChatGPT, the powerful AI assistant Unlock a range of advanced features that revolutionize the way you connect with your clients #### Contextual assistance\\nAI provides real-time contextual assistance during online video consultations It can help users find relevant information, answer frequently asked questions, or offer suggestions based on the ongoing conversation #### Local Knowledge Expert\\nUpload company documents and URLs into the[SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)and create an in-app knowledge bot that knows everything about your specific your case #### Call summary\\nSaving time & resources, AI can create an automatic summary from a video recording, highlighting a list of action points and serving as a valuable virtual assistant [Request a Demo](#contact-us)\\n## Why do businesses choose our online video platform #### Ready to Go Developing applications from scratch is costly & time consuming License our ready application now #### Embeddable\\nCan be integrated into your existing software platform, embedded into your website or app, and hosted in your preferred domain #### Compliant\\nCompatible by design with most compliance regulations including HIPAA, PIPEDA, and GDPR\",\n", + " \"#### Scalable\\nBuilt on the QuickBlox platform, our solution is fully scalable to adapt to your changing business needs #### Customizable\\nCustomize the app to suit your company brand and specific use case to create the user experience you want #### Secure\\nCustomer data and communication is encrypted and secure Our solution can be deployed in your own cloud infrastructure for added control #### Cross Platform\\nA web application that is adaptable to mobile web browsers so that it can work on iOS and Android #### AI Integrated\\nStay ahead of the competition with cutting-edge technology AI enhanced video consultation demonstrates your commitment to innovation #### Flexible Pricing & Support\\nWe offer several pricing models based on usage and business needs Q\\u2011Consultation is offered as a managed service and is bundled with QuickBlox support and services ## Looking for a free white label video solution We offer Q-Consultation Lite, open-source code that is freely available to implement and customize today at no cost [Try Q-Consultation Lite](https://quickblox.com/products/q-consultation/open-source/)\\n## Private Video Consultation for Multiple Use Cases\\n[\\n### Healthcare and HealthTech\\n](https://quickblox.com/products/q-consultation/telehealth-app/)[\\n### Customer Support\\n](https://quickblox.com/products/q-consultation/customer-support-app/)[\\n### HR & Recruitment\\n](https://quickblox.com/products/q-consultation/recruitment-app/)[\\n### Banking & Finance\\n](https://quickblox.com/products/q-consultation/finance-app/)[\\n### Operator Driven Chat\\n](https://quickblox.com/products/q-consultation/social-app/)\\n## Create a virtual meeting room experience that works on any mobile device and the web ### Communication features\\n* Real-time Chat & Messaging\\n* Video & audio calling\\n* File sharing\\n* Call recording\\n* Camera Input selection\\n* Customizable data capture forms\\n* Private chat rooms\\n### User management features\\n* User authentication\\n* Real-time customer queue\\n* Virtual waiting & meeting rooms\\n* Customer and provider profiles\\n* Invitation sharing by link & text\\n* Capture user data, add, share, send notes, and share files\\n* Message and call history\\n* Appointment scheduler\\n[Ask About our Chat-Only Version](#contact-us)\\n## Interested in an enterprise-ready white-label video consultation solution Supercharge your client consultations with these additional services for Enterprise\\n#### Professional Services\\nCustom functionality modifications are available by the Quickblox professional services team #### Service Management & DevOps\\nHybrid, on\\u2011premise and internal deployment can also be managed by the QuickBlox team, if needed\",\n", + " \"#### System Integration\\nBackend API & 3rd\\u2011party integrations can be developed for your use case to enable seamless interoperability ## Are you in need of a white-label video consultation solution withinstant messaging ## Ready to get started Book a free call to request a demo or to discuss how Q\\u2011Consultation can serve your business needs ## Frequently Asked Questions\\n### What is white label video conferencing White label video conferencing refers to a software solution that is developed by one company but is rebranded and offered by another company as if it were their own product While QuickBlox has built the underlying technology and infrastructure of Q-Consultation, we invite our customers to offer our video conferencing services to their own customers under their own brand name and logo ### What are the benefits of using a white label video conferencing solution with a Chat API A Chat API allows users to engage in[real-time text-based conversations](https://quickblox.com/blog/real-time-communication-and-the-rise-of-neobanks/)alongside video consultations This can be valuable for sending text messages, sharing links or documents, asking quick questions, or providing additional context during the consultation ### Do I need technical expertise to set up and manage a white label video conferencing platform QuickBlox\\u2019s white label video consultation solution is designed to accommodate different levels of technical expertise by offering a range of options, from open source code that allows for extensive customization to a more turnkey and fully managed system ### Is white label video conferencing secure Q-Consultation is built on QuickBlox\\u2019s robust communication platform and offers a secure white label video conferencing solution All customer data and communication is encrypted and secure, and the solution can be deployed in your own cloud infrastructure for added control\",\n", + " \"### Is white label video conferencing suitable for remote work White label video conferencing is well-suited for remote work Q-Consultation enables remote teams to conduct seamless virtual meetings, share screens and documents, and maintain secure communication, fostering collaboration regardless of physical location ### Can I customize the white label video conferencing solution to match my brand Q-Consultation offers extensive customization options to align the platform with your brand and your specific needs You can alter the name and logo, the UI colors and fonts, and customize the text throughout, ensuring that the platform carries your brand identity QuickBlox allows you to use a custom domain, reinforcing your brand\\u2019s presence by incorporating it into the platform\\u2019s web address #### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 26 Type: init_branch\n", + "output: {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# White Label Video Consultation Solution for Your Business\\nYour virtual room application with private messaging, integrated with OpenAI Q-Consultation is an AI enhanced video calling solution that provides a secure means to hold private meetings via video and chat With file sharing, scheduling, and a host of user management features [Contact us](#contact-us)\\n## How does our customizable video software adapt to different use cases * #### Healthcare and HealthTech\\nManage patient appointments remotely, exchange secure messages, share photos & videos, and provide HIPAA compliant video visits [Learn more](https://quickblox.com/products/q-consultation/telehealth-app/)\\n* #### HR & Recruitment\\nInterview large numbers of candidates with queue management tools and private video consultation and hire people remotely [Learn more](https://quickblox.com/products/q-consultation/recruitment-app/)\\n* #### Banking & Finance\\nConsult with clients on a secure video consultation platform hosted within your own cloud infrastructure to ensure the highest level of data security [Learn more](https://quickblox.com/products/q-consultation/finance-app/)\\n* #### Customer Support\\nOffer customers a personal touch by providing technical support and customer care via private online consultation [Learn more](https://quickblox.com/products/q-consultation/customer-support-app/)\\n* #### Operator Driven Chat\\nEnable operators to seamlessly connect with multiple online participants in private chat rooms [Learn more](https://quickblox.com/products/q-consultation/social-app/)\\n* #### E-Commerce\\nEffortlessly guide customers through a purchase with in\\u2011person sales and product demonstrations via remote video consultation * #### Education & Coaching\\nUse a fully\\u2011featured virtual appointment room to consult with students any time you want ## Need white label video software for your business [Tell us about your use case](#contact-us)\\n## What our Customers Say\\n1 2 Using Q-Consultation we were able to set up a secure communication command center to monitor pediatric patients, in weeks not months, This software allows us to provide HIPAA compliant communication between doctors and patients regarding the health of their child\",\n", + " \"### Ross Sommers,MD Founder\\nI integrated Q-Consultation into a Hospital\\u2019s EHR system to provide real-time video communication for doctors working with patients in acute care We were able to deploy the software in our cloud and deliver new functionality to create a better user experience ### Manish Verma,Former Development Lead\\n## What sets our AI-enhanced white label video platform apart Q-Consultation takes your business consultations to the next level by integrating Open AI models including ChatGPT, the powerful AI assistant Unlock a range of advanced features that revolutionize the way you connect with your clients #### Contextual assistance\\nAI provides real-time contextual assistance during online video consultations It can help users find relevant information, answer frequently asked questions, or offer suggestions based on the ongoing conversation #### Local Knowledge Expert\\nUpload company documents and URLs into the[SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)and create an in-app knowledge bot that knows everything about your specific your case #### Call summary\\nSaving time & resources, AI can create an automatic summary from a video recording, highlighting a list of action points and serving as a valuable virtual assistant [Request a Demo](#contact-us)\\n## Why do businesses choose our online video platform #### Ready to Go Developing applications from scratch is costly & time consuming License our ready application now #### Embeddable\\nCan be integrated into your existing software platform, embedded into your website or app, and hosted in your preferred domain #### Compliant\\nCompatible by design with most compliance regulations including HIPAA, PIPEDA, and GDPR\",\n", + " \"#### Scalable\\nBuilt on the QuickBlox platform, our solution is fully scalable to adapt to your changing business needs #### Customizable\\nCustomize the app to suit your company brand and specific use case to create the user experience you want #### Secure\\nCustomer data and communication is encrypted and secure Our solution can be deployed in your own cloud infrastructure for added control #### Cross Platform\\nA web application that is adaptable to mobile web browsers so that it can work on iOS and Android #### AI Integrated\\nStay ahead of the competition with cutting-edge technology AI enhanced video consultation demonstrates your commitment to innovation #### Flexible Pricing & Support\\nWe offer several pricing models based on usage and business needs Q\\u2011Consultation is offered as a managed service and is bundled with QuickBlox support and services ## Looking for a free white label video solution We offer Q-Consultation Lite, open-source code that is freely available to implement and customize today at no cost [Try Q-Consultation Lite](https://quickblox.com/products/q-consultation/open-source/)\\n## Private Video Consultation for Multiple Use Cases\\n[\\n### Healthcare and HealthTech\\n](https://quickblox.com/products/q-consultation/telehealth-app/)[\\n### Customer Support\\n](https://quickblox.com/products/q-consultation/customer-support-app/)[\\n### HR & Recruitment\\n](https://quickblox.com/products/q-consultation/recruitment-app/)[\\n### Banking & Finance\\n](https://quickblox.com/products/q-consultation/finance-app/)[\\n### Operator Driven Chat\\n](https://quickblox.com/products/q-consultation/social-app/)\\n## Create a virtual meeting room experience that works on any mobile device and the web ### Communication features\\n* Real-time Chat & Messaging\\n* Video & audio calling\\n* File sharing\\n* Call recording\\n* Camera Input selection\\n* Customizable data capture forms\\n* Private chat rooms\\n### User management features\\n* User authentication\\n* Real-time customer queue\\n* Virtual waiting & meeting rooms\\n* Customer and provider profiles\\n* Invitation sharing by link & text\\n* Capture user data, add, share, send notes, and share files\\n* Message and call history\\n* Appointment scheduler\\n[Ask About our Chat-Only Version](#contact-us)\\n## Interested in an enterprise-ready white-label video consultation solution Supercharge your client consultations with these additional services for Enterprise\\n#### Professional Services\\nCustom functionality modifications are available by the Quickblox professional services team #### Service Management & DevOps\\nHybrid, on\\u2011premise and internal deployment can also be managed by the QuickBlox team, if needed\",\n", + " \"#### System Integration\\nBackend API & 3rd\\u2011party integrations can be developed for your use case to enable seamless interoperability ## Are you in need of a white-label video consultation solution withinstant messaging ## Ready to get started Book a free call to request a demo or to discuss how Q\\u2011Consultation can serve your business needs ## Frequently Asked Questions\\n### What is white label video conferencing White label video conferencing refers to a software solution that is developed by one company but is rebranded and offered by another company as if it were their own product While QuickBlox has built the underlying technology and infrastructure of Q-Consultation, we invite our customers to offer our video conferencing services to their own customers under their own brand name and logo ### What are the benefits of using a white label video conferencing solution with a Chat API A Chat API allows users to engage in[real-time text-based conversations](https://quickblox.com/blog/real-time-communication-and-the-rise-of-neobanks/)alongside video consultations This can be valuable for sending text messages, sharing links or documents, asking quick questions, or providing additional context during the consultation ### Do I need technical expertise to set up and manage a white label video conferencing platform QuickBlox\\u2019s white label video consultation solution is designed to accommodate different levels of technical expertise by offering a range of options, from open source code that allows for extensive customization to a more turnkey and fully managed system ### Is white label video conferencing secure Q-Consultation is built on QuickBlox\\u2019s robust communication platform and offers a secure white label video conferencing solution All customer data and communication is encrypted and secure, and the solution can be deployed in your own cloud infrastructure for added control\",\n", + " \"### Is white label video conferencing suitable for remote work White label video conferencing is well-suited for remote work Q-Consultation enables remote teams to conduct seamless virtual meetings, share screens and documents, and maintain secure communication, fostering collaboration regardless of physical location ### Can I customize the white label video conferencing solution to match my brand Q-Consultation offers extensive customization options to align the platform with your brand and your specific needs You can alter the name and logo, the UI colors and fonts, and customize the text throughout, ensuring that the platform carries your brand identity QuickBlox allows you to use a custom domain, reinforcing your brand\\u2019s presence by incorporating it into the platform\\u2019s web address #### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 27 Type: step\n", + "output: {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# White Label Video Consultation Solution for Your Business\\nYour virtual room application with private messaging, integrated with OpenAI Q-Consultation is an AI enhanced video calling solution that provides a secure means to hold private meetings via video and chat With file sharing, scheduling, and a host of user management features [Contact us](#contact-us)\\n## How does our customizable video software adapt to different use cases * #### Healthcare and HealthTech\\nManage patient appointments remotely, exchange secure messages, share photos & videos, and provide HIPAA compliant video visits [Learn more](https://quickblox.com/products/q-consultation/telehealth-app/)\\n* #### HR & Recruitment\\nInterview large numbers of candidates with queue management tools and private video consultation and hire people remotely [Learn more](https://quickblox.com/products/q-consultation/recruitment-app/)\\n* #### Banking & Finance\\nConsult with clients on a secure video consultation platform hosted within your own cloud infrastructure to ensure the highest level of data security [Learn more](https://quickblox.com/products/q-consultation/finance-app/)\\n* #### Customer Support\\nOffer customers a personal touch by providing technical support and customer care via private online consultation [Learn more](https://quickblox.com/products/q-consultation/customer-support-app/)\\n* #### Operator Driven Chat\\nEnable operators to seamlessly connect with multiple online participants in private chat rooms [Learn more](https://quickblox.com/products/q-consultation/social-app/)\\n* #### E-Commerce\\nEffortlessly guide customers through a purchase with in\\u2011person sales and product demonstrations via remote video consultation * #### Education & Coaching\\nUse a fully\\u2011featured virtual appointment room to consult with students any time you want ## Need white label video software for your business [Tell us about your use case](#contact-us)\\n## What our Customers Say\\n1 2 Using Q-Consultation we were able to set up a secure communication command center to monitor pediatric patients, in weeks not months, This software allows us to provide HIPAA compliant communication between doctors and patients regarding the health of their child\",\n", + " \"### Ross Sommers,MD Founder\\nI integrated Q-Consultation into a Hospital\\u2019s EHR system to provide real-time video communication for doctors working with patients in acute care We were able to deploy the software in our cloud and deliver new functionality to create a better user experience ### Manish Verma,Former Development Lead\\n## What sets our AI-enhanced white label video platform apart Q-Consultation takes your business consultations to the next level by integrating Open AI models including ChatGPT, the powerful AI assistant Unlock a range of advanced features that revolutionize the way you connect with your clients #### Contextual assistance\\nAI provides real-time contextual assistance during online video consultations It can help users find relevant information, answer frequently asked questions, or offer suggestions based on the ongoing conversation #### Local Knowledge Expert\\nUpload company documents and URLs into the[SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)and create an in-app knowledge bot that knows everything about your specific your case #### Call summary\\nSaving time & resources, AI can create an automatic summary from a video recording, highlighting a list of action points and serving as a valuable virtual assistant [Request a Demo](#contact-us)\\n## Why do businesses choose our online video platform #### Ready to Go Developing applications from scratch is costly & time consuming License our ready application now #### Embeddable\\nCan be integrated into your existing software platform, embedded into your website or app, and hosted in your preferred domain #### Compliant\\nCompatible by design with most compliance regulations including HIPAA, PIPEDA, and GDPR\",\n", + " \"#### Scalable\\nBuilt on the QuickBlox platform, our solution is fully scalable to adapt to your changing business needs #### Customizable\\nCustomize the app to suit your company brand and specific use case to create the user experience you want #### Secure\\nCustomer data and communication is encrypted and secure Our solution can be deployed in your own cloud infrastructure for added control #### Cross Platform\\nA web application that is adaptable to mobile web browsers so that it can work on iOS and Android #### AI Integrated\\nStay ahead of the competition with cutting-edge technology AI enhanced video consultation demonstrates your commitment to innovation #### Flexible Pricing & Support\\nWe offer several pricing models based on usage and business needs Q\\u2011Consultation is offered as a managed service and is bundled with QuickBlox support and services ## Looking for a free white label video solution We offer Q-Consultation Lite, open-source code that is freely available to implement and customize today at no cost [Try Q-Consultation Lite](https://quickblox.com/products/q-consultation/open-source/)\\n## Private Video Consultation for Multiple Use Cases\\n[\\n### Healthcare and HealthTech\\n](https://quickblox.com/products/q-consultation/telehealth-app/)[\\n### Customer Support\\n](https://quickblox.com/products/q-consultation/customer-support-app/)[\\n### HR & Recruitment\\n](https://quickblox.com/products/q-consultation/recruitment-app/)[\\n### Banking & Finance\\n](https://quickblox.com/products/q-consultation/finance-app/)[\\n### Operator Driven Chat\\n](https://quickblox.com/products/q-consultation/social-app/)\\n## Create a virtual meeting room experience that works on any mobile device and the web ### Communication features\\n* Real-time Chat & Messaging\\n* Video & audio calling\\n* File sharing\\n* Call recording\\n* Camera Input selection\\n* Customizable data capture forms\\n* Private chat rooms\\n### User management features\\n* User authentication\\n* Real-time customer queue\\n* Virtual waiting & meeting rooms\\n* Customer and provider profiles\\n* Invitation sharing by link & text\\n* Capture user data, add, share, send notes, and share files\\n* Message and call history\\n* Appointment scheduler\\n[Ask About our Chat-Only Version](#contact-us)\\n## Interested in an enterprise-ready white-label video consultation solution Supercharge your client consultations with these additional services for Enterprise\\n#### Professional Services\\nCustom functionality modifications are available by the Quickblox professional services team #### Service Management & DevOps\\nHybrid, on\\u2011premise and internal deployment can also be managed by the QuickBlox team, if needed\",\n", + " \"#### System Integration\\nBackend API & 3rd\\u2011party integrations can be developed for your use case to enable seamless interoperability ## Are you in need of a white-label video consultation solution withinstant messaging ## Ready to get started Book a free call to request a demo or to discuss how Q\\u2011Consultation can serve your business needs ## Frequently Asked Questions\\n### What is white label video conferencing White label video conferencing refers to a software solution that is developed by one company but is rebranded and offered by another company as if it were their own product While QuickBlox has built the underlying technology and infrastructure of Q-Consultation, we invite our customers to offer our video conferencing services to their own customers under their own brand name and logo ### What are the benefits of using a white label video conferencing solution with a Chat API A Chat API allows users to engage in[real-time text-based conversations](https://quickblox.com/blog/real-time-communication-and-the-rise-of-neobanks/)alongside video consultations This can be valuable for sending text messages, sharing links or documents, asking quick questions, or providing additional context during the consultation ### Do I need technical expertise to set up and manage a white label video conferencing platform QuickBlox\\u2019s white label video consultation solution is designed to accommodate different levels of technical expertise by offering a range of options, from open source code that allows for extensive customization to a more turnkey and fully managed system ### Is white label video conferencing secure Q-Consultation is built on QuickBlox\\u2019s robust communication platform and offers a secure white label video conferencing solution All customer data and communication is encrypted and secure, and the solution can be deployed in your own cloud infrastructure for added control\",\n", + " \"### Is white label video conferencing suitable for remote work White label video conferencing is well-suited for remote work Q-Consultation enables remote teams to conduct seamless virtual meetings, share screens and documents, and maintain secure communication, fostering collaboration regardless of physical location ### Can I customize the white label video conferencing solution to match my brand Q-Consultation offers extensive customization options to align the platform with your brand and your specific needs You can alter the name and logo, the UI colors and fonts, and customize the text throughout, ensuring that the platform carries your brand identity QuickBlox allows you to use a custom domain, reinforcing your brand\\u2019s presence by incorporating it into the platform\\u2019s web address #### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 28 Type: init_branch\n", + "output: {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# White Label Video Consultation Solution for Your Business\\nYour virtual room application with private messaging, integrated with OpenAI Q-Consultation is an AI enhanced video calling solution that provides a secure means to hold private meetings via video and chat With file sharing, scheduling, and a host of user management features [Contact us](#contact-us)\\n## How does our customizable video software adapt to different use cases * #### Healthcare and HealthTech\\nManage patient appointments remotely, exchange secure messages, share photos & videos, and provide HIPAA compliant video visits [Learn more](https://quickblox.com/products/q-consultation/telehealth-app/)\\n* #### HR & Recruitment\\nInterview large numbers of candidates with queue management tools and private video consultation and hire people remotely [Learn more](https://quickblox.com/products/q-consultation/recruitment-app/)\\n* #### Banking & Finance\\nConsult with clients on a secure video consultation platform hosted within your own cloud infrastructure to ensure the highest level of data security [Learn more](https://quickblox.com/products/q-consultation/finance-app/)\\n* #### Customer Support\\nOffer customers a personal touch by providing technical support and customer care via private online consultation [Learn more](https://quickblox.com/products/q-consultation/customer-support-app/)\\n* #### Operator Driven Chat\\nEnable operators to seamlessly connect with multiple online participants in private chat rooms [Learn more](https://quickblox.com/products/q-consultation/social-app/)\\n* #### E-Commerce\\nEffortlessly guide customers through a purchase with in\\u2011person sales and product demonstrations via remote video consultation * #### Education & Coaching\\nUse a fully\\u2011featured virtual appointment room to consult with students any time you want ## Need white label video software for your business [Tell us about your use case](#contact-us)\\n## What our Customers Say\\n1 2 Using Q-Consultation we were able to set up a secure communication command center to monitor pediatric patients, in weeks not months, This software allows us to provide HIPAA compliant communication between doctors and patients regarding the health of their child\",\n", + " \"### Ross Sommers,MD Founder\\nI integrated Q-Consultation into a Hospital\\u2019s EHR system to provide real-time video communication for doctors working with patients in acute care We were able to deploy the software in our cloud and deliver new functionality to create a better user experience ### Manish Verma,Former Development Lead\\n## What sets our AI-enhanced white label video platform apart Q-Consultation takes your business consultations to the next level by integrating Open AI models including ChatGPT, the powerful AI assistant Unlock a range of advanced features that revolutionize the way you connect with your clients #### Contextual assistance\\nAI provides real-time contextual assistance during online video consultations It can help users find relevant information, answer frequently asked questions, or offer suggestions based on the ongoing conversation #### Local Knowledge Expert\\nUpload company documents and URLs into the[SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)and create an in-app knowledge bot that knows everything about your specific your case #### Call summary\\nSaving time & resources, AI can create an automatic summary from a video recording, highlighting a list of action points and serving as a valuable virtual assistant [Request a Demo](#contact-us)\\n## Why do businesses choose our online video platform #### Ready to Go Developing applications from scratch is costly & time consuming License our ready application now #### Embeddable\\nCan be integrated into your existing software platform, embedded into your website or app, and hosted in your preferred domain #### Compliant\\nCompatible by design with most compliance regulations including HIPAA, PIPEDA, and GDPR\",\n", + " \"#### Scalable\\nBuilt on the QuickBlox platform, our solution is fully scalable to adapt to your changing business needs #### Customizable\\nCustomize the app to suit your company brand and specific use case to create the user experience you want #### Secure\\nCustomer data and communication is encrypted and secure Our solution can be deployed in your own cloud infrastructure for added control #### Cross Platform\\nA web application that is adaptable to mobile web browsers so that it can work on iOS and Android #### AI Integrated\\nStay ahead of the competition with cutting-edge technology AI enhanced video consultation demonstrates your commitment to innovation #### Flexible Pricing & Support\\nWe offer several pricing models based on usage and business needs Q\\u2011Consultation is offered as a managed service and is bundled with QuickBlox support and services ## Looking for a free white label video solution We offer Q-Consultation Lite, open-source code that is freely available to implement and customize today at no cost [Try Q-Consultation Lite](https://quickblox.com/products/q-consultation/open-source/)\\n## Private Video Consultation for Multiple Use Cases\\n[\\n### Healthcare and HealthTech\\n](https://quickblox.com/products/q-consultation/telehealth-app/)[\\n### Customer Support\\n](https://quickblox.com/products/q-consultation/customer-support-app/)[\\n### HR & Recruitment\\n](https://quickblox.com/products/q-consultation/recruitment-app/)[\\n### Banking & Finance\\n](https://quickblox.com/products/q-consultation/finance-app/)[\\n### Operator Driven Chat\\n](https://quickblox.com/products/q-consultation/social-app/)\\n## Create a virtual meeting room experience that works on any mobile device and the web ### Communication features\\n* Real-time Chat & Messaging\\n* Video & audio calling\\n* File sharing\\n* Call recording\\n* Camera Input selection\\n* Customizable data capture forms\\n* Private chat rooms\\n### User management features\\n* User authentication\\n* Real-time customer queue\\n* Virtual waiting & meeting rooms\\n* Customer and provider profiles\\n* Invitation sharing by link & text\\n* Capture user data, add, share, send notes, and share files\\n* Message and call history\\n* Appointment scheduler\\n[Ask About our Chat-Only Version](#contact-us)\\n## Interested in an enterprise-ready white-label video consultation solution Supercharge your client consultations with these additional services for Enterprise\\n#### Professional Services\\nCustom functionality modifications are available by the Quickblox professional services team #### Service Management & DevOps\\nHybrid, on\\u2011premise and internal deployment can also be managed by the QuickBlox team, if needed\",\n", + " \"#### System Integration\\nBackend API & 3rd\\u2011party integrations can be developed for your use case to enable seamless interoperability ## Are you in need of a white-label video consultation solution withinstant messaging ## Ready to get started Book a free call to request a demo or to discuss how Q\\u2011Consultation can serve your business needs ## Frequently Asked Questions\\n### What is white label video conferencing White label video conferencing refers to a software solution that is developed by one company but is rebranded and offered by another company as if it were their own product While QuickBlox has built the underlying technology and infrastructure of Q-Consultation, we invite our customers to offer our video conferencing services to their own customers under their own brand name and logo ### What are the benefits of using a white label video conferencing solution with a Chat API A Chat API allows users to engage in[real-time text-based conversations](https://quickblox.com/blog/real-time-communication-and-the-rise-of-neobanks/)alongside video consultations This can be valuable for sending text messages, sharing links or documents, asking quick questions, or providing additional context during the consultation ### Do I need technical expertise to set up and manage a white label video conferencing platform QuickBlox\\u2019s white label video consultation solution is designed to accommodate different levels of technical expertise by offering a range of options, from open source code that allows for extensive customization to a more turnkey and fully managed system ### Is white label video conferencing secure Q-Consultation is built on QuickBlox\\u2019s robust communication platform and offers a secure white label video conferencing solution All customer data and communication is encrypted and secure, and the solution can be deployed in your own cloud infrastructure for added control\",\n", + " \"### Is white label video conferencing suitable for remote work White label video conferencing is well-suited for remote work Q-Consultation enables remote teams to conduct seamless virtual meetings, share screens and documents, and maintain secure communication, fostering collaboration regardless of physical location ### Can I customize the white label video conferencing solution to match my brand Q-Consultation offers extensive customization options to align the platform with your brand and your specific needs You can alter the name and logo, the UI colors and fonts, and customize the text throughout, ensuring that the platform carries your brand identity QuickBlox allows you to use a custom domain, reinforcing your brand\\u2019s presence by incorporating it into the platform\\u2019s web address #### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"costs\": {\n", + " \"ai_cost\": 0,\n", + " \"bytes_transferred_cost\": 0,\n", + " \"compute_cost\": 0.0001,\n", + " \"file_cost\": 0.0002,\n", + " \"total_cost\": 0.0004,\n", + " \"transform_cost\": 0.0001\n", + " },\n", + " \"error\": null,\n", + " \"status\": 200,\n", + " \"url\": \"https://quickblox.com/products/q-consultation/\"\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 29 Type: finish_branch\n", + "output: [\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:48.382252Z\",\n", + " \"id\": \"052ee230-7431-4405-8f2c-bcc429c72121\",\n", + " \"jobs\": [\n", + " \"c4867237-703b-490b-b929-c2105c15f4aa\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:48.426000Z\",\n", + " \"id\": \"784f5b53-5d4c-49ff-b558-3c8d5d4c18b3\",\n", + " \"jobs\": [\n", + " \"bacf77d3-a42c-4df1-a42f-201ff114af0e\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:48.367449Z\",\n", + " \"id\": \"61af7c00-a48a-4c28-8446-857799d26899\",\n", + " \"jobs\": [\n", + " \"2cdfa970-e8f7-49e1-99d1-2d3feb192846\"\n", + " ]\n", + " }\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 30 Type: finish_branch\n", + "output: [\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:48.382252Z\",\n", + " \"id\": \"052ee230-7431-4405-8f2c-bcc429c72121\",\n", + " \"jobs\": [\n", + " \"c4867237-703b-490b-b929-c2105c15f4aa\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:48.426000Z\",\n", + " \"id\": \"784f5b53-5d4c-49ff-b558-3c8d5d4c18b3\",\n", + " \"jobs\": [\n", + " \"bacf77d3-a42c-4df1-a42f-201ff114af0e\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:48.367449Z\",\n", + " \"id\": \"61af7c00-a48a-4c28-8446-857799d26899\",\n", + " \"jobs\": [\n", + " \"2cdfa970-e8f7-49e1-99d1-2d3feb192846\"\n", + " ]\n", + " }\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 31 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:48.382252Z\",\n", + " \"id\": \"052ee230-7431-4405-8f2c-bcc429c72121\",\n", + " \"jobs\": [\n", + " \"c4867237-703b-490b-b929-c2105c15f4aa\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 32 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:48.426000Z\",\n", + " \"id\": \"784f5b53-5d4c-49ff-b558-3c8d5d4c18b3\",\n", + " \"jobs\": [\n", + " \"bacf77d3-a42c-4df1-a42f-201ff114af0e\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 33 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:48.367449Z\",\n", + " \"id\": \"61af7c00-a48a-4c28-8446-857799d26899\",\n", + " \"jobs\": [\n", + " \"2cdfa970-e8f7-49e1-99d1-2d3feb192846\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 34 Type: init_branch\n", + "output: \"On‑‑premise installation guarantees the bank’’s complete ownership and control ofdata and communication aswell astheir compliance with data processing requirements Ifyou operate ina**country with strong data protection laws**orgovernment oversight build anon‑‑premise messaging app toensure all data remains within your country’’s borders and out‑‑of‑‑reach ofthird parties Enable your users tosend text, voice messages, and media rich files with acommunication solution that stores data locally and complies with legal requirements ## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[HIPAA Compliant Hosting](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n## Frequently Asked Questions\\n### What ismeant byon\\u2011premises On-premises (also referred toasonpremise and onprem) iswhen software isdeployed and managed from within acompany, onthe company\\u2019s own hardware and physical server, data center, and/or virtual machine ### Why choose on\\u2011premises Ifthe need for data control and security isamajor concern for your company, and/or ifyour company already has their own private server infrastructure you may want tochoose anon\\u2011premises solution This deployment model removes the need for any third party service provider, enabling anorganization toenjoy sole ownership and control oftheir data ### Who chooses on\\u2011premises Government agencies and large corporations, like finance and healthcare, that deal with highly sensitive information, orcountries that have requirements tostore data locally often choose anon\\u2011premises installation See how wehave supportedglobal bankswith anon\\u2011premises solution ### What\\u2019s the difference between on\\u2011premises and private cloud With on\\u2011premises, anenterprise will run software and store data inaninfrastructure located within its own premises With aprivate cloud, anenterprise will run their application inadedicated cloud\\u2011based environment, supplied byathird party Itis \\u2018private\\u2019 because itisadedicated environment with resources provided and customized solely for the needs ofthe enterprise\\nThe chunk is part of a section discussing QuickBlox's on-premises solutions, highlighting benefits for industries with stringent data protection needs, such as banking and healthcare. It contrasts on-premises with cloud hosting, emphasizing data control and regulatory compliance.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 35 Type: init_branch\n", + "output: \"## Additional Resources\\n[Banking](https://quickblox.com/blog/business/banking/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)[Regulations](https://quickblox.com/blog/hosting/regulations/)### [On-premises or cloud hosting for banking and finance?](https://quickblox.com/blog/on-premises-or-cloud-hosting-for-banking-and-finance/)\\nAnna S 3 Dec 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [On-Premise Vs Cloud Hosting: Frequently Asked Questions](https://quickblox.com/blog/on-premise-vs-cloud-hosting-frequently-asked-questions/)\\nGail M 22 Jul 2022\\n## Ready to get started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\\nThe chunk provides additional resources, product offerings, solutions, enterprise features, developer resources, pricing, and company information related to QuickBlox, a platform offering communication tools and hosting solutions. It highlights specific topics like banking, cloud hosting, and on-premises options, alongside links to relevant documentation, support, and community resources.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 36 Type: init_branch\n", + "output: \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# On‑Premises Solutions for Optimal Privacy\\nDoyou require your own private communication network with high security and/or noaccess tothe cloud oreven the Internet Doyou deal with highly sensitive data that needs tobestored locally Isyour industry tightly regulated and required tofollow compliance Not aproblem QuickBlox on‑‑premises solution can support your needs ## Key Benefits\\nOn‑‑premises installation enables you toenjoy the rich functionality ofQuickBlox software while ensuring the highest level ofsecurity ### Your choice for where data isstored and processed\\nYour data center can belocated wherever you need ### Full server and data control\\nWewill assist with server configuration and administration, but you will enjoy complete control over your system and maintain 100 percent privacy ### Enhanced Security\\nBydeploying our software into your own dedicated server and/or privately owned cloud you remove the need for any third party tohave physical orremote access toyour servers Asyou maintain total control ofyour infrastructure, only you and your recipients can access system data ### Regulatory compliance\\nOn‑‑premises hosting isideally suited tothose that are intightly regulated countries and industries such ashealthcare and finance that are required bylaw tohave their infrastructure hosted locally and/or in\\u0430specific country orgeographic location ## QuickBlox software secure onYour server\\n#### QuickBlox isthe preferred choice for tightly regulated industries and geographies that are required tostore data locally Anon‑‑premise instant messaging platform in**healthcare**ensures that internal communications remain secure and patient trust isenhanced Medical staff and their patients can discuss lab results, diagnosis, and treatment plans via chat orvideo‑‑calling inthe full confidence that the content oftheir private conversations remain secure and protected from interlopers With anon‑‑premise chat solution,**financial advisers**can share documents, send text messages, and provide remote consultations without having toworry about compromising their customer’’s privacy\\nThe document outlines QuickBlox's comprehensive offerings, focusing on communication solutions including SDKs, APIs, and Chat UI Kits for different platforms. It highlights QuickBlox AI features, white-label solutions, industry-specific applications, enterprise services, and hosting options, emphasizing the on-premises solutions for secure and compliant data management, particularly in regulated industries like healthcare and finance.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 37 Type: step\n", + "output: {\n", + " \"final_chunks\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# On‑Premises Solutions for Optimal Privacy\\nDoyou require your own private communication network with high security and/or noaccess tothe cloud oreven the Internet Doyou deal with highly sensitive data that needs tobestored locally Isyour industry tightly regulated and required tofollow compliance Not aproblem QuickBlox on‑‑premises solution can support your needs ## Key Benefits\\nOn‑‑premises installation enables you toenjoy the rich functionality ofQuickBlox software while ensuring the highest level ofsecurity ### Your choice for where data isstored and processed\\nYour data center can belocated wherever you need ### Full server and data control\\nWewill assist with server configuration and administration, but you will enjoy complete control over your system and maintain 100 percent privacy ### Enhanced Security\\nBydeploying our software into your own dedicated server and/or privately owned cloud you remove the need for any third party tohave physical orremote access toyour servers Asyou maintain total control ofyour infrastructure, only you and your recipients can access system data ### Regulatory compliance\\nOn‑‑premises hosting isideally suited tothose that are intightly regulated countries and industries such ashealthcare and finance that are required bylaw tohave their infrastructure hosted locally and/or in\\u0430specific country orgeographic location ## QuickBlox software secure onYour server\\n#### QuickBlox isthe preferred choice for tightly regulated industries and geographies that are required tostore data locally Anon‑‑premise instant messaging platform in**healthcare**ensures that internal communications remain secure and patient trust isenhanced Medical staff and their patients can discuss lab results, diagnosis, and treatment plans via chat orvideo‑‑calling inthe full confidence that the content oftheir private conversations remain secure and protected from interlopers With anon‑‑premise chat solution,**financial advisers**can share documents, send text messages, and provide remote consultations without having toworry about compromising their customer’’s privacy\\nThe document outlines QuickBlox's comprehensive offerings, focusing on communication solutions including SDKs, APIs, and Chat UI Kits for different platforms. It highlights QuickBlox AI features, white-label solutions, industry-specific applications, enterprise services, and hosting options, emphasizing the on-premises solutions for secure and compliant data management, particularly in regulated industries like healthcare and finance.\",\n", + " \"On‑‑premise installation guarantees the bank’’s complete ownership and control ofdata and communication aswell astheir compliance with data processing requirements Ifyou operate ina**country with strong data protection laws**orgovernment oversight build anon‑‑premise messaging app toensure all data remains within your country’’s borders and out‑‑of‑‑reach ofthird parties Enable your users tosend text, voice messages, and media rich files with acommunication solution that stores data locally and complies with legal requirements ## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[HIPAA Compliant Hosting](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n## Frequently Asked Questions\\n### What ismeant byon\\u2011premises On-premises (also referred toasonpremise and onprem) iswhen software isdeployed and managed from within acompany, onthe company\\u2019s own hardware and physical server, data center, and/or virtual machine ### Why choose on\\u2011premises Ifthe need for data control and security isamajor concern for your company, and/or ifyour company already has their own private server infrastructure you may want tochoose anon\\u2011premises solution This deployment model removes the need for any third party service provider, enabling anorganization toenjoy sole ownership and control oftheir data ### Who chooses on\\u2011premises Government agencies and large corporations, like finance and healthcare, that deal with highly sensitive information, orcountries that have requirements tostore data locally often choose anon\\u2011premises installation See how wehave supportedglobal bankswith anon\\u2011premises solution ### What\\u2019s the difference between on\\u2011premises and private cloud With on\\u2011premises, anenterprise will run software and store data inaninfrastructure located within its own premises With aprivate cloud, anenterprise will run their application inadedicated cloud\\u2011based environment, supplied byathird party Itis \\u2018private\\u2019 because itisadedicated environment with resources provided and customized solely for the needs ofthe enterprise\\nThe chunk is part of a section discussing QuickBlox's on-premises solutions, highlighting benefits for industries with stringent data protection needs, such as banking and healthcare. It contrasts on-premises with cloud hosting, emphasizing data control and regulatory compliance.\",\n", + " \"## Additional Resources\\n[Banking](https://quickblox.com/blog/business/banking/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)[Regulations](https://quickblox.com/blog/hosting/regulations/)### [On-premises or cloud hosting for banking and finance?](https://quickblox.com/blog/on-premises-or-cloud-hosting-for-banking-and-finance/)\\nAnna S 3 Dec 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [On-Premise Vs Cloud Hosting: Frequently Asked Questions](https://quickblox.com/blog/on-premise-vs-cloud-hosting-frequently-asked-questions/)\\nGail M 22 Jul 2022\\n## Ready to get started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\\nThe chunk provides additional resources, product offerings, solutions, enterprise features, developer resources, pricing, and company information related to QuickBlox, a platform offering communication tools and hosting solutions. It highlights specific topics like banking, cloud hosting, and on-premises options, alongside links to relevant documentation, support, and community resources.\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 38 Type: step\n", + "output: [\n", + " \"The document outlines QuickBlox's comprehensive offerings, focusing on communication solutions including SDKs, APIs, and Chat UI Kits for different platforms. It highlights QuickBlox AI features, white-label solutions, industry-specific applications, enterprise services, and hosting options, emphasizing the on-premises solutions for secure and compliant data management, particularly in regulated industries like healthcare and finance.\",\n", + " \"The chunk is part of a section discussing QuickBlox's on-premises solutions, highlighting benefits for industries with stringent data protection needs, such as banking and healthcare. It contrasts on-premises with cloud hosting, emphasizing data control and regulatory compliance.\",\n", + " \"The chunk provides additional resources, product offerings, solutions, enterprise features, developer resources, pricing, and company information related to QuickBlox, a platform offering communication tools and hosting solutions. It highlights specific topics like banking, cloud hosting, and on-premises options, alongside links to relevant documentation, support, and community resources.\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 39 Type: finish_branch\n", + "output: \"The chunk provides additional resources, product offerings, solutions, enterprise features, developer resources, pricing, and company information related to QuickBlox, a platform offering communication tools and hosting solutions. It highlights specific topics like banking, cloud hosting, and on-premises options, alongside links to relevant documentation, support, and community resources.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 40 Type: finish_branch\n", + "output: \"The chunk is part of a section discussing QuickBlox's on-premises solutions, highlighting benefits for industries with stringent data protection needs, such as banking and healthcare. It contrasts on-premises with cloud hosting, emphasizing data control and regulatory compliance.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 41 Type: finish_branch\n", + "output: \"The document outlines QuickBlox's comprehensive offerings, focusing on communication solutions including SDKs, APIs, and Chat UI Kits for different platforms. It highlights QuickBlox AI features, white-label solutions, industry-specific applications, enterprise services, and hosting options, emphasizing the on-premises solutions for secure and compliant data management, particularly in regulated industries like healthcare and finance.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 42 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# On‑Premises Solutions for Optimal Privacy\\nDoyou require your own private communication network with high security and/or noaccess tothe cloud oreven the Internet Doyou deal with highly sensitive data that needs tobestored locally Isyour industry tightly regulated and required tofollow compliance Not aproblem QuickBlox on‑‑premises solution can support your needs ## Key Benefits\\nOn‑‑premises installation enables you toenjoy the rich functionality ofQuickBlox software while ensuring the highest level ofsecurity ### Your choice for where data isstored and processed\\nYour data center can belocated wherever you need ### Full server and data control\\nWewill assist with server configuration and administration, but you will enjoy complete control over your system and maintain 100 percent privacy ### Enhanced Security\\nBydeploying our software into your own dedicated server and/or privately owned cloud you remove the need for any third party tohave physical orremote access toyour servers Asyou maintain total control ofyour infrastructure, only you and your recipients can access system data ### Regulatory compliance\\nOn‑‑premises hosting isideally suited tothose that are intightly regulated countries and industries such ashealthcare and finance that are required bylaw tohave their infrastructure hosted locally and/or in\\u0430specific country orgeographic location ## QuickBlox software secure onYour server\\n#### QuickBlox isthe preferred choice for tightly regulated industries and geographies that are required tostore data locally Anon‑‑premise instant messaging platform in**healthcare**ensures that internal communications remain secure and patient trust isenhanced Medical staff and their patients can discuss lab results, diagnosis, and treatment plans via chat orvideo‑‑calling inthe full confidence that the content oftheir private conversations remain secure and protected from interlopers With anon‑‑premise chat solution,**financial advisers**can share documents, send text messages, and provide remote consultations without having toworry about compromising their customer’’s privacy\",\n", + " \"On‑‑premise installation guarantees the bank’’s complete ownership and control ofdata and communication aswell astheir compliance with data processing requirements Ifyou operate ina**country with strong data protection laws**orgovernment oversight build anon‑‑premise messaging app toensure all data remains within your country’’s borders and out‑‑of‑‑reach ofthird parties Enable your users tosend text, voice messages, and media rich files with acommunication solution that stores data locally and complies with legal requirements ## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[HIPAA Compliant Hosting](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n## Frequently Asked Questions\\n### What ismeant byon\\u2011premises On-premises (also referred toasonpremise and onprem) iswhen software isdeployed and managed from within acompany, onthe company\\u2019s own hardware and physical server, data center, and/or virtual machine ### Why choose on\\u2011premises Ifthe need for data control and security isamajor concern for your company, and/or ifyour company already has their own private server infrastructure you may want tochoose anon\\u2011premises solution This deployment model removes the need for any third party service provider, enabling anorganization toenjoy sole ownership and control oftheir data ### Who chooses on\\u2011premises Government agencies and large corporations, like finance and healthcare, that deal with highly sensitive information, orcountries that have requirements tostore data locally often choose anon\\u2011premises installation See how wehave supportedglobal bankswith anon\\u2011premises solution ### What\\u2019s the difference between on\\u2011premises and private cloud With on\\u2011premises, anenterprise will run software and store data inaninfrastructure located within its own premises With aprivate cloud, anenterprise will run their application inadedicated cloud\\u2011based environment, supplied byathird party Itis \\u2018private\\u2019 because itisadedicated environment with resources provided and customized solely for the needs ofthe enterprise\",\n", + " \"## Additional Resources\\n[Banking](https://quickblox.com/blog/business/banking/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)[Regulations](https://quickblox.com/blog/hosting/regulations/)### [On-premises or cloud hosting for banking and finance?](https://quickblox.com/blog/on-premises-or-cloud-hosting-for-banking-and-finance/)\\nAnna S 3 Dec 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [On-Premise Vs Cloud Hosting: Frequently Asked Questions](https://quickblox.com/blog/on-premise-vs-cloud-hosting-frequently-asked-questions/)\\nGail M 22 Jul 2022\\n## Ready to get started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# On‑Premises Solutions for Optimal Privacy\\nDoyou require your own private communication network with high security and/or noaccess tothe cloud oreven the Internet Doyou deal with highly sensitive data that needs tobestored locally Isyour industry tightly regulated and required tofollow compliance Not aproblem QuickBlox on‑‑premises solution can support your needs ## Key Benefits\\nOn‑‑premises installation enables you toenjoy the rich functionality ofQuickBlox software while ensuring the highest level ofsecurity ### Your choice for where data isstored and processed\\nYour data center can belocated wherever you need ### Full server and data control\\nWewill assist with server configuration and administration, but you will enjoy complete control over your system and maintain 100 percent privacy ### Enhanced Security\\nBydeploying our software into your own dedicated server and/or privately owned cloud you remove the need for any third party tohave physical orremote access toyour servers Asyou maintain total control ofyour infrastructure, only you and your recipients can access system data ### Regulatory compliance\\nOn‑‑premises hosting isideally suited tothose that are intightly regulated countries and industries such ashealthcare and finance that are required bylaw tohave their infrastructure hosted locally and/or in\\u0430specific country orgeographic location ## QuickBlox software secure onYour server\\n#### QuickBlox isthe preferred choice for tightly regulated industries and geographies that are required tostore data locally Anon‑‑premise instant messaging platform in**healthcare**ensures that internal communications remain secure and patient trust isenhanced Medical staff and their patients can discuss lab results, diagnosis, and treatment plans via chat orvideo‑‑calling inthe full confidence that the content oftheir private conversations remain secure and protected from interlopers With anon‑‑premise chat solution,**financial advisers**can share documents, send text messages, and provide remote consultations without having toworry about compromising their customer’’s privacy\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 43 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# On‑Premises Solutions for Optimal Privacy\\nDoyou require your own private communication network with high security and/or noaccess tothe cloud oreven the Internet Doyou deal with highly sensitive data that needs tobestored locally Isyour industry tightly regulated and required tofollow compliance Not aproblem QuickBlox on‑‑premises solution can support your needs ## Key Benefits\\nOn‑‑premises installation enables you toenjoy the rich functionality ofQuickBlox software while ensuring the highest level ofsecurity ### Your choice for where data isstored and processed\\nYour data center can belocated wherever you need ### Full server and data control\\nWewill assist with server configuration and administration, but you will enjoy complete control over your system and maintain 100 percent privacy ### Enhanced Security\\nBydeploying our software into your own dedicated server and/or privately owned cloud you remove the need for any third party tohave physical orremote access toyour servers Asyou maintain total control ofyour infrastructure, only you and your recipients can access system data ### Regulatory compliance\\nOn‑‑premises hosting isideally suited tothose that are intightly regulated countries and industries such ashealthcare and finance that are required bylaw tohave their infrastructure hosted locally and/or in\\u0430specific country orgeographic location ## QuickBlox software secure onYour server\\n#### QuickBlox isthe preferred choice for tightly regulated industries and geographies that are required tostore data locally Anon‑‑premise instant messaging platform in**healthcare**ensures that internal communications remain secure and patient trust isenhanced Medical staff and their patients can discuss lab results, diagnosis, and treatment plans via chat orvideo‑‑calling inthe full confidence that the content oftheir private conversations remain secure and protected from interlopers With anon‑‑premise chat solution,**financial advisers**can share documents, send text messages, and provide remote consultations without having toworry about compromising their customer’’s privacy\",\n", + " \"On‑‑premise installation guarantees the bank’’s complete ownership and control ofdata and communication aswell astheir compliance with data processing requirements Ifyou operate ina**country with strong data protection laws**orgovernment oversight build anon‑‑premise messaging app toensure all data remains within your country’’s borders and out‑‑of‑‑reach ofthird parties Enable your users tosend text, voice messages, and media rich files with acommunication solution that stores data locally and complies with legal requirements ## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[HIPAA Compliant Hosting](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n## Frequently Asked Questions\\n### What ismeant byon\\u2011premises On-premises (also referred toasonpremise and onprem) iswhen software isdeployed and managed from within acompany, onthe company\\u2019s own hardware and physical server, data center, and/or virtual machine ### Why choose on\\u2011premises Ifthe need for data control and security isamajor concern for your company, and/or ifyour company already has their own private server infrastructure you may want tochoose anon\\u2011premises solution This deployment model removes the need for any third party service provider, enabling anorganization toenjoy sole ownership and control oftheir data ### Who chooses on\\u2011premises Government agencies and large corporations, like finance and healthcare, that deal with highly sensitive information, orcountries that have requirements tostore data locally often choose anon\\u2011premises installation See how wehave supportedglobal bankswith anon\\u2011premises solution ### What\\u2019s the difference between on\\u2011premises and private cloud With on\\u2011premises, anenterprise will run software and store data inaninfrastructure located within its own premises With aprivate cloud, anenterprise will run their application inadedicated cloud\\u2011based environment, supplied byathird party Itis \\u2018private\\u2019 because itisadedicated environment with resources provided and customized solely for the needs ofthe enterprise\",\n", + " \"## Additional Resources\\n[Banking](https://quickblox.com/blog/business/banking/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)[Regulations](https://quickblox.com/blog/hosting/regulations/)### [On-premises or cloud hosting for banking and finance?](https://quickblox.com/blog/on-premises-or-cloud-hosting-for-banking-and-finance/)\\nAnna S 3 Dec 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [On-Premise Vs Cloud Hosting: Frequently Asked Questions](https://quickblox.com/blog/on-premise-vs-cloud-hosting-frequently-asked-questions/)\\nGail M 22 Jul 2022\\n## Ready to get started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"## Additional Resources\\n[Banking](https://quickblox.com/blog/business/banking/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)[Regulations](https://quickblox.com/blog/hosting/regulations/)### [On-premises or cloud hosting for banking and finance?](https://quickblox.com/blog/on-premises-or-cloud-hosting-for-banking-and-finance/)\\nAnna S 3 Dec 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [On-Premise Vs Cloud Hosting: Frequently Asked Questions](https://quickblox.com/blog/on-premise-vs-cloud-hosting-frequently-asked-questions/)\\nGail M 22 Jul 2022\\n## Ready to get started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 44 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# On‑Premises Solutions for Optimal Privacy\\nDoyou require your own private communication network with high security and/or noaccess tothe cloud oreven the Internet Doyou deal with highly sensitive data that needs tobestored locally Isyour industry tightly regulated and required tofollow compliance Not aproblem QuickBlox on‑‑premises solution can support your needs ## Key Benefits\\nOn‑‑premises installation enables you toenjoy the rich functionality ofQuickBlox software while ensuring the highest level ofsecurity ### Your choice for where data isstored and processed\\nYour data center can belocated wherever you need ### Full server and data control\\nWewill assist with server configuration and administration, but you will enjoy complete control over your system and maintain 100 percent privacy ### Enhanced Security\\nBydeploying our software into your own dedicated server and/or privately owned cloud you remove the need for any third party tohave physical orremote access toyour servers Asyou maintain total control ofyour infrastructure, only you and your recipients can access system data ### Regulatory compliance\\nOn‑‑premises hosting isideally suited tothose that are intightly regulated countries and industries such ashealthcare and finance that are required bylaw tohave their infrastructure hosted locally and/or in\\u0430specific country orgeographic location ## QuickBlox software secure onYour server\\n#### QuickBlox isthe preferred choice for tightly regulated industries and geographies that are required tostore data locally Anon‑‑premise instant messaging platform in**healthcare**ensures that internal communications remain secure and patient trust isenhanced Medical staff and their patients can discuss lab results, diagnosis, and treatment plans via chat orvideo‑‑calling inthe full confidence that the content oftheir private conversations remain secure and protected from interlopers With anon‑‑premise chat solution,**financial advisers**can share documents, send text messages, and provide remote consultations without having toworry about compromising their customer’’s privacy\",\n", + " \"On‑‑premise installation guarantees the bank’’s complete ownership and control ofdata and communication aswell astheir compliance with data processing requirements Ifyou operate ina**country with strong data protection laws**orgovernment oversight build anon‑‑premise messaging app toensure all data remains within your country’’s borders and out‑‑of‑‑reach ofthird parties Enable your users tosend text, voice messages, and media rich files with acommunication solution that stores data locally and complies with legal requirements ## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[HIPAA Compliant Hosting](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n## Frequently Asked Questions\\n### What ismeant byon\\u2011premises On-premises (also referred toasonpremise and onprem) iswhen software isdeployed and managed from within acompany, onthe company\\u2019s own hardware and physical server, data center, and/or virtual machine ### Why choose on\\u2011premises Ifthe need for data control and security isamajor concern for your company, and/or ifyour company already has their own private server infrastructure you may want tochoose anon\\u2011premises solution This deployment model removes the need for any third party service provider, enabling anorganization toenjoy sole ownership and control oftheir data ### Who chooses on\\u2011premises Government agencies and large corporations, like finance and healthcare, that deal with highly sensitive information, orcountries that have requirements tostore data locally often choose anon\\u2011premises installation See how wehave supportedglobal bankswith anon\\u2011premises solution ### What\\u2019s the difference between on\\u2011premises and private cloud With on\\u2011premises, anenterprise will run software and store data inaninfrastructure located within its own premises With aprivate cloud, anenterprise will run their application inadedicated cloud\\u2011based environment, supplied byathird party Itis \\u2018private\\u2019 because itisadedicated environment with resources provided and customized solely for the needs ofthe enterprise\",\n", + " \"## Additional Resources\\n[Banking](https://quickblox.com/blog/business/banking/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)[Regulations](https://quickblox.com/blog/hosting/regulations/)### [On-premises or cloud hosting for banking and finance?](https://quickblox.com/blog/on-premises-or-cloud-hosting-for-banking-and-finance/)\\nAnna S 3 Dec 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [On-Premise Vs Cloud Hosting: Frequently Asked Questions](https://quickblox.com/blog/on-premise-vs-cloud-hosting-frequently-asked-questions/)\\nGail M 22 Jul 2022\\n## Ready to get started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"On‑‑premise installation guarantees the bank’’s complete ownership and control ofdata and communication aswell astheir compliance with data processing requirements Ifyou operate ina**country with strong data protection laws**orgovernment oversight build anon‑‑premise messaging app toensure all data remains within your country’’s borders and out‑‑of‑‑reach ofthird parties Enable your users tosend text, voice messages, and media rich files with acommunication solution that stores data locally and complies with legal requirements ## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[HIPAA Compliant Hosting](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n## Frequently Asked Questions\\n### What ismeant byon\\u2011premises On-premises (also referred toasonpremise and onprem) iswhen software isdeployed and managed from within acompany, onthe company\\u2019s own hardware and physical server, data center, and/or virtual machine ### Why choose on\\u2011premises Ifthe need for data control and security isamajor concern for your company, and/or ifyour company already has their own private server infrastructure you may want tochoose anon\\u2011premises solution This deployment model removes the need for any third party service provider, enabling anorganization toenjoy sole ownership and control oftheir data ### Who chooses on\\u2011premises Government agencies and large corporations, like finance and healthcare, that deal with highly sensitive information, orcountries that have requirements tostore data locally often choose anon\\u2011premises installation See how wehave supportedglobal bankswith anon\\u2011premises solution ### What\\u2019s the difference between on\\u2011premises and private cloud With on\\u2011premises, anenterprise will run software and store data inaninfrastructure located within its own premises With aprivate cloud, anenterprise will run their application inadedicated cloud\\u2011based environment, supplied byathird party Itis \\u2018private\\u2019 because itisadedicated environment with resources provided and customized solely for the needs ofthe enterprise\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 45 Type: step\n", + "output: {\n", + " \"documents\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# On‑Premises Solutions for Optimal Privacy\\nDoyou require your own private communication network with high security and/or noaccess tothe cloud oreven the Internet Doyou deal with highly sensitive data that needs tobestored locally Isyour industry tightly regulated and required tofollow compliance Not aproblem QuickBlox on‑‑premises solution can support your needs ## Key Benefits\\nOn‑‑premises installation enables you toenjoy the rich functionality ofQuickBlox software while ensuring the highest level ofsecurity ### Your choice for where data isstored and processed\\nYour data center can belocated wherever you need ### Full server and data control\\nWewill assist with server configuration and administration, but you will enjoy complete control over your system and maintain 100 percent privacy ### Enhanced Security\\nBydeploying our software into your own dedicated server and/or privately owned cloud you remove the need for any third party tohave physical orremote access toyour servers Asyou maintain total control ofyour infrastructure, only you and your recipients can access system data ### Regulatory compliance\\nOn‑‑premises hosting isideally suited tothose that are intightly regulated countries and industries such ashealthcare and finance that are required bylaw tohave their infrastructure hosted locally and/or in\\u0430specific country orgeographic location ## QuickBlox software secure onYour server\\n#### QuickBlox isthe preferred choice for tightly regulated industries and geographies that are required tostore data locally Anon‑‑premise instant messaging platform in**healthcare**ensures that internal communications remain secure and patient trust isenhanced Medical staff and their patients can discuss lab results, diagnosis, and treatment plans via chat orvideo‑‑calling inthe full confidence that the content oftheir private conversations remain secure and protected from interlopers With anon‑‑premise chat solution,**financial advisers**can share documents, send text messages, and provide remote consultations without having toworry about compromising their customer’’s privacy\",\n", + " \"On‑‑premise installation guarantees the bank’’s complete ownership and control ofdata and communication aswell astheir compliance with data processing requirements Ifyou operate ina**country with strong data protection laws**orgovernment oversight build anon‑‑premise messaging app toensure all data remains within your country’’s borders and out‑‑of‑‑reach ofthird parties Enable your users tosend text, voice messages, and media rich files with acommunication solution that stores data locally and complies with legal requirements ## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[HIPAA Compliant Hosting](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n## Frequently Asked Questions\\n### What ismeant byon\\u2011premises On-premises (also referred toasonpremise and onprem) iswhen software isdeployed and managed from within acompany, onthe company\\u2019s own hardware and physical server, data center, and/or virtual machine ### Why choose on\\u2011premises Ifthe need for data control and security isamajor concern for your company, and/or ifyour company already has their own private server infrastructure you may want tochoose anon\\u2011premises solution This deployment model removes the need for any third party service provider, enabling anorganization toenjoy sole ownership and control oftheir data ### Who chooses on\\u2011premises Government agencies and large corporations, like finance and healthcare, that deal with highly sensitive information, orcountries that have requirements tostore data locally often choose anon\\u2011premises installation See how wehave supportedglobal bankswith anon\\u2011premises solution ### What\\u2019s the difference between on\\u2011premises and private cloud With on\\u2011premises, anenterprise will run software and store data inaninfrastructure located within its own premises With aprivate cloud, anenterprise will run their application inadedicated cloud\\u2011based environment, supplied byathird party Itis \\u2018private\\u2019 because itisadedicated environment with resources provided and customized solely for the needs ofthe enterprise\",\n", + " \"## Additional Resources\\n[Banking](https://quickblox.com/blog/business/banking/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)[Regulations](https://quickblox.com/blog/hosting/regulations/)### [On-premises or cloud hosting for banking and finance?](https://quickblox.com/blog/on-premises-or-cloud-hosting-for-banking-and-finance/)\\nAnna S 3 Dec 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [On-Premise Vs Cloud Hosting: Frequently Asked Questions](https://quickblox.com/blog/on-premise-vs-cloud-hosting-frequently-asked-questions/)\\nGail M 22 Jul 2022\\n## Ready to get started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 46 Type: init_branch\n", + "output: {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# On‑Premises Solutions for Optimal Privacy\\nDoyou require your own private communication network with high security and/or noaccess tothe cloud oreven the Internet Doyou deal with highly sensitive data that needs tobestored locally Isyour industry tightly regulated and required tofollow compliance Not aproblem QuickBlox on‑‑premises solution can support your needs ## Key Benefits\\nOn‑‑premises installation enables you toenjoy the rich functionality ofQuickBlox software while ensuring the highest level ofsecurity ### Your choice for where data isstored and processed\\nYour data center can belocated wherever you need ### Full server and data control\\nWewill assist with server configuration and administration, but you will enjoy complete control over your system and maintain 100 percent privacy ### Enhanced Security\\nBydeploying our software into your own dedicated server and/or privately owned cloud you remove the need for any third party tohave physical orremote access toyour servers Asyou maintain total control ofyour infrastructure, only you and your recipients can access system data ### Regulatory compliance\\nOn‑‑premises hosting isideally suited tothose that are intightly regulated countries and industries such ashealthcare and finance that are required bylaw tohave their infrastructure hosted locally and/or in\\u0430specific country orgeographic location ## QuickBlox software secure onYour server\\n#### QuickBlox isthe preferred choice for tightly regulated industries and geographies that are required tostore data locally Anon‑‑premise instant messaging platform in**healthcare**ensures that internal communications remain secure and patient trust isenhanced Medical staff and their patients can discuss lab results, diagnosis, and treatment plans via chat orvideo‑‑calling inthe full confidence that the content oftheir private conversations remain secure and protected from interlopers With anon‑‑premise chat solution,**financial advisers**can share documents, send text messages, and provide remote consultations without having toworry about compromising their customer’’s privacy\",\n", + " \"On‑‑premise installation guarantees the bank’’s complete ownership and control ofdata and communication aswell astheir compliance with data processing requirements Ifyou operate ina**country with strong data protection laws**orgovernment oversight build anon‑‑premise messaging app toensure all data remains within your country’’s borders and out‑‑of‑‑reach ofthird parties Enable your users tosend text, voice messages, and media rich files with acommunication solution that stores data locally and complies with legal requirements ## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[HIPAA Compliant Hosting](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n## Frequently Asked Questions\\n### What ismeant byon\\u2011premises On-premises (also referred toasonpremise and onprem) iswhen software isdeployed and managed from within acompany, onthe company\\u2019s own hardware and physical server, data center, and/or virtual machine ### Why choose on\\u2011premises Ifthe need for data control and security isamajor concern for your company, and/or ifyour company already has their own private server infrastructure you may want tochoose anon\\u2011premises solution This deployment model removes the need for any third party service provider, enabling anorganization toenjoy sole ownership and control oftheir data ### Who chooses on\\u2011premises Government agencies and large corporations, like finance and healthcare, that deal with highly sensitive information, orcountries that have requirements tostore data locally often choose anon\\u2011premises installation See how wehave supportedglobal bankswith anon\\u2011premises solution ### What\\u2019s the difference between on\\u2011premises and private cloud With on\\u2011premises, anenterprise will run software and store data inaninfrastructure located within its own premises With aprivate cloud, anenterprise will run their application inadedicated cloud\\u2011based environment, supplied byathird party Itis \\u2018private\\u2019 because itisadedicated environment with resources provided and customized solely for the needs ofthe enterprise\",\n", + " \"## Additional Resources\\n[Banking](https://quickblox.com/blog/business/banking/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)[Regulations](https://quickblox.com/blog/hosting/regulations/)### [On-premises or cloud hosting for banking and finance?](https://quickblox.com/blog/on-premises-or-cloud-hosting-for-banking-and-finance/)\\nAnna S 3 Dec 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [On-Premise Vs Cloud Hosting: Frequently Asked Questions](https://quickblox.com/blog/on-premise-vs-cloud-hosting-frequently-asked-questions/)\\nGail M 22 Jul 2022\\n## Ready to get started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 47 Type: step\n", + "output: {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# On‑Premises Solutions for Optimal Privacy\\nDoyou require your own private communication network with high security and/or noaccess tothe cloud oreven the Internet Doyou deal with highly sensitive data that needs tobestored locally Isyour industry tightly regulated and required tofollow compliance Not aproblem QuickBlox on‑‑premises solution can support your needs ## Key Benefits\\nOn‑‑premises installation enables you toenjoy the rich functionality ofQuickBlox software while ensuring the highest level ofsecurity ### Your choice for where data isstored and processed\\nYour data center can belocated wherever you need ### Full server and data control\\nWewill assist with server configuration and administration, but you will enjoy complete control over your system and maintain 100 percent privacy ### Enhanced Security\\nBydeploying our software into your own dedicated server and/or privately owned cloud you remove the need for any third party tohave physical orremote access toyour servers Asyou maintain total control ofyour infrastructure, only you and your recipients can access system data ### Regulatory compliance\\nOn‑‑premises hosting isideally suited tothose that are intightly regulated countries and industries such ashealthcare and finance that are required bylaw tohave their infrastructure hosted locally and/or in\\u0430specific country orgeographic location ## QuickBlox software secure onYour server\\n#### QuickBlox isthe preferred choice for tightly regulated industries and geographies that are required tostore data locally Anon‑‑premise instant messaging platform in**healthcare**ensures that internal communications remain secure and patient trust isenhanced Medical staff and their patients can discuss lab results, diagnosis, and treatment plans via chat orvideo‑‑calling inthe full confidence that the content oftheir private conversations remain secure and protected from interlopers With anon‑‑premise chat solution,**financial advisers**can share documents, send text messages, and provide remote consultations without having toworry about compromising their customer’’s privacy\",\n", + " \"On‑‑premise installation guarantees the bank’’s complete ownership and control ofdata and communication aswell astheir compliance with data processing requirements Ifyou operate ina**country with strong data protection laws**orgovernment oversight build anon‑‑premise messaging app toensure all data remains within your country’’s borders and out‑‑of‑‑reach ofthird parties Enable your users tosend text, voice messages, and media rich files with acommunication solution that stores data locally and complies with legal requirements ## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[HIPAA Compliant Hosting](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n## Frequently Asked Questions\\n### What ismeant byon\\u2011premises On-premises (also referred toasonpremise and onprem) iswhen software isdeployed and managed from within acompany, onthe company\\u2019s own hardware and physical server, data center, and/or virtual machine ### Why choose on\\u2011premises Ifthe need for data control and security isamajor concern for your company, and/or ifyour company already has their own private server infrastructure you may want tochoose anon\\u2011premises solution This deployment model removes the need for any third party service provider, enabling anorganization toenjoy sole ownership and control oftheir data ### Who chooses on\\u2011premises Government agencies and large corporations, like finance and healthcare, that deal with highly sensitive information, orcountries that have requirements tostore data locally often choose anon\\u2011premises installation See how wehave supportedglobal bankswith anon\\u2011premises solution ### What\\u2019s the difference between on\\u2011premises and private cloud With on\\u2011premises, anenterprise will run software and store data inaninfrastructure located within its own premises With aprivate cloud, anenterprise will run their application inadedicated cloud\\u2011based environment, supplied byathird party Itis \\u2018private\\u2019 because itisadedicated environment with resources provided and customized solely for the needs ofthe enterprise\",\n", + " \"## Additional Resources\\n[Banking](https://quickblox.com/blog/business/banking/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)[Regulations](https://quickblox.com/blog/hosting/regulations/)### [On-premises or cloud hosting for banking and finance?](https://quickblox.com/blog/on-premises-or-cloud-hosting-for-banking-and-finance/)\\nAnna S 3 Dec 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [On-Premise Vs Cloud Hosting: Frequently Asked Questions](https://quickblox.com/blog/on-premise-vs-cloud-hosting-frequently-asked-questions/)\\nGail M 22 Jul 2022\\n## Ready to get started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 48 Type: init_branch\n", + "output: {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# On‑Premises Solutions for Optimal Privacy\\nDoyou require your own private communication network with high security and/or noaccess tothe cloud oreven the Internet Doyou deal with highly sensitive data that needs tobestored locally Isyour industry tightly regulated and required tofollow compliance Not aproblem QuickBlox on‑‑premises solution can support your needs ## Key Benefits\\nOn‑‑premises installation enables you toenjoy the rich functionality ofQuickBlox software while ensuring the highest level ofsecurity ### Your choice for where data isstored and processed\\nYour data center can belocated wherever you need ### Full server and data control\\nWewill assist with server configuration and administration, but you will enjoy complete control over your system and maintain 100 percent privacy ### Enhanced Security\\nBydeploying our software into your own dedicated server and/or privately owned cloud you remove the need for any third party tohave physical orremote access toyour servers Asyou maintain total control ofyour infrastructure, only you and your recipients can access system data ### Regulatory compliance\\nOn‑‑premises hosting isideally suited tothose that are intightly regulated countries and industries such ashealthcare and finance that are required bylaw tohave their infrastructure hosted locally and/or in\\u0430specific country orgeographic location ## QuickBlox software secure onYour server\\n#### QuickBlox isthe preferred choice for tightly regulated industries and geographies that are required tostore data locally Anon‑‑premise instant messaging platform in**healthcare**ensures that internal communications remain secure and patient trust isenhanced Medical staff and their patients can discuss lab results, diagnosis, and treatment plans via chat orvideo‑‑calling inthe full confidence that the content oftheir private conversations remain secure and protected from interlopers With anon‑‑premise chat solution,**financial advisers**can share documents, send text messages, and provide remote consultations without having toworry about compromising their customer’’s privacy\",\n", + " \"On‑‑premise installation guarantees the bank’’s complete ownership and control ofdata and communication aswell astheir compliance with data processing requirements Ifyou operate ina**country with strong data protection laws**orgovernment oversight build anon‑‑premise messaging app toensure all data remains within your country’’s borders and out‑‑of‑‑reach ofthird parties Enable your users tosend text, voice messages, and media rich files with acommunication solution that stores data locally and complies with legal requirements ## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[HIPAA Compliant Hosting](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n## Frequently Asked Questions\\n### What ismeant byon\\u2011premises On-premises (also referred toasonpremise and onprem) iswhen software isdeployed and managed from within acompany, onthe company\\u2019s own hardware and physical server, data center, and/or virtual machine ### Why choose on\\u2011premises Ifthe need for data control and security isamajor concern for your company, and/or ifyour company already has their own private server infrastructure you may want tochoose anon\\u2011premises solution This deployment model removes the need for any third party service provider, enabling anorganization toenjoy sole ownership and control oftheir data ### Who chooses on\\u2011premises Government agencies and large corporations, like finance and healthcare, that deal with highly sensitive information, orcountries that have requirements tostore data locally often choose anon\\u2011premises installation See how wehave supportedglobal bankswith anon\\u2011premises solution ### What\\u2019s the difference between on\\u2011premises and private cloud With on\\u2011premises, anenterprise will run software and store data inaninfrastructure located within its own premises With aprivate cloud, anenterprise will run their application inadedicated cloud\\u2011based environment, supplied byathird party Itis \\u2018private\\u2019 because itisadedicated environment with resources provided and customized solely for the needs ofthe enterprise\",\n", + " \"## Additional Resources\\n[Banking](https://quickblox.com/blog/business/banking/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)[Regulations](https://quickblox.com/blog/hosting/regulations/)### [On-premises or cloud hosting for banking and finance?](https://quickblox.com/blog/on-premises-or-cloud-hosting-for-banking-and-finance/)\\nAnna S 3 Dec 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [On-Premise Vs Cloud Hosting: Frequently Asked Questions](https://quickblox.com/blog/on-premise-vs-cloud-hosting-frequently-asked-questions/)\\nGail M 22 Jul 2022\\n## Ready to get started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"costs\": {\n", + " \"ai_cost\": 0,\n", + " \"bytes_transferred_cost\": 0,\n", + " \"compute_cost\": 0.0001,\n", + " \"file_cost\": 0.0002,\n", + " \"total_cost\": 0.0004,\n", + " \"transform_cost\": 0.0001\n", + " },\n", + " \"error\": null,\n", + " \"status\": 200,\n", + " \"url\": \"https://quickblox.com/hosting/on-premise/\"\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 49 Type: finish_branch\n", + "output: [\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:38.769891Z\",\n", + " \"id\": \"6002fbc6-3d37-4f5b-b172-0464ecafbed6\",\n", + " \"jobs\": [\n", + " \"41bb0089-0a67-456e-9aba-36b2d78f5cd8\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:38.465787Z\",\n", + " \"id\": \"b394f62a-13f5-4c2a-bb15-d9022da7b597\",\n", + " \"jobs\": [\n", + " \"ecef4743-a406-4576-b2dc-495129034923\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:38.504964Z\",\n", + " \"id\": \"96201f76-4c5e-4103-aa5b-7f395d4ca8a1\",\n", + " \"jobs\": [\n", + " \"a2f594a4-f77c-4865-952c-94f1e987925a\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:40.586703Z\",\n", + " \"id\": \"e20d60e0-432a-413e-8f84-b0fd01cf9dee\",\n", + " \"jobs\": [\n", + " \"84f367a4-d8a4-481f-8d50-a595b1d6a030\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:40.571820Z\",\n", + " \"id\": \"cd417282-9b17-4dc0-884a-b5334d71dc43\",\n", + " \"jobs\": [\n", + " \"d46a776e-35be-4157-87fa-f221b9a66276\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:40.346506Z\",\n", + " \"id\": \"7038c38c-2216-4065-8ba3-710d4b2f6163\",\n", + " \"jobs\": [\n", + " \"b542edc5-ca7d-45ac-b01e-87fbcf2ac031\"\n", + " ]\n", + " }\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 50 Type: finish_branch\n", + "output: [\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:38.769891Z\",\n", + " \"id\": \"6002fbc6-3d37-4f5b-b172-0464ecafbed6\",\n", + " \"jobs\": [\n", + " \"41bb0089-0a67-456e-9aba-36b2d78f5cd8\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:38.465787Z\",\n", + " \"id\": \"b394f62a-13f5-4c2a-bb15-d9022da7b597\",\n", + " \"jobs\": [\n", + " \"ecef4743-a406-4576-b2dc-495129034923\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:38.504964Z\",\n", + " \"id\": \"96201f76-4c5e-4103-aa5b-7f395d4ca8a1\",\n", + " \"jobs\": [\n", + " \"a2f594a4-f77c-4865-952c-94f1e987925a\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:40.586703Z\",\n", + " \"id\": \"e20d60e0-432a-413e-8f84-b0fd01cf9dee\",\n", + " \"jobs\": [\n", + " \"84f367a4-d8a4-481f-8d50-a595b1d6a030\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:40.571820Z\",\n", + " \"id\": \"cd417282-9b17-4dc0-884a-b5334d71dc43\",\n", + " \"jobs\": [\n", + " \"d46a776e-35be-4157-87fa-f221b9a66276\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:40.346506Z\",\n", + " \"id\": \"7038c38c-2216-4065-8ba3-710d4b2f6163\",\n", + " \"jobs\": [\n", + " \"b542edc5-ca7d-45ac-b01e-87fbcf2ac031\"\n", + " ]\n", + " }\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 51 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:40.586703Z\",\n", + " \"id\": \"e20d60e0-432a-413e-8f84-b0fd01cf9dee\",\n", + " \"jobs\": [\n", + " \"84f367a4-d8a4-481f-8d50-a595b1d6a030\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 52 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:40.571820Z\",\n", + " \"id\": \"cd417282-9b17-4dc0-884a-b5334d71dc43\",\n", + " \"jobs\": [\n", + " \"d46a776e-35be-4157-87fa-f221b9a66276\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 53 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:40.346506Z\",\n", + " \"id\": \"7038c38c-2216-4065-8ba3-710d4b2f6163\",\n", + " \"jobs\": [\n", + " \"b542edc5-ca7d-45ac-b01e-87fbcf2ac031\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 54 Type: init_branch\n", + "output: \"* Hosted onyour own dedicated servers inyour privately owned datacenter\\n* Granting you total control ofyour ePHI and chathistory\\n[Find out more](https://quickblox.com/enterprise/#get-enterprise)\\n## HIPAA Compliant Cloud Hosting\\nThere are avariety ofcloud hosting providers that offer HIPAA compliant environments QuickBlox can deploy software with anyone ofthese and more:\\nHosting with one ofthese cloud providersdoes notguarantee HIPAA compliance Youalso need toensure your application and software meet the safeguards outlined inthe HIPAA securityrule **Work with apartner like QuickBlox tomake sure you’’re covered.**\\n## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[On-Premise hosting](https://quickblox.com/hosting/on-premise/)\\n## Frequently Asked Questions\\n### What isHIPAA compliant hosting Any digital healthcare application that contains ePHI needs tobehosted onacloud infrastructure that complies with the technical, administrative, and physical safeguards outlined byHIPAA These safeguards are designed toprotect the integrity ofthe data and tocontrol who has access tothis data HIPAA compliant hosting requirements include encrypted data intransit and storage, access controls, person orentity authentication tools, and more ### Who needs HIPAA compliance Healthcare providers\\u2014 referred toasthe \\u00abcovered entity\\u00bb\\u2014 must comply with HIPAA, but equally their \\u00abbusiness associates\\u00bb who come into contact with patient data when providing services toahealthcare organization are also covered bythis legislation This means any cloud service provider, CPaaS provider, ormedical app developer who are inany way involved instoring, processes, ortransmitting PHI, are considered a \\u2019business associate\\u2019 and must comply with HIPAA ### What isPHI and ePHI Any medical data that contains individually identifiable health information about apatient (e.g name, address, date ofbirth, social security number) isreferred toasprotected health information (PHI), orwhen stored electronically ePHI There isanabundance ofmedical records including bills from doctors, emails, MRI scans, blood test results etc that fall under the rubric ofPHI/ePHI ### How much does HIPAA compliant hosting cost\\nThe chunk is part of a section detailing QuickBlox's HIPAA-compliant hosting solutions, emphasizing the importance of selecting a compliant cloud infrastructure for healthcare applications. It highlights the need for secure data management, outlines the responsibilities of healthcare providers and their associates, and provides links to explore different hosting options and address frequently asked questions about HIPAA compliance.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 55 Type: init_branch\n", + "output: \"The need for additional security enhancements such asdatabase encryption and software customization for extra monitoring &&intrusion detection means ahigher cost for HIPAA compliant hosting Encrypted HIPAA hosting onour shared cloud starts at$399/mo ### Which cloud providers are HIPAA compliant There are several cloud hosting providers who provide aninfrastructure that can beHIPAA compliant (e.g AWS, GCP, Azure), however, you are still responsible for configuring your software tosatisfy the HIPAA security rule Check tosee ifthe cloud provider will sign aBAA agreement and choose aservice provider like QuickBlox who can ensure aHIPAA compliant solution ### What are the penalties for non-compliance Penalties depend onthe severity ofthe breach, whether itwas intentional ornot They range from $100 to$50,000 per breach ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [HIPAA Compliant Cloud Hosting: What does it mean?](https://quickblox.com/blog/hipaa-compliant-cloud-hosting-what-does-it-mean/)\\nAnna S 31 Dec 2021\\n[Azure](https://quickblox.com/blog/hosting/azure/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Microsoft Azure HIPAA Compliant?](https://quickblox.com/blog/is-microsoft-azure-hipaa-compliant/)\\nAnna S 12 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Google Cloud Platform (GCP)](https://quickblox.com/blog/hosting/google-cloud-platform-gcp/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Google Cloud Platform HIPAA Compliant?](https://quickblox.com/blog/is-google-cloud-platform-hipaa-compliant/)\\nAnna S 1 Oct 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd\\nThe chunk provides detailed information on HIPAA compliant hosting services offered by QuickBlox, including security enhancements, compliant cloud providers, penalties for non-compliance, and additional resources for understanding HIPAA requirements. It also links to various QuickBlox products and solutions, emphasizing the company's capability to provide secure, HIPAA-compliant communication solutions for healthcare applications.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 56 Type: init_branch\n", + "output: \"trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\\nThe chunk provides legal and privacy information related to QuickBlox, including links to terms of use, privacy policy, and cookie policy. It also lists social media links and describes the use of cookies on the website. This section is part of the footer, providing essential policy details and ways to stay updated with QuickBlox through social media subscriptions.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 57 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:38.769891Z\",\n", + " \"id\": \"6002fbc6-3d37-4f5b-b172-0464ecafbed6\",\n", + " \"jobs\": [\n", + " \"41bb0089-0a67-456e-9aba-36b2d78f5cd8\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 58 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:38.504964Z\",\n", + " \"id\": \"96201f76-4c5e-4103-aa5b-7f395d4ca8a1\",\n", + " \"jobs\": [\n", + " \"a2f594a4-f77c-4865-952c-94f1e987925a\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 59 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:38.465787Z\",\n", + " \"id\": \"b394f62a-13f5-4c2a-bb15-d9022da7b597\",\n", + " \"jobs\": [\n", + " \"ecef4743-a406-4576-b2dc-495129034923\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 60 Type: init_branch\n", + "output: \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# HIPAA Compliant Hosting\\nOur healthcare communication solutions are designed with HIPAA compliance inmind Build and deliver powerful HIPAA chat apps inthe full confidence that sensitive ePHI remains secure and compliance requirements are satisfied ## What isHIPAA Compliance HIPAA (Health Insurance Portability and Accountability Act of1996) sets national standards for safeguarding protected health information (PHI) Any business that collects, stores, ortransmits PHI isrequired tocomply with HIPAA physical, technical, and administrative safeguards Failure todosocan result incompromised patient data and hefty penalties for the involved party ## Why QuickBlox ### Experienced inHealthcare\\nWeare experienced working with the Healthcare industry and HealthTech Weprovide HIPAA compliant hosting solutions configured for enhanced data privacy and inaccordance with HIPAA security rules ### Host Anywhere\\nWeunderstand your need for data security that’’s why wedeploy our software wherever you need, including inyour own cloud account with ahosting provider ofyour choice sothat sensitive PHI remains firmly inyour ownership and control ### Enterprise Ready\\nWebuild enterprise ready solutions Our skilled DevOps team can provide anarray ofsoftware tools, integrations, and configurations toensure enterprise grade security and support for your HIPAA compliant solution [Speak to us](https://quickblox.com/enterprise/#get-enterprise)\\n## QuickBlox HIPAA Compliant HostingSolutions\\nThe easiest way tosatisfy HIPAA requirements istopartner with aHIPAA compliant communication solutions provider, like QuickBlox Wehave asolid history providing enterprise solutions for healthcare ### Key Features\\n#### Your choice ofHIPAA Compliant Cloud\\nSoftware can bedeployed toyour preferred hosting environment including Amazon Web Services, Google Cloud Platform, and Microsoft Azure\\nThis chunk provides an overview of QuickBlox's communication tools and solutions, highlighting SDKs, APIs, AI features, white-label solutions, industry-specific applications, enterprise services, and developer resources. It also emphasizes QuickBlox's capabilities in building communication features for apps, offering HIPAA-compliant hosting, and providing customizable solutions for industries like healthcare, finance, and education.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 61 Type: init_branch\n", + "output: \"* Virus scanning software toautomatically scan, tag, and notify you ofinfected files and malware * Web Application Firewall (WAF) tosecurely control web traffic, blocking spam bots from consuming resources, skewing metrics, and causing downtime onyour healthcare communication application ## HIPAA Compliant Video Hosting\\nConnect patients and doctors together with HIPAA compliant audio &&video calling and video conferencing, built onWebRTC and available with the QuickBlox HIPAA Enterprise Plan\\n### Dedicated TURN Server\\nDedicated WebRTC video calling traffic relay server for video calling through firewalls, bypassing NAT, and connecting geographically dispersed users [Learn more](https://quickblox.com/products/voice-and-video-calling/)\\n### Dedicated Conference Server\\nWeoffer HIPAA video conference hosting with adedicated conference server Enjoy high quality conference calls for multiple simultaneous users onaservice server that you control [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Conference Call Recording\\nConference call recording functionality tosave your video conferences Enables you tostore, access, and share video healthcare communications securely onyour dedicated server [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Telehealth Ready Solution: Q‑Consultation\\nWeoffer aHIPAA compliant virtual waiting room with tele-consultation app Fully customizable, packed with features, and works onany device and the web [Learn more](https://quickblox.com/products/q-consultation/)\\n## HIPAA Compliant Hosting Plans\\nQuickBlox provides arange ofplans depending onthe size ofyour organization and budget All our HIPAA plans provide full data encryption and come with aBusiness Associates Agreement ### HIPAA (Shared) Cloud Plan (starts at**$399/mo**)\\nSuitable for smaller organizations for POCs (proof ofconcept) and MVP (minimal viable product) use-cases that require data encryption but have alimited budget * Software ishosted onour QuickBlox AWS multi-tenant sharedserver\\n* Total user limit:**5000**\\n* File size limit:**50MB**\\n* Support byticketing system\\n### HIPAA Enterprise Plan (startsat**$899/mo**)\\nSuitable for production services granting the customer complete control over their user data, customization, technicalsupport,andSLA * Can behosted onQuickBlox’’s own managed cloud account orincustomer’’s own cloud account with preferred cloud service provider including Amazon Web Services, Google Cloud Platform, Microsoft Azure and others * Personal Account Manager, SLA with uptimeguarantee\\n* Optional Add-ons:\\n* - High Availability and Disaster Recovery (HA/DR)solution\\n* - Security enhancements (e.g.Graylog,OSSEC)\\n* - Dedicated Turn server, Conference callserver\\n### HIPAA On-Premises\\nSuitable for organizations who desire optimal security, require communications toremain within their own private network, and who have their own DevOps and on-premises data center\\nThe chunk is part of a section detailing QuickBlox's HIPAA-compliant solutions, specifically focusing on video hosting and various hosting plans tailored for healthcare communication applications. It discusses features like virus scanning, web application firewall, and dedicated servers for video calls, as well as different hosting plans (Shared Cloud, Enterprise, and On-Premises) with features like data encryption, user limits, and support options, emphasizing secure telehealth and video conferencing solutions.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 62 Type: init_branch\n", + "output: \"Weconfigure your dedicated instance sothat itmeets HIPAA-compliant hosting requirements QuickBlox can also host for you inour own HIPAA compliant account #### Fully Encrypted Server Configuration\\nWith QuickBlox, data isencrypted intransit and atrest Weoffer full encryption ofuser databases, files/content, and connections which means ePHI, communication history, and user data issafe and secure #### Customization ofSoftware tosupport HIPAA Technical Safeguards\\nOur back-end platform can becustomized tosupport numerous security features,e.g * access control via unique usernames and passwords toprevent unauthorized access\\n* person orentity authentication tools such astwo-factor authentication\\n* anonymous sessions with automatic logoff procedures\\n#### AFully Managed Service\\nOur Enterprise Plan provides afully managed service with dedicated maintenance and real-time monitoring Weoffer aService Level Agreement (SLA) with uptime guarantee #### Provision ofBusiness Associate Agreement\\nWeprovide our healthcare customers with aBAA Bysigning this agreement wedemonstrate our knowledge ofHIPAA compliance rules and our experience with supporting compliant healthcare communication solutions ## Advanced Features\\nWeoffer anarray ofdata protection tools tosafeguard your instance without your data ever leaving your server\\n### High Availability and Disaster Recovery(HA/DR)\\n* HA/DR keeps your applications running inthe event ofany system issues, soyour users never lose messaging and calling functionalities * AHigh Availability solution replicates your communication infrastructure toensure constant availability This isideal for critical business solutions like healthcare * Our Disaster Recovery plan provides full backup management toensure that sensitive data can befully recovered inthe worst case scenario ofinterrupted orcompromised services ### Software integration for enhanced security standards\\n* Diligent monitoring ofyour cloud environment with Graylog, alog storage and management tool that allows your engineers toeasily manage logs and structured analytical data all inone place * Intrusion detection with OSSEC, ahost-based system that performs log analysis, integrity checking, registry monitoring, rootlet detection, time-based alerting, and active response\\nThis chunk discusses QuickBlox's HIPAA-compliant hosting solutions, focusing on fully encrypted server configurations, customizable software for HIPAA technical safeguards, and a fully managed service with a Business Associate Agreement (BAA). It highlights advanced features like High Availability and Disaster Recovery (HA/DR) and enhanced security standards, including monitoring tools and intrusion detection, to ensure data protection and compliance with HIPAA rules in healthcare communication solutions.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 63 Type: step\n", + "output: {\n", + " \"final_chunks\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# HIPAA Compliant Hosting\\nOur healthcare communication solutions are designed with HIPAA compliance inmind Build and deliver powerful HIPAA chat apps inthe full confidence that sensitive ePHI remains secure and compliance requirements are satisfied ## What isHIPAA Compliance HIPAA (Health Insurance Portability and Accountability Act of1996) sets national standards for safeguarding protected health information (PHI) Any business that collects, stores, ortransmits PHI isrequired tocomply with HIPAA physical, technical, and administrative safeguards Failure todosocan result incompromised patient data and hefty penalties for the involved party ## Why QuickBlox ### Experienced inHealthcare\\nWeare experienced working with the Healthcare industry and HealthTech Weprovide HIPAA compliant hosting solutions configured for enhanced data privacy and inaccordance with HIPAA security rules ### Host Anywhere\\nWeunderstand your need for data security that’’s why wedeploy our software wherever you need, including inyour own cloud account with ahosting provider ofyour choice sothat sensitive PHI remains firmly inyour ownership and control ### Enterprise Ready\\nWebuild enterprise ready solutions Our skilled DevOps team can provide anarray ofsoftware tools, integrations, and configurations toensure enterprise grade security and support for your HIPAA compliant solution [Speak to us](https://quickblox.com/enterprise/#get-enterprise)\\n## QuickBlox HIPAA Compliant HostingSolutions\\nThe easiest way tosatisfy HIPAA requirements istopartner with aHIPAA compliant communication solutions provider, like QuickBlox Wehave asolid history providing enterprise solutions for healthcare ### Key Features\\n#### Your choice ofHIPAA Compliant Cloud\\nSoftware can bedeployed toyour preferred hosting environment including Amazon Web Services, Google Cloud Platform, and Microsoft Azure\\nThis chunk provides an overview of QuickBlox's communication tools and solutions, highlighting SDKs, APIs, AI features, white-label solutions, industry-specific applications, enterprise services, and developer resources. It also emphasizes QuickBlox's capabilities in building communication features for apps, offering HIPAA-compliant hosting, and providing customizable solutions for industries like healthcare, finance, and education.\",\n", + " \"Weconfigure your dedicated instance sothat itmeets HIPAA-compliant hosting requirements QuickBlox can also host for you inour own HIPAA compliant account #### Fully Encrypted Server Configuration\\nWith QuickBlox, data isencrypted intransit and atrest Weoffer full encryption ofuser databases, files/content, and connections which means ePHI, communication history, and user data issafe and secure #### Customization ofSoftware tosupport HIPAA Technical Safeguards\\nOur back-end platform can becustomized tosupport numerous security features,e.g * access control via unique usernames and passwords toprevent unauthorized access\\n* person orentity authentication tools such astwo-factor authentication\\n* anonymous sessions with automatic logoff procedures\\n#### AFully Managed Service\\nOur Enterprise Plan provides afully managed service with dedicated maintenance and real-time monitoring Weoffer aService Level Agreement (SLA) with uptime guarantee #### Provision ofBusiness Associate Agreement\\nWeprovide our healthcare customers with aBAA Bysigning this agreement wedemonstrate our knowledge ofHIPAA compliance rules and our experience with supporting compliant healthcare communication solutions ## Advanced Features\\nWeoffer anarray ofdata protection tools tosafeguard your instance without your data ever leaving your server\\n### High Availability and Disaster Recovery(HA/DR)\\n* HA/DR keeps your applications running inthe event ofany system issues, soyour users never lose messaging and calling functionalities * AHigh Availability solution replicates your communication infrastructure toensure constant availability This isideal for critical business solutions like healthcare * Our Disaster Recovery plan provides full backup management toensure that sensitive data can befully recovered inthe worst case scenario ofinterrupted orcompromised services ### Software integration for enhanced security standards\\n* Diligent monitoring ofyour cloud environment with Graylog, alog storage and management tool that allows your engineers toeasily manage logs and structured analytical data all inone place * Intrusion detection with OSSEC, ahost-based system that performs log analysis, integrity checking, registry monitoring, rootlet detection, time-based alerting, and active response\\nThis chunk discusses QuickBlox's HIPAA-compliant hosting solutions, focusing on fully encrypted server configurations, customizable software for HIPAA technical safeguards, and a fully managed service with a Business Associate Agreement (BAA). It highlights advanced features like High Availability and Disaster Recovery (HA/DR) and enhanced security standards, including monitoring tools and intrusion detection, to ensure data protection and compliance with HIPAA rules in healthcare communication solutions.\",\n", + " \"* Virus scanning software toautomatically scan, tag, and notify you ofinfected files and malware * Web Application Firewall (WAF) tosecurely control web traffic, blocking spam bots from consuming resources, skewing metrics, and causing downtime onyour healthcare communication application ## HIPAA Compliant Video Hosting\\nConnect patients and doctors together with HIPAA compliant audio &&video calling and video conferencing, built onWebRTC and available with the QuickBlox HIPAA Enterprise Plan\\n### Dedicated TURN Server\\nDedicated WebRTC video calling traffic relay server for video calling through firewalls, bypassing NAT, and connecting geographically dispersed users [Learn more](https://quickblox.com/products/voice-and-video-calling/)\\n### Dedicated Conference Server\\nWeoffer HIPAA video conference hosting with adedicated conference server Enjoy high quality conference calls for multiple simultaneous users onaservice server that you control [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Conference Call Recording\\nConference call recording functionality tosave your video conferences Enables you tostore, access, and share video healthcare communications securely onyour dedicated server [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Telehealth Ready Solution: Q‑Consultation\\nWeoffer aHIPAA compliant virtual waiting room with tele-consultation app Fully customizable, packed with features, and works onany device and the web [Learn more](https://quickblox.com/products/q-consultation/)\\n## HIPAA Compliant Hosting Plans\\nQuickBlox provides arange ofplans depending onthe size ofyour organization and budget All our HIPAA plans provide full data encryption and come with aBusiness Associates Agreement ### HIPAA (Shared) Cloud Plan (starts at**$399/mo**)\\nSuitable for smaller organizations for POCs (proof ofconcept) and MVP (minimal viable product) use-cases that require data encryption but have alimited budget * Software ishosted onour QuickBlox AWS multi-tenant sharedserver\\n* Total user limit:**5000**\\n* File size limit:**50MB**\\n* Support byticketing system\\n### HIPAA Enterprise Plan (startsat**$899/mo**)\\nSuitable for production services granting the customer complete control over their user data, customization, technicalsupport,andSLA * Can behosted onQuickBlox’’s own managed cloud account orincustomer’’s own cloud account with preferred cloud service provider including Amazon Web Services, Google Cloud Platform, Microsoft Azure and others * Personal Account Manager, SLA with uptimeguarantee\\n* Optional Add-ons:\\n* - High Availability and Disaster Recovery (HA/DR)solution\\n* - Security enhancements (e.g.Graylog,OSSEC)\\n* - Dedicated Turn server, Conference callserver\\n### HIPAA On-Premises\\nSuitable for organizations who desire optimal security, require communications toremain within their own private network, and who have their own DevOps and on-premises data center\\nThe chunk is part of a section detailing QuickBlox's HIPAA-compliant solutions, specifically focusing on video hosting and various hosting plans tailored for healthcare communication applications. It discusses features like virus scanning, web application firewall, and dedicated servers for video calls, as well as different hosting plans (Shared Cloud, Enterprise, and On-Premises) with features like data encryption, user limits, and support options, emphasizing secure telehealth and video conferencing solutions.\",\n", + " \"* Hosted onyour own dedicated servers inyour privately owned datacenter\\n* Granting you total control ofyour ePHI and chathistory\\n[Find out more](https://quickblox.com/enterprise/#get-enterprise)\\n## HIPAA Compliant Cloud Hosting\\nThere are avariety ofcloud hosting providers that offer HIPAA compliant environments QuickBlox can deploy software with anyone ofthese and more:\\nHosting with one ofthese cloud providersdoes notguarantee HIPAA compliance Youalso need toensure your application and software meet the safeguards outlined inthe HIPAA securityrule **Work with apartner like QuickBlox tomake sure you’’re covered.**\\n## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[On-Premise hosting](https://quickblox.com/hosting/on-premise/)\\n## Frequently Asked Questions\\n### What isHIPAA compliant hosting Any digital healthcare application that contains ePHI needs tobehosted onacloud infrastructure that complies with the technical, administrative, and physical safeguards outlined byHIPAA These safeguards are designed toprotect the integrity ofthe data and tocontrol who has access tothis data HIPAA compliant hosting requirements include encrypted data intransit and storage, access controls, person orentity authentication tools, and more ### Who needs HIPAA compliance Healthcare providers\\u2014 referred toasthe \\u00abcovered entity\\u00bb\\u2014 must comply with HIPAA, but equally their \\u00abbusiness associates\\u00bb who come into contact with patient data when providing services toahealthcare organization are also covered bythis legislation This means any cloud service provider, CPaaS provider, ormedical app developer who are inany way involved instoring, processes, ortransmitting PHI, are considered a \\u2019business associate\\u2019 and must comply with HIPAA ### What isPHI and ePHI Any medical data that contains individually identifiable health information about apatient (e.g name, address, date ofbirth, social security number) isreferred toasprotected health information (PHI), orwhen stored electronically ePHI There isanabundance ofmedical records including bills from doctors, emails, MRI scans, blood test results etc that fall under the rubric ofPHI/ePHI ### How much does HIPAA compliant hosting cost\\nThe chunk is part of a section detailing QuickBlox's HIPAA-compliant hosting solutions, emphasizing the importance of selecting a compliant cloud infrastructure for healthcare applications. It highlights the need for secure data management, outlines the responsibilities of healthcare providers and their associates, and provides links to explore different hosting options and address frequently asked questions about HIPAA compliance.\",\n", + " \"The need for additional security enhancements such asdatabase encryption and software customization for extra monitoring &&intrusion detection means ahigher cost for HIPAA compliant hosting Encrypted HIPAA hosting onour shared cloud starts at$399/mo ### Which cloud providers are HIPAA compliant There are several cloud hosting providers who provide aninfrastructure that can beHIPAA compliant (e.g AWS, GCP, Azure), however, you are still responsible for configuring your software tosatisfy the HIPAA security rule Check tosee ifthe cloud provider will sign aBAA agreement and choose aservice provider like QuickBlox who can ensure aHIPAA compliant solution ### What are the penalties for non-compliance Penalties depend onthe severity ofthe breach, whether itwas intentional ornot They range from $100 to$50,000 per breach ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [HIPAA Compliant Cloud Hosting: What does it mean?](https://quickblox.com/blog/hipaa-compliant-cloud-hosting-what-does-it-mean/)\\nAnna S 31 Dec 2021\\n[Azure](https://quickblox.com/blog/hosting/azure/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Microsoft Azure HIPAA Compliant?](https://quickblox.com/blog/is-microsoft-azure-hipaa-compliant/)\\nAnna S 12 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Google Cloud Platform (GCP)](https://quickblox.com/blog/hosting/google-cloud-platform-gcp/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Google Cloud Platform HIPAA Compliant?](https://quickblox.com/blog/is-google-cloud-platform-hipaa-compliant/)\\nAnna S 1 Oct 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd\\nThe chunk provides detailed information on HIPAA compliant hosting services offered by QuickBlox, including security enhancements, compliant cloud providers, penalties for non-compliance, and additional resources for understanding HIPAA requirements. It also links to various QuickBlox products and solutions, emphasizing the company's capability to provide secure, HIPAA-compliant communication solutions for healthcare applications.\",\n", + " \"trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\\nThe chunk provides legal and privacy information related to QuickBlox, including links to terms of use, privacy policy, and cookie policy. It also lists social media links and describes the use of cookies on the website. This section is part of the footer, providing essential policy details and ways to stay updated with QuickBlox through social media subscriptions.\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 64 Type: step\n", + "output: [\n", + " \"This chunk provides an overview of QuickBlox's communication tools and solutions, highlighting SDKs, APIs, AI features, white-label solutions, industry-specific applications, enterprise services, and developer resources. It also emphasizes QuickBlox's capabilities in building communication features for apps, offering HIPAA-compliant hosting, and providing customizable solutions for industries like healthcare, finance, and education.\",\n", + " \"This chunk discusses QuickBlox's HIPAA-compliant hosting solutions, focusing on fully encrypted server configurations, customizable software for HIPAA technical safeguards, and a fully managed service with a Business Associate Agreement (BAA). It highlights advanced features like High Availability and Disaster Recovery (HA/DR) and enhanced security standards, including monitoring tools and intrusion detection, to ensure data protection and compliance with HIPAA rules in healthcare communication solutions.\",\n", + " \"The chunk is part of a section detailing QuickBlox's HIPAA-compliant solutions, specifically focusing on video hosting and various hosting plans tailored for healthcare communication applications. It discusses features like virus scanning, web application firewall, and dedicated servers for video calls, as well as different hosting plans (Shared Cloud, Enterprise, and On-Premises) with features like data encryption, user limits, and support options, emphasizing secure telehealth and video conferencing solutions.\",\n", + " \"The chunk is part of a section detailing QuickBlox's HIPAA-compliant hosting solutions, emphasizing the importance of selecting a compliant cloud infrastructure for healthcare applications. It highlights the need for secure data management, outlines the responsibilities of healthcare providers and their associates, and provides links to explore different hosting options and address frequently asked questions about HIPAA compliance.\",\n", + " \"The chunk provides detailed information on HIPAA compliant hosting services offered by QuickBlox, including security enhancements, compliant cloud providers, penalties for non-compliance, and additional resources for understanding HIPAA requirements. It also links to various QuickBlox products and solutions, emphasizing the company's capability to provide secure, HIPAA-compliant communication solutions for healthcare applications.\",\n", + " \"The chunk provides legal and privacy information related to QuickBlox, including links to terms of use, privacy policy, and cookie policy. It also lists social media links and describes the use of cookies on the website. This section is part of the footer, providing essential policy details and ways to stay updated with QuickBlox through social media subscriptions.\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 65 Type: finish_branch\n", + "output: \"The chunk is part of a section detailing QuickBlox's HIPAA-compliant hosting solutions, emphasizing the importance of selecting a compliant cloud infrastructure for healthcare applications. It highlights the need for secure data management, outlines the responsibilities of healthcare providers and their associates, and provides links to explore different hosting options and address frequently asked questions about HIPAA compliance.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 66 Type: finish_branch\n", + "output: \"The chunk provides detailed information on HIPAA compliant hosting services offered by QuickBlox, including security enhancements, compliant cloud providers, penalties for non-compliance, and additional resources for understanding HIPAA requirements. It also links to various QuickBlox products and solutions, emphasizing the company's capability to provide secure, HIPAA-compliant communication solutions for healthcare applications.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 67 Type: finish_branch\n", + "output: \"The chunk provides legal and privacy information related to QuickBlox, including links to terms of use, privacy policy, and cookie policy. It also lists social media links and describes the use of cookies on the website. This section is part of the footer, providing essential policy details and ways to stay updated with QuickBlox through social media subscriptions.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 68 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# HIPAA Compliant Hosting\\nOur healthcare communication solutions are designed with HIPAA compliance inmind Build and deliver powerful HIPAA chat apps inthe full confidence that sensitive ePHI remains secure and compliance requirements are satisfied ## What isHIPAA Compliance HIPAA (Health Insurance Portability and Accountability Act of1996) sets national standards for safeguarding protected health information (PHI) Any business that collects, stores, ortransmits PHI isrequired tocomply with HIPAA physical, technical, and administrative safeguards Failure todosocan result incompromised patient data and hefty penalties for the involved party ## Why QuickBlox ### Experienced inHealthcare\\nWeare experienced working with the Healthcare industry and HealthTech Weprovide HIPAA compliant hosting solutions configured for enhanced data privacy and inaccordance with HIPAA security rules ### Host Anywhere\\nWeunderstand your need for data security that’’s why wedeploy our software wherever you need, including inyour own cloud account with ahosting provider ofyour choice sothat sensitive PHI remains firmly inyour ownership and control ### Enterprise Ready\\nWebuild enterprise ready solutions Our skilled DevOps team can provide anarray ofsoftware tools, integrations, and configurations toensure enterprise grade security and support for your HIPAA compliant solution [Speak to us](https://quickblox.com/enterprise/#get-enterprise)\\n## QuickBlox HIPAA Compliant HostingSolutions\\nThe easiest way tosatisfy HIPAA requirements istopartner with aHIPAA compliant communication solutions provider, like QuickBlox Wehave asolid history providing enterprise solutions for healthcare ### Key Features\\n#### Your choice ofHIPAA Compliant Cloud\\nSoftware can bedeployed toyour preferred hosting environment including Amazon Web Services, Google Cloud Platform, and Microsoft Azure\",\n", + " \"Weconfigure your dedicated instance sothat itmeets HIPAA-compliant hosting requirements QuickBlox can also host for you inour own HIPAA compliant account #### Fully Encrypted Server Configuration\\nWith QuickBlox, data isencrypted intransit and atrest Weoffer full encryption ofuser databases, files/content, and connections which means ePHI, communication history, and user data issafe and secure #### Customization ofSoftware tosupport HIPAA Technical Safeguards\\nOur back-end platform can becustomized tosupport numerous security features,e.g * access control via unique usernames and passwords toprevent unauthorized access\\n* person orentity authentication tools such astwo-factor authentication\\n* anonymous sessions with automatic logoff procedures\\n#### AFully Managed Service\\nOur Enterprise Plan provides afully managed service with dedicated maintenance and real-time monitoring Weoffer aService Level Agreement (SLA) with uptime guarantee #### Provision ofBusiness Associate Agreement\\nWeprovide our healthcare customers with aBAA Bysigning this agreement wedemonstrate our knowledge ofHIPAA compliance rules and our experience with supporting compliant healthcare communication solutions ## Advanced Features\\nWeoffer anarray ofdata protection tools tosafeguard your instance without your data ever leaving your server\\n### High Availability and Disaster Recovery(HA/DR)\\n* HA/DR keeps your applications running inthe event ofany system issues, soyour users never lose messaging and calling functionalities * AHigh Availability solution replicates your communication infrastructure toensure constant availability This isideal for critical business solutions like healthcare * Our Disaster Recovery plan provides full backup management toensure that sensitive data can befully recovered inthe worst case scenario ofinterrupted orcompromised services ### Software integration for enhanced security standards\\n* Diligent monitoring ofyour cloud environment with Graylog, alog storage and management tool that allows your engineers toeasily manage logs and structured analytical data all inone place * Intrusion detection with OSSEC, ahost-based system that performs log analysis, integrity checking, registry monitoring, rootlet detection, time-based alerting, and active response\",\n", + " \"* Virus scanning software toautomatically scan, tag, and notify you ofinfected files and malware * Web Application Firewall (WAF) tosecurely control web traffic, blocking spam bots from consuming resources, skewing metrics, and causing downtime onyour healthcare communication application ## HIPAA Compliant Video Hosting\\nConnect patients and doctors together with HIPAA compliant audio &&video calling and video conferencing, built onWebRTC and available with the QuickBlox HIPAA Enterprise Plan\\n### Dedicated TURN Server\\nDedicated WebRTC video calling traffic relay server for video calling through firewalls, bypassing NAT, and connecting geographically dispersed users [Learn more](https://quickblox.com/products/voice-and-video-calling/)\\n### Dedicated Conference Server\\nWeoffer HIPAA video conference hosting with adedicated conference server Enjoy high quality conference calls for multiple simultaneous users onaservice server that you control [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Conference Call Recording\\nConference call recording functionality tosave your video conferences Enables you tostore, access, and share video healthcare communications securely onyour dedicated server [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Telehealth Ready Solution: Q‑Consultation\\nWeoffer aHIPAA compliant virtual waiting room with tele-consultation app Fully customizable, packed with features, and works onany device and the web [Learn more](https://quickblox.com/products/q-consultation/)\\n## HIPAA Compliant Hosting Plans\\nQuickBlox provides arange ofplans depending onthe size ofyour organization and budget All our HIPAA plans provide full data encryption and come with aBusiness Associates Agreement ### HIPAA (Shared) Cloud Plan (starts at**$399/mo**)\\nSuitable for smaller organizations for POCs (proof ofconcept) and MVP (minimal viable product) use-cases that require data encryption but have alimited budget * Software ishosted onour QuickBlox AWS multi-tenant sharedserver\\n* Total user limit:**5000**\\n* File size limit:**50MB**\\n* Support byticketing system\\n### HIPAA Enterprise Plan (startsat**$899/mo**)\\nSuitable for production services granting the customer complete control over their user data, customization, technicalsupport,andSLA * Can behosted onQuickBlox’’s own managed cloud account orincustomer’’s own cloud account with preferred cloud service provider including Amazon Web Services, Google Cloud Platform, Microsoft Azure and others * Personal Account Manager, SLA with uptimeguarantee\\n* Optional Add-ons:\\n* - High Availability and Disaster Recovery (HA/DR)solution\\n* - Security enhancements (e.g.Graylog,OSSEC)\\n* - Dedicated Turn server, Conference callserver\\n### HIPAA On-Premises\\nSuitable for organizations who desire optimal security, require communications toremain within their own private network, and who have their own DevOps and on-premises data center\",\n", + " \"* Hosted onyour own dedicated servers inyour privately owned datacenter\\n* Granting you total control ofyour ePHI and chathistory\\n[Find out more](https://quickblox.com/enterprise/#get-enterprise)\\n## HIPAA Compliant Cloud Hosting\\nThere are avariety ofcloud hosting providers that offer HIPAA compliant environments QuickBlox can deploy software with anyone ofthese and more:\\nHosting with one ofthese cloud providersdoes notguarantee HIPAA compliance Youalso need toensure your application and software meet the safeguards outlined inthe HIPAA securityrule **Work with apartner like QuickBlox tomake sure you’’re covered.**\\n## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[On-Premise hosting](https://quickblox.com/hosting/on-premise/)\\n## Frequently Asked Questions\\n### What isHIPAA compliant hosting Any digital healthcare application that contains ePHI needs tobehosted onacloud infrastructure that complies with the technical, administrative, and physical safeguards outlined byHIPAA These safeguards are designed toprotect the integrity ofthe data and tocontrol who has access tothis data HIPAA compliant hosting requirements include encrypted data intransit and storage, access controls, person orentity authentication tools, and more ### Who needs HIPAA compliance Healthcare providers\\u2014 referred toasthe \\u00abcovered entity\\u00bb\\u2014 must comply with HIPAA, but equally their \\u00abbusiness associates\\u00bb who come into contact with patient data when providing services toahealthcare organization are also covered bythis legislation This means any cloud service provider, CPaaS provider, ormedical app developer who are inany way involved instoring, processes, ortransmitting PHI, are considered a \\u2019business associate\\u2019 and must comply with HIPAA ### What isPHI and ePHI Any medical data that contains individually identifiable health information about apatient (e.g name, address, date ofbirth, social security number) isreferred toasprotected health information (PHI), orwhen stored electronically ePHI There isanabundance ofmedical records including bills from doctors, emails, MRI scans, blood test results etc that fall under the rubric ofPHI/ePHI ### How much does HIPAA compliant hosting cost\",\n", + " \"The need for additional security enhancements such asdatabase encryption and software customization for extra monitoring &&intrusion detection means ahigher cost for HIPAA compliant hosting Encrypted HIPAA hosting onour shared cloud starts at$399/mo ### Which cloud providers are HIPAA compliant There are several cloud hosting providers who provide aninfrastructure that can beHIPAA compliant (e.g AWS, GCP, Azure), however, you are still responsible for configuring your software tosatisfy the HIPAA security rule Check tosee ifthe cloud provider will sign aBAA agreement and choose aservice provider like QuickBlox who can ensure aHIPAA compliant solution ### What are the penalties for non-compliance Penalties depend onthe severity ofthe breach, whether itwas intentional ornot They range from $100 to$50,000 per breach ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [HIPAA Compliant Cloud Hosting: What does it mean?](https://quickblox.com/blog/hipaa-compliant-cloud-hosting-what-does-it-mean/)\\nAnna S 31 Dec 2021\\n[Azure](https://quickblox.com/blog/hosting/azure/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Microsoft Azure HIPAA Compliant?](https://quickblox.com/blog/is-microsoft-azure-hipaa-compliant/)\\nAnna S 12 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Google Cloud Platform (GCP)](https://quickblox.com/blog/hosting/google-cloud-platform-gcp/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Google Cloud Platform HIPAA Compliant?](https://quickblox.com/blog/is-google-cloud-platform-hipaa-compliant/)\\nAnna S 1 Oct 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd\",\n", + " \"trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"* Hosted onyour own dedicated servers inyour privately owned datacenter\\n* Granting you total control ofyour ePHI and chathistory\\n[Find out more](https://quickblox.com/enterprise/#get-enterprise)\\n## HIPAA Compliant Cloud Hosting\\nThere are avariety ofcloud hosting providers that offer HIPAA compliant environments QuickBlox can deploy software with anyone ofthese and more:\\nHosting with one ofthese cloud providersdoes notguarantee HIPAA compliance Youalso need toensure your application and software meet the safeguards outlined inthe HIPAA securityrule **Work with apartner like QuickBlox tomake sure you’’re covered.**\\n## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[On-Premise hosting](https://quickblox.com/hosting/on-premise/)\\n## Frequently Asked Questions\\n### What isHIPAA compliant hosting Any digital healthcare application that contains ePHI needs tobehosted onacloud infrastructure that complies with the technical, administrative, and physical safeguards outlined byHIPAA These safeguards are designed toprotect the integrity ofthe data and tocontrol who has access tothis data HIPAA compliant hosting requirements include encrypted data intransit and storage, access controls, person orentity authentication tools, and more ### Who needs HIPAA compliance Healthcare providers\\u2014 referred toasthe \\u00abcovered entity\\u00bb\\u2014 must comply with HIPAA, but equally their \\u00abbusiness associates\\u00bb who come into contact with patient data when providing services toahealthcare organization are also covered bythis legislation This means any cloud service provider, CPaaS provider, ormedical app developer who are inany way involved instoring, processes, ortransmitting PHI, are considered a \\u2019business associate\\u2019 and must comply with HIPAA ### What isPHI and ePHI Any medical data that contains individually identifiable health information about apatient (e.g name, address, date ofbirth, social security number) isreferred toasprotected health information (PHI), orwhen stored electronically ePHI There isanabundance ofmedical records including bills from doctors, emails, MRI scans, blood test results etc that fall under the rubric ofPHI/ePHI ### How much does HIPAA compliant hosting cost\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 69 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# HIPAA Compliant Hosting\\nOur healthcare communication solutions are designed with HIPAA compliance inmind Build and deliver powerful HIPAA chat apps inthe full confidence that sensitive ePHI remains secure and compliance requirements are satisfied ## What isHIPAA Compliance HIPAA (Health Insurance Portability and Accountability Act of1996) sets national standards for safeguarding protected health information (PHI) Any business that collects, stores, ortransmits PHI isrequired tocomply with HIPAA physical, technical, and administrative safeguards Failure todosocan result incompromised patient data and hefty penalties for the involved party ## Why QuickBlox ### Experienced inHealthcare\\nWeare experienced working with the Healthcare industry and HealthTech Weprovide HIPAA compliant hosting solutions configured for enhanced data privacy and inaccordance with HIPAA security rules ### Host Anywhere\\nWeunderstand your need for data security that’’s why wedeploy our software wherever you need, including inyour own cloud account with ahosting provider ofyour choice sothat sensitive PHI remains firmly inyour ownership and control ### Enterprise Ready\\nWebuild enterprise ready solutions Our skilled DevOps team can provide anarray ofsoftware tools, integrations, and configurations toensure enterprise grade security and support for your HIPAA compliant solution [Speak to us](https://quickblox.com/enterprise/#get-enterprise)\\n## QuickBlox HIPAA Compliant HostingSolutions\\nThe easiest way tosatisfy HIPAA requirements istopartner with aHIPAA compliant communication solutions provider, like QuickBlox Wehave asolid history providing enterprise solutions for healthcare ### Key Features\\n#### Your choice ofHIPAA Compliant Cloud\\nSoftware can bedeployed toyour preferred hosting environment including Amazon Web Services, Google Cloud Platform, and Microsoft Azure\",\n", + " \"Weconfigure your dedicated instance sothat itmeets HIPAA-compliant hosting requirements QuickBlox can also host for you inour own HIPAA compliant account #### Fully Encrypted Server Configuration\\nWith QuickBlox, data isencrypted intransit and atrest Weoffer full encryption ofuser databases, files/content, and connections which means ePHI, communication history, and user data issafe and secure #### Customization ofSoftware tosupport HIPAA Technical Safeguards\\nOur back-end platform can becustomized tosupport numerous security features,e.g * access control via unique usernames and passwords toprevent unauthorized access\\n* person orentity authentication tools such astwo-factor authentication\\n* anonymous sessions with automatic logoff procedures\\n#### AFully Managed Service\\nOur Enterprise Plan provides afully managed service with dedicated maintenance and real-time monitoring Weoffer aService Level Agreement (SLA) with uptime guarantee #### Provision ofBusiness Associate Agreement\\nWeprovide our healthcare customers with aBAA Bysigning this agreement wedemonstrate our knowledge ofHIPAA compliance rules and our experience with supporting compliant healthcare communication solutions ## Advanced Features\\nWeoffer anarray ofdata protection tools tosafeguard your instance without your data ever leaving your server\\n### High Availability and Disaster Recovery(HA/DR)\\n* HA/DR keeps your applications running inthe event ofany system issues, soyour users never lose messaging and calling functionalities * AHigh Availability solution replicates your communication infrastructure toensure constant availability This isideal for critical business solutions like healthcare * Our Disaster Recovery plan provides full backup management toensure that sensitive data can befully recovered inthe worst case scenario ofinterrupted orcompromised services ### Software integration for enhanced security standards\\n* Diligent monitoring ofyour cloud environment with Graylog, alog storage and management tool that allows your engineers toeasily manage logs and structured analytical data all inone place * Intrusion detection with OSSEC, ahost-based system that performs log analysis, integrity checking, registry monitoring, rootlet detection, time-based alerting, and active response\",\n", + " \"* Virus scanning software toautomatically scan, tag, and notify you ofinfected files and malware * Web Application Firewall (WAF) tosecurely control web traffic, blocking spam bots from consuming resources, skewing metrics, and causing downtime onyour healthcare communication application ## HIPAA Compliant Video Hosting\\nConnect patients and doctors together with HIPAA compliant audio &&video calling and video conferencing, built onWebRTC and available with the QuickBlox HIPAA Enterprise Plan\\n### Dedicated TURN Server\\nDedicated WebRTC video calling traffic relay server for video calling through firewalls, bypassing NAT, and connecting geographically dispersed users [Learn more](https://quickblox.com/products/voice-and-video-calling/)\\n### Dedicated Conference Server\\nWeoffer HIPAA video conference hosting with adedicated conference server Enjoy high quality conference calls for multiple simultaneous users onaservice server that you control [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Conference Call Recording\\nConference call recording functionality tosave your video conferences Enables you tostore, access, and share video healthcare communications securely onyour dedicated server [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Telehealth Ready Solution: Q‑Consultation\\nWeoffer aHIPAA compliant virtual waiting room with tele-consultation app Fully customizable, packed with features, and works onany device and the web [Learn more](https://quickblox.com/products/q-consultation/)\\n## HIPAA Compliant Hosting Plans\\nQuickBlox provides arange ofplans depending onthe size ofyour organization and budget All our HIPAA plans provide full data encryption and come with aBusiness Associates Agreement ### HIPAA (Shared) Cloud Plan (starts at**$399/mo**)\\nSuitable for smaller organizations for POCs (proof ofconcept) and MVP (minimal viable product) use-cases that require data encryption but have alimited budget * Software ishosted onour QuickBlox AWS multi-tenant sharedserver\\n* Total user limit:**5000**\\n* File size limit:**50MB**\\n* Support byticketing system\\n### HIPAA Enterprise Plan (startsat**$899/mo**)\\nSuitable for production services granting the customer complete control over their user data, customization, technicalsupport,andSLA * Can behosted onQuickBlox’’s own managed cloud account orincustomer’’s own cloud account with preferred cloud service provider including Amazon Web Services, Google Cloud Platform, Microsoft Azure and others * Personal Account Manager, SLA with uptimeguarantee\\n* Optional Add-ons:\\n* - High Availability and Disaster Recovery (HA/DR)solution\\n* - Security enhancements (e.g.Graylog,OSSEC)\\n* - Dedicated Turn server, Conference callserver\\n### HIPAA On-Premises\\nSuitable for organizations who desire optimal security, require communications toremain within their own private network, and who have their own DevOps and on-premises data center\",\n", + " \"* Hosted onyour own dedicated servers inyour privately owned datacenter\\n* Granting you total control ofyour ePHI and chathistory\\n[Find out more](https://quickblox.com/enterprise/#get-enterprise)\\n## HIPAA Compliant Cloud Hosting\\nThere are avariety ofcloud hosting providers that offer HIPAA compliant environments QuickBlox can deploy software with anyone ofthese and more:\\nHosting with one ofthese cloud providersdoes notguarantee HIPAA compliance Youalso need toensure your application and software meet the safeguards outlined inthe HIPAA securityrule **Work with apartner like QuickBlox tomake sure you’’re covered.**\\n## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[On-Premise hosting](https://quickblox.com/hosting/on-premise/)\\n## Frequently Asked Questions\\n### What isHIPAA compliant hosting Any digital healthcare application that contains ePHI needs tobehosted onacloud infrastructure that complies with the technical, administrative, and physical safeguards outlined byHIPAA These safeguards are designed toprotect the integrity ofthe data and tocontrol who has access tothis data HIPAA compliant hosting requirements include encrypted data intransit and storage, access controls, person orentity authentication tools, and more ### Who needs HIPAA compliance Healthcare providers\\u2014 referred toasthe \\u00abcovered entity\\u00bb\\u2014 must comply with HIPAA, but equally their \\u00abbusiness associates\\u00bb who come into contact with patient data when providing services toahealthcare organization are also covered bythis legislation This means any cloud service provider, CPaaS provider, ormedical app developer who are inany way involved instoring, processes, ortransmitting PHI, are considered a \\u2019business associate\\u2019 and must comply with HIPAA ### What isPHI and ePHI Any medical data that contains individually identifiable health information about apatient (e.g name, address, date ofbirth, social security number) isreferred toasprotected health information (PHI), orwhen stored electronically ePHI There isanabundance ofmedical records including bills from doctors, emails, MRI scans, blood test results etc that fall under the rubric ofPHI/ePHI ### How much does HIPAA compliant hosting cost\",\n", + " \"The need for additional security enhancements such asdatabase encryption and software customization for extra monitoring &&intrusion detection means ahigher cost for HIPAA compliant hosting Encrypted HIPAA hosting onour shared cloud starts at$399/mo ### Which cloud providers are HIPAA compliant There are several cloud hosting providers who provide aninfrastructure that can beHIPAA compliant (e.g AWS, GCP, Azure), however, you are still responsible for configuring your software tosatisfy the HIPAA security rule Check tosee ifthe cloud provider will sign aBAA agreement and choose aservice provider like QuickBlox who can ensure aHIPAA compliant solution ### What are the penalties for non-compliance Penalties depend onthe severity ofthe breach, whether itwas intentional ornot They range from $100 to$50,000 per breach ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [HIPAA Compliant Cloud Hosting: What does it mean?](https://quickblox.com/blog/hipaa-compliant-cloud-hosting-what-does-it-mean/)\\nAnna S 31 Dec 2021\\n[Azure](https://quickblox.com/blog/hosting/azure/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Microsoft Azure HIPAA Compliant?](https://quickblox.com/blog/is-microsoft-azure-hipaa-compliant/)\\nAnna S 12 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Google Cloud Platform (GCP)](https://quickblox.com/blog/hosting/google-cloud-platform-gcp/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Google Cloud Platform HIPAA Compliant?](https://quickblox.com/blog/is-google-cloud-platform-hipaa-compliant/)\\nAnna S 1 Oct 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd\",\n", + " \"trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 70 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# HIPAA Compliant Hosting\\nOur healthcare communication solutions are designed with HIPAA compliance inmind Build and deliver powerful HIPAA chat apps inthe full confidence that sensitive ePHI remains secure and compliance requirements are satisfied ## What isHIPAA Compliance HIPAA (Health Insurance Portability and Accountability Act of1996) sets national standards for safeguarding protected health information (PHI) Any business that collects, stores, ortransmits PHI isrequired tocomply with HIPAA physical, technical, and administrative safeguards Failure todosocan result incompromised patient data and hefty penalties for the involved party ## Why QuickBlox ### Experienced inHealthcare\\nWeare experienced working with the Healthcare industry and HealthTech Weprovide HIPAA compliant hosting solutions configured for enhanced data privacy and inaccordance with HIPAA security rules ### Host Anywhere\\nWeunderstand your need for data security that’’s why wedeploy our software wherever you need, including inyour own cloud account with ahosting provider ofyour choice sothat sensitive PHI remains firmly inyour ownership and control ### Enterprise Ready\\nWebuild enterprise ready solutions Our skilled DevOps team can provide anarray ofsoftware tools, integrations, and configurations toensure enterprise grade security and support for your HIPAA compliant solution [Speak to us](https://quickblox.com/enterprise/#get-enterprise)\\n## QuickBlox HIPAA Compliant HostingSolutions\\nThe easiest way tosatisfy HIPAA requirements istopartner with aHIPAA compliant communication solutions provider, like QuickBlox Wehave asolid history providing enterprise solutions for healthcare ### Key Features\\n#### Your choice ofHIPAA Compliant Cloud\\nSoftware can bedeployed toyour preferred hosting environment including Amazon Web Services, Google Cloud Platform, and Microsoft Azure\",\n", + " \"Weconfigure your dedicated instance sothat itmeets HIPAA-compliant hosting requirements QuickBlox can also host for you inour own HIPAA compliant account #### Fully Encrypted Server Configuration\\nWith QuickBlox, data isencrypted intransit and atrest Weoffer full encryption ofuser databases, files/content, and connections which means ePHI, communication history, and user data issafe and secure #### Customization ofSoftware tosupport HIPAA Technical Safeguards\\nOur back-end platform can becustomized tosupport numerous security features,e.g * access control via unique usernames and passwords toprevent unauthorized access\\n* person orentity authentication tools such astwo-factor authentication\\n* anonymous sessions with automatic logoff procedures\\n#### AFully Managed Service\\nOur Enterprise Plan provides afully managed service with dedicated maintenance and real-time monitoring Weoffer aService Level Agreement (SLA) with uptime guarantee #### Provision ofBusiness Associate Agreement\\nWeprovide our healthcare customers with aBAA Bysigning this agreement wedemonstrate our knowledge ofHIPAA compliance rules and our experience with supporting compliant healthcare communication solutions ## Advanced Features\\nWeoffer anarray ofdata protection tools tosafeguard your instance without your data ever leaving your server\\n### High Availability and Disaster Recovery(HA/DR)\\n* HA/DR keeps your applications running inthe event ofany system issues, soyour users never lose messaging and calling functionalities * AHigh Availability solution replicates your communication infrastructure toensure constant availability This isideal for critical business solutions like healthcare * Our Disaster Recovery plan provides full backup management toensure that sensitive data can befully recovered inthe worst case scenario ofinterrupted orcompromised services ### Software integration for enhanced security standards\\n* Diligent monitoring ofyour cloud environment with Graylog, alog storage and management tool that allows your engineers toeasily manage logs and structured analytical data all inone place * Intrusion detection with OSSEC, ahost-based system that performs log analysis, integrity checking, registry monitoring, rootlet detection, time-based alerting, and active response\",\n", + " \"* Virus scanning software toautomatically scan, tag, and notify you ofinfected files and malware * Web Application Firewall (WAF) tosecurely control web traffic, blocking spam bots from consuming resources, skewing metrics, and causing downtime onyour healthcare communication application ## HIPAA Compliant Video Hosting\\nConnect patients and doctors together with HIPAA compliant audio &&video calling and video conferencing, built onWebRTC and available with the QuickBlox HIPAA Enterprise Plan\\n### Dedicated TURN Server\\nDedicated WebRTC video calling traffic relay server for video calling through firewalls, bypassing NAT, and connecting geographically dispersed users [Learn more](https://quickblox.com/products/voice-and-video-calling/)\\n### Dedicated Conference Server\\nWeoffer HIPAA video conference hosting with adedicated conference server Enjoy high quality conference calls for multiple simultaneous users onaservice server that you control [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Conference Call Recording\\nConference call recording functionality tosave your video conferences Enables you tostore, access, and share video healthcare communications securely onyour dedicated server [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Telehealth Ready Solution: Q‑Consultation\\nWeoffer aHIPAA compliant virtual waiting room with tele-consultation app Fully customizable, packed with features, and works onany device and the web [Learn more](https://quickblox.com/products/q-consultation/)\\n## HIPAA Compliant Hosting Plans\\nQuickBlox provides arange ofplans depending onthe size ofyour organization and budget All our HIPAA plans provide full data encryption and come with aBusiness Associates Agreement ### HIPAA (Shared) Cloud Plan (starts at**$399/mo**)\\nSuitable for smaller organizations for POCs (proof ofconcept) and MVP (minimal viable product) use-cases that require data encryption but have alimited budget * Software ishosted onour QuickBlox AWS multi-tenant sharedserver\\n* Total user limit:**5000**\\n* File size limit:**50MB**\\n* Support byticketing system\\n### HIPAA Enterprise Plan (startsat**$899/mo**)\\nSuitable for production services granting the customer complete control over their user data, customization, technicalsupport,andSLA * Can behosted onQuickBlox’’s own managed cloud account orincustomer’’s own cloud account with preferred cloud service provider including Amazon Web Services, Google Cloud Platform, Microsoft Azure and others * Personal Account Manager, SLA with uptimeguarantee\\n* Optional Add-ons:\\n* - High Availability and Disaster Recovery (HA/DR)solution\\n* - Security enhancements (e.g.Graylog,OSSEC)\\n* - Dedicated Turn server, Conference callserver\\n### HIPAA On-Premises\\nSuitable for organizations who desire optimal security, require communications toremain within their own private network, and who have their own DevOps and on-premises data center\",\n", + " \"* Hosted onyour own dedicated servers inyour privately owned datacenter\\n* Granting you total control ofyour ePHI and chathistory\\n[Find out more](https://quickblox.com/enterprise/#get-enterprise)\\n## HIPAA Compliant Cloud Hosting\\nThere are avariety ofcloud hosting providers that offer HIPAA compliant environments QuickBlox can deploy software with anyone ofthese and more:\\nHosting with one ofthese cloud providersdoes notguarantee HIPAA compliance Youalso need toensure your application and software meet the safeguards outlined inthe HIPAA securityrule **Work with apartner like QuickBlox tomake sure you’’re covered.**\\n## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[On-Premise hosting](https://quickblox.com/hosting/on-premise/)\\n## Frequently Asked Questions\\n### What isHIPAA compliant hosting Any digital healthcare application that contains ePHI needs tobehosted onacloud infrastructure that complies with the technical, administrative, and physical safeguards outlined byHIPAA These safeguards are designed toprotect the integrity ofthe data and tocontrol who has access tothis data HIPAA compliant hosting requirements include encrypted data intransit and storage, access controls, person orentity authentication tools, and more ### Who needs HIPAA compliance Healthcare providers\\u2014 referred toasthe \\u00abcovered entity\\u00bb\\u2014 must comply with HIPAA, but equally their \\u00abbusiness associates\\u00bb who come into contact with patient data when providing services toahealthcare organization are also covered bythis legislation This means any cloud service provider, CPaaS provider, ormedical app developer who are inany way involved instoring, processes, ortransmitting PHI, are considered a \\u2019business associate\\u2019 and must comply with HIPAA ### What isPHI and ePHI Any medical data that contains individually identifiable health information about apatient (e.g name, address, date ofbirth, social security number) isreferred toasprotected health information (PHI), orwhen stored electronically ePHI There isanabundance ofmedical records including bills from doctors, emails, MRI scans, blood test results etc that fall under the rubric ofPHI/ePHI ### How much does HIPAA compliant hosting cost\",\n", + " \"The need for additional security enhancements such asdatabase encryption and software customization for extra monitoring &&intrusion detection means ahigher cost for HIPAA compliant hosting Encrypted HIPAA hosting onour shared cloud starts at$399/mo ### Which cloud providers are HIPAA compliant There are several cloud hosting providers who provide aninfrastructure that can beHIPAA compliant (e.g AWS, GCP, Azure), however, you are still responsible for configuring your software tosatisfy the HIPAA security rule Check tosee ifthe cloud provider will sign aBAA agreement and choose aservice provider like QuickBlox who can ensure aHIPAA compliant solution ### What are the penalties for non-compliance Penalties depend onthe severity ofthe breach, whether itwas intentional ornot They range from $100 to$50,000 per breach ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [HIPAA Compliant Cloud Hosting: What does it mean?](https://quickblox.com/blog/hipaa-compliant-cloud-hosting-what-does-it-mean/)\\nAnna S 31 Dec 2021\\n[Azure](https://quickblox.com/blog/hosting/azure/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Microsoft Azure HIPAA Compliant?](https://quickblox.com/blog/is-microsoft-azure-hipaa-compliant/)\\nAnna S 12 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Google Cloud Platform (GCP)](https://quickblox.com/blog/hosting/google-cloud-platform-gcp/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Google Cloud Platform HIPAA Compliant?](https://quickblox.com/blog/is-google-cloud-platform-hipaa-compliant/)\\nAnna S 1 Oct 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd\",\n", + " \"trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"The need for additional security enhancements such asdatabase encryption and software customization for extra monitoring &&intrusion detection means ahigher cost for HIPAA compliant hosting Encrypted HIPAA hosting onour shared cloud starts at$399/mo ### Which cloud providers are HIPAA compliant There are several cloud hosting providers who provide aninfrastructure that can beHIPAA compliant (e.g AWS, GCP, Azure), however, you are still responsible for configuring your software tosatisfy the HIPAA security rule Check tosee ifthe cloud provider will sign aBAA agreement and choose aservice provider like QuickBlox who can ensure aHIPAA compliant solution ### What are the penalties for non-compliance Penalties depend onthe severity ofthe breach, whether itwas intentional ornot They range from $100 to$50,000 per breach ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [HIPAA Compliant Cloud Hosting: What does it mean?](https://quickblox.com/blog/hipaa-compliant-cloud-hosting-what-does-it-mean/)\\nAnna S 31 Dec 2021\\n[Azure](https://quickblox.com/blog/hosting/azure/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Microsoft Azure HIPAA Compliant?](https://quickblox.com/blog/is-microsoft-azure-hipaa-compliant/)\\nAnna S 12 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Google Cloud Platform (GCP)](https://quickblox.com/blog/hosting/google-cloud-platform-gcp/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Google Cloud Platform HIPAA Compliant?](https://quickblox.com/blog/is-google-cloud-platform-hipaa-compliant/)\\nAnna S 1 Oct 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 71 Type: finish_branch\n", + "output: \"This chunk provides an overview of QuickBlox's communication tools and solutions, highlighting SDKs, APIs, AI features, white-label solutions, industry-specific applications, enterprise services, and developer resources. It also emphasizes QuickBlox's capabilities in building communication features for apps, offering HIPAA-compliant hosting, and providing customizable solutions for industries like healthcare, finance, and education.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 72 Type: finish_branch\n", + "output: \"The chunk is part of a section detailing QuickBlox's HIPAA-compliant solutions, specifically focusing on video hosting and various hosting plans tailored for healthcare communication applications. It discusses features like virus scanning, web application firewall, and dedicated servers for video calls, as well as different hosting plans (Shared Cloud, Enterprise, and On-Premises) with features like data encryption, user limits, and support options, emphasizing secure telehealth and video conferencing solutions.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 73 Type: finish_branch\n", + "output: \"This chunk discusses QuickBlox's HIPAA-compliant hosting solutions, focusing on fully encrypted server configurations, customizable software for HIPAA technical safeguards, and a fully managed service with a Business Associate Agreement (BAA). It highlights advanced features like High Availability and Disaster Recovery (HA/DR) and enhanced security standards, including monitoring tools and intrusion detection, to ensure data protection and compliance with HIPAA rules in healthcare communication solutions.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 74 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# HIPAA Compliant Hosting\\nOur healthcare communication solutions are designed with HIPAA compliance inmind Build and deliver powerful HIPAA chat apps inthe full confidence that sensitive ePHI remains secure and compliance requirements are satisfied ## What isHIPAA Compliance HIPAA (Health Insurance Portability and Accountability Act of1996) sets national standards for safeguarding protected health information (PHI) Any business that collects, stores, ortransmits PHI isrequired tocomply with HIPAA physical, technical, and administrative safeguards Failure todosocan result incompromised patient data and hefty penalties for the involved party ## Why QuickBlox ### Experienced inHealthcare\\nWeare experienced working with the Healthcare industry and HealthTech Weprovide HIPAA compliant hosting solutions configured for enhanced data privacy and inaccordance with HIPAA security rules ### Host Anywhere\\nWeunderstand your need for data security that’’s why wedeploy our software wherever you need, including inyour own cloud account with ahosting provider ofyour choice sothat sensitive PHI remains firmly inyour ownership and control ### Enterprise Ready\\nWebuild enterprise ready solutions Our skilled DevOps team can provide anarray ofsoftware tools, integrations, and configurations toensure enterprise grade security and support for your HIPAA compliant solution [Speak to us](https://quickblox.com/enterprise/#get-enterprise)\\n## QuickBlox HIPAA Compliant HostingSolutions\\nThe easiest way tosatisfy HIPAA requirements istopartner with aHIPAA compliant communication solutions provider, like QuickBlox Wehave asolid history providing enterprise solutions for healthcare ### Key Features\\n#### Your choice ofHIPAA Compliant Cloud\\nSoftware can bedeployed toyour preferred hosting environment including Amazon Web Services, Google Cloud Platform, and Microsoft Azure\",\n", + " \"Weconfigure your dedicated instance sothat itmeets HIPAA-compliant hosting requirements QuickBlox can also host for you inour own HIPAA compliant account #### Fully Encrypted Server Configuration\\nWith QuickBlox, data isencrypted intransit and atrest Weoffer full encryption ofuser databases, files/content, and connections which means ePHI, communication history, and user data issafe and secure #### Customization ofSoftware tosupport HIPAA Technical Safeguards\\nOur back-end platform can becustomized tosupport numerous security features,e.g * access control via unique usernames and passwords toprevent unauthorized access\\n* person orentity authentication tools such astwo-factor authentication\\n* anonymous sessions with automatic logoff procedures\\n#### AFully Managed Service\\nOur Enterprise Plan provides afully managed service with dedicated maintenance and real-time monitoring Weoffer aService Level Agreement (SLA) with uptime guarantee #### Provision ofBusiness Associate Agreement\\nWeprovide our healthcare customers with aBAA Bysigning this agreement wedemonstrate our knowledge ofHIPAA compliance rules and our experience with supporting compliant healthcare communication solutions ## Advanced Features\\nWeoffer anarray ofdata protection tools tosafeguard your instance without your data ever leaving your server\\n### High Availability and Disaster Recovery(HA/DR)\\n* HA/DR keeps your applications running inthe event ofany system issues, soyour users never lose messaging and calling functionalities * AHigh Availability solution replicates your communication infrastructure toensure constant availability This isideal for critical business solutions like healthcare * Our Disaster Recovery plan provides full backup management toensure that sensitive data can befully recovered inthe worst case scenario ofinterrupted orcompromised services ### Software integration for enhanced security standards\\n* Diligent monitoring ofyour cloud environment with Graylog, alog storage and management tool that allows your engineers toeasily manage logs and structured analytical data all inone place * Intrusion detection with OSSEC, ahost-based system that performs log analysis, integrity checking, registry monitoring, rootlet detection, time-based alerting, and active response\",\n", + " \"* Virus scanning software toautomatically scan, tag, and notify you ofinfected files and malware * Web Application Firewall (WAF) tosecurely control web traffic, blocking spam bots from consuming resources, skewing metrics, and causing downtime onyour healthcare communication application ## HIPAA Compliant Video Hosting\\nConnect patients and doctors together with HIPAA compliant audio &&video calling and video conferencing, built onWebRTC and available with the QuickBlox HIPAA Enterprise Plan\\n### Dedicated TURN Server\\nDedicated WebRTC video calling traffic relay server for video calling through firewalls, bypassing NAT, and connecting geographically dispersed users [Learn more](https://quickblox.com/products/voice-and-video-calling/)\\n### Dedicated Conference Server\\nWeoffer HIPAA video conference hosting with adedicated conference server Enjoy high quality conference calls for multiple simultaneous users onaservice server that you control [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Conference Call Recording\\nConference call recording functionality tosave your video conferences Enables you tostore, access, and share video healthcare communications securely onyour dedicated server [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Telehealth Ready Solution: Q‑Consultation\\nWeoffer aHIPAA compliant virtual waiting room with tele-consultation app Fully customizable, packed with features, and works onany device and the web [Learn more](https://quickblox.com/products/q-consultation/)\\n## HIPAA Compliant Hosting Plans\\nQuickBlox provides arange ofplans depending onthe size ofyour organization and budget All our HIPAA plans provide full data encryption and come with aBusiness Associates Agreement ### HIPAA (Shared) Cloud Plan (starts at**$399/mo**)\\nSuitable for smaller organizations for POCs (proof ofconcept) and MVP (minimal viable product) use-cases that require data encryption but have alimited budget * Software ishosted onour QuickBlox AWS multi-tenant sharedserver\\n* Total user limit:**5000**\\n* File size limit:**50MB**\\n* Support byticketing system\\n### HIPAA Enterprise Plan (startsat**$899/mo**)\\nSuitable for production services granting the customer complete control over their user data, customization, technicalsupport,andSLA * Can behosted onQuickBlox’’s own managed cloud account orincustomer’’s own cloud account with preferred cloud service provider including Amazon Web Services, Google Cloud Platform, Microsoft Azure and others * Personal Account Manager, SLA with uptimeguarantee\\n* Optional Add-ons:\\n* - High Availability and Disaster Recovery (HA/DR)solution\\n* - Security enhancements (e.g.Graylog,OSSEC)\\n* - Dedicated Turn server, Conference callserver\\n### HIPAA On-Premises\\nSuitable for organizations who desire optimal security, require communications toremain within their own private network, and who have their own DevOps and on-premises data center\",\n", + " \"* Hosted onyour own dedicated servers inyour privately owned datacenter\\n* Granting you total control ofyour ePHI and chathistory\\n[Find out more](https://quickblox.com/enterprise/#get-enterprise)\\n## HIPAA Compliant Cloud Hosting\\nThere are avariety ofcloud hosting providers that offer HIPAA compliant environments QuickBlox can deploy software with anyone ofthese and more:\\nHosting with one ofthese cloud providersdoes notguarantee HIPAA compliance Youalso need toensure your application and software meet the safeguards outlined inthe HIPAA securityrule **Work with apartner like QuickBlox tomake sure you’’re covered.**\\n## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[On-Premise hosting](https://quickblox.com/hosting/on-premise/)\\n## Frequently Asked Questions\\n### What isHIPAA compliant hosting Any digital healthcare application that contains ePHI needs tobehosted onacloud infrastructure that complies with the technical, administrative, and physical safeguards outlined byHIPAA These safeguards are designed toprotect the integrity ofthe data and tocontrol who has access tothis data HIPAA compliant hosting requirements include encrypted data intransit and storage, access controls, person orentity authentication tools, and more ### Who needs HIPAA compliance Healthcare providers\\u2014 referred toasthe \\u00abcovered entity\\u00bb\\u2014 must comply with HIPAA, but equally their \\u00abbusiness associates\\u00bb who come into contact with patient data when providing services toahealthcare organization are also covered bythis legislation This means any cloud service provider, CPaaS provider, ormedical app developer who are inany way involved instoring, processes, ortransmitting PHI, are considered a \\u2019business associate\\u2019 and must comply with HIPAA ### What isPHI and ePHI Any medical data that contains individually identifiable health information about apatient (e.g name, address, date ofbirth, social security number) isreferred toasprotected health information (PHI), orwhen stored electronically ePHI There isanabundance ofmedical records including bills from doctors, emails, MRI scans, blood test results etc that fall under the rubric ofPHI/ePHI ### How much does HIPAA compliant hosting cost\",\n", + " \"The need for additional security enhancements such asdatabase encryption and software customization for extra monitoring &&intrusion detection means ahigher cost for HIPAA compliant hosting Encrypted HIPAA hosting onour shared cloud starts at$399/mo ### Which cloud providers are HIPAA compliant There are several cloud hosting providers who provide aninfrastructure that can beHIPAA compliant (e.g AWS, GCP, Azure), however, you are still responsible for configuring your software tosatisfy the HIPAA security rule Check tosee ifthe cloud provider will sign aBAA agreement and choose aservice provider like QuickBlox who can ensure aHIPAA compliant solution ### What are the penalties for non-compliance Penalties depend onthe severity ofthe breach, whether itwas intentional ornot They range from $100 to$50,000 per breach ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [HIPAA Compliant Cloud Hosting: What does it mean?](https://quickblox.com/blog/hipaa-compliant-cloud-hosting-what-does-it-mean/)\\nAnna S 31 Dec 2021\\n[Azure](https://quickblox.com/blog/hosting/azure/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Microsoft Azure HIPAA Compliant?](https://quickblox.com/blog/is-microsoft-azure-hipaa-compliant/)\\nAnna S 12 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Google Cloud Platform (GCP)](https://quickblox.com/blog/hosting/google-cloud-platform-gcp/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Google Cloud Platform HIPAA Compliant?](https://quickblox.com/blog/is-google-cloud-platform-hipaa-compliant/)\\nAnna S 1 Oct 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd\",\n", + " \"trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"Weconfigure your dedicated instance sothat itmeets HIPAA-compliant hosting requirements QuickBlox can also host for you inour own HIPAA compliant account #### Fully Encrypted Server Configuration\\nWith QuickBlox, data isencrypted intransit and atrest Weoffer full encryption ofuser databases, files/content, and connections which means ePHI, communication history, and user data issafe and secure #### Customization ofSoftware tosupport HIPAA Technical Safeguards\\nOur back-end platform can becustomized tosupport numerous security features,e.g * access control via unique usernames and passwords toprevent unauthorized access\\n* person orentity authentication tools such astwo-factor authentication\\n* anonymous sessions with automatic logoff procedures\\n#### AFully Managed Service\\nOur Enterprise Plan provides afully managed service with dedicated maintenance and real-time monitoring Weoffer aService Level Agreement (SLA) with uptime guarantee #### Provision ofBusiness Associate Agreement\\nWeprovide our healthcare customers with aBAA Bysigning this agreement wedemonstrate our knowledge ofHIPAA compliance rules and our experience with supporting compliant healthcare communication solutions ## Advanced Features\\nWeoffer anarray ofdata protection tools tosafeguard your instance without your data ever leaving your server\\n### High Availability and Disaster Recovery(HA/DR)\\n* HA/DR keeps your applications running inthe event ofany system issues, soyour users never lose messaging and calling functionalities * AHigh Availability solution replicates your communication infrastructure toensure constant availability This isideal for critical business solutions like healthcare * Our Disaster Recovery plan provides full backup management toensure that sensitive data can befully recovered inthe worst case scenario ofinterrupted orcompromised services ### Software integration for enhanced security standards\\n* Diligent monitoring ofyour cloud environment with Graylog, alog storage and management tool that allows your engineers toeasily manage logs and structured analytical data all inone place * Intrusion detection with OSSEC, ahost-based system that performs log analysis, integrity checking, registry monitoring, rootlet detection, time-based alerting, and active response\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 75 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# HIPAA Compliant Hosting\\nOur healthcare communication solutions are designed with HIPAA compliance inmind Build and deliver powerful HIPAA chat apps inthe full confidence that sensitive ePHI remains secure and compliance requirements are satisfied ## What isHIPAA Compliance HIPAA (Health Insurance Portability and Accountability Act of1996) sets national standards for safeguarding protected health information (PHI) Any business that collects, stores, ortransmits PHI isrequired tocomply with HIPAA physical, technical, and administrative safeguards Failure todosocan result incompromised patient data and hefty penalties for the involved party ## Why QuickBlox ### Experienced inHealthcare\\nWeare experienced working with the Healthcare industry and HealthTech Weprovide HIPAA compliant hosting solutions configured for enhanced data privacy and inaccordance with HIPAA security rules ### Host Anywhere\\nWeunderstand your need for data security that’’s why wedeploy our software wherever you need, including inyour own cloud account with ahosting provider ofyour choice sothat sensitive PHI remains firmly inyour ownership and control ### Enterprise Ready\\nWebuild enterprise ready solutions Our skilled DevOps team can provide anarray ofsoftware tools, integrations, and configurations toensure enterprise grade security and support for your HIPAA compliant solution [Speak to us](https://quickblox.com/enterprise/#get-enterprise)\\n## QuickBlox HIPAA Compliant HostingSolutions\\nThe easiest way tosatisfy HIPAA requirements istopartner with aHIPAA compliant communication solutions provider, like QuickBlox Wehave asolid history providing enterprise solutions for healthcare ### Key Features\\n#### Your choice ofHIPAA Compliant Cloud\\nSoftware can bedeployed toyour preferred hosting environment including Amazon Web Services, Google Cloud Platform, and Microsoft Azure\",\n", + " \"Weconfigure your dedicated instance sothat itmeets HIPAA-compliant hosting requirements QuickBlox can also host for you inour own HIPAA compliant account #### Fully Encrypted Server Configuration\\nWith QuickBlox, data isencrypted intransit and atrest Weoffer full encryption ofuser databases, files/content, and connections which means ePHI, communication history, and user data issafe and secure #### Customization ofSoftware tosupport HIPAA Technical Safeguards\\nOur back-end platform can becustomized tosupport numerous security features,e.g * access control via unique usernames and passwords toprevent unauthorized access\\n* person orentity authentication tools such astwo-factor authentication\\n* anonymous sessions with automatic logoff procedures\\n#### AFully Managed Service\\nOur Enterprise Plan provides afully managed service with dedicated maintenance and real-time monitoring Weoffer aService Level Agreement (SLA) with uptime guarantee #### Provision ofBusiness Associate Agreement\\nWeprovide our healthcare customers with aBAA Bysigning this agreement wedemonstrate our knowledge ofHIPAA compliance rules and our experience with supporting compliant healthcare communication solutions ## Advanced Features\\nWeoffer anarray ofdata protection tools tosafeguard your instance without your data ever leaving your server\\n### High Availability and Disaster Recovery(HA/DR)\\n* HA/DR keeps your applications running inthe event ofany system issues, soyour users never lose messaging and calling functionalities * AHigh Availability solution replicates your communication infrastructure toensure constant availability This isideal for critical business solutions like healthcare * Our Disaster Recovery plan provides full backup management toensure that sensitive data can befully recovered inthe worst case scenario ofinterrupted orcompromised services ### Software integration for enhanced security standards\\n* Diligent monitoring ofyour cloud environment with Graylog, alog storage and management tool that allows your engineers toeasily manage logs and structured analytical data all inone place * Intrusion detection with OSSEC, ahost-based system that performs log analysis, integrity checking, registry monitoring, rootlet detection, time-based alerting, and active response\",\n", + " \"* Virus scanning software toautomatically scan, tag, and notify you ofinfected files and malware * Web Application Firewall (WAF) tosecurely control web traffic, blocking spam bots from consuming resources, skewing metrics, and causing downtime onyour healthcare communication application ## HIPAA Compliant Video Hosting\\nConnect patients and doctors together with HIPAA compliant audio &&video calling and video conferencing, built onWebRTC and available with the QuickBlox HIPAA Enterprise Plan\\n### Dedicated TURN Server\\nDedicated WebRTC video calling traffic relay server for video calling through firewalls, bypassing NAT, and connecting geographically dispersed users [Learn more](https://quickblox.com/products/voice-and-video-calling/)\\n### Dedicated Conference Server\\nWeoffer HIPAA video conference hosting with adedicated conference server Enjoy high quality conference calls for multiple simultaneous users onaservice server that you control [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Conference Call Recording\\nConference call recording functionality tosave your video conferences Enables you tostore, access, and share video healthcare communications securely onyour dedicated server [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Telehealth Ready Solution: Q‑Consultation\\nWeoffer aHIPAA compliant virtual waiting room with tele-consultation app Fully customizable, packed with features, and works onany device and the web [Learn more](https://quickblox.com/products/q-consultation/)\\n## HIPAA Compliant Hosting Plans\\nQuickBlox provides arange ofplans depending onthe size ofyour organization and budget All our HIPAA plans provide full data encryption and come with aBusiness Associates Agreement ### HIPAA (Shared) Cloud Plan (starts at**$399/mo**)\\nSuitable for smaller organizations for POCs (proof ofconcept) and MVP (minimal viable product) use-cases that require data encryption but have alimited budget * Software ishosted onour QuickBlox AWS multi-tenant sharedserver\\n* Total user limit:**5000**\\n* File size limit:**50MB**\\n* Support byticketing system\\n### HIPAA Enterprise Plan (startsat**$899/mo**)\\nSuitable for production services granting the customer complete control over their user data, customization, technicalsupport,andSLA * Can behosted onQuickBlox’’s own managed cloud account orincustomer’’s own cloud account with preferred cloud service provider including Amazon Web Services, Google Cloud Platform, Microsoft Azure and others * Personal Account Manager, SLA with uptimeguarantee\\n* Optional Add-ons:\\n* - High Availability and Disaster Recovery (HA/DR)solution\\n* - Security enhancements (e.g.Graylog,OSSEC)\\n* - Dedicated Turn server, Conference callserver\\n### HIPAA On-Premises\\nSuitable for organizations who desire optimal security, require communications toremain within their own private network, and who have their own DevOps and on-premises data center\",\n", + " \"* Hosted onyour own dedicated servers inyour privately owned datacenter\\n* Granting you total control ofyour ePHI and chathistory\\n[Find out more](https://quickblox.com/enterprise/#get-enterprise)\\n## HIPAA Compliant Cloud Hosting\\nThere are avariety ofcloud hosting providers that offer HIPAA compliant environments QuickBlox can deploy software with anyone ofthese and more:\\nHosting with one ofthese cloud providersdoes notguarantee HIPAA compliance Youalso need toensure your application and software meet the safeguards outlined inthe HIPAA securityrule **Work with apartner like QuickBlox tomake sure you’’re covered.**\\n## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[On-Premise hosting](https://quickblox.com/hosting/on-premise/)\\n## Frequently Asked Questions\\n### What isHIPAA compliant hosting Any digital healthcare application that contains ePHI needs tobehosted onacloud infrastructure that complies with the technical, administrative, and physical safeguards outlined byHIPAA These safeguards are designed toprotect the integrity ofthe data and tocontrol who has access tothis data HIPAA compliant hosting requirements include encrypted data intransit and storage, access controls, person orentity authentication tools, and more ### Who needs HIPAA compliance Healthcare providers\\u2014 referred toasthe \\u00abcovered entity\\u00bb\\u2014 must comply with HIPAA, but equally their \\u00abbusiness associates\\u00bb who come into contact with patient data when providing services toahealthcare organization are also covered bythis legislation This means any cloud service provider, CPaaS provider, ormedical app developer who are inany way involved instoring, processes, ortransmitting PHI, are considered a \\u2019business associate\\u2019 and must comply with HIPAA ### What isPHI and ePHI Any medical data that contains individually identifiable health information about apatient (e.g name, address, date ofbirth, social security number) isreferred toasprotected health information (PHI), orwhen stored electronically ePHI There isanabundance ofmedical records including bills from doctors, emails, MRI scans, blood test results etc that fall under the rubric ofPHI/ePHI ### How much does HIPAA compliant hosting cost\",\n", + " \"The need for additional security enhancements such asdatabase encryption and software customization for extra monitoring &&intrusion detection means ahigher cost for HIPAA compliant hosting Encrypted HIPAA hosting onour shared cloud starts at$399/mo ### Which cloud providers are HIPAA compliant There are several cloud hosting providers who provide aninfrastructure that can beHIPAA compliant (e.g AWS, GCP, Azure), however, you are still responsible for configuring your software tosatisfy the HIPAA security rule Check tosee ifthe cloud provider will sign aBAA agreement and choose aservice provider like QuickBlox who can ensure aHIPAA compliant solution ### What are the penalties for non-compliance Penalties depend onthe severity ofthe breach, whether itwas intentional ornot They range from $100 to$50,000 per breach ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [HIPAA Compliant Cloud Hosting: What does it mean?](https://quickblox.com/blog/hipaa-compliant-cloud-hosting-what-does-it-mean/)\\nAnna S 31 Dec 2021\\n[Azure](https://quickblox.com/blog/hosting/azure/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Microsoft Azure HIPAA Compliant?](https://quickblox.com/blog/is-microsoft-azure-hipaa-compliant/)\\nAnna S 12 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Google Cloud Platform (GCP)](https://quickblox.com/blog/hosting/google-cloud-platform-gcp/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Google Cloud Platform HIPAA Compliant?](https://quickblox.com/blog/is-google-cloud-platform-hipaa-compliant/)\\nAnna S 1 Oct 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd\",\n", + " \"trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# HIPAA Compliant Hosting\\nOur healthcare communication solutions are designed with HIPAA compliance inmind Build and deliver powerful HIPAA chat apps inthe full confidence that sensitive ePHI remains secure and compliance requirements are satisfied ## What isHIPAA Compliance HIPAA (Health Insurance Portability and Accountability Act of1996) sets national standards for safeguarding protected health information (PHI) Any business that collects, stores, ortransmits PHI isrequired tocomply with HIPAA physical, technical, and administrative safeguards Failure todosocan result incompromised patient data and hefty penalties for the involved party ## Why QuickBlox ### Experienced inHealthcare\\nWeare experienced working with the Healthcare industry and HealthTech Weprovide HIPAA compliant hosting solutions configured for enhanced data privacy and inaccordance with HIPAA security rules ### Host Anywhere\\nWeunderstand your need for data security that’’s why wedeploy our software wherever you need, including inyour own cloud account with ahosting provider ofyour choice sothat sensitive PHI remains firmly inyour ownership and control ### Enterprise Ready\\nWebuild enterprise ready solutions Our skilled DevOps team can provide anarray ofsoftware tools, integrations, and configurations toensure enterprise grade security and support for your HIPAA compliant solution [Speak to us](https://quickblox.com/enterprise/#get-enterprise)\\n## QuickBlox HIPAA Compliant HostingSolutions\\nThe easiest way tosatisfy HIPAA requirements istopartner with aHIPAA compliant communication solutions provider, like QuickBlox Wehave asolid history providing enterprise solutions for healthcare ### Key Features\\n#### Your choice ofHIPAA Compliant Cloud\\nSoftware can bedeployed toyour preferred hosting environment including Amazon Web Services, Google Cloud Platform, and Microsoft Azure\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 76 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# HIPAA Compliant Hosting\\nOur healthcare communication solutions are designed with HIPAA compliance inmind Build and deliver powerful HIPAA chat apps inthe full confidence that sensitive ePHI remains secure and compliance requirements are satisfied ## What isHIPAA Compliance HIPAA (Health Insurance Portability and Accountability Act of1996) sets national standards for safeguarding protected health information (PHI) Any business that collects, stores, ortransmits PHI isrequired tocomply with HIPAA physical, technical, and administrative safeguards Failure todosocan result incompromised patient data and hefty penalties for the involved party ## Why QuickBlox ### Experienced inHealthcare\\nWeare experienced working with the Healthcare industry and HealthTech Weprovide HIPAA compliant hosting solutions configured for enhanced data privacy and inaccordance with HIPAA security rules ### Host Anywhere\\nWeunderstand your need for data security that’’s why wedeploy our software wherever you need, including inyour own cloud account with ahosting provider ofyour choice sothat sensitive PHI remains firmly inyour ownership and control ### Enterprise Ready\\nWebuild enterprise ready solutions Our skilled DevOps team can provide anarray ofsoftware tools, integrations, and configurations toensure enterprise grade security and support for your HIPAA compliant solution [Speak to us](https://quickblox.com/enterprise/#get-enterprise)\\n## QuickBlox HIPAA Compliant HostingSolutions\\nThe easiest way tosatisfy HIPAA requirements istopartner with aHIPAA compliant communication solutions provider, like QuickBlox Wehave asolid history providing enterprise solutions for healthcare ### Key Features\\n#### Your choice ofHIPAA Compliant Cloud\\nSoftware can bedeployed toyour preferred hosting environment including Amazon Web Services, Google Cloud Platform, and Microsoft Azure\",\n", + " \"Weconfigure your dedicated instance sothat itmeets HIPAA-compliant hosting requirements QuickBlox can also host for you inour own HIPAA compliant account #### Fully Encrypted Server Configuration\\nWith QuickBlox, data isencrypted intransit and atrest Weoffer full encryption ofuser databases, files/content, and connections which means ePHI, communication history, and user data issafe and secure #### Customization ofSoftware tosupport HIPAA Technical Safeguards\\nOur back-end platform can becustomized tosupport numerous security features,e.g * access control via unique usernames and passwords toprevent unauthorized access\\n* person orentity authentication tools such astwo-factor authentication\\n* anonymous sessions with automatic logoff procedures\\n#### AFully Managed Service\\nOur Enterprise Plan provides afully managed service with dedicated maintenance and real-time monitoring Weoffer aService Level Agreement (SLA) with uptime guarantee #### Provision ofBusiness Associate Agreement\\nWeprovide our healthcare customers with aBAA Bysigning this agreement wedemonstrate our knowledge ofHIPAA compliance rules and our experience with supporting compliant healthcare communication solutions ## Advanced Features\\nWeoffer anarray ofdata protection tools tosafeguard your instance without your data ever leaving your server\\n### High Availability and Disaster Recovery(HA/DR)\\n* HA/DR keeps your applications running inthe event ofany system issues, soyour users never lose messaging and calling functionalities * AHigh Availability solution replicates your communication infrastructure toensure constant availability This isideal for critical business solutions like healthcare * Our Disaster Recovery plan provides full backup management toensure that sensitive data can befully recovered inthe worst case scenario ofinterrupted orcompromised services ### Software integration for enhanced security standards\\n* Diligent monitoring ofyour cloud environment with Graylog, alog storage and management tool that allows your engineers toeasily manage logs and structured analytical data all inone place * Intrusion detection with OSSEC, ahost-based system that performs log analysis, integrity checking, registry monitoring, rootlet detection, time-based alerting, and active response\",\n", + " \"* Virus scanning software toautomatically scan, tag, and notify you ofinfected files and malware * Web Application Firewall (WAF) tosecurely control web traffic, blocking spam bots from consuming resources, skewing metrics, and causing downtime onyour healthcare communication application ## HIPAA Compliant Video Hosting\\nConnect patients and doctors together with HIPAA compliant audio &&video calling and video conferencing, built onWebRTC and available with the QuickBlox HIPAA Enterprise Plan\\n### Dedicated TURN Server\\nDedicated WebRTC video calling traffic relay server for video calling through firewalls, bypassing NAT, and connecting geographically dispersed users [Learn more](https://quickblox.com/products/voice-and-video-calling/)\\n### Dedicated Conference Server\\nWeoffer HIPAA video conference hosting with adedicated conference server Enjoy high quality conference calls for multiple simultaneous users onaservice server that you control [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Conference Call Recording\\nConference call recording functionality tosave your video conferences Enables you tostore, access, and share video healthcare communications securely onyour dedicated server [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Telehealth Ready Solution: Q‑Consultation\\nWeoffer aHIPAA compliant virtual waiting room with tele-consultation app Fully customizable, packed with features, and works onany device and the web [Learn more](https://quickblox.com/products/q-consultation/)\\n## HIPAA Compliant Hosting Plans\\nQuickBlox provides arange ofplans depending onthe size ofyour organization and budget All our HIPAA plans provide full data encryption and come with aBusiness Associates Agreement ### HIPAA (Shared) Cloud Plan (starts at**$399/mo**)\\nSuitable for smaller organizations for POCs (proof ofconcept) and MVP (minimal viable product) use-cases that require data encryption but have alimited budget * Software ishosted onour QuickBlox AWS multi-tenant sharedserver\\n* Total user limit:**5000**\\n* File size limit:**50MB**\\n* Support byticketing system\\n### HIPAA Enterprise Plan (startsat**$899/mo**)\\nSuitable for production services granting the customer complete control over their user data, customization, technicalsupport,andSLA * Can behosted onQuickBlox’’s own managed cloud account orincustomer’’s own cloud account with preferred cloud service provider including Amazon Web Services, Google Cloud Platform, Microsoft Azure and others * Personal Account Manager, SLA with uptimeguarantee\\n* Optional Add-ons:\\n* - High Availability and Disaster Recovery (HA/DR)solution\\n* - Security enhancements (e.g.Graylog,OSSEC)\\n* - Dedicated Turn server, Conference callserver\\n### HIPAA On-Premises\\nSuitable for organizations who desire optimal security, require communications toremain within their own private network, and who have their own DevOps and on-premises data center\",\n", + " \"* Hosted onyour own dedicated servers inyour privately owned datacenter\\n* Granting you total control ofyour ePHI and chathistory\\n[Find out more](https://quickblox.com/enterprise/#get-enterprise)\\n## HIPAA Compliant Cloud Hosting\\nThere are avariety ofcloud hosting providers that offer HIPAA compliant environments QuickBlox can deploy software with anyone ofthese and more:\\nHosting with one ofthese cloud providersdoes notguarantee HIPAA compliance Youalso need toensure your application and software meet the safeguards outlined inthe HIPAA securityrule **Work with apartner like QuickBlox tomake sure you’’re covered.**\\n## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[On-Premise hosting](https://quickblox.com/hosting/on-premise/)\\n## Frequently Asked Questions\\n### What isHIPAA compliant hosting Any digital healthcare application that contains ePHI needs tobehosted onacloud infrastructure that complies with the technical, administrative, and physical safeguards outlined byHIPAA These safeguards are designed toprotect the integrity ofthe data and tocontrol who has access tothis data HIPAA compliant hosting requirements include encrypted data intransit and storage, access controls, person orentity authentication tools, and more ### Who needs HIPAA compliance Healthcare providers\\u2014 referred toasthe \\u00abcovered entity\\u00bb\\u2014 must comply with HIPAA, but equally their \\u00abbusiness associates\\u00bb who come into contact with patient data when providing services toahealthcare organization are also covered bythis legislation This means any cloud service provider, CPaaS provider, ormedical app developer who are inany way involved instoring, processes, ortransmitting PHI, are considered a \\u2019business associate\\u2019 and must comply with HIPAA ### What isPHI and ePHI Any medical data that contains individually identifiable health information about apatient (e.g name, address, date ofbirth, social security number) isreferred toasprotected health information (PHI), orwhen stored electronically ePHI There isanabundance ofmedical records including bills from doctors, emails, MRI scans, blood test results etc that fall under the rubric ofPHI/ePHI ### How much does HIPAA compliant hosting cost\",\n", + " \"The need for additional security enhancements such asdatabase encryption and software customization for extra monitoring &&intrusion detection means ahigher cost for HIPAA compliant hosting Encrypted HIPAA hosting onour shared cloud starts at$399/mo ### Which cloud providers are HIPAA compliant There are several cloud hosting providers who provide aninfrastructure that can beHIPAA compliant (e.g AWS, GCP, Azure), however, you are still responsible for configuring your software tosatisfy the HIPAA security rule Check tosee ifthe cloud provider will sign aBAA agreement and choose aservice provider like QuickBlox who can ensure aHIPAA compliant solution ### What are the penalties for non-compliance Penalties depend onthe severity ofthe breach, whether itwas intentional ornot They range from $100 to$50,000 per breach ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [HIPAA Compliant Cloud Hosting: What does it mean?](https://quickblox.com/blog/hipaa-compliant-cloud-hosting-what-does-it-mean/)\\nAnna S 31 Dec 2021\\n[Azure](https://quickblox.com/blog/hosting/azure/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Microsoft Azure HIPAA Compliant?](https://quickblox.com/blog/is-microsoft-azure-hipaa-compliant/)\\nAnna S 12 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Google Cloud Platform (GCP)](https://quickblox.com/blog/hosting/google-cloud-platform-gcp/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Google Cloud Platform HIPAA Compliant?](https://quickblox.com/blog/is-google-cloud-platform-hipaa-compliant/)\\nAnna S 1 Oct 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd\",\n", + " \"trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"* Virus scanning software toautomatically scan, tag, and notify you ofinfected files and malware * Web Application Firewall (WAF) tosecurely control web traffic, blocking spam bots from consuming resources, skewing metrics, and causing downtime onyour healthcare communication application ## HIPAA Compliant Video Hosting\\nConnect patients and doctors together with HIPAA compliant audio &&video calling and video conferencing, built onWebRTC and available with the QuickBlox HIPAA Enterprise Plan\\n### Dedicated TURN Server\\nDedicated WebRTC video calling traffic relay server for video calling through firewalls, bypassing NAT, and connecting geographically dispersed users [Learn more](https://quickblox.com/products/voice-and-video-calling/)\\n### Dedicated Conference Server\\nWeoffer HIPAA video conference hosting with adedicated conference server Enjoy high quality conference calls for multiple simultaneous users onaservice server that you control [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Conference Call Recording\\nConference call recording functionality tosave your video conferences Enables you tostore, access, and share video healthcare communications securely onyour dedicated server [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Telehealth Ready Solution: Q‑Consultation\\nWeoffer aHIPAA compliant virtual waiting room with tele-consultation app Fully customizable, packed with features, and works onany device and the web [Learn more](https://quickblox.com/products/q-consultation/)\\n## HIPAA Compliant Hosting Plans\\nQuickBlox provides arange ofplans depending onthe size ofyour organization and budget All our HIPAA plans provide full data encryption and come with aBusiness Associates Agreement ### HIPAA (Shared) Cloud Plan (starts at**$399/mo**)\\nSuitable for smaller organizations for POCs (proof ofconcept) and MVP (minimal viable product) use-cases that require data encryption but have alimited budget * Software ishosted onour QuickBlox AWS multi-tenant sharedserver\\n* Total user limit:**5000**\\n* File size limit:**50MB**\\n* Support byticketing system\\n### HIPAA Enterprise Plan (startsat**$899/mo**)\\nSuitable for production services granting the customer complete control over their user data, customization, technicalsupport,andSLA * Can behosted onQuickBlox’’s own managed cloud account orincustomer’’s own cloud account with preferred cloud service provider including Amazon Web Services, Google Cloud Platform, Microsoft Azure and others * Personal Account Manager, SLA with uptimeguarantee\\n* Optional Add-ons:\\n* - High Availability and Disaster Recovery (HA/DR)solution\\n* - Security enhancements (e.g.Graylog,OSSEC)\\n* - Dedicated Turn server, Conference callserver\\n### HIPAA On-Premises\\nSuitable for organizations who desire optimal security, require communications toremain within their own private network, and who have their own DevOps and on-premises data center\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 77 Type: step\n", + "output: {\n", + " \"documents\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# HIPAA Compliant Hosting\\nOur healthcare communication solutions are designed with HIPAA compliance inmind Build and deliver powerful HIPAA chat apps inthe full confidence that sensitive ePHI remains secure and compliance requirements are satisfied ## What isHIPAA Compliance HIPAA (Health Insurance Portability and Accountability Act of1996) sets national standards for safeguarding protected health information (PHI) Any business that collects, stores, ortransmits PHI isrequired tocomply with HIPAA physical, technical, and administrative safeguards Failure todosocan result incompromised patient data and hefty penalties for the involved party ## Why QuickBlox ### Experienced inHealthcare\\nWeare experienced working with the Healthcare industry and HealthTech Weprovide HIPAA compliant hosting solutions configured for enhanced data privacy and inaccordance with HIPAA security rules ### Host Anywhere\\nWeunderstand your need for data security that’’s why wedeploy our software wherever you need, including inyour own cloud account with ahosting provider ofyour choice sothat sensitive PHI remains firmly inyour ownership and control ### Enterprise Ready\\nWebuild enterprise ready solutions Our skilled DevOps team can provide anarray ofsoftware tools, integrations, and configurations toensure enterprise grade security and support for your HIPAA compliant solution [Speak to us](https://quickblox.com/enterprise/#get-enterprise)\\n## QuickBlox HIPAA Compliant HostingSolutions\\nThe easiest way tosatisfy HIPAA requirements istopartner with aHIPAA compliant communication solutions provider, like QuickBlox Wehave asolid history providing enterprise solutions for healthcare ### Key Features\\n#### Your choice ofHIPAA Compliant Cloud\\nSoftware can bedeployed toyour preferred hosting environment including Amazon Web Services, Google Cloud Platform, and Microsoft Azure\",\n", + " \"Weconfigure your dedicated instance sothat itmeets HIPAA-compliant hosting requirements QuickBlox can also host for you inour own HIPAA compliant account #### Fully Encrypted Server Configuration\\nWith QuickBlox, data isencrypted intransit and atrest Weoffer full encryption ofuser databases, files/content, and connections which means ePHI, communication history, and user data issafe and secure #### Customization ofSoftware tosupport HIPAA Technical Safeguards\\nOur back-end platform can becustomized tosupport numerous security features,e.g * access control via unique usernames and passwords toprevent unauthorized access\\n* person orentity authentication tools such astwo-factor authentication\\n* anonymous sessions with automatic logoff procedures\\n#### AFully Managed Service\\nOur Enterprise Plan provides afully managed service with dedicated maintenance and real-time monitoring Weoffer aService Level Agreement (SLA) with uptime guarantee #### Provision ofBusiness Associate Agreement\\nWeprovide our healthcare customers with aBAA Bysigning this agreement wedemonstrate our knowledge ofHIPAA compliance rules and our experience with supporting compliant healthcare communication solutions ## Advanced Features\\nWeoffer anarray ofdata protection tools tosafeguard your instance without your data ever leaving your server\\n### High Availability and Disaster Recovery(HA/DR)\\n* HA/DR keeps your applications running inthe event ofany system issues, soyour users never lose messaging and calling functionalities * AHigh Availability solution replicates your communication infrastructure toensure constant availability This isideal for critical business solutions like healthcare * Our Disaster Recovery plan provides full backup management toensure that sensitive data can befully recovered inthe worst case scenario ofinterrupted orcompromised services ### Software integration for enhanced security standards\\n* Diligent monitoring ofyour cloud environment with Graylog, alog storage and management tool that allows your engineers toeasily manage logs and structured analytical data all inone place * Intrusion detection with OSSEC, ahost-based system that performs log analysis, integrity checking, registry monitoring, rootlet detection, time-based alerting, and active response\",\n", + " \"* Virus scanning software toautomatically scan, tag, and notify you ofinfected files and malware * Web Application Firewall (WAF) tosecurely control web traffic, blocking spam bots from consuming resources, skewing metrics, and causing downtime onyour healthcare communication application ## HIPAA Compliant Video Hosting\\nConnect patients and doctors together with HIPAA compliant audio &&video calling and video conferencing, built onWebRTC and available with the QuickBlox HIPAA Enterprise Plan\\n### Dedicated TURN Server\\nDedicated WebRTC video calling traffic relay server for video calling through firewalls, bypassing NAT, and connecting geographically dispersed users [Learn more](https://quickblox.com/products/voice-and-video-calling/)\\n### Dedicated Conference Server\\nWeoffer HIPAA video conference hosting with adedicated conference server Enjoy high quality conference calls for multiple simultaneous users onaservice server that you control [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Conference Call Recording\\nConference call recording functionality tosave your video conferences Enables you tostore, access, and share video healthcare communications securely onyour dedicated server [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Telehealth Ready Solution: Q‑Consultation\\nWeoffer aHIPAA compliant virtual waiting room with tele-consultation app Fully customizable, packed with features, and works onany device and the web [Learn more](https://quickblox.com/products/q-consultation/)\\n## HIPAA Compliant Hosting Plans\\nQuickBlox provides arange ofplans depending onthe size ofyour organization and budget All our HIPAA plans provide full data encryption and come with aBusiness Associates Agreement ### HIPAA (Shared) Cloud Plan (starts at**$399/mo**)\\nSuitable for smaller organizations for POCs (proof ofconcept) and MVP (minimal viable product) use-cases that require data encryption but have alimited budget * Software ishosted onour QuickBlox AWS multi-tenant sharedserver\\n* Total user limit:**5000**\\n* File size limit:**50MB**\\n* Support byticketing system\\n### HIPAA Enterprise Plan (startsat**$899/mo**)\\nSuitable for production services granting the customer complete control over their user data, customization, technicalsupport,andSLA * Can behosted onQuickBlox’’s own managed cloud account orincustomer’’s own cloud account with preferred cloud service provider including Amazon Web Services, Google Cloud Platform, Microsoft Azure and others * Personal Account Manager, SLA with uptimeguarantee\\n* Optional Add-ons:\\n* - High Availability and Disaster Recovery (HA/DR)solution\\n* - Security enhancements (e.g.Graylog,OSSEC)\\n* - Dedicated Turn server, Conference callserver\\n### HIPAA On-Premises\\nSuitable for organizations who desire optimal security, require communications toremain within their own private network, and who have their own DevOps and on-premises data center\",\n", + " \"* Hosted onyour own dedicated servers inyour privately owned datacenter\\n* Granting you total control ofyour ePHI and chathistory\\n[Find out more](https://quickblox.com/enterprise/#get-enterprise)\\n## HIPAA Compliant Cloud Hosting\\nThere are avariety ofcloud hosting providers that offer HIPAA compliant environments QuickBlox can deploy software with anyone ofthese and more:\\nHosting with one ofthese cloud providersdoes notguarantee HIPAA compliance Youalso need toensure your application and software meet the safeguards outlined inthe HIPAA securityrule **Work with apartner like QuickBlox tomake sure you’’re covered.**\\n## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[On-Premise hosting](https://quickblox.com/hosting/on-premise/)\\n## Frequently Asked Questions\\n### What isHIPAA compliant hosting Any digital healthcare application that contains ePHI needs tobehosted onacloud infrastructure that complies with the technical, administrative, and physical safeguards outlined byHIPAA These safeguards are designed toprotect the integrity ofthe data and tocontrol who has access tothis data HIPAA compliant hosting requirements include encrypted data intransit and storage, access controls, person orentity authentication tools, and more ### Who needs HIPAA compliance Healthcare providers\\u2014 referred toasthe \\u00abcovered entity\\u00bb\\u2014 must comply with HIPAA, but equally their \\u00abbusiness associates\\u00bb who come into contact with patient data when providing services toahealthcare organization are also covered bythis legislation This means any cloud service provider, CPaaS provider, ormedical app developer who are inany way involved instoring, processes, ortransmitting PHI, are considered a \\u2019business associate\\u2019 and must comply with HIPAA ### What isPHI and ePHI Any medical data that contains individually identifiable health information about apatient (e.g name, address, date ofbirth, social security number) isreferred toasprotected health information (PHI), orwhen stored electronically ePHI There isanabundance ofmedical records including bills from doctors, emails, MRI scans, blood test results etc that fall under the rubric ofPHI/ePHI ### How much does HIPAA compliant hosting cost\",\n", + " \"The need for additional security enhancements such asdatabase encryption and software customization for extra monitoring &&intrusion detection means ahigher cost for HIPAA compliant hosting Encrypted HIPAA hosting onour shared cloud starts at$399/mo ### Which cloud providers are HIPAA compliant There are several cloud hosting providers who provide aninfrastructure that can beHIPAA compliant (e.g AWS, GCP, Azure), however, you are still responsible for configuring your software tosatisfy the HIPAA security rule Check tosee ifthe cloud provider will sign aBAA agreement and choose aservice provider like QuickBlox who can ensure aHIPAA compliant solution ### What are the penalties for non-compliance Penalties depend onthe severity ofthe breach, whether itwas intentional ornot They range from $100 to$50,000 per breach ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [HIPAA Compliant Cloud Hosting: What does it mean?](https://quickblox.com/blog/hipaa-compliant-cloud-hosting-what-does-it-mean/)\\nAnna S 31 Dec 2021\\n[Azure](https://quickblox.com/blog/hosting/azure/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Microsoft Azure HIPAA Compliant?](https://quickblox.com/blog/is-microsoft-azure-hipaa-compliant/)\\nAnna S 12 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Google Cloud Platform (GCP)](https://quickblox.com/blog/hosting/google-cloud-platform-gcp/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Google Cloud Platform HIPAA Compliant?](https://quickblox.com/blog/is-google-cloud-platform-hipaa-compliant/)\\nAnna S 1 Oct 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd\",\n", + " \"trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 78 Type: init_branch\n", + "output: {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# HIPAA Compliant Hosting\\nOur healthcare communication solutions are designed with HIPAA compliance inmind Build and deliver powerful HIPAA chat apps inthe full confidence that sensitive ePHI remains secure and compliance requirements are satisfied ## What isHIPAA Compliance HIPAA (Health Insurance Portability and Accountability Act of1996) sets national standards for safeguarding protected health information (PHI) Any business that collects, stores, ortransmits PHI isrequired tocomply with HIPAA physical, technical, and administrative safeguards Failure todosocan result incompromised patient data and hefty penalties for the involved party ## Why QuickBlox ### Experienced inHealthcare\\nWeare experienced working with the Healthcare industry and HealthTech Weprovide HIPAA compliant hosting solutions configured for enhanced data privacy and inaccordance with HIPAA security rules ### Host Anywhere\\nWeunderstand your need for data security that’’s why wedeploy our software wherever you need, including inyour own cloud account with ahosting provider ofyour choice sothat sensitive PHI remains firmly inyour ownership and control ### Enterprise Ready\\nWebuild enterprise ready solutions Our skilled DevOps team can provide anarray ofsoftware tools, integrations, and configurations toensure enterprise grade security and support for your HIPAA compliant solution [Speak to us](https://quickblox.com/enterprise/#get-enterprise)\\n## QuickBlox HIPAA Compliant HostingSolutions\\nThe easiest way tosatisfy HIPAA requirements istopartner with aHIPAA compliant communication solutions provider, like QuickBlox Wehave asolid history providing enterprise solutions for healthcare ### Key Features\\n#### Your choice ofHIPAA Compliant Cloud\\nSoftware can bedeployed toyour preferred hosting environment including Amazon Web Services, Google Cloud Platform, and Microsoft Azure\",\n", + " \"Weconfigure your dedicated instance sothat itmeets HIPAA-compliant hosting requirements QuickBlox can also host for you inour own HIPAA compliant account #### Fully Encrypted Server Configuration\\nWith QuickBlox, data isencrypted intransit and atrest Weoffer full encryption ofuser databases, files/content, and connections which means ePHI, communication history, and user data issafe and secure #### Customization ofSoftware tosupport HIPAA Technical Safeguards\\nOur back-end platform can becustomized tosupport numerous security features,e.g * access control via unique usernames and passwords toprevent unauthorized access\\n* person orentity authentication tools such astwo-factor authentication\\n* anonymous sessions with automatic logoff procedures\\n#### AFully Managed Service\\nOur Enterprise Plan provides afully managed service with dedicated maintenance and real-time monitoring Weoffer aService Level Agreement (SLA) with uptime guarantee #### Provision ofBusiness Associate Agreement\\nWeprovide our healthcare customers with aBAA Bysigning this agreement wedemonstrate our knowledge ofHIPAA compliance rules and our experience with supporting compliant healthcare communication solutions ## Advanced Features\\nWeoffer anarray ofdata protection tools tosafeguard your instance without your data ever leaving your server\\n### High Availability and Disaster Recovery(HA/DR)\\n* HA/DR keeps your applications running inthe event ofany system issues, soyour users never lose messaging and calling functionalities * AHigh Availability solution replicates your communication infrastructure toensure constant availability This isideal for critical business solutions like healthcare * Our Disaster Recovery plan provides full backup management toensure that sensitive data can befully recovered inthe worst case scenario ofinterrupted orcompromised services ### Software integration for enhanced security standards\\n* Diligent monitoring ofyour cloud environment with Graylog, alog storage and management tool that allows your engineers toeasily manage logs and structured analytical data all inone place * Intrusion detection with OSSEC, ahost-based system that performs log analysis, integrity checking, registry monitoring, rootlet detection, time-based alerting, and active response\",\n", + " \"* Virus scanning software toautomatically scan, tag, and notify you ofinfected files and malware * Web Application Firewall (WAF) tosecurely control web traffic, blocking spam bots from consuming resources, skewing metrics, and causing downtime onyour healthcare communication application ## HIPAA Compliant Video Hosting\\nConnect patients and doctors together with HIPAA compliant audio &&video calling and video conferencing, built onWebRTC and available with the QuickBlox HIPAA Enterprise Plan\\n### Dedicated TURN Server\\nDedicated WebRTC video calling traffic relay server for video calling through firewalls, bypassing NAT, and connecting geographically dispersed users [Learn more](https://quickblox.com/products/voice-and-video-calling/)\\n### Dedicated Conference Server\\nWeoffer HIPAA video conference hosting with adedicated conference server Enjoy high quality conference calls for multiple simultaneous users onaservice server that you control [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Conference Call Recording\\nConference call recording functionality tosave your video conferences Enables you tostore, access, and share video healthcare communications securely onyour dedicated server [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Telehealth Ready Solution: Q‑Consultation\\nWeoffer aHIPAA compliant virtual waiting room with tele-consultation app Fully customizable, packed with features, and works onany device and the web [Learn more](https://quickblox.com/products/q-consultation/)\\n## HIPAA Compliant Hosting Plans\\nQuickBlox provides arange ofplans depending onthe size ofyour organization and budget All our HIPAA plans provide full data encryption and come with aBusiness Associates Agreement ### HIPAA (Shared) Cloud Plan (starts at**$399/mo**)\\nSuitable for smaller organizations for POCs (proof ofconcept) and MVP (minimal viable product) use-cases that require data encryption but have alimited budget * Software ishosted onour QuickBlox AWS multi-tenant sharedserver\\n* Total user limit:**5000**\\n* File size limit:**50MB**\\n* Support byticketing system\\n### HIPAA Enterprise Plan (startsat**$899/mo**)\\nSuitable for production services granting the customer complete control over their user data, customization, technicalsupport,andSLA * Can behosted onQuickBlox’’s own managed cloud account orincustomer’’s own cloud account with preferred cloud service provider including Amazon Web Services, Google Cloud Platform, Microsoft Azure and others * Personal Account Manager, SLA with uptimeguarantee\\n* Optional Add-ons:\\n* - High Availability and Disaster Recovery (HA/DR)solution\\n* - Security enhancements (e.g.Graylog,OSSEC)\\n* - Dedicated Turn server, Conference callserver\\n### HIPAA On-Premises\\nSuitable for organizations who desire optimal security, require communications toremain within their own private network, and who have their own DevOps and on-premises data center\",\n", + " \"* Hosted onyour own dedicated servers inyour privately owned datacenter\\n* Granting you total control ofyour ePHI and chathistory\\n[Find out more](https://quickblox.com/enterprise/#get-enterprise)\\n## HIPAA Compliant Cloud Hosting\\nThere are avariety ofcloud hosting providers that offer HIPAA compliant environments QuickBlox can deploy software with anyone ofthese and more:\\nHosting with one ofthese cloud providersdoes notguarantee HIPAA compliance Youalso need toensure your application and software meet the safeguards outlined inthe HIPAA securityrule **Work with apartner like QuickBlox tomake sure you’’re covered.**\\n## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[On-Premise hosting](https://quickblox.com/hosting/on-premise/)\\n## Frequently Asked Questions\\n### What isHIPAA compliant hosting Any digital healthcare application that contains ePHI needs tobehosted onacloud infrastructure that complies with the technical, administrative, and physical safeguards outlined byHIPAA These safeguards are designed toprotect the integrity ofthe data and tocontrol who has access tothis data HIPAA compliant hosting requirements include encrypted data intransit and storage, access controls, person orentity authentication tools, and more ### Who needs HIPAA compliance Healthcare providers\\u2014 referred toasthe \\u00abcovered entity\\u00bb\\u2014 must comply with HIPAA, but equally their \\u00abbusiness associates\\u00bb who come into contact with patient data when providing services toahealthcare organization are also covered bythis legislation This means any cloud service provider, CPaaS provider, ormedical app developer who are inany way involved instoring, processes, ortransmitting PHI, are considered a \\u2019business associate\\u2019 and must comply with HIPAA ### What isPHI and ePHI Any medical data that contains individually identifiable health information about apatient (e.g name, address, date ofbirth, social security number) isreferred toasprotected health information (PHI), orwhen stored electronically ePHI There isanabundance ofmedical records including bills from doctors, emails, MRI scans, blood test results etc that fall under the rubric ofPHI/ePHI ### How much does HIPAA compliant hosting cost\",\n", + " \"The need for additional security enhancements such asdatabase encryption and software customization for extra monitoring &&intrusion detection means ahigher cost for HIPAA compliant hosting Encrypted HIPAA hosting onour shared cloud starts at$399/mo ### Which cloud providers are HIPAA compliant There are several cloud hosting providers who provide aninfrastructure that can beHIPAA compliant (e.g AWS, GCP, Azure), however, you are still responsible for configuring your software tosatisfy the HIPAA security rule Check tosee ifthe cloud provider will sign aBAA agreement and choose aservice provider like QuickBlox who can ensure aHIPAA compliant solution ### What are the penalties for non-compliance Penalties depend onthe severity ofthe breach, whether itwas intentional ornot They range from $100 to$50,000 per breach ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [HIPAA Compliant Cloud Hosting: What does it mean?](https://quickblox.com/blog/hipaa-compliant-cloud-hosting-what-does-it-mean/)\\nAnna S 31 Dec 2021\\n[Azure](https://quickblox.com/blog/hosting/azure/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Microsoft Azure HIPAA Compliant?](https://quickblox.com/blog/is-microsoft-azure-hipaa-compliant/)\\nAnna S 12 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Google Cloud Platform (GCP)](https://quickblox.com/blog/hosting/google-cloud-platform-gcp/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Google Cloud Platform HIPAA Compliant?](https://quickblox.com/blog/is-google-cloud-platform-hipaa-compliant/)\\nAnna S 1 Oct 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd\",\n", + " \"trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 79 Type: step\n", + "output: {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# HIPAA Compliant Hosting\\nOur healthcare communication solutions are designed with HIPAA compliance inmind Build and deliver powerful HIPAA chat apps inthe full confidence that sensitive ePHI remains secure and compliance requirements are satisfied ## What isHIPAA Compliance HIPAA (Health Insurance Portability and Accountability Act of1996) sets national standards for safeguarding protected health information (PHI) Any business that collects, stores, ortransmits PHI isrequired tocomply with HIPAA physical, technical, and administrative safeguards Failure todosocan result incompromised patient data and hefty penalties for the involved party ## Why QuickBlox ### Experienced inHealthcare\\nWeare experienced working with the Healthcare industry and HealthTech Weprovide HIPAA compliant hosting solutions configured for enhanced data privacy and inaccordance with HIPAA security rules ### Host Anywhere\\nWeunderstand your need for data security that’’s why wedeploy our software wherever you need, including inyour own cloud account with ahosting provider ofyour choice sothat sensitive PHI remains firmly inyour ownership and control ### Enterprise Ready\\nWebuild enterprise ready solutions Our skilled DevOps team can provide anarray ofsoftware tools, integrations, and configurations toensure enterprise grade security and support for your HIPAA compliant solution [Speak to us](https://quickblox.com/enterprise/#get-enterprise)\\n## QuickBlox HIPAA Compliant HostingSolutions\\nThe easiest way tosatisfy HIPAA requirements istopartner with aHIPAA compliant communication solutions provider, like QuickBlox Wehave asolid history providing enterprise solutions for healthcare ### Key Features\\n#### Your choice ofHIPAA Compliant Cloud\\nSoftware can bedeployed toyour preferred hosting environment including Amazon Web Services, Google Cloud Platform, and Microsoft Azure\",\n", + " \"Weconfigure your dedicated instance sothat itmeets HIPAA-compliant hosting requirements QuickBlox can also host for you inour own HIPAA compliant account #### Fully Encrypted Server Configuration\\nWith QuickBlox, data isencrypted intransit and atrest Weoffer full encryption ofuser databases, files/content, and connections which means ePHI, communication history, and user data issafe and secure #### Customization ofSoftware tosupport HIPAA Technical Safeguards\\nOur back-end platform can becustomized tosupport numerous security features,e.g * access control via unique usernames and passwords toprevent unauthorized access\\n* person orentity authentication tools such astwo-factor authentication\\n* anonymous sessions with automatic logoff procedures\\n#### AFully Managed Service\\nOur Enterprise Plan provides afully managed service with dedicated maintenance and real-time monitoring Weoffer aService Level Agreement (SLA) with uptime guarantee #### Provision ofBusiness Associate Agreement\\nWeprovide our healthcare customers with aBAA Bysigning this agreement wedemonstrate our knowledge ofHIPAA compliance rules and our experience with supporting compliant healthcare communication solutions ## Advanced Features\\nWeoffer anarray ofdata protection tools tosafeguard your instance without your data ever leaving your server\\n### High Availability and Disaster Recovery(HA/DR)\\n* HA/DR keeps your applications running inthe event ofany system issues, soyour users never lose messaging and calling functionalities * AHigh Availability solution replicates your communication infrastructure toensure constant availability This isideal for critical business solutions like healthcare * Our Disaster Recovery plan provides full backup management toensure that sensitive data can befully recovered inthe worst case scenario ofinterrupted orcompromised services ### Software integration for enhanced security standards\\n* Diligent monitoring ofyour cloud environment with Graylog, alog storage and management tool that allows your engineers toeasily manage logs and structured analytical data all inone place * Intrusion detection with OSSEC, ahost-based system that performs log analysis, integrity checking, registry monitoring, rootlet detection, time-based alerting, and active response\",\n", + " \"* Virus scanning software toautomatically scan, tag, and notify you ofinfected files and malware * Web Application Firewall (WAF) tosecurely control web traffic, blocking spam bots from consuming resources, skewing metrics, and causing downtime onyour healthcare communication application ## HIPAA Compliant Video Hosting\\nConnect patients and doctors together with HIPAA compliant audio &&video calling and video conferencing, built onWebRTC and available with the QuickBlox HIPAA Enterprise Plan\\n### Dedicated TURN Server\\nDedicated WebRTC video calling traffic relay server for video calling through firewalls, bypassing NAT, and connecting geographically dispersed users [Learn more](https://quickblox.com/products/voice-and-video-calling/)\\n### Dedicated Conference Server\\nWeoffer HIPAA video conference hosting with adedicated conference server Enjoy high quality conference calls for multiple simultaneous users onaservice server that you control [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Conference Call Recording\\nConference call recording functionality tosave your video conferences Enables you tostore, access, and share video healthcare communications securely onyour dedicated server [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Telehealth Ready Solution: Q‑Consultation\\nWeoffer aHIPAA compliant virtual waiting room with tele-consultation app Fully customizable, packed with features, and works onany device and the web [Learn more](https://quickblox.com/products/q-consultation/)\\n## HIPAA Compliant Hosting Plans\\nQuickBlox provides arange ofplans depending onthe size ofyour organization and budget All our HIPAA plans provide full data encryption and come with aBusiness Associates Agreement ### HIPAA (Shared) Cloud Plan (starts at**$399/mo**)\\nSuitable for smaller organizations for POCs (proof ofconcept) and MVP (minimal viable product) use-cases that require data encryption but have alimited budget * Software ishosted onour QuickBlox AWS multi-tenant sharedserver\\n* Total user limit:**5000**\\n* File size limit:**50MB**\\n* Support byticketing system\\n### HIPAA Enterprise Plan (startsat**$899/mo**)\\nSuitable for production services granting the customer complete control over their user data, customization, technicalsupport,andSLA * Can behosted onQuickBlox’’s own managed cloud account orincustomer’’s own cloud account with preferred cloud service provider including Amazon Web Services, Google Cloud Platform, Microsoft Azure and others * Personal Account Manager, SLA with uptimeguarantee\\n* Optional Add-ons:\\n* - High Availability and Disaster Recovery (HA/DR)solution\\n* - Security enhancements (e.g.Graylog,OSSEC)\\n* - Dedicated Turn server, Conference callserver\\n### HIPAA On-Premises\\nSuitable for organizations who desire optimal security, require communications toremain within their own private network, and who have their own DevOps and on-premises data center\",\n", + " \"* Hosted onyour own dedicated servers inyour privately owned datacenter\\n* Granting you total control ofyour ePHI and chathistory\\n[Find out more](https://quickblox.com/enterprise/#get-enterprise)\\n## HIPAA Compliant Cloud Hosting\\nThere are avariety ofcloud hosting providers that offer HIPAA compliant environments QuickBlox can deploy software with anyone ofthese and more:\\nHosting with one ofthese cloud providersdoes notguarantee HIPAA compliance Youalso need toensure your application and software meet the safeguards outlined inthe HIPAA securityrule **Work with apartner like QuickBlox tomake sure you’’re covered.**\\n## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[On-Premise hosting](https://quickblox.com/hosting/on-premise/)\\n## Frequently Asked Questions\\n### What isHIPAA compliant hosting Any digital healthcare application that contains ePHI needs tobehosted onacloud infrastructure that complies with the technical, administrative, and physical safeguards outlined byHIPAA These safeguards are designed toprotect the integrity ofthe data and tocontrol who has access tothis data HIPAA compliant hosting requirements include encrypted data intransit and storage, access controls, person orentity authentication tools, and more ### Who needs HIPAA compliance Healthcare providers\\u2014 referred toasthe \\u00abcovered entity\\u00bb\\u2014 must comply with HIPAA, but equally their \\u00abbusiness associates\\u00bb who come into contact with patient data when providing services toahealthcare organization are also covered bythis legislation This means any cloud service provider, CPaaS provider, ormedical app developer who are inany way involved instoring, processes, ortransmitting PHI, are considered a \\u2019business associate\\u2019 and must comply with HIPAA ### What isPHI and ePHI Any medical data that contains individually identifiable health information about apatient (e.g name, address, date ofbirth, social security number) isreferred toasprotected health information (PHI), orwhen stored electronically ePHI There isanabundance ofmedical records including bills from doctors, emails, MRI scans, blood test results etc that fall under the rubric ofPHI/ePHI ### How much does HIPAA compliant hosting cost\",\n", + " \"The need for additional security enhancements such asdatabase encryption and software customization for extra monitoring &&intrusion detection means ahigher cost for HIPAA compliant hosting Encrypted HIPAA hosting onour shared cloud starts at$399/mo ### Which cloud providers are HIPAA compliant There are several cloud hosting providers who provide aninfrastructure that can beHIPAA compliant (e.g AWS, GCP, Azure), however, you are still responsible for configuring your software tosatisfy the HIPAA security rule Check tosee ifthe cloud provider will sign aBAA agreement and choose aservice provider like QuickBlox who can ensure aHIPAA compliant solution ### What are the penalties for non-compliance Penalties depend onthe severity ofthe breach, whether itwas intentional ornot They range from $100 to$50,000 per breach ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [HIPAA Compliant Cloud Hosting: What does it mean?](https://quickblox.com/blog/hipaa-compliant-cloud-hosting-what-does-it-mean/)\\nAnna S 31 Dec 2021\\n[Azure](https://quickblox.com/blog/hosting/azure/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Microsoft Azure HIPAA Compliant?](https://quickblox.com/blog/is-microsoft-azure-hipaa-compliant/)\\nAnna S 12 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Google Cloud Platform (GCP)](https://quickblox.com/blog/hosting/google-cloud-platform-gcp/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Google Cloud Platform HIPAA Compliant?](https://quickblox.com/blog/is-google-cloud-platform-hipaa-compliant/)\\nAnna S 1 Oct 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd\",\n", + " \"trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 80 Type: init_branch\n", + "output: {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# HIPAA Compliant Hosting\\nOur healthcare communication solutions are designed with HIPAA compliance inmind Build and deliver powerful HIPAA chat apps inthe full confidence that sensitive ePHI remains secure and compliance requirements are satisfied ## What isHIPAA Compliance HIPAA (Health Insurance Portability and Accountability Act of1996) sets national standards for safeguarding protected health information (PHI) Any business that collects, stores, ortransmits PHI isrequired tocomply with HIPAA physical, technical, and administrative safeguards Failure todosocan result incompromised patient data and hefty penalties for the involved party ## Why QuickBlox ### Experienced inHealthcare\\nWeare experienced working with the Healthcare industry and HealthTech Weprovide HIPAA compliant hosting solutions configured for enhanced data privacy and inaccordance with HIPAA security rules ### Host Anywhere\\nWeunderstand your need for data security that’’s why wedeploy our software wherever you need, including inyour own cloud account with ahosting provider ofyour choice sothat sensitive PHI remains firmly inyour ownership and control ### Enterprise Ready\\nWebuild enterprise ready solutions Our skilled DevOps team can provide anarray ofsoftware tools, integrations, and configurations toensure enterprise grade security and support for your HIPAA compliant solution [Speak to us](https://quickblox.com/enterprise/#get-enterprise)\\n## QuickBlox HIPAA Compliant HostingSolutions\\nThe easiest way tosatisfy HIPAA requirements istopartner with aHIPAA compliant communication solutions provider, like QuickBlox Wehave asolid history providing enterprise solutions for healthcare ### Key Features\\n#### Your choice ofHIPAA Compliant Cloud\\nSoftware can bedeployed toyour preferred hosting environment including Amazon Web Services, Google Cloud Platform, and Microsoft Azure\",\n", + " \"Weconfigure your dedicated instance sothat itmeets HIPAA-compliant hosting requirements QuickBlox can also host for you inour own HIPAA compliant account #### Fully Encrypted Server Configuration\\nWith QuickBlox, data isencrypted intransit and atrest Weoffer full encryption ofuser databases, files/content, and connections which means ePHI, communication history, and user data issafe and secure #### Customization ofSoftware tosupport HIPAA Technical Safeguards\\nOur back-end platform can becustomized tosupport numerous security features,e.g * access control via unique usernames and passwords toprevent unauthorized access\\n* person orentity authentication tools such astwo-factor authentication\\n* anonymous sessions with automatic logoff procedures\\n#### AFully Managed Service\\nOur Enterprise Plan provides afully managed service with dedicated maintenance and real-time monitoring Weoffer aService Level Agreement (SLA) with uptime guarantee #### Provision ofBusiness Associate Agreement\\nWeprovide our healthcare customers with aBAA Bysigning this agreement wedemonstrate our knowledge ofHIPAA compliance rules and our experience with supporting compliant healthcare communication solutions ## Advanced Features\\nWeoffer anarray ofdata protection tools tosafeguard your instance without your data ever leaving your server\\n### High Availability and Disaster Recovery(HA/DR)\\n* HA/DR keeps your applications running inthe event ofany system issues, soyour users never lose messaging and calling functionalities * AHigh Availability solution replicates your communication infrastructure toensure constant availability This isideal for critical business solutions like healthcare * Our Disaster Recovery plan provides full backup management toensure that sensitive data can befully recovered inthe worst case scenario ofinterrupted orcompromised services ### Software integration for enhanced security standards\\n* Diligent monitoring ofyour cloud environment with Graylog, alog storage and management tool that allows your engineers toeasily manage logs and structured analytical data all inone place * Intrusion detection with OSSEC, ahost-based system that performs log analysis, integrity checking, registry monitoring, rootlet detection, time-based alerting, and active response\",\n", + " \"* Virus scanning software toautomatically scan, tag, and notify you ofinfected files and malware * Web Application Firewall (WAF) tosecurely control web traffic, blocking spam bots from consuming resources, skewing metrics, and causing downtime onyour healthcare communication application ## HIPAA Compliant Video Hosting\\nConnect patients and doctors together with HIPAA compliant audio &&video calling and video conferencing, built onWebRTC and available with the QuickBlox HIPAA Enterprise Plan\\n### Dedicated TURN Server\\nDedicated WebRTC video calling traffic relay server for video calling through firewalls, bypassing NAT, and connecting geographically dispersed users [Learn more](https://quickblox.com/products/voice-and-video-calling/)\\n### Dedicated Conference Server\\nWeoffer HIPAA video conference hosting with adedicated conference server Enjoy high quality conference calls for multiple simultaneous users onaservice server that you control [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Conference Call Recording\\nConference call recording functionality tosave your video conferences Enables you tostore, access, and share video healthcare communications securely onyour dedicated server [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Telehealth Ready Solution: Q‑Consultation\\nWeoffer aHIPAA compliant virtual waiting room with tele-consultation app Fully customizable, packed with features, and works onany device and the web [Learn more](https://quickblox.com/products/q-consultation/)\\n## HIPAA Compliant Hosting Plans\\nQuickBlox provides arange ofplans depending onthe size ofyour organization and budget All our HIPAA plans provide full data encryption and come with aBusiness Associates Agreement ### HIPAA (Shared) Cloud Plan (starts at**$399/mo**)\\nSuitable for smaller organizations for POCs (proof ofconcept) and MVP (minimal viable product) use-cases that require data encryption but have alimited budget * Software ishosted onour QuickBlox AWS multi-tenant sharedserver\\n* Total user limit:**5000**\\n* File size limit:**50MB**\\n* Support byticketing system\\n### HIPAA Enterprise Plan (startsat**$899/mo**)\\nSuitable for production services granting the customer complete control over their user data, customization, technicalsupport,andSLA * Can behosted onQuickBlox’’s own managed cloud account orincustomer’’s own cloud account with preferred cloud service provider including Amazon Web Services, Google Cloud Platform, Microsoft Azure and others * Personal Account Manager, SLA with uptimeguarantee\\n* Optional Add-ons:\\n* - High Availability and Disaster Recovery (HA/DR)solution\\n* - Security enhancements (e.g.Graylog,OSSEC)\\n* - Dedicated Turn server, Conference callserver\\n### HIPAA On-Premises\\nSuitable for organizations who desire optimal security, require communications toremain within their own private network, and who have their own DevOps and on-premises data center\",\n", + " \"* Hosted onyour own dedicated servers inyour privately owned datacenter\\n* Granting you total control ofyour ePHI and chathistory\\n[Find out more](https://quickblox.com/enterprise/#get-enterprise)\\n## HIPAA Compliant Cloud Hosting\\nThere are avariety ofcloud hosting providers that offer HIPAA compliant environments QuickBlox can deploy software with anyone ofthese and more:\\nHosting with one ofthese cloud providersdoes notguarantee HIPAA compliance Youalso need toensure your application and software meet the safeguards outlined inthe HIPAA securityrule **Work with apartner like QuickBlox tomake sure you’’re covered.**\\n## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[On-Premise hosting](https://quickblox.com/hosting/on-premise/)\\n## Frequently Asked Questions\\n### What isHIPAA compliant hosting Any digital healthcare application that contains ePHI needs tobehosted onacloud infrastructure that complies with the technical, administrative, and physical safeguards outlined byHIPAA These safeguards are designed toprotect the integrity ofthe data and tocontrol who has access tothis data HIPAA compliant hosting requirements include encrypted data intransit and storage, access controls, person orentity authentication tools, and more ### Who needs HIPAA compliance Healthcare providers\\u2014 referred toasthe \\u00abcovered entity\\u00bb\\u2014 must comply with HIPAA, but equally their \\u00abbusiness associates\\u00bb who come into contact with patient data when providing services toahealthcare organization are also covered bythis legislation This means any cloud service provider, CPaaS provider, ormedical app developer who are inany way involved instoring, processes, ortransmitting PHI, are considered a \\u2019business associate\\u2019 and must comply with HIPAA ### What isPHI and ePHI Any medical data that contains individually identifiable health information about apatient (e.g name, address, date ofbirth, social security number) isreferred toasprotected health information (PHI), orwhen stored electronically ePHI There isanabundance ofmedical records including bills from doctors, emails, MRI scans, blood test results etc that fall under the rubric ofPHI/ePHI ### How much does HIPAA compliant hosting cost\",\n", + " \"The need for additional security enhancements such asdatabase encryption and software customization for extra monitoring &&intrusion detection means ahigher cost for HIPAA compliant hosting Encrypted HIPAA hosting onour shared cloud starts at$399/mo ### Which cloud providers are HIPAA compliant There are several cloud hosting providers who provide aninfrastructure that can beHIPAA compliant (e.g AWS, GCP, Azure), however, you are still responsible for configuring your software tosatisfy the HIPAA security rule Check tosee ifthe cloud provider will sign aBAA agreement and choose aservice provider like QuickBlox who can ensure aHIPAA compliant solution ### What are the penalties for non-compliance Penalties depend onthe severity ofthe breach, whether itwas intentional ornot They range from $100 to$50,000 per breach ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [HIPAA Compliant Cloud Hosting: What does it mean?](https://quickblox.com/blog/hipaa-compliant-cloud-hosting-what-does-it-mean/)\\nAnna S 31 Dec 2021\\n[Azure](https://quickblox.com/blog/hosting/azure/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Microsoft Azure HIPAA Compliant?](https://quickblox.com/blog/is-microsoft-azure-hipaa-compliant/)\\nAnna S 12 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Google Cloud Platform (GCP)](https://quickblox.com/blog/hosting/google-cloud-platform-gcp/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Google Cloud Platform HIPAA Compliant?](https://quickblox.com/blog/is-google-cloud-platform-hipaa-compliant/)\\nAnna S 1 Oct 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd\",\n", + " \"trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"costs\": {\n", + " \"ai_cost\": 0,\n", + " \"bytes_transferred_cost\": 0,\n", + " \"compute_cost\": 0.0001,\n", + " \"file_cost\": 0.0002,\n", + " \"total_cost\": 0.0004,\n", + " \"transform_cost\": 0.0001\n", + " },\n", + " \"error\": null,\n", + " \"status\": 200,\n", + " \"url\": \"https://quickblox.com/hosting/hipaa-compliant-hosting/\"\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 81 Type: finish_branch\n", + "output: [\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:19.799505Z\",\n", + " \"id\": \"73a41ed3-cb7d-4bc1-a129-bb1e28e9ab49\",\n", + " \"jobs\": [\n", + " \"de00a0ee-d4b9-410d-b5d9-442a3a0bc6e5\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:19.767891Z\",\n", + " \"id\": \"26415c9a-91b5-4120-82f8-bdce4a83306e\",\n", + " \"jobs\": [\n", + " \"c9340723-e417-4642-9711-549c6ce76654\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:19.750657Z\",\n", + " \"id\": \"2cabf7cd-4d82-414a-8bee-b5290e9392d7\",\n", + " \"jobs\": [\n", + " \"ad6fb820-bca9-4976-9d78-163589bf2590\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:21.533152Z\",\n", + " \"id\": \"a4f2733a-7e8c-43b5-a1f7-bb3ea41d9af8\",\n", + " \"jobs\": [\n", + " \"28e0797d-7fa9-46e3-b29e-9b1712490e32\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:21.592902Z\",\n", + " \"id\": \"ff665acb-7803-4cc4-a097-29dfefd58960\",\n", + " \"jobs\": [\n", + " \"5a53a8bd-f36a-4b1f-8937-0771f90ebb9d\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:21.602391Z\",\n", + " \"id\": \"e210e72d-8863-4958-9a5a-251f4d178bcc\",\n", + " \"jobs\": [\n", + " \"40f5b5b1-b44b-42ef-8fda-30853fa74da1\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:23.191827Z\",\n", + " \"id\": \"6d790638-313d-4611-a212-6d16e419f8b5\",\n", + " \"jobs\": [\n", + " \"45f94f9b-6c75-422d-9579-407cac7c1a41\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:23.183561Z\",\n", + " \"id\": \"45aa7303-1680-4ca2-99be-60238547fbcb\",\n", + " \"jobs\": [\n", + " \"7dd5972f-eb31-4a18-aa75-3334e75490d2\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:23.127000Z\",\n", + " \"id\": \"aed9157b-c70c-440f-a7aa-e819ef6f3735\",\n", + " \"jobs\": [\n", + " \"74943429-08ce-4701-bb1b-62311a8605d1\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:24.925122Z\",\n", + " \"id\": \"09585594-7010-4ee7-babd-fe6c454cad94\",\n", + " \"jobs\": [\n", + " \"9ca0f2ee-c35f-45c5-a822-87695958f17d\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:24.900010Z\",\n", + " \"id\": \"1b0170c6-a29c-4831-b47b-c46eac9409a5\",\n", + " \"jobs\": [\n", + " \"c67d05c8-813b-454d-9295-2aef1eb87fa6\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:24.911464Z\",\n", + " \"id\": \"869b2a99-0268-4d0f-a715-ca850ecae0fd\",\n", + " \"jobs\": [\n", + " \"04657969-f8fe-4bb4-9873-884a8fb630bf\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:26.831776Z\",\n", + " \"id\": \"55e0f466-b723-4af1-8210-777d320a9fe6\",\n", + " \"jobs\": [\n", + " \"5637e5d2-91c4-46b9-99ec-fe1e6a721b49\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:26.809754Z\",\n", + " \"id\": \"9b05a9aa-f293-45e4-b0e4-95cdcbd7b3ce\",\n", + " \"jobs\": [\n", + " \"b1ceaa71-2e3a-4c36-87ae-7e542c98525b\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:26.841526Z\",\n", + " \"id\": \"1595cd64-7e2c-40c6-a43c-3a44147bde30\",\n", + " \"jobs\": [\n", + " \"7baa45b8-d572-4e2c-af51-32235c3fe78e\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:28.616707Z\",\n", + " \"id\": \"725e1874-8f9f-48f3-8712-cfd8d5203db3\",\n", + " \"jobs\": [\n", + " \"66ad4ddd-27c5-4fd4-b764-412cb673ad2f\"\n", + " ]\n", + " }\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 82 Type: finish_branch\n", + "output: [\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:19.799505Z\",\n", + " \"id\": \"73a41ed3-cb7d-4bc1-a129-bb1e28e9ab49\",\n", + " \"jobs\": [\n", + " \"de00a0ee-d4b9-410d-b5d9-442a3a0bc6e5\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:19.767891Z\",\n", + " \"id\": \"26415c9a-91b5-4120-82f8-bdce4a83306e\",\n", + " \"jobs\": [\n", + " \"c9340723-e417-4642-9711-549c6ce76654\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:19.750657Z\",\n", + " \"id\": \"2cabf7cd-4d82-414a-8bee-b5290e9392d7\",\n", + " \"jobs\": [\n", + " \"ad6fb820-bca9-4976-9d78-163589bf2590\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:21.533152Z\",\n", + " \"id\": \"a4f2733a-7e8c-43b5-a1f7-bb3ea41d9af8\",\n", + " \"jobs\": [\n", + " \"28e0797d-7fa9-46e3-b29e-9b1712490e32\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:21.592902Z\",\n", + " \"id\": \"ff665acb-7803-4cc4-a097-29dfefd58960\",\n", + " \"jobs\": [\n", + " \"5a53a8bd-f36a-4b1f-8937-0771f90ebb9d\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:21.602391Z\",\n", + " \"id\": \"e210e72d-8863-4958-9a5a-251f4d178bcc\",\n", + " \"jobs\": [\n", + " \"40f5b5b1-b44b-42ef-8fda-30853fa74da1\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:23.191827Z\",\n", + " \"id\": \"6d790638-313d-4611-a212-6d16e419f8b5\",\n", + " \"jobs\": [\n", + " \"45f94f9b-6c75-422d-9579-407cac7c1a41\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:23.183561Z\",\n", + " \"id\": \"45aa7303-1680-4ca2-99be-60238547fbcb\",\n", + " \"jobs\": [\n", + " \"7dd5972f-eb31-4a18-aa75-3334e75490d2\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:23.127000Z\",\n", + " \"id\": \"aed9157b-c70c-440f-a7aa-e819ef6f3735\",\n", + " \"jobs\": [\n", + " \"74943429-08ce-4701-bb1b-62311a8605d1\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:24.925122Z\",\n", + " \"id\": \"09585594-7010-4ee7-babd-fe6c454cad94\",\n", + " \"jobs\": [\n", + " \"9ca0f2ee-c35f-45c5-a822-87695958f17d\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:24.900010Z\",\n", + " \"id\": \"1b0170c6-a29c-4831-b47b-c46eac9409a5\",\n", + " \"jobs\": [\n", + " \"c67d05c8-813b-454d-9295-2aef1eb87fa6\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:24.911464Z\",\n", + " \"id\": \"869b2a99-0268-4d0f-a715-ca850ecae0fd\",\n", + " \"jobs\": [\n", + " \"04657969-f8fe-4bb4-9873-884a8fb630bf\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:26.831776Z\",\n", + " \"id\": \"55e0f466-b723-4af1-8210-777d320a9fe6\",\n", + " \"jobs\": [\n", + " \"5637e5d2-91c4-46b9-99ec-fe1e6a721b49\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:26.809754Z\",\n", + " \"id\": \"9b05a9aa-f293-45e4-b0e4-95cdcbd7b3ce\",\n", + " \"jobs\": [\n", + " \"b1ceaa71-2e3a-4c36-87ae-7e542c98525b\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:26.841526Z\",\n", + " \"id\": \"1595cd64-7e2c-40c6-a43c-3a44147bde30\",\n", + " \"jobs\": [\n", + " \"7baa45b8-d572-4e2c-af51-32235c3fe78e\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:28.616707Z\",\n", + " \"id\": \"725e1874-8f9f-48f3-8712-cfd8d5203db3\",\n", + " \"jobs\": [\n", + " \"66ad4ddd-27c5-4fd4-b764-412cb673ad2f\"\n", + " ]\n", + " }\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 83 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:28.616707Z\",\n", + " \"id\": \"725e1874-8f9f-48f3-8712-cfd8d5203db3\",\n", + " \"jobs\": [\n", + " \"66ad4ddd-27c5-4fd4-b764-412cb673ad2f\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 84 Type: init_branch\n", + "output: \"* [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\\nThe chunk provides information about QuickBlox's terms and policies, including links to their Terms of Use, Terms of Service, Privacy Policy, and Cookie Policy. It also mentions the use of cookies and tracking technologies on their website, offers a subscription option for news updates, and lists links to QuickBlox's social media profiles. This section is relevant for users seeking legal and privacy details, or looking to connect with QuickBlox on social media.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 85 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:26.841526Z\",\n", + " \"id\": \"1595cd64-7e2c-40c6-a43c-3a44147bde30\",\n", + " \"jobs\": [\n", + " \"7baa45b8-d572-4e2c-af51-32235c3fe78e\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 86 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:26.831776Z\",\n", + " \"id\": \"55e0f466-b723-4af1-8210-777d320a9fe6\",\n", + " \"jobs\": [\n", + " \"5637e5d2-91c4-46b9-99ec-fe1e6a721b49\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 87 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:26.809754Z\",\n", + " \"id\": \"9b05a9aa-f293-45e4-b0e4-95cdcbd7b3ce\",\n", + " \"jobs\": [\n", + " \"b1ceaa71-2e3a-4c36-87ae-7e542c98525b\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 88 Type: init_branch\n", + "output: \"Wedonot use your personal data for activities where our interests are overridden bythe impact onyou (unless wehave your consent orare otherwise required orpermitted tobylaw) You can obtain further information about how weassess our legitimate interests against any potential impact onyou inrespect ofspecific activities bycontactingus **Performance ofContract**means processing your data where itisnecessary for the performance ofacontract towhich you are aparty ortotake steps atyour request before entering into such acontract **Comply with alegal obligation**means processing your personal data where itisnecessary for compliance with alegal obligation that weare subjectto **External Third Parties**\\n* Service providers acting asprocessors who provideIT and system administration services * Providers ofour cloud services including AWS and Google * Professional advisers acting asprocessors orjoint controllers including lawyers, bankers, auditors and insurers based inthe United Kingdom who provide consultancy, banking, legal, insurance and accounting services * Regulators and other authorities acting asprocessors orjoint controllers based inthe United Kingdom who require reporting ofprocessing activities incertain circumstances * Our third party partners and affiliates who may manage your customer relationship onour behalf * Stripe for payment management ## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved\\nThe chunk discusses QuickBlox's use of personal data, highlighting the conditions under which personal data may be processed, shared with external third parties, and the company's products and solutions. It emphasizes compliance with legal obligations and provides links to various QuickBlox services and resources.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 89 Type: init_branch\n", + "output: \"This enables you toaskus tosuspend the processing ofyour personal data inthe following scenarios:\\n1 Ifyou wantus toestablish the data’’s accuracy 2 Where our use ofthe data isunlawful but you donot wantus toeraseit 3 Where you needus tohold the data even ifwenolonger require itasyou need ittoestablish, exercise ordefend legal claims 4 You have objected toour use ofyour data but weneed toverify whether wehave overriding legitimate grounds touseit 5 **Request the transfer**ofyour personal data toyou ortoathird party Wewill provide toyou, orathird party you have chosen, your personal data inastructured, commonly used, machine-readable format Note that this right only applies toautomated information which you initially provided consent forus touse orwhere weused the information toperform acontract with you 6 **Withdraw consent atany time**where weare relying onconsent toprocess your personal data However, this will not affect the lawfulness ofany processing carried out before you withdraw your consent\\nThis chunk discusses the rights of individuals to request the suspension of their personal data processing under certain scenarios, the transfer of their personal data to themselves or a third party, and the withdrawal of consent for data processing, as outlined in the privacy policy section of the document.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 90 Type: init_branch\n", + "output: \"Ifyou withdraw your consent, wemay not beable toprovide certain products orservices toyou Wewill advise you ifthis isthe case atthe time you withdraw your consent Ifyou wish toexercise any ofthe rights set out above, please contactus ### No fee usually required\\nYou will not have topay afee toaccess your personal data (ortoexercise any ofthe other rights) However, wemay charge areasonable fee ifyour request isclearly unfounded, repetitive orexcessive Alternatively, wecould refuse tocomply with your request inthese circumstances ### What we may need from you\\nWemay need torequest specific information from you tohelpus confirm your identity and ensure your right toaccess your personal data (ortoexercise any ofyour other rights) This isasecurity measure toensure that personal data isnot disclosed toany person who has noright toreceiveit Wemay also contact you toask you for further information inrelation toyour request tospeed upour response ### Time limit to respond\\nWetry torespond toall legitimate requests within one month Occasionally itcould takeus longer than amonth ifyour request isparticularly complex oryou have made anumber ofrequests Inthis case, wewill notify you and keep you updated ## 10 Glossary\\n**Legitimate Interest**means the interest ofour business inconducting and managing our business toenableus togive you the best service/product and the best and most secure experience Wemake sure weconsider and balance any potential impact onyou (both positive and negative) and your rights before weprocess your personal data for our legitimate interests\\nThis chunk is part of QuickBlox's privacy policy, specifically detailing user rights concerning personal data. It discusses the process and implications of withdrawing consent, potential fees for data access requests, identity verification requirements, response times, and provides a glossary term related to \\\"Legitimate Interest.\\\"\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 91 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:24.911464Z\",\n", + " \"id\": \"869b2a99-0268-4d0f-a715-ca850ecae0fd\",\n", + " \"jobs\": [\n", + " \"04657969-f8fe-4bb4-9873-884a8fb630bf\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 92 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:24.900010Z\",\n", + " \"id\": \"1b0170c6-a29c-4831-b47b-c46eac9409a5\",\n", + " \"jobs\": [\n", + " \"c67d05c8-813b-454d-9295-2aef1eb87fa6\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 93 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:24.925122Z\",\n", + " \"id\": \"09585594-7010-4ee7-babd-fe6c454cad94\",\n", + " \"jobs\": [\n", + " \"9ca0f2ee-c35f-45c5-a822-87695958f17d\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 94 Type: init_branch\n", + "output: \"For more information about the cookies weuse, please see Cooklie Policy ### Change of purpose\\nWewill only use your personal data for the purposes for which wecollectedit, unless wereasonably consider that weneed touse itfor another reason and that reason iscompatible with the original purpose Ifyou wish toget anexplanation astohow the processing for the new purpose iscompatible with the original purpose, please contactus Ifweneed touse your personal data for anunrelated purpose, wewill notify you and wewill explain the legal basis which allowsus todoso Please note that wemay process your personal data without your knowledge orconsent, incompliance with the above rules, where this isrequired orpermitted bylaw ## 5 Disclosures ofyour personal data\\nWemay share your personal data with the parties set out below for the purposes set out inthe table ««Purposes for which wewill use your personal data»» above * External Third Parties asset out inthe Glossary * Third parties towhom wemay choose tosell, transfer ormerge parts ofour business orour assets Alternatively, wemay seek toacquire other businesses ormerge with them Ifachange happens toour business, then the new owners may use your personal data inthe same way asset out inthis privacy policy Werequire all third parties torespect the security ofyour personal data and totreat itinaccordance with the law Wedonot allow our third-party service providers touse your personal data for their own purposes and only permit them toprocess your personal data for specified purposes and inaccordance with our instructions ## 6 International transfers\\nWedonot currently transfer your personal data outside the European Economic Area (EEA)\\nThe chunk is part of QuickBlox's privacy policy, detailing the conditions under which personal data may be used for purposes other than originally intended, the disclosure of personal data to third parties, and the policy on international data transfers, particularly noting that data is not currently transferred outside the EEA.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 95 Type: init_branch\n", + "output: \"Ifinthe future wewere totransfer your personal data out ofthe EEA, wewould ensure asimilar degree ofprotection isafforded toitbyensuring atleast one ofthe following safeguards isimplemented:\\n* Wewill only transfer your personal data tocountries that have been deemed toprovide anadequate level ofprotection for personal data bythe European Commission * Where weuse certain service providers, wemay use specific contracts approved bythe European Commission which give personal data the same protection ithas inEurope Please contactus ifyou want further information onthe specific mechanism used byus when transferring your personal data out ofthe EEA ## 7 Data security\\nWehave put inplace appropriate security measures toprevent your personal data from being accidentally lost, used oraccessed inanunauthorised way, altered ordisclosed Inaddition, welimit access toyour personal data tothose employees, agents, contractors and other third parties who have abusiness need toknow They will only process your personal data onour instructions and they are subject toaduty ofconfidentiality Wehave put inplace procedures todeal with any suspected personal data breach and will notify you and any applicable regulator ofabreach where weare legally required todoso ## 8 Data retention\\n### How long will you use mypersonal data for Wewill only retain your personal data for aslong asreasonably necessary tofulfil the purposes wecollected itfor, including for the purposes ofsatisfying any legal, regulatory, tax, accounting orreporting requirements Wemay retain your personal data for alonger period inthe event ofacomplaint orifwereasonably believe there isaprospect oflitigation inrespect toour relationship with you Todetermine the appropriate retention period for personal data, weconsider the amount, nature and sensitivity ofthe personal data, the potential risk ofharm from unauthorised use ordisclosure ofyour personal data, the purposes for which weprocess your personal data and whether wecan achieve those purposes through other means, and the applicable legal, regulatory, tax, accounting orother requirements Bylaw wehave tokeep basic information about our customers (including Contact, Identity, Financial and Transaction Data) for six years after they cease being customers for tax purposes Insome circumstances you can askus todelete your data: see your legal rights below for further information\\nThis chunk is part of QuickBlox's privacy policy document, specifically discussing international data transfers, data security measures, and data retention policies. It details safeguards for transferring personal data outside the European Economic Area (EEA), security protocols to protect personal data, and guidelines on how long personal data is retained, including conditions for deletion upon request.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 96 Type: init_branch\n", + "output: \"Insome circumstances wewill anonymise your personal data (sothat itcan nolonger beassociated with you) for research orstatistical purposes, inwhich case wemay use this information indefinitely without further notice toyou ## 9 Your legal rights\\nUnder certain circumstances, you have rights under data protection laws inrelation toyour personal data You have the rightto:\\n* **Request access**toyour personal data (commonly known asa««data subject access request»») This enables you toreceive acopy ofthe personal data wehold about you and tocheck that weare lawfully processingit * **Request correction**ofthe personal data that wehold about you This enables you tohave any incomplete orinaccurate data wehold about you corrected, though wemay need toverify the accuracy ofthe new data you provide tous * **Request erasure**ofyour personal data This enables you toaskus todelete orremove personal data where there isnogood reason forus continuing toprocessit You also have the right toaskus todelete orremove your personal data where you have successfullyexercised your right toobject toprocessing (see below), where wemay have processed your information unlawfully orwhere weare required toerase your personal data tocomply with local law Note, however, that wemay not always beable tocomply with your request oferasure for specific legal reasons which will benotified toyou, ifapplicable, atthe time ofyour request * **Object toprocessing**ofyour personal data where weare relying onalegitimate interest (orthose ofathird party) and there issomething about your particular situation which makes you want toobject toprocessing onthis ground asyou feel itimpacts onyour fundamental rights and freedoms You also have the right toobject where weare processing your personal data for direct marketing purposes Insome cases, wemay demonstrate that wehave compelling legitimate grounds toprocess your information which override your rights and freedoms * **Request restriction ofprocessing**ofyour personal data\\nThis chunk discusses the rights individuals have under data protection laws regarding their personal data, such as the rights to access, correct, erase, object to processing, and restrict processing of their data. This section is part of the privacy policy, which outlines how QuickBlox handles personal data, informs users about their rights, and explains legal grounds for processing data.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 97 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:23.191827Z\",\n", + " \"id\": \"6d790638-313d-4611-a212-6d16e419f8b5\",\n", + " \"jobs\": [\n", + " \"45f94f9b-6c75-422d-9579-407cac7c1a41\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 98 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:23.183561Z\",\n", + " \"id\": \"45aa7303-1680-4ca2-99be-60238547fbcb\",\n", + " \"jobs\": [\n", + " \"7dd5972f-eb31-4a18-aa75-3334e75490d2\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 99 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:23.127000Z\",\n", + " \"id\": \"aed9157b-c70c-440f-a7aa-e819ef6f3735\",\n", + " \"jobs\": [\n", + " \"74943429-08ce-4701-bb1b-62311a8605d1\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 100 Type: init_branch\n", + "output: \"a Necessary for our legitimate interests (for running our business, provision ofadministration andIT services, network security, toprevent fraud and inthe context ofabusiness reorganisation orgroup restructuring exercise)\\n2 b Necessary tocomply with alegal obligation\\n* Touse data analytics toimprove our platform, products/services, marketing, customer relationships and experiences\\n* 1 a Technical\\n2 b Usage\\n3 Necessary for our legitimate interests (todefine types ofcustomers for our products and services, tokeep our services updated and relevant, todevelop our business and toinform our marketing strategy)\\n* Tomake suggestions and recommendations toyou about goods orservices that may beofinterest toyou\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4\\nThis chunk is part of QuickBlox's privacy policy, specifically focusing on the lawful basis for processing personal data. It outlines the legitimate interests for using personal data, such as business operations, IT services, fraud prevention, and data analytics for improving services and marketing strategies.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 101 Type: init_branch\n", + "output: \"Marketingand Communications\\n5 1 a Performance of a contract with you\\n2 b Necessary to comply with a legal obligation\\n3 c Necessary for our legitimate interests (to keep our records updated and to study how customers use our products/services)\\n* Toadminister and protect our business and our services (including troubleshooting, data analysis, testing, system maintenance, support, reporting and hosting ofdata)\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4 1\\nThe chunk is part of QuickBlox's privacy policy detailing how the company uses personal data, specifically for managing customer relationships, administering and protecting business services, and fulfilling legal obligations or legitimate interests.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 102 Type: init_branch\n", + "output: \"d Usage\\n5 e Profile\\n6 f Marketingand Communications\\n7 Necessary for our legitimate interests (todevelop our products/services and grow our business)\\n### Marketing\\nWestrive toprovide you with choices regarding certain personal data uses, particularly around marketing and advertising ### Promotional offers fromus\\nWemay use your Identity, Contact, Technical, Usage and Profile Data toform aview onwhat wethink you may want orneed, orwhat may beofinterest toyou This ishow wedecide which products, services and offers may berelevant for you You will receive marketing communications fromus ifyou have requested information fromus orpurchased products orservices fromus and you have not opted out ofreceiving that marketing ### Third-party marketing\\nWewill get your express opt-in consent before weshare your personal data with any third party for marketing purposes ### Opting out\\nYou can askus orthird parties tostop sending you marketing messages atany time Where you opt out ofreceiving these marketing messages, this will not apply topersonal data provided tous asaresult ofaproduct/service purchase, product/service experience orother transactions ### Cookies\\nYou can set your browser torefuse all orsome browser cookies, ortoalert you when services set oraccess cookies Ifyou disable orrefuse cookies, please note that some parts ofour platform may become inaccessible ornot function properly\\nThis chunk discusses QuickBlox's approach to marketing and advertising, highlighting the use of personal data to tailor marketing communications and offers to users. It explains the company's policy on obtaining opt-in consent for third-party marketing, options for opting out of marketing messages, and the use of cookies, noting potential impacts on platform accessibility if cookies are disabled.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 103 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:21.592902Z\",\n", + " \"id\": \"ff665acb-7803-4cc4-a097-29dfefd58960\",\n", + " \"jobs\": [\n", + " \"5a53a8bd-f36a-4b1f-8937-0771f90ebb9d\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 104 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:21.602391Z\",\n", + " \"id\": \"e210e72d-8863-4958-9a5a-251f4d178bcc\",\n", + " \"jobs\": [\n", + " \"40f5b5b1-b44b-42ef-8fda-30853fa74da1\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 105 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:21.533152Z\",\n", + " \"id\": \"a4f2733a-7e8c-43b5-a1f7-bb3ea41d9af8\",\n", + " \"jobs\": [\n", + " \"28e0797d-7fa9-46e3-b29e-9b1712490e32\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 106 Type: init_branch\n", + "output: \"b Collect and recover money owed tous\\n3 1 a Identity\\n2 b Contact\\n3 c Financial\\n4 d Transaction\\n5 e Marketingand Communications\\n6 1 a\\nThe chunk is part of a section detailing how QuickBlox processes personal data, specifically related to managing financial transactions, including managing payments and recovering debts, as part of their lawful basis for processing user data.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 107 Type: init_branch\n", + "output: \"Performance ofacontract with you\\n2 b Necessary for our legitimate interests (torecover debts due tous)\\n* Tomanage our relationship with you which will include:\\n1 a Notifying you about changes toour terms orprivacy policy\\n2 b Asking you toleave areview ortake asurvey\\n3 1 a Identity\\n2 b Contact\\n3 c Profile\\n4 d\\nThis chunk is part of the \\\"Purposes for which we will use your personal data\\\" section in QuickBlox's privacy policy. It outlines the lawful basis for processing personal data, specifically focusing on performance of contracts and legitimate interests, such as managing customer relationships and notifying users about policy changes.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 108 Type: init_branch\n", + "output: \"* Where weneed tocomply with alegal obligation Generally, wedonot rely onconsent asalegal basis for processing your personal data although wewill get your consent before sending direct marketing communications toyou You have the right towithdraw consent tomarketing atany time bycontactingus ### Purposes for which wewill use your personal data\\nWehave set out below, inatable format, adescription ofall the ways weplan touse your personal data, and which ofthe legal bases werely ontodoso Wehave also identified what our legitimate interests are where appropriate Note that wemay process your personal data for more than one lawful ground depending onthe specific purpose for which weare using your data Please contactus ifyou need details about the specific legal ground weare relying ontoprocess your personal data where more than one ground has been set out inthe table below * **Purpose/Activity**\\n* **Type of data**\\n* **Lawful basis for processing including basis oflegitimate interest**\\n* Toregister you asacustomer\\n* 1 a Identity\\n2 b Contact\\n3 Performance ofacontract with you\\n* Toprocess your order including:\\n1 a Manage payments, fees and charges\\n2\\nThe chunk is part of QuickBlox's privacy policy, detailing the legal bases for processing personal data. It explains that consent is not generally relied upon, except for direct marketing, and lists the purposes for which personal data is used, types of data involved, and lawful bases for processing, including legitimate interests.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 109 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:19.799505Z\",\n", + " \"id\": \"73a41ed3-cb7d-4bc1-a129-bb1e28e9ab49\",\n", + " \"jobs\": [\n", + " \"de00a0ee-d4b9-410d-b5d9-442a3a0bc6e5\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 110 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:19.750657Z\",\n", + " \"id\": \"2cabf7cd-4d82-414a-8bee-b5290e9392d7\",\n", + " \"jobs\": [\n", + " \"ad6fb820-bca9-4976-9d78-163589bf2590\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 111 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:19.767891Z\",\n", + " \"id\": \"26415c9a-91b5-4120-82f8-bdce4a83306e\",\n", + " \"jobs\": [\n", + " \"c9340723-e417-4642-9711-549c6ce76654\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 112 Type: init_branch\n", + "output: \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Privacy Policy\\nLast updated: 27/03/2023\\n## INTRODUCTION\\nQuickBlox respects your privacy and iscommitted toprotecting your personal data This privacy policy will inform you astohow welook after your personal data when you access our services and tell you about your privacy rights and how the law protects you Please also use the Glossary tounderstand the meaning ofsome ofthe terms used inthis privacy policy ## 1 Important information and who we are\\n### Purpose ofthis privacy policy\\nThis privacy policy aims togive you information onhow QuickBlox collects and processes your personal data through your use ofour services, including any data you may provide through this website when you sign upto, orpurchase one ofour products orservices Itisimportant that you read this privacy policy together with any other privacy policy orfair processing policy wemay provide onspecific occasions when weare collecting, orprocessing, personal data about you, sothat you are fully aware ofhow and why weare using your data This privacy policy supplements other notices and privacy policies and isnot intended tooverride them ### Controller\\nInjoit Limited isthe controller and isresponsible for your personal data (collectively referred toasQuickBlox, ««we»»,««us»» or««our»» inthis privacy policy) Wehave appointed adata privacy manager who isresponsible for overseeing questions inrelation tothis privacy policy Ifyou have any questions about this privacy policy, including any requests toexercise your legal rights, please contact the data privacy manager using the details set out below ### Contact details\\nIf you have any questions about this privacy policy or our privacy practices, please contact our data privacy manager in the following ways:\\n* **Full name of legal entity:**\\n* **Email address:**\\n* **Telephone number:**\\n* Injoit Limited\\n* [gdpr@quickblox.com](mailto:gdpr@quickblox.com)\\n* [+1 415 755 8221]()\\nYou have the right tomake acomplaint atany time tothe Information Commissioner’’s Office (ICO), theUK supervisory authority for data protection issues (www.ico.org.uk) Wewould, however, appreciate the chance todeal with your concerns before you approach the ICO soplease contactus inthe first instance ### Changes tothe privacy policy and your duty toinformus ofchanges\\nWekeep our privacy policy under regular review Itisimportant that the personal data wehold about you isaccurate and current Please keepus informed ifyour personal data changes during your relationship withus\\nThis chunk provides an overview of QuickBlox's product offerings, including communication tools, AI features, and white-label solutions, alongside resources for developers, support, and enterprise services. It includes links to their SDKs, APIs, and various industry solutions, as well as contact and privacy policy information.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 113 Type: init_branch\n", + "output: \"Weuse different methods tocollect data from and about you including through:\\n* **Direct interactions.**You may giveus your Identity, Contact and Financial Data byfilling informs orbycorresponding withus bypost, phone, email orotherwise This includes personal data you provide when you:\\n1 apply for our products orservices;\\n2 create anaccount withus;\\n3 subscribe toour service;\\n4 request marketing tobesent toyou;\\n5 enter apromotion orsurvey; or\\n6 giveus feedback orcontactus 7 **Automated technologies**orinteractions Asyou interact with our Platform, wewill automatically collect Technical Data about your equipment, browsing actions and patterns Wecollect this personal data byusing cookies, server logs and other similar technologies.## 4 How weuse your personal data\\nWewill only use your personal data when the law allowsus to Most commonly, wewill use your personal data inthe following circumstances:\\n* Where weneed toperform the contract weare about toenter into orhave entered into with you * Where itisnecessary for our legitimate interests (orthose ofathird party) and your interests and fundamental rights donot override those interests\\nThe chunk is part of QuickBlox's privacy policy, specifically detailing how the company collects and uses personal data. It outlines the methods of data collection, including direct interactions and automated technologies, and the circumstances under which personal data is used, such as fulfilling contracts and legitimate interests. This section is crucial for understanding QuickBlox's data handling practices and user privacy rights.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 114 Type: init_branch\n", + "output: \"## 2 The data wecollect about you\\nPersonal data, orpersonal information, means any information about anindividual from which that person can beidentified Itdoes not include data where the identity has been removed (anonymous data) Wemay collect, use, store and transfer different kinds ofpersonal data about you which wehave grouped together asfollows:\\n* **Identity Data**which includes first name, maiden name, last name, username orsimilar identifier, title * **Contact Data**which includes billing address, home address, email address and telephone numbers * **Technical Data**which includes your internet protocol (IP) address, your login data, browser type and version, hardware information, time zone setting and location, browser plug-in types and versions, operating system and platform, and other technology onthe devices you use toaccess our platform * **Profile Data**which includes your username and password, purchases ororders made byyou, your interests, preferences, feedback and survey responses * **Usage Data**which includes information about how you use our platform, products and services * **Marketing and Communications Data**which includes your preferences inreceiving marketing fromus and our third parties and your communication preferences Wealso collect, use and share**Aggregated**Data such asstatistical ordemographic data for any purpose Aggregated Data could bederived from your personal data but isnot considered personal data inlaw asthis data will not directly orindirectly reveal your identity ### Ifyou fail toprovide personal data\\nWhere weneed tocollect personal data bylaw, orunder the terms ofacontract wehave with you, and you fail toprovide that data when requested, wemay not beable toperform the contract wehave orare trying toenter into with you (for example, toprovide you with our products orservices) Inthis case, wemay have tocancel aproduct orservice you have withus, but wewill notify you ifthis isthe case atthe time ## 3 How isyour personal data collected\\nThis chunk is part of QuickBlox's privacy policy, detailing the types of personal data collected, including identity, contact, technical, profile, usage, and marketing data. It also explains the consequences of failing to provide required personal data, emphasizing the importance of data collection for contractual and legal obligations.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 115 Type: step\n", + "output: {\n", + " \"final_chunks\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Privacy Policy\\nLast updated: 27/03/2023\\n## INTRODUCTION\\nQuickBlox respects your privacy and iscommitted toprotecting your personal data This privacy policy will inform you astohow welook after your personal data when you access our services and tell you about your privacy rights and how the law protects you Please also use the Glossary tounderstand the meaning ofsome ofthe terms used inthis privacy policy ## 1 Important information and who we are\\n### Purpose ofthis privacy policy\\nThis privacy policy aims togive you information onhow QuickBlox collects and processes your personal data through your use ofour services, including any data you may provide through this website when you sign upto, orpurchase one ofour products orservices Itisimportant that you read this privacy policy together with any other privacy policy orfair processing policy wemay provide onspecific occasions when weare collecting, orprocessing, personal data about you, sothat you are fully aware ofhow and why weare using your data This privacy policy supplements other notices and privacy policies and isnot intended tooverride them ### Controller\\nInjoit Limited isthe controller and isresponsible for your personal data (collectively referred toasQuickBlox, ««we»»,««us»» or««our»» inthis privacy policy) Wehave appointed adata privacy manager who isresponsible for overseeing questions inrelation tothis privacy policy Ifyou have any questions about this privacy policy, including any requests toexercise your legal rights, please contact the data privacy manager using the details set out below ### Contact details\\nIf you have any questions about this privacy policy or our privacy practices, please contact our data privacy manager in the following ways:\\n* **Full name of legal entity:**\\n* **Email address:**\\n* **Telephone number:**\\n* Injoit Limited\\n* [gdpr@quickblox.com](mailto:gdpr@quickblox.com)\\n* [+1 415 755 8221]()\\nYou have the right tomake acomplaint atany time tothe Information Commissioner’’s Office (ICO), theUK supervisory authority for data protection issues (www.ico.org.uk) Wewould, however, appreciate the chance todeal with your concerns before you approach the ICO soplease contactus inthe first instance ### Changes tothe privacy policy and your duty toinformus ofchanges\\nWekeep our privacy policy under regular review Itisimportant that the personal data wehold about you isaccurate and current Please keepus informed ifyour personal data changes during your relationship withus\\nThis chunk provides an overview of QuickBlox's product offerings, including communication tools, AI features, and white-label solutions, alongside resources for developers, support, and enterprise services. It includes links to their SDKs, APIs, and various industry solutions, as well as contact and privacy policy information.\",\n", + " \"## 2 The data wecollect about you\\nPersonal data, orpersonal information, means any information about anindividual from which that person can beidentified Itdoes not include data where the identity has been removed (anonymous data) Wemay collect, use, store and transfer different kinds ofpersonal data about you which wehave grouped together asfollows:\\n* **Identity Data**which includes first name, maiden name, last name, username orsimilar identifier, title * **Contact Data**which includes billing address, home address, email address and telephone numbers * **Technical Data**which includes your internet protocol (IP) address, your login data, browser type and version, hardware information, time zone setting and location, browser plug-in types and versions, operating system and platform, and other technology onthe devices you use toaccess our platform * **Profile Data**which includes your username and password, purchases ororders made byyou, your interests, preferences, feedback and survey responses * **Usage Data**which includes information about how you use our platform, products and services * **Marketing and Communications Data**which includes your preferences inreceiving marketing fromus and our third parties and your communication preferences Wealso collect, use and share**Aggregated**Data such asstatistical ordemographic data for any purpose Aggregated Data could bederived from your personal data but isnot considered personal data inlaw asthis data will not directly orindirectly reveal your identity ### Ifyou fail toprovide personal data\\nWhere weneed tocollect personal data bylaw, orunder the terms ofacontract wehave with you, and you fail toprovide that data when requested, wemay not beable toperform the contract wehave orare trying toenter into with you (for example, toprovide you with our products orservices) Inthis case, wemay have tocancel aproduct orservice you have withus, but wewill notify you ifthis isthe case atthe time ## 3 How isyour personal data collected\\nThis chunk is part of QuickBlox's privacy policy, detailing the types of personal data collected, including identity, contact, technical, profile, usage, and marketing data. It also explains the consequences of failing to provide required personal data, emphasizing the importance of data collection for contractual and legal obligations.\",\n", + " \"Weuse different methods tocollect data from and about you including through:\\n* **Direct interactions.**You may giveus your Identity, Contact and Financial Data byfilling informs orbycorresponding withus bypost, phone, email orotherwise This includes personal data you provide when you:\\n1 apply for our products orservices;\\n2 create anaccount withus;\\n3 subscribe toour service;\\n4 request marketing tobesent toyou;\\n5 enter apromotion orsurvey; or\\n6 giveus feedback orcontactus 7 **Automated technologies**orinteractions Asyou interact with our Platform, wewill automatically collect Technical Data about your equipment, browsing actions and patterns Wecollect this personal data byusing cookies, server logs and other similar technologies.## 4 How weuse your personal data\\nWewill only use your personal data when the law allowsus to Most commonly, wewill use your personal data inthe following circumstances:\\n* Where weneed toperform the contract weare about toenter into orhave entered into with you * Where itisnecessary for our legitimate interests (orthose ofathird party) and your interests and fundamental rights donot override those interests\\nThe chunk is part of QuickBlox's privacy policy, specifically detailing how the company collects and uses personal data. It outlines the methods of data collection, including direct interactions and automated technologies, and the circumstances under which personal data is used, such as fulfilling contracts and legitimate interests. This section is crucial for understanding QuickBlox's data handling practices and user privacy rights.\",\n", + " \"* Where weneed tocomply with alegal obligation Generally, wedonot rely onconsent asalegal basis for processing your personal data although wewill get your consent before sending direct marketing communications toyou You have the right towithdraw consent tomarketing atany time bycontactingus ### Purposes for which wewill use your personal data\\nWehave set out below, inatable format, adescription ofall the ways weplan touse your personal data, and which ofthe legal bases werely ontodoso Wehave also identified what our legitimate interests are where appropriate Note that wemay process your personal data for more than one lawful ground depending onthe specific purpose for which weare using your data Please contactus ifyou need details about the specific legal ground weare relying ontoprocess your personal data where more than one ground has been set out inthe table below * **Purpose/Activity**\\n* **Type of data**\\n* **Lawful basis for processing including basis oflegitimate interest**\\n* Toregister you asacustomer\\n* 1 a Identity\\n2 b Contact\\n3 Performance ofacontract with you\\n* Toprocess your order including:\\n1 a Manage payments, fees and charges\\n2\\nThe chunk is part of QuickBlox's privacy policy, detailing the legal bases for processing personal data. It explains that consent is not generally relied upon, except for direct marketing, and lists the purposes for which personal data is used, types of data involved, and lawful bases for processing, including legitimate interests.\",\n", + " \"b Collect and recover money owed tous\\n3 1 a Identity\\n2 b Contact\\n3 c Financial\\n4 d Transaction\\n5 e Marketingand Communications\\n6 1 a\\nThe chunk is part of a section detailing how QuickBlox processes personal data, specifically related to managing financial transactions, including managing payments and recovering debts, as part of their lawful basis for processing user data.\",\n", + " \"Performance ofacontract with you\\n2 b Necessary for our legitimate interests (torecover debts due tous)\\n* Tomanage our relationship with you which will include:\\n1 a Notifying you about changes toour terms orprivacy policy\\n2 b Asking you toleave areview ortake asurvey\\n3 1 a Identity\\n2 b Contact\\n3 c Profile\\n4 d\\nThis chunk is part of the \\\"Purposes for which we will use your personal data\\\" section in QuickBlox's privacy policy. It outlines the lawful basis for processing personal data, specifically focusing on performance of contracts and legitimate interests, such as managing customer relationships and notifying users about policy changes.\",\n", + " \"Marketingand Communications\\n5 1 a Performance of a contract with you\\n2 b Necessary to comply with a legal obligation\\n3 c Necessary for our legitimate interests (to keep our records updated and to study how customers use our products/services)\\n* Toadminister and protect our business and our services (including troubleshooting, data analysis, testing, system maintenance, support, reporting and hosting ofdata)\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4 1\\nThe chunk is part of QuickBlox's privacy policy detailing how the company uses personal data, specifically for managing customer relationships, administering and protecting business services, and fulfilling legal obligations or legitimate interests.\",\n", + " \"a Necessary for our legitimate interests (for running our business, provision ofadministration andIT services, network security, toprevent fraud and inthe context ofabusiness reorganisation orgroup restructuring exercise)\\n2 b Necessary tocomply with alegal obligation\\n* Touse data analytics toimprove our platform, products/services, marketing, customer relationships and experiences\\n* 1 a Technical\\n2 b Usage\\n3 Necessary for our legitimate interests (todefine types ofcustomers for our products and services, tokeep our services updated and relevant, todevelop our business and toinform our marketing strategy)\\n* Tomake suggestions and recommendations toyou about goods orservices that may beofinterest toyou\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4\\nThis chunk is part of QuickBlox's privacy policy, specifically focusing on the lawful basis for processing personal data. It outlines the legitimate interests for using personal data, such as business operations, IT services, fraud prevention, and data analytics for improving services and marketing strategies.\",\n", + " \"d Usage\\n5 e Profile\\n6 f Marketingand Communications\\n7 Necessary for our legitimate interests (todevelop our products/services and grow our business)\\n### Marketing\\nWestrive toprovide you with choices regarding certain personal data uses, particularly around marketing and advertising ### Promotional offers fromus\\nWemay use your Identity, Contact, Technical, Usage and Profile Data toform aview onwhat wethink you may want orneed, orwhat may beofinterest toyou This ishow wedecide which products, services and offers may berelevant for you You will receive marketing communications fromus ifyou have requested information fromus orpurchased products orservices fromus and you have not opted out ofreceiving that marketing ### Third-party marketing\\nWewill get your express opt-in consent before weshare your personal data with any third party for marketing purposes ### Opting out\\nYou can askus orthird parties tostop sending you marketing messages atany time Where you opt out ofreceiving these marketing messages, this will not apply topersonal data provided tous asaresult ofaproduct/service purchase, product/service experience orother transactions ### Cookies\\nYou can set your browser torefuse all orsome browser cookies, ortoalert you when services set oraccess cookies Ifyou disable orrefuse cookies, please note that some parts ofour platform may become inaccessible ornot function properly\\nThis chunk discusses QuickBlox's approach to marketing and advertising, highlighting the use of personal data to tailor marketing communications and offers to users. It explains the company's policy on obtaining opt-in consent for third-party marketing, options for opting out of marketing messages, and the use of cookies, noting potential impacts on platform accessibility if cookies are disabled.\",\n", + " \"For more information about the cookies weuse, please see Cooklie Policy ### Change of purpose\\nWewill only use your personal data for the purposes for which wecollectedit, unless wereasonably consider that weneed touse itfor another reason and that reason iscompatible with the original purpose Ifyou wish toget anexplanation astohow the processing for the new purpose iscompatible with the original purpose, please contactus Ifweneed touse your personal data for anunrelated purpose, wewill notify you and wewill explain the legal basis which allowsus todoso Please note that wemay process your personal data without your knowledge orconsent, incompliance with the above rules, where this isrequired orpermitted bylaw ## 5 Disclosures ofyour personal data\\nWemay share your personal data with the parties set out below for the purposes set out inthe table ««Purposes for which wewill use your personal data»» above * External Third Parties asset out inthe Glossary * Third parties towhom wemay choose tosell, transfer ormerge parts ofour business orour assets Alternatively, wemay seek toacquire other businesses ormerge with them Ifachange happens toour business, then the new owners may use your personal data inthe same way asset out inthis privacy policy Werequire all third parties torespect the security ofyour personal data and totreat itinaccordance with the law Wedonot allow our third-party service providers touse your personal data for their own purposes and only permit them toprocess your personal data for specified purposes and inaccordance with our instructions ## 6 International transfers\\nWedonot currently transfer your personal data outside the European Economic Area (EEA)\\nThe chunk is part of QuickBlox's privacy policy, detailing the conditions under which personal data may be used for purposes other than originally intended, the disclosure of personal data to third parties, and the policy on international data transfers, particularly noting that data is not currently transferred outside the EEA.\",\n", + " \"Ifinthe future wewere totransfer your personal data out ofthe EEA, wewould ensure asimilar degree ofprotection isafforded toitbyensuring atleast one ofthe following safeguards isimplemented:\\n* Wewill only transfer your personal data tocountries that have been deemed toprovide anadequate level ofprotection for personal data bythe European Commission * Where weuse certain service providers, wemay use specific contracts approved bythe European Commission which give personal data the same protection ithas inEurope Please contactus ifyou want further information onthe specific mechanism used byus when transferring your personal data out ofthe EEA ## 7 Data security\\nWehave put inplace appropriate security measures toprevent your personal data from being accidentally lost, used oraccessed inanunauthorised way, altered ordisclosed Inaddition, welimit access toyour personal data tothose employees, agents, contractors and other third parties who have abusiness need toknow They will only process your personal data onour instructions and they are subject toaduty ofconfidentiality Wehave put inplace procedures todeal with any suspected personal data breach and will notify you and any applicable regulator ofabreach where weare legally required todoso ## 8 Data retention\\n### How long will you use mypersonal data for Wewill only retain your personal data for aslong asreasonably necessary tofulfil the purposes wecollected itfor, including for the purposes ofsatisfying any legal, regulatory, tax, accounting orreporting requirements Wemay retain your personal data for alonger period inthe event ofacomplaint orifwereasonably believe there isaprospect oflitigation inrespect toour relationship with you Todetermine the appropriate retention period for personal data, weconsider the amount, nature and sensitivity ofthe personal data, the potential risk ofharm from unauthorised use ordisclosure ofyour personal data, the purposes for which weprocess your personal data and whether wecan achieve those purposes through other means, and the applicable legal, regulatory, tax, accounting orother requirements Bylaw wehave tokeep basic information about our customers (including Contact, Identity, Financial and Transaction Data) for six years after they cease being customers for tax purposes Insome circumstances you can askus todelete your data: see your legal rights below for further information\\nThis chunk is part of QuickBlox's privacy policy document, specifically discussing international data transfers, data security measures, and data retention policies. It details safeguards for transferring personal data outside the European Economic Area (EEA), security protocols to protect personal data, and guidelines on how long personal data is retained, including conditions for deletion upon request.\",\n", + " \"Insome circumstances wewill anonymise your personal data (sothat itcan nolonger beassociated with you) for research orstatistical purposes, inwhich case wemay use this information indefinitely without further notice toyou ## 9 Your legal rights\\nUnder certain circumstances, you have rights under data protection laws inrelation toyour personal data You have the rightto:\\n* **Request access**toyour personal data (commonly known asa««data subject access request»») This enables you toreceive acopy ofthe personal data wehold about you and tocheck that weare lawfully processingit * **Request correction**ofthe personal data that wehold about you This enables you tohave any incomplete orinaccurate data wehold about you corrected, though wemay need toverify the accuracy ofthe new data you provide tous * **Request erasure**ofyour personal data This enables you toaskus todelete orremove personal data where there isnogood reason forus continuing toprocessit You also have the right toaskus todelete orremove your personal data where you have successfullyexercised your right toobject toprocessing (see below), where wemay have processed your information unlawfully orwhere weare required toerase your personal data tocomply with local law Note, however, that wemay not always beable tocomply with your request oferasure for specific legal reasons which will benotified toyou, ifapplicable, atthe time ofyour request * **Object toprocessing**ofyour personal data where weare relying onalegitimate interest (orthose ofathird party) and there issomething about your particular situation which makes you want toobject toprocessing onthis ground asyou feel itimpacts onyour fundamental rights and freedoms You also have the right toobject where weare processing your personal data for direct marketing purposes Insome cases, wemay demonstrate that wehave compelling legitimate grounds toprocess your information which override your rights and freedoms * **Request restriction ofprocessing**ofyour personal data\\nThis chunk discusses the rights individuals have under data protection laws regarding their personal data, such as the rights to access, correct, erase, object to processing, and restrict processing of their data. This section is part of the privacy policy, which outlines how QuickBlox handles personal data, informs users about their rights, and explains legal grounds for processing data.\",\n", + " \"This enables you toaskus tosuspend the processing ofyour personal data inthe following scenarios:\\n1 Ifyou wantus toestablish the data’’s accuracy 2 Where our use ofthe data isunlawful but you donot wantus toeraseit 3 Where you needus tohold the data even ifwenolonger require itasyou need ittoestablish, exercise ordefend legal claims 4 You have objected toour use ofyour data but weneed toverify whether wehave overriding legitimate grounds touseit 5 **Request the transfer**ofyour personal data toyou ortoathird party Wewill provide toyou, orathird party you have chosen, your personal data inastructured, commonly used, machine-readable format Note that this right only applies toautomated information which you initially provided consent forus touse orwhere weused the information toperform acontract with you 6 **Withdraw consent atany time**where weare relying onconsent toprocess your personal data However, this will not affect the lawfulness ofany processing carried out before you withdraw your consent\\nThis chunk discusses the rights of individuals to request the suspension of their personal data processing under certain scenarios, the transfer of their personal data to themselves or a third party, and the withdrawal of consent for data processing, as outlined in the privacy policy section of the document.\",\n", + " \"Ifyou withdraw your consent, wemay not beable toprovide certain products orservices toyou Wewill advise you ifthis isthe case atthe time you withdraw your consent Ifyou wish toexercise any ofthe rights set out above, please contactus ### No fee usually required\\nYou will not have topay afee toaccess your personal data (ortoexercise any ofthe other rights) However, wemay charge areasonable fee ifyour request isclearly unfounded, repetitive orexcessive Alternatively, wecould refuse tocomply with your request inthese circumstances ### What we may need from you\\nWemay need torequest specific information from you tohelpus confirm your identity and ensure your right toaccess your personal data (ortoexercise any ofyour other rights) This isasecurity measure toensure that personal data isnot disclosed toany person who has noright toreceiveit Wemay also contact you toask you for further information inrelation toyour request tospeed upour response ### Time limit to respond\\nWetry torespond toall legitimate requests within one month Occasionally itcould takeus longer than amonth ifyour request isparticularly complex oryou have made anumber ofrequests Inthis case, wewill notify you and keep you updated ## 10 Glossary\\n**Legitimate Interest**means the interest ofour business inconducting and managing our business toenableus togive you the best service/product and the best and most secure experience Wemake sure weconsider and balance any potential impact onyou (both positive and negative) and your rights before weprocess your personal data for our legitimate interests\\nThis chunk is part of QuickBlox's privacy policy, specifically detailing user rights concerning personal data. It discusses the process and implications of withdrawing consent, potential fees for data access requests, identity verification requirements, response times, and provides a glossary term related to \\\"Legitimate Interest.\\\"\",\n", + " \"Wedonot use your personal data for activities where our interests are overridden bythe impact onyou (unless wehave your consent orare otherwise required orpermitted tobylaw) You can obtain further information about how weassess our legitimate interests against any potential impact onyou inrespect ofspecific activities bycontactingus **Performance ofContract**means processing your data where itisnecessary for the performance ofacontract towhich you are aparty ortotake steps atyour request before entering into such acontract **Comply with alegal obligation**means processing your personal data where itisnecessary for compliance with alegal obligation that weare subjectto **External Third Parties**\\n* Service providers acting asprocessors who provideIT and system administration services * Providers ofour cloud services including AWS and Google * Professional advisers acting asprocessors orjoint controllers including lawyers, bankers, auditors and insurers based inthe United Kingdom who provide consultancy, banking, legal, insurance and accounting services * Regulators and other authorities acting asprocessors orjoint controllers based inthe United Kingdom who require reporting ofprocessing activities incertain circumstances * Our third party partners and affiliates who may manage your customer relationship onour behalf * Stripe for payment management ## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved\\nThe chunk discusses QuickBlox's use of personal data, highlighting the conditions under which personal data may be processed, shared with external third parties, and the company's products and solutions. It emphasizes compliance with legal obligations and provides links to various QuickBlox services and resources.\",\n", + " \"* [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\\nThe chunk provides information about QuickBlox's terms and policies, including links to their Terms of Use, Terms of Service, Privacy Policy, and Cookie Policy. It also mentions the use of cookies and tracking technologies on their website, offers a subscription option for news updates, and lists links to QuickBlox's social media profiles. This section is relevant for users seeking legal and privacy details, or looking to connect with QuickBlox on social media.\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 116 Type: step\n", + "output: [\n", + " \"This chunk provides an overview of QuickBlox's product offerings, including communication tools, AI features, and white-label solutions, alongside resources for developers, support, and enterprise services. It includes links to their SDKs, APIs, and various industry solutions, as well as contact and privacy policy information.\",\n", + " \"This chunk is part of QuickBlox's privacy policy, detailing the types of personal data collected, including identity, contact, technical, profile, usage, and marketing data. It also explains the consequences of failing to provide required personal data, emphasizing the importance of data collection for contractual and legal obligations.\",\n", + " \"The chunk is part of QuickBlox's privacy policy, specifically detailing how the company collects and uses personal data. It outlines the methods of data collection, including direct interactions and automated technologies, and the circumstances under which personal data is used, such as fulfilling contracts and legitimate interests. This section is crucial for understanding QuickBlox's data handling practices and user privacy rights.\",\n", + " \"The chunk is part of QuickBlox's privacy policy, detailing the legal bases for processing personal data. It explains that consent is not generally relied upon, except for direct marketing, and lists the purposes for which personal data is used, types of data involved, and lawful bases for processing, including legitimate interests.\",\n", + " \"The chunk is part of a section detailing how QuickBlox processes personal data, specifically related to managing financial transactions, including managing payments and recovering debts, as part of their lawful basis for processing user data.\",\n", + " \"This chunk is part of the \\\"Purposes for which we will use your personal data\\\" section in QuickBlox's privacy policy. It outlines the lawful basis for processing personal data, specifically focusing on performance of contracts and legitimate interests, such as managing customer relationships and notifying users about policy changes.\",\n", + " \"The chunk is part of QuickBlox's privacy policy detailing how the company uses personal data, specifically for managing customer relationships, administering and protecting business services, and fulfilling legal obligations or legitimate interests.\",\n", + " \"This chunk is part of QuickBlox's privacy policy, specifically focusing on the lawful basis for processing personal data. It outlines the legitimate interests for using personal data, such as business operations, IT services, fraud prevention, and data analytics for improving services and marketing strategies.\",\n", + " \"This chunk discusses QuickBlox's approach to marketing and advertising, highlighting the use of personal data to tailor marketing communications and offers to users. It explains the company's policy on obtaining opt-in consent for third-party marketing, options for opting out of marketing messages, and the use of cookies, noting potential impacts on platform accessibility if cookies are disabled.\",\n", + " \"The chunk is part of QuickBlox's privacy policy, detailing the conditions under which personal data may be used for purposes other than originally intended, the disclosure of personal data to third parties, and the policy on international data transfers, particularly noting that data is not currently transferred outside the EEA.\",\n", + " \"This chunk is part of QuickBlox's privacy policy document, specifically discussing international data transfers, data security measures, and data retention policies. It details safeguards for transferring personal data outside the European Economic Area (EEA), security protocols to protect personal data, and guidelines on how long personal data is retained, including conditions for deletion upon request.\",\n", + " \"This chunk discusses the rights individuals have under data protection laws regarding their personal data, such as the rights to access, correct, erase, object to processing, and restrict processing of their data. This section is part of the privacy policy, which outlines how QuickBlox handles personal data, informs users about their rights, and explains legal grounds for processing data.\",\n", + " \"This chunk discusses the rights of individuals to request the suspension of their personal data processing under certain scenarios, the transfer of their personal data to themselves or a third party, and the withdrawal of consent for data processing, as outlined in the privacy policy section of the document.\",\n", + " \"This chunk is part of QuickBlox's privacy policy, specifically detailing user rights concerning personal data. It discusses the process and implications of withdrawing consent, potential fees for data access requests, identity verification requirements, response times, and provides a glossary term related to \\\"Legitimate Interest.\\\"\",\n", + " \"The chunk discusses QuickBlox's use of personal data, highlighting the conditions under which personal data may be processed, shared with external third parties, and the company's products and solutions. It emphasizes compliance with legal obligations and provides links to various QuickBlox services and resources.\",\n", + " \"The chunk provides information about QuickBlox's terms and policies, including links to their Terms of Use, Terms of Service, Privacy Policy, and Cookie Policy. It also mentions the use of cookies and tracking technologies on their website, offers a subscription option for news updates, and lists links to QuickBlox's social media profiles. This section is relevant for users seeking legal and privacy details, or looking to connect with QuickBlox on social media.\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 117 Type: finish_branch\n", + "output: \"The chunk provides information about QuickBlox's terms and policies, including links to their Terms of Use, Terms of Service, Privacy Policy, and Cookie Policy. It also mentions the use of cookies and tracking technologies on their website, offers a subscription option for news updates, and lists links to QuickBlox's social media profiles. This section is relevant for users seeking legal and privacy details, or looking to connect with QuickBlox on social media.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 118 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Privacy Policy\\nLast updated: 27/03/2023\\n## INTRODUCTION\\nQuickBlox respects your privacy and iscommitted toprotecting your personal data This privacy policy will inform you astohow welook after your personal data when you access our services and tell you about your privacy rights and how the law protects you Please also use the Glossary tounderstand the meaning ofsome ofthe terms used inthis privacy policy ## 1 Important information and who we are\\n### Purpose ofthis privacy policy\\nThis privacy policy aims togive you information onhow QuickBlox collects and processes your personal data through your use ofour services, including any data you may provide through this website when you sign upto, orpurchase one ofour products orservices Itisimportant that you read this privacy policy together with any other privacy policy orfair processing policy wemay provide onspecific occasions when weare collecting, orprocessing, personal data about you, sothat you are fully aware ofhow and why weare using your data This privacy policy supplements other notices and privacy policies and isnot intended tooverride them ### Controller\\nInjoit Limited isthe controller and isresponsible for your personal data (collectively referred toasQuickBlox, ««we»»,««us»» or««our»» inthis privacy policy) Wehave appointed adata privacy manager who isresponsible for overseeing questions inrelation tothis privacy policy Ifyou have any questions about this privacy policy, including any requests toexercise your legal rights, please contact the data privacy manager using the details set out below ### Contact details\\nIf you have any questions about this privacy policy or our privacy practices, please contact our data privacy manager in the following ways:\\n* **Full name of legal entity:**\\n* **Email address:**\\n* **Telephone number:**\\n* Injoit Limited\\n* [gdpr@quickblox.com](mailto:gdpr@quickblox.com)\\n* [+1 415 755 8221]()\\nYou have the right tomake acomplaint atany time tothe Information Commissioner’’s Office (ICO), theUK supervisory authority for data protection issues (www.ico.org.uk) Wewould, however, appreciate the chance todeal with your concerns before you approach the ICO soplease contactus inthe first instance ### Changes tothe privacy policy and your duty toinformus ofchanges\\nWekeep our privacy policy under regular review Itisimportant that the personal data wehold about you isaccurate and current Please keepus informed ifyour personal data changes during your relationship withus\",\n", + " \"## 2 The data wecollect about you\\nPersonal data, orpersonal information, means any information about anindividual from which that person can beidentified Itdoes not include data where the identity has been removed (anonymous data) Wemay collect, use, store and transfer different kinds ofpersonal data about you which wehave grouped together asfollows:\\n* **Identity Data**which includes first name, maiden name, last name, username orsimilar identifier, title * **Contact Data**which includes billing address, home address, email address and telephone numbers * **Technical Data**which includes your internet protocol (IP) address, your login data, browser type and version, hardware information, time zone setting and location, browser plug-in types and versions, operating system and platform, and other technology onthe devices you use toaccess our platform * **Profile Data**which includes your username and password, purchases ororders made byyou, your interests, preferences, feedback and survey responses * **Usage Data**which includes information about how you use our platform, products and services * **Marketing and Communications Data**which includes your preferences inreceiving marketing fromus and our third parties and your communication preferences Wealso collect, use and share**Aggregated**Data such asstatistical ordemographic data for any purpose Aggregated Data could bederived from your personal data but isnot considered personal data inlaw asthis data will not directly orindirectly reveal your identity ### Ifyou fail toprovide personal data\\nWhere weneed tocollect personal data bylaw, orunder the terms ofacontract wehave with you, and you fail toprovide that data when requested, wemay not beable toperform the contract wehave orare trying toenter into with you (for example, toprovide you with our products orservices) Inthis case, wemay have tocancel aproduct orservice you have withus, but wewill notify you ifthis isthe case atthe time ## 3 How isyour personal data collected\",\n", + " \"Weuse different methods tocollect data from and about you including through:\\n* **Direct interactions.**You may giveus your Identity, Contact and Financial Data byfilling informs orbycorresponding withus bypost, phone, email orotherwise This includes personal data you provide when you:\\n1 apply for our products orservices;\\n2 create anaccount withus;\\n3 subscribe toour service;\\n4 request marketing tobesent toyou;\\n5 enter apromotion orsurvey; or\\n6 giveus feedback orcontactus 7 **Automated technologies**orinteractions Asyou interact with our Platform, wewill automatically collect Technical Data about your equipment, browsing actions and patterns Wecollect this personal data byusing cookies, server logs and other similar technologies.## 4 How weuse your personal data\\nWewill only use your personal data when the law allowsus to Most commonly, wewill use your personal data inthe following circumstances:\\n* Where weneed toperform the contract weare about toenter into orhave entered into with you * Where itisnecessary for our legitimate interests (orthose ofathird party) and your interests and fundamental rights donot override those interests\",\n", + " \"* Where weneed tocomply with alegal obligation Generally, wedonot rely onconsent asalegal basis for processing your personal data although wewill get your consent before sending direct marketing communications toyou You have the right towithdraw consent tomarketing atany time bycontactingus ### Purposes for which wewill use your personal data\\nWehave set out below, inatable format, adescription ofall the ways weplan touse your personal data, and which ofthe legal bases werely ontodoso Wehave also identified what our legitimate interests are where appropriate Note that wemay process your personal data for more than one lawful ground depending onthe specific purpose for which weare using your data Please contactus ifyou need details about the specific legal ground weare relying ontoprocess your personal data where more than one ground has been set out inthe table below * **Purpose/Activity**\\n* **Type of data**\\n* **Lawful basis for processing including basis oflegitimate interest**\\n* Toregister you asacustomer\\n* 1 a Identity\\n2 b Contact\\n3 Performance ofacontract with you\\n* Toprocess your order including:\\n1 a Manage payments, fees and charges\\n2\",\n", + " \"b Collect and recover money owed tous\\n3 1 a Identity\\n2 b Contact\\n3 c Financial\\n4 d Transaction\\n5 e Marketingand Communications\\n6 1 a\",\n", + " \"Performance ofacontract with you\\n2 b Necessary for our legitimate interests (torecover debts due tous)\\n* Tomanage our relationship with you which will include:\\n1 a Notifying you about changes toour terms orprivacy policy\\n2 b Asking you toleave areview ortake asurvey\\n3 1 a Identity\\n2 b Contact\\n3 c Profile\\n4 d\",\n", + " \"Marketingand Communications\\n5 1 a Performance of a contract with you\\n2 b Necessary to comply with a legal obligation\\n3 c Necessary for our legitimate interests (to keep our records updated and to study how customers use our products/services)\\n* Toadminister and protect our business and our services (including troubleshooting, data analysis, testing, system maintenance, support, reporting and hosting ofdata)\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4 1\",\n", + " \"a Necessary for our legitimate interests (for running our business, provision ofadministration andIT services, network security, toprevent fraud and inthe context ofabusiness reorganisation orgroup restructuring exercise)\\n2 b Necessary tocomply with alegal obligation\\n* Touse data analytics toimprove our platform, products/services, marketing, customer relationships and experiences\\n* 1 a Technical\\n2 b Usage\\n3 Necessary for our legitimate interests (todefine types ofcustomers for our products and services, tokeep our services updated and relevant, todevelop our business and toinform our marketing strategy)\\n* Tomake suggestions and recommendations toyou about goods orservices that may beofinterest toyou\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4\",\n", + " \"d Usage\\n5 e Profile\\n6 f Marketingand Communications\\n7 Necessary for our legitimate interests (todevelop our products/services and grow our business)\\n### Marketing\\nWestrive toprovide you with choices regarding certain personal data uses, particularly around marketing and advertising ### Promotional offers fromus\\nWemay use your Identity, Contact, Technical, Usage and Profile Data toform aview onwhat wethink you may want orneed, orwhat may beofinterest toyou This ishow wedecide which products, services and offers may berelevant for you You will receive marketing communications fromus ifyou have requested information fromus orpurchased products orservices fromus and you have not opted out ofreceiving that marketing ### Third-party marketing\\nWewill get your express opt-in consent before weshare your personal data with any third party for marketing purposes ### Opting out\\nYou can askus orthird parties tostop sending you marketing messages atany time Where you opt out ofreceiving these marketing messages, this will not apply topersonal data provided tous asaresult ofaproduct/service purchase, product/service experience orother transactions ### Cookies\\nYou can set your browser torefuse all orsome browser cookies, ortoalert you when services set oraccess cookies Ifyou disable orrefuse cookies, please note that some parts ofour platform may become inaccessible ornot function properly\",\n", + " \"For more information about the cookies weuse, please see Cooklie Policy ### Change of purpose\\nWewill only use your personal data for the purposes for which wecollectedit, unless wereasonably consider that weneed touse itfor another reason and that reason iscompatible with the original purpose Ifyou wish toget anexplanation astohow the processing for the new purpose iscompatible with the original purpose, please contactus Ifweneed touse your personal data for anunrelated purpose, wewill notify you and wewill explain the legal basis which allowsus todoso Please note that wemay process your personal data without your knowledge orconsent, incompliance with the above rules, where this isrequired orpermitted bylaw ## 5 Disclosures ofyour personal data\\nWemay share your personal data with the parties set out below for the purposes set out inthe table ««Purposes for which wewill use your personal data»» above * External Third Parties asset out inthe Glossary * Third parties towhom wemay choose tosell, transfer ormerge parts ofour business orour assets Alternatively, wemay seek toacquire other businesses ormerge with them Ifachange happens toour business, then the new owners may use your personal data inthe same way asset out inthis privacy policy Werequire all third parties torespect the security ofyour personal data and totreat itinaccordance with the law Wedonot allow our third-party service providers touse your personal data for their own purposes and only permit them toprocess your personal data for specified purposes and inaccordance with our instructions ## 6 International transfers\\nWedonot currently transfer your personal data outside the European Economic Area (EEA)\",\n", + " \"Ifinthe future wewere totransfer your personal data out ofthe EEA, wewould ensure asimilar degree ofprotection isafforded toitbyensuring atleast one ofthe following safeguards isimplemented:\\n* Wewill only transfer your personal data tocountries that have been deemed toprovide anadequate level ofprotection for personal data bythe European Commission * Where weuse certain service providers, wemay use specific contracts approved bythe European Commission which give personal data the same protection ithas inEurope Please contactus ifyou want further information onthe specific mechanism used byus when transferring your personal data out ofthe EEA ## 7 Data security\\nWehave put inplace appropriate security measures toprevent your personal data from being accidentally lost, used oraccessed inanunauthorised way, altered ordisclosed Inaddition, welimit access toyour personal data tothose employees, agents, contractors and other third parties who have abusiness need toknow They will only process your personal data onour instructions and they are subject toaduty ofconfidentiality Wehave put inplace procedures todeal with any suspected personal data breach and will notify you and any applicable regulator ofabreach where weare legally required todoso ## 8 Data retention\\n### How long will you use mypersonal data for Wewill only retain your personal data for aslong asreasonably necessary tofulfil the purposes wecollected itfor, including for the purposes ofsatisfying any legal, regulatory, tax, accounting orreporting requirements Wemay retain your personal data for alonger period inthe event ofacomplaint orifwereasonably believe there isaprospect oflitigation inrespect toour relationship with you Todetermine the appropriate retention period for personal data, weconsider the amount, nature and sensitivity ofthe personal data, the potential risk ofharm from unauthorised use ordisclosure ofyour personal data, the purposes for which weprocess your personal data and whether wecan achieve those purposes through other means, and the applicable legal, regulatory, tax, accounting orother requirements Bylaw wehave tokeep basic information about our customers (including Contact, Identity, Financial and Transaction Data) for six years after they cease being customers for tax purposes Insome circumstances you can askus todelete your data: see your legal rights below for further information\",\n", + " \"Insome circumstances wewill anonymise your personal data (sothat itcan nolonger beassociated with you) for research orstatistical purposes, inwhich case wemay use this information indefinitely without further notice toyou ## 9 Your legal rights\\nUnder certain circumstances, you have rights under data protection laws inrelation toyour personal data You have the rightto:\\n* **Request access**toyour personal data (commonly known asa««data subject access request»») This enables you toreceive acopy ofthe personal data wehold about you and tocheck that weare lawfully processingit * **Request correction**ofthe personal data that wehold about you This enables you tohave any incomplete orinaccurate data wehold about you corrected, though wemay need toverify the accuracy ofthe new data you provide tous * **Request erasure**ofyour personal data This enables you toaskus todelete orremove personal data where there isnogood reason forus continuing toprocessit You also have the right toaskus todelete orremove your personal data where you have successfullyexercised your right toobject toprocessing (see below), where wemay have processed your information unlawfully orwhere weare required toerase your personal data tocomply with local law Note, however, that wemay not always beable tocomply with your request oferasure for specific legal reasons which will benotified toyou, ifapplicable, atthe time ofyour request * **Object toprocessing**ofyour personal data where weare relying onalegitimate interest (orthose ofathird party) and there issomething about your particular situation which makes you want toobject toprocessing onthis ground asyou feel itimpacts onyour fundamental rights and freedoms You also have the right toobject where weare processing your personal data for direct marketing purposes Insome cases, wemay demonstrate that wehave compelling legitimate grounds toprocess your information which override your rights and freedoms * **Request restriction ofprocessing**ofyour personal data\",\n", + " \"This enables you toaskus tosuspend the processing ofyour personal data inthe following scenarios:\\n1 Ifyou wantus toestablish the data’’s accuracy 2 Where our use ofthe data isunlawful but you donot wantus toeraseit 3 Where you needus tohold the data even ifwenolonger require itasyou need ittoestablish, exercise ordefend legal claims 4 You have objected toour use ofyour data but weneed toverify whether wehave overriding legitimate grounds touseit 5 **Request the transfer**ofyour personal data toyou ortoathird party Wewill provide toyou, orathird party you have chosen, your personal data inastructured, commonly used, machine-readable format Note that this right only applies toautomated information which you initially provided consent forus touse orwhere weused the information toperform acontract with you 6 **Withdraw consent atany time**where weare relying onconsent toprocess your personal data However, this will not affect the lawfulness ofany processing carried out before you withdraw your consent\",\n", + " \"Ifyou withdraw your consent, wemay not beable toprovide certain products orservices toyou Wewill advise you ifthis isthe case atthe time you withdraw your consent Ifyou wish toexercise any ofthe rights set out above, please contactus ### No fee usually required\\nYou will not have topay afee toaccess your personal data (ortoexercise any ofthe other rights) However, wemay charge areasonable fee ifyour request isclearly unfounded, repetitive orexcessive Alternatively, wecould refuse tocomply with your request inthese circumstances ### What we may need from you\\nWemay need torequest specific information from you tohelpus confirm your identity and ensure your right toaccess your personal data (ortoexercise any ofyour other rights) This isasecurity measure toensure that personal data isnot disclosed toany person who has noright toreceiveit Wemay also contact you toask you for further information inrelation toyour request tospeed upour response ### Time limit to respond\\nWetry torespond toall legitimate requests within one month Occasionally itcould takeus longer than amonth ifyour request isparticularly complex oryou have made anumber ofrequests Inthis case, wewill notify you and keep you updated ## 10 Glossary\\n**Legitimate Interest**means the interest ofour business inconducting and managing our business toenableus togive you the best service/product and the best and most secure experience Wemake sure weconsider and balance any potential impact onyou (both positive and negative) and your rights before weprocess your personal data for our legitimate interests\",\n", + " \"Wedonot use your personal data for activities where our interests are overridden bythe impact onyou (unless wehave your consent orare otherwise required orpermitted tobylaw) You can obtain further information about how weassess our legitimate interests against any potential impact onyou inrespect ofspecific activities bycontactingus **Performance ofContract**means processing your data where itisnecessary for the performance ofacontract towhich you are aparty ortotake steps atyour request before entering into such acontract **Comply with alegal obligation**means processing your personal data where itisnecessary for compliance with alegal obligation that weare subjectto **External Third Parties**\\n* Service providers acting asprocessors who provideIT and system administration services * Providers ofour cloud services including AWS and Google * Professional advisers acting asprocessors orjoint controllers including lawyers, bankers, auditors and insurers based inthe United Kingdom who provide consultancy, banking, legal, insurance and accounting services * Regulators and other authorities acting asprocessors orjoint controllers based inthe United Kingdom who require reporting ofprocessing activities incertain circumstances * Our third party partners and affiliates who may manage your customer relationship onour behalf * Stripe for payment management ## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved\",\n", + " \"* [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"* [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 119 Type: finish_branch\n", + "output: \"This chunk is part of QuickBlox's privacy policy, specifically detailing user rights concerning personal data. It discusses the process and implications of withdrawing consent, potential fees for data access requests, identity verification requirements, response times, and provides a glossary term related to \\\"Legitimate Interest.\\\"\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 120 Type: finish_branch\n", + "output: \"The chunk discusses QuickBlox's use of personal data, highlighting the conditions under which personal data may be processed, shared with external third parties, and the company's products and solutions. It emphasizes compliance with legal obligations and provides links to various QuickBlox services and resources.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 121 Type: finish_branch\n", + "output: \"This chunk discusses the rights of individuals to request the suspension of their personal data processing under certain scenarios, the transfer of their personal data to themselves or a third party, and the withdrawal of consent for data processing, as outlined in the privacy policy section of the document.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 122 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Privacy Policy\\nLast updated: 27/03/2023\\n## INTRODUCTION\\nQuickBlox respects your privacy and iscommitted toprotecting your personal data This privacy policy will inform you astohow welook after your personal data when you access our services and tell you about your privacy rights and how the law protects you Please also use the Glossary tounderstand the meaning ofsome ofthe terms used inthis privacy policy ## 1 Important information and who we are\\n### Purpose ofthis privacy policy\\nThis privacy policy aims togive you information onhow QuickBlox collects and processes your personal data through your use ofour services, including any data you may provide through this website when you sign upto, orpurchase one ofour products orservices Itisimportant that you read this privacy policy together with any other privacy policy orfair processing policy wemay provide onspecific occasions when weare collecting, orprocessing, personal data about you, sothat you are fully aware ofhow and why weare using your data This privacy policy supplements other notices and privacy policies and isnot intended tooverride them ### Controller\\nInjoit Limited isthe controller and isresponsible for your personal data (collectively referred toasQuickBlox, ««we»»,««us»» or««our»» inthis privacy policy) Wehave appointed adata privacy manager who isresponsible for overseeing questions inrelation tothis privacy policy Ifyou have any questions about this privacy policy, including any requests toexercise your legal rights, please contact the data privacy manager using the details set out below ### Contact details\\nIf you have any questions about this privacy policy or our privacy practices, please contact our data privacy manager in the following ways:\\n* **Full name of legal entity:**\\n* **Email address:**\\n* **Telephone number:**\\n* Injoit Limited\\n* [gdpr@quickblox.com](mailto:gdpr@quickblox.com)\\n* [+1 415 755 8221]()\\nYou have the right tomake acomplaint atany time tothe Information Commissioner’’s Office (ICO), theUK supervisory authority for data protection issues (www.ico.org.uk) Wewould, however, appreciate the chance todeal with your concerns before you approach the ICO soplease contactus inthe first instance ### Changes tothe privacy policy and your duty toinformus ofchanges\\nWekeep our privacy policy under regular review Itisimportant that the personal data wehold about you isaccurate and current Please keepus informed ifyour personal data changes during your relationship withus\",\n", + " \"## 2 The data wecollect about you\\nPersonal data, orpersonal information, means any information about anindividual from which that person can beidentified Itdoes not include data where the identity has been removed (anonymous data) Wemay collect, use, store and transfer different kinds ofpersonal data about you which wehave grouped together asfollows:\\n* **Identity Data**which includes first name, maiden name, last name, username orsimilar identifier, title * **Contact Data**which includes billing address, home address, email address and telephone numbers * **Technical Data**which includes your internet protocol (IP) address, your login data, browser type and version, hardware information, time zone setting and location, browser plug-in types and versions, operating system and platform, and other technology onthe devices you use toaccess our platform * **Profile Data**which includes your username and password, purchases ororders made byyou, your interests, preferences, feedback and survey responses * **Usage Data**which includes information about how you use our platform, products and services * **Marketing and Communications Data**which includes your preferences inreceiving marketing fromus and our third parties and your communication preferences Wealso collect, use and share**Aggregated**Data such asstatistical ordemographic data for any purpose Aggregated Data could bederived from your personal data but isnot considered personal data inlaw asthis data will not directly orindirectly reveal your identity ### Ifyou fail toprovide personal data\\nWhere weneed tocollect personal data bylaw, orunder the terms ofacontract wehave with you, and you fail toprovide that data when requested, wemay not beable toperform the contract wehave orare trying toenter into with you (for example, toprovide you with our products orservices) Inthis case, wemay have tocancel aproduct orservice you have withus, but wewill notify you ifthis isthe case atthe time ## 3 How isyour personal data collected\",\n", + " \"Weuse different methods tocollect data from and about you including through:\\n* **Direct interactions.**You may giveus your Identity, Contact and Financial Data byfilling informs orbycorresponding withus bypost, phone, email orotherwise This includes personal data you provide when you:\\n1 apply for our products orservices;\\n2 create anaccount withus;\\n3 subscribe toour service;\\n4 request marketing tobesent toyou;\\n5 enter apromotion orsurvey; or\\n6 giveus feedback orcontactus 7 **Automated technologies**orinteractions Asyou interact with our Platform, wewill automatically collect Technical Data about your equipment, browsing actions and patterns Wecollect this personal data byusing cookies, server logs and other similar technologies.## 4 How weuse your personal data\\nWewill only use your personal data when the law allowsus to Most commonly, wewill use your personal data inthe following circumstances:\\n* Where weneed toperform the contract weare about toenter into orhave entered into with you * Where itisnecessary for our legitimate interests (orthose ofathird party) and your interests and fundamental rights donot override those interests\",\n", + " \"* Where weneed tocomply with alegal obligation Generally, wedonot rely onconsent asalegal basis for processing your personal data although wewill get your consent before sending direct marketing communications toyou You have the right towithdraw consent tomarketing atany time bycontactingus ### Purposes for which wewill use your personal data\\nWehave set out below, inatable format, adescription ofall the ways weplan touse your personal data, and which ofthe legal bases werely ontodoso Wehave also identified what our legitimate interests are where appropriate Note that wemay process your personal data for more than one lawful ground depending onthe specific purpose for which weare using your data Please contactus ifyou need details about the specific legal ground weare relying ontoprocess your personal data where more than one ground has been set out inthe table below * **Purpose/Activity**\\n* **Type of data**\\n* **Lawful basis for processing including basis oflegitimate interest**\\n* Toregister you asacustomer\\n* 1 a Identity\\n2 b Contact\\n3 Performance ofacontract with you\\n* Toprocess your order including:\\n1 a Manage payments, fees and charges\\n2\",\n", + " \"b Collect and recover money owed tous\\n3 1 a Identity\\n2 b Contact\\n3 c Financial\\n4 d Transaction\\n5 e Marketingand Communications\\n6 1 a\",\n", + " \"Performance ofacontract with you\\n2 b Necessary for our legitimate interests (torecover debts due tous)\\n* Tomanage our relationship with you which will include:\\n1 a Notifying you about changes toour terms orprivacy policy\\n2 b Asking you toleave areview ortake asurvey\\n3 1 a Identity\\n2 b Contact\\n3 c Profile\\n4 d\",\n", + " \"Marketingand Communications\\n5 1 a Performance of a contract with you\\n2 b Necessary to comply with a legal obligation\\n3 c Necessary for our legitimate interests (to keep our records updated and to study how customers use our products/services)\\n* Toadminister and protect our business and our services (including troubleshooting, data analysis, testing, system maintenance, support, reporting and hosting ofdata)\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4 1\",\n", + " \"a Necessary for our legitimate interests (for running our business, provision ofadministration andIT services, network security, toprevent fraud and inthe context ofabusiness reorganisation orgroup restructuring exercise)\\n2 b Necessary tocomply with alegal obligation\\n* Touse data analytics toimprove our platform, products/services, marketing, customer relationships and experiences\\n* 1 a Technical\\n2 b Usage\\n3 Necessary for our legitimate interests (todefine types ofcustomers for our products and services, tokeep our services updated and relevant, todevelop our business and toinform our marketing strategy)\\n* Tomake suggestions and recommendations toyou about goods orservices that may beofinterest toyou\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4\",\n", + " \"d Usage\\n5 e Profile\\n6 f Marketingand Communications\\n7 Necessary for our legitimate interests (todevelop our products/services and grow our business)\\n### Marketing\\nWestrive toprovide you with choices regarding certain personal data uses, particularly around marketing and advertising ### Promotional offers fromus\\nWemay use your Identity, Contact, Technical, Usage and Profile Data toform aview onwhat wethink you may want orneed, orwhat may beofinterest toyou This ishow wedecide which products, services and offers may berelevant for you You will receive marketing communications fromus ifyou have requested information fromus orpurchased products orservices fromus and you have not opted out ofreceiving that marketing ### Third-party marketing\\nWewill get your express opt-in consent before weshare your personal data with any third party for marketing purposes ### Opting out\\nYou can askus orthird parties tostop sending you marketing messages atany time Where you opt out ofreceiving these marketing messages, this will not apply topersonal data provided tous asaresult ofaproduct/service purchase, product/service experience orother transactions ### Cookies\\nYou can set your browser torefuse all orsome browser cookies, ortoalert you when services set oraccess cookies Ifyou disable orrefuse cookies, please note that some parts ofour platform may become inaccessible ornot function properly\",\n", + " \"For more information about the cookies weuse, please see Cooklie Policy ### Change of purpose\\nWewill only use your personal data for the purposes for which wecollectedit, unless wereasonably consider that weneed touse itfor another reason and that reason iscompatible with the original purpose Ifyou wish toget anexplanation astohow the processing for the new purpose iscompatible with the original purpose, please contactus Ifweneed touse your personal data for anunrelated purpose, wewill notify you and wewill explain the legal basis which allowsus todoso Please note that wemay process your personal data without your knowledge orconsent, incompliance with the above rules, where this isrequired orpermitted bylaw ## 5 Disclosures ofyour personal data\\nWemay share your personal data with the parties set out below for the purposes set out inthe table ««Purposes for which wewill use your personal data»» above * External Third Parties asset out inthe Glossary * Third parties towhom wemay choose tosell, transfer ormerge parts ofour business orour assets Alternatively, wemay seek toacquire other businesses ormerge with them Ifachange happens toour business, then the new owners may use your personal data inthe same way asset out inthis privacy policy Werequire all third parties torespect the security ofyour personal data and totreat itinaccordance with the law Wedonot allow our third-party service providers touse your personal data for their own purposes and only permit them toprocess your personal data for specified purposes and inaccordance with our instructions ## 6 International transfers\\nWedonot currently transfer your personal data outside the European Economic Area (EEA)\",\n", + " \"Ifinthe future wewere totransfer your personal data out ofthe EEA, wewould ensure asimilar degree ofprotection isafforded toitbyensuring atleast one ofthe following safeguards isimplemented:\\n* Wewill only transfer your personal data tocountries that have been deemed toprovide anadequate level ofprotection for personal data bythe European Commission * Where weuse certain service providers, wemay use specific contracts approved bythe European Commission which give personal data the same protection ithas inEurope Please contactus ifyou want further information onthe specific mechanism used byus when transferring your personal data out ofthe EEA ## 7 Data security\\nWehave put inplace appropriate security measures toprevent your personal data from being accidentally lost, used oraccessed inanunauthorised way, altered ordisclosed Inaddition, welimit access toyour personal data tothose employees, agents, contractors and other third parties who have abusiness need toknow They will only process your personal data onour instructions and they are subject toaduty ofconfidentiality Wehave put inplace procedures todeal with any suspected personal data breach and will notify you and any applicable regulator ofabreach where weare legally required todoso ## 8 Data retention\\n### How long will you use mypersonal data for Wewill only retain your personal data for aslong asreasonably necessary tofulfil the purposes wecollected itfor, including for the purposes ofsatisfying any legal, regulatory, tax, accounting orreporting requirements Wemay retain your personal data for alonger period inthe event ofacomplaint orifwereasonably believe there isaprospect oflitigation inrespect toour relationship with you Todetermine the appropriate retention period for personal data, weconsider the amount, nature and sensitivity ofthe personal data, the potential risk ofharm from unauthorised use ordisclosure ofyour personal data, the purposes for which weprocess your personal data and whether wecan achieve those purposes through other means, and the applicable legal, regulatory, tax, accounting orother requirements Bylaw wehave tokeep basic information about our customers (including Contact, Identity, Financial and Transaction Data) for six years after they cease being customers for tax purposes Insome circumstances you can askus todelete your data: see your legal rights below for further information\",\n", + " \"Insome circumstances wewill anonymise your personal data (sothat itcan nolonger beassociated with you) for research orstatistical purposes, inwhich case wemay use this information indefinitely without further notice toyou ## 9 Your legal rights\\nUnder certain circumstances, you have rights under data protection laws inrelation toyour personal data You have the rightto:\\n* **Request access**toyour personal data (commonly known asa««data subject access request»») This enables you toreceive acopy ofthe personal data wehold about you and tocheck that weare lawfully processingit * **Request correction**ofthe personal data that wehold about you This enables you tohave any incomplete orinaccurate data wehold about you corrected, though wemay need toverify the accuracy ofthe new data you provide tous * **Request erasure**ofyour personal data This enables you toaskus todelete orremove personal data where there isnogood reason forus continuing toprocessit You also have the right toaskus todelete orremove your personal data where you have successfullyexercised your right toobject toprocessing (see below), where wemay have processed your information unlawfully orwhere weare required toerase your personal data tocomply with local law Note, however, that wemay not always beable tocomply with your request oferasure for specific legal reasons which will benotified toyou, ifapplicable, atthe time ofyour request * **Object toprocessing**ofyour personal data where weare relying onalegitimate interest (orthose ofathird party) and there issomething about your particular situation which makes you want toobject toprocessing onthis ground asyou feel itimpacts onyour fundamental rights and freedoms You also have the right toobject where weare processing your personal data for direct marketing purposes Insome cases, wemay demonstrate that wehave compelling legitimate grounds toprocess your information which override your rights and freedoms * **Request restriction ofprocessing**ofyour personal data\",\n", + " \"This enables you toaskus tosuspend the processing ofyour personal data inthe following scenarios:\\n1 Ifyou wantus toestablish the data’’s accuracy 2 Where our use ofthe data isunlawful but you donot wantus toeraseit 3 Where you needus tohold the data even ifwenolonger require itasyou need ittoestablish, exercise ordefend legal claims 4 You have objected toour use ofyour data but weneed toverify whether wehave overriding legitimate grounds touseit 5 **Request the transfer**ofyour personal data toyou ortoathird party Wewill provide toyou, orathird party you have chosen, your personal data inastructured, commonly used, machine-readable format Note that this right only applies toautomated information which you initially provided consent forus touse orwhere weused the information toperform acontract with you 6 **Withdraw consent atany time**where weare relying onconsent toprocess your personal data However, this will not affect the lawfulness ofany processing carried out before you withdraw your consent\",\n", + " \"Ifyou withdraw your consent, wemay not beable toprovide certain products orservices toyou Wewill advise you ifthis isthe case atthe time you withdraw your consent Ifyou wish toexercise any ofthe rights set out above, please contactus ### No fee usually required\\nYou will not have topay afee toaccess your personal data (ortoexercise any ofthe other rights) However, wemay charge areasonable fee ifyour request isclearly unfounded, repetitive orexcessive Alternatively, wecould refuse tocomply with your request inthese circumstances ### What we may need from you\\nWemay need torequest specific information from you tohelpus confirm your identity and ensure your right toaccess your personal data (ortoexercise any ofyour other rights) This isasecurity measure toensure that personal data isnot disclosed toany person who has noright toreceiveit Wemay also contact you toask you for further information inrelation toyour request tospeed upour response ### Time limit to respond\\nWetry torespond toall legitimate requests within one month Occasionally itcould takeus longer than amonth ifyour request isparticularly complex oryou have made anumber ofrequests Inthis case, wewill notify you and keep you updated ## 10 Glossary\\n**Legitimate Interest**means the interest ofour business inconducting and managing our business toenableus togive you the best service/product and the best and most secure experience Wemake sure weconsider and balance any potential impact onyou (both positive and negative) and your rights before weprocess your personal data for our legitimate interests\",\n", + " \"Wedonot use your personal data for activities where our interests are overridden bythe impact onyou (unless wehave your consent orare otherwise required orpermitted tobylaw) You can obtain further information about how weassess our legitimate interests against any potential impact onyou inrespect ofspecific activities bycontactingus **Performance ofContract**means processing your data where itisnecessary for the performance ofacontract towhich you are aparty ortotake steps atyour request before entering into such acontract **Comply with alegal obligation**means processing your personal data where itisnecessary for compliance with alegal obligation that weare subjectto **External Third Parties**\\n* Service providers acting asprocessors who provideIT and system administration services * Providers ofour cloud services including AWS and Google * Professional advisers acting asprocessors orjoint controllers including lawyers, bankers, auditors and insurers based inthe United Kingdom who provide consultancy, banking, legal, insurance and accounting services * Regulators and other authorities acting asprocessors orjoint controllers based inthe United Kingdom who require reporting ofprocessing activities incertain circumstances * Our third party partners and affiliates who may manage your customer relationship onour behalf * Stripe for payment management ## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved\",\n", + " \"* [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"Wedonot use your personal data for activities where our interests are overridden bythe impact onyou (unless wehave your consent orare otherwise required orpermitted tobylaw) You can obtain further information about how weassess our legitimate interests against any potential impact onyou inrespect ofspecific activities bycontactingus **Performance ofContract**means processing your data where itisnecessary for the performance ofacontract towhich you are aparty ortotake steps atyour request before entering into such acontract **Comply with alegal obligation**means processing your personal data where itisnecessary for compliance with alegal obligation that weare subjectto **External Third Parties**\\n* Service providers acting asprocessors who provideIT and system administration services * Providers ofour cloud services including AWS and Google * Professional advisers acting asprocessors orjoint controllers including lawyers, bankers, auditors and insurers based inthe United Kingdom who provide consultancy, banking, legal, insurance and accounting services * Regulators and other authorities acting asprocessors orjoint controllers based inthe United Kingdom who require reporting ofprocessing activities incertain circumstances * Our third party partners and affiliates who may manage your customer relationship onour behalf * Stripe for payment management ## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 123 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Privacy Policy\\nLast updated: 27/03/2023\\n## INTRODUCTION\\nQuickBlox respects your privacy and iscommitted toprotecting your personal data This privacy policy will inform you astohow welook after your personal data when you access our services and tell you about your privacy rights and how the law protects you Please also use the Glossary tounderstand the meaning ofsome ofthe terms used inthis privacy policy ## 1 Important information and who we are\\n### Purpose ofthis privacy policy\\nThis privacy policy aims togive you information onhow QuickBlox collects and processes your personal data through your use ofour services, including any data you may provide through this website when you sign upto, orpurchase one ofour products orservices Itisimportant that you read this privacy policy together with any other privacy policy orfair processing policy wemay provide onspecific occasions when weare collecting, orprocessing, personal data about you, sothat you are fully aware ofhow and why weare using your data This privacy policy supplements other notices and privacy policies and isnot intended tooverride them ### Controller\\nInjoit Limited isthe controller and isresponsible for your personal data (collectively referred toasQuickBlox, ««we»»,««us»» or««our»» inthis privacy policy) Wehave appointed adata privacy manager who isresponsible for overseeing questions inrelation tothis privacy policy Ifyou have any questions about this privacy policy, including any requests toexercise your legal rights, please contact the data privacy manager using the details set out below ### Contact details\\nIf you have any questions about this privacy policy or our privacy practices, please contact our data privacy manager in the following ways:\\n* **Full name of legal entity:**\\n* **Email address:**\\n* **Telephone number:**\\n* Injoit Limited\\n* [gdpr@quickblox.com](mailto:gdpr@quickblox.com)\\n* [+1 415 755 8221]()\\nYou have the right tomake acomplaint atany time tothe Information Commissioner’’s Office (ICO), theUK supervisory authority for data protection issues (www.ico.org.uk) Wewould, however, appreciate the chance todeal with your concerns before you approach the ICO soplease contactus inthe first instance ### Changes tothe privacy policy and your duty toinformus ofchanges\\nWekeep our privacy policy under regular review Itisimportant that the personal data wehold about you isaccurate and current Please keepus informed ifyour personal data changes during your relationship withus\",\n", + " \"## 2 The data wecollect about you\\nPersonal data, orpersonal information, means any information about anindividual from which that person can beidentified Itdoes not include data where the identity has been removed (anonymous data) Wemay collect, use, store and transfer different kinds ofpersonal data about you which wehave grouped together asfollows:\\n* **Identity Data**which includes first name, maiden name, last name, username orsimilar identifier, title * **Contact Data**which includes billing address, home address, email address and telephone numbers * **Technical Data**which includes your internet protocol (IP) address, your login data, browser type and version, hardware information, time zone setting and location, browser plug-in types and versions, operating system and platform, and other technology onthe devices you use toaccess our platform * **Profile Data**which includes your username and password, purchases ororders made byyou, your interests, preferences, feedback and survey responses * **Usage Data**which includes information about how you use our platform, products and services * **Marketing and Communications Data**which includes your preferences inreceiving marketing fromus and our third parties and your communication preferences Wealso collect, use and share**Aggregated**Data such asstatistical ordemographic data for any purpose Aggregated Data could bederived from your personal data but isnot considered personal data inlaw asthis data will not directly orindirectly reveal your identity ### Ifyou fail toprovide personal data\\nWhere weneed tocollect personal data bylaw, orunder the terms ofacontract wehave with you, and you fail toprovide that data when requested, wemay not beable toperform the contract wehave orare trying toenter into with you (for example, toprovide you with our products orservices) Inthis case, wemay have tocancel aproduct orservice you have withus, but wewill notify you ifthis isthe case atthe time ## 3 How isyour personal data collected\",\n", + " \"Weuse different methods tocollect data from and about you including through:\\n* **Direct interactions.**You may giveus your Identity, Contact and Financial Data byfilling informs orbycorresponding withus bypost, phone, email orotherwise This includes personal data you provide when you:\\n1 apply for our products orservices;\\n2 create anaccount withus;\\n3 subscribe toour service;\\n4 request marketing tobesent toyou;\\n5 enter apromotion orsurvey; or\\n6 giveus feedback orcontactus 7 **Automated technologies**orinteractions Asyou interact with our Platform, wewill automatically collect Technical Data about your equipment, browsing actions and patterns Wecollect this personal data byusing cookies, server logs and other similar technologies.## 4 How weuse your personal data\\nWewill only use your personal data when the law allowsus to Most commonly, wewill use your personal data inthe following circumstances:\\n* Where weneed toperform the contract weare about toenter into orhave entered into with you * Where itisnecessary for our legitimate interests (orthose ofathird party) and your interests and fundamental rights donot override those interests\",\n", + " \"* Where weneed tocomply with alegal obligation Generally, wedonot rely onconsent asalegal basis for processing your personal data although wewill get your consent before sending direct marketing communications toyou You have the right towithdraw consent tomarketing atany time bycontactingus ### Purposes for which wewill use your personal data\\nWehave set out below, inatable format, adescription ofall the ways weplan touse your personal data, and which ofthe legal bases werely ontodoso Wehave also identified what our legitimate interests are where appropriate Note that wemay process your personal data for more than one lawful ground depending onthe specific purpose for which weare using your data Please contactus ifyou need details about the specific legal ground weare relying ontoprocess your personal data where more than one ground has been set out inthe table below * **Purpose/Activity**\\n* **Type of data**\\n* **Lawful basis for processing including basis oflegitimate interest**\\n* Toregister you asacustomer\\n* 1 a Identity\\n2 b Contact\\n3 Performance ofacontract with you\\n* Toprocess your order including:\\n1 a Manage payments, fees and charges\\n2\",\n", + " \"b Collect and recover money owed tous\\n3 1 a Identity\\n2 b Contact\\n3 c Financial\\n4 d Transaction\\n5 e Marketingand Communications\\n6 1 a\",\n", + " \"Performance ofacontract with you\\n2 b Necessary for our legitimate interests (torecover debts due tous)\\n* Tomanage our relationship with you which will include:\\n1 a Notifying you about changes toour terms orprivacy policy\\n2 b Asking you toleave areview ortake asurvey\\n3 1 a Identity\\n2 b Contact\\n3 c Profile\\n4 d\",\n", + " \"Marketingand Communications\\n5 1 a Performance of a contract with you\\n2 b Necessary to comply with a legal obligation\\n3 c Necessary for our legitimate interests (to keep our records updated and to study how customers use our products/services)\\n* Toadminister and protect our business and our services (including troubleshooting, data analysis, testing, system maintenance, support, reporting and hosting ofdata)\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4 1\",\n", + " \"a Necessary for our legitimate interests (for running our business, provision ofadministration andIT services, network security, toprevent fraud and inthe context ofabusiness reorganisation orgroup restructuring exercise)\\n2 b Necessary tocomply with alegal obligation\\n* Touse data analytics toimprove our platform, products/services, marketing, customer relationships and experiences\\n* 1 a Technical\\n2 b Usage\\n3 Necessary for our legitimate interests (todefine types ofcustomers for our products and services, tokeep our services updated and relevant, todevelop our business and toinform our marketing strategy)\\n* Tomake suggestions and recommendations toyou about goods orservices that may beofinterest toyou\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4\",\n", + " \"d Usage\\n5 e Profile\\n6 f Marketingand Communications\\n7 Necessary for our legitimate interests (todevelop our products/services and grow our business)\\n### Marketing\\nWestrive toprovide you with choices regarding certain personal data uses, particularly around marketing and advertising ### Promotional offers fromus\\nWemay use your Identity, Contact, Technical, Usage and Profile Data toform aview onwhat wethink you may want orneed, orwhat may beofinterest toyou This ishow wedecide which products, services and offers may berelevant for you You will receive marketing communications fromus ifyou have requested information fromus orpurchased products orservices fromus and you have not opted out ofreceiving that marketing ### Third-party marketing\\nWewill get your express opt-in consent before weshare your personal data with any third party for marketing purposes ### Opting out\\nYou can askus orthird parties tostop sending you marketing messages atany time Where you opt out ofreceiving these marketing messages, this will not apply topersonal data provided tous asaresult ofaproduct/service purchase, product/service experience orother transactions ### Cookies\\nYou can set your browser torefuse all orsome browser cookies, ortoalert you when services set oraccess cookies Ifyou disable orrefuse cookies, please note that some parts ofour platform may become inaccessible ornot function properly\",\n", + " \"For more information about the cookies weuse, please see Cooklie Policy ### Change of purpose\\nWewill only use your personal data for the purposes for which wecollectedit, unless wereasonably consider that weneed touse itfor another reason and that reason iscompatible with the original purpose Ifyou wish toget anexplanation astohow the processing for the new purpose iscompatible with the original purpose, please contactus Ifweneed touse your personal data for anunrelated purpose, wewill notify you and wewill explain the legal basis which allowsus todoso Please note that wemay process your personal data without your knowledge orconsent, incompliance with the above rules, where this isrequired orpermitted bylaw ## 5 Disclosures ofyour personal data\\nWemay share your personal data with the parties set out below for the purposes set out inthe table ««Purposes for which wewill use your personal data»» above * External Third Parties asset out inthe Glossary * Third parties towhom wemay choose tosell, transfer ormerge parts ofour business orour assets Alternatively, wemay seek toacquire other businesses ormerge with them Ifachange happens toour business, then the new owners may use your personal data inthe same way asset out inthis privacy policy Werequire all third parties torespect the security ofyour personal data and totreat itinaccordance with the law Wedonot allow our third-party service providers touse your personal data for their own purposes and only permit them toprocess your personal data for specified purposes and inaccordance with our instructions ## 6 International transfers\\nWedonot currently transfer your personal data outside the European Economic Area (EEA)\",\n", + " \"Ifinthe future wewere totransfer your personal data out ofthe EEA, wewould ensure asimilar degree ofprotection isafforded toitbyensuring atleast one ofthe following safeguards isimplemented:\\n* Wewill only transfer your personal data tocountries that have been deemed toprovide anadequate level ofprotection for personal data bythe European Commission * Where weuse certain service providers, wemay use specific contracts approved bythe European Commission which give personal data the same protection ithas inEurope Please contactus ifyou want further information onthe specific mechanism used byus when transferring your personal data out ofthe EEA ## 7 Data security\\nWehave put inplace appropriate security measures toprevent your personal data from being accidentally lost, used oraccessed inanunauthorised way, altered ordisclosed Inaddition, welimit access toyour personal data tothose employees, agents, contractors and other third parties who have abusiness need toknow They will only process your personal data onour instructions and they are subject toaduty ofconfidentiality Wehave put inplace procedures todeal with any suspected personal data breach and will notify you and any applicable regulator ofabreach where weare legally required todoso ## 8 Data retention\\n### How long will you use mypersonal data for Wewill only retain your personal data for aslong asreasonably necessary tofulfil the purposes wecollected itfor, including for the purposes ofsatisfying any legal, regulatory, tax, accounting orreporting requirements Wemay retain your personal data for alonger period inthe event ofacomplaint orifwereasonably believe there isaprospect oflitigation inrespect toour relationship with you Todetermine the appropriate retention period for personal data, weconsider the amount, nature and sensitivity ofthe personal data, the potential risk ofharm from unauthorised use ordisclosure ofyour personal data, the purposes for which weprocess your personal data and whether wecan achieve those purposes through other means, and the applicable legal, regulatory, tax, accounting orother requirements Bylaw wehave tokeep basic information about our customers (including Contact, Identity, Financial and Transaction Data) for six years after they cease being customers for tax purposes Insome circumstances you can askus todelete your data: see your legal rights below for further information\",\n", + " \"Insome circumstances wewill anonymise your personal data (sothat itcan nolonger beassociated with you) for research orstatistical purposes, inwhich case wemay use this information indefinitely without further notice toyou ## 9 Your legal rights\\nUnder certain circumstances, you have rights under data protection laws inrelation toyour personal data You have the rightto:\\n* **Request access**toyour personal data (commonly known asa««data subject access request»») This enables you toreceive acopy ofthe personal data wehold about you and tocheck that weare lawfully processingit * **Request correction**ofthe personal data that wehold about you This enables you tohave any incomplete orinaccurate data wehold about you corrected, though wemay need toverify the accuracy ofthe new data you provide tous * **Request erasure**ofyour personal data This enables you toaskus todelete orremove personal data where there isnogood reason forus continuing toprocessit You also have the right toaskus todelete orremove your personal data where you have successfullyexercised your right toobject toprocessing (see below), where wemay have processed your information unlawfully orwhere weare required toerase your personal data tocomply with local law Note, however, that wemay not always beable tocomply with your request oferasure for specific legal reasons which will benotified toyou, ifapplicable, atthe time ofyour request * **Object toprocessing**ofyour personal data where weare relying onalegitimate interest (orthose ofathird party) and there issomething about your particular situation which makes you want toobject toprocessing onthis ground asyou feel itimpacts onyour fundamental rights and freedoms You also have the right toobject where weare processing your personal data for direct marketing purposes Insome cases, wemay demonstrate that wehave compelling legitimate grounds toprocess your information which override your rights and freedoms * **Request restriction ofprocessing**ofyour personal data\",\n", + " \"This enables you toaskus tosuspend the processing ofyour personal data inthe following scenarios:\\n1 Ifyou wantus toestablish the data’’s accuracy 2 Where our use ofthe data isunlawful but you donot wantus toeraseit 3 Where you needus tohold the data even ifwenolonger require itasyou need ittoestablish, exercise ordefend legal claims 4 You have objected toour use ofyour data but weneed toverify whether wehave overriding legitimate grounds touseit 5 **Request the transfer**ofyour personal data toyou ortoathird party Wewill provide toyou, orathird party you have chosen, your personal data inastructured, commonly used, machine-readable format Note that this right only applies toautomated information which you initially provided consent forus touse orwhere weused the information toperform acontract with you 6 **Withdraw consent atany time**where weare relying onconsent toprocess your personal data However, this will not affect the lawfulness ofany processing carried out before you withdraw your consent\",\n", + " \"Ifyou withdraw your consent, wemay not beable toprovide certain products orservices toyou Wewill advise you ifthis isthe case atthe time you withdraw your consent Ifyou wish toexercise any ofthe rights set out above, please contactus ### No fee usually required\\nYou will not have topay afee toaccess your personal data (ortoexercise any ofthe other rights) However, wemay charge areasonable fee ifyour request isclearly unfounded, repetitive orexcessive Alternatively, wecould refuse tocomply with your request inthese circumstances ### What we may need from you\\nWemay need torequest specific information from you tohelpus confirm your identity and ensure your right toaccess your personal data (ortoexercise any ofyour other rights) This isasecurity measure toensure that personal data isnot disclosed toany person who has noright toreceiveit Wemay also contact you toask you for further information inrelation toyour request tospeed upour response ### Time limit to respond\\nWetry torespond toall legitimate requests within one month Occasionally itcould takeus longer than amonth ifyour request isparticularly complex oryou have made anumber ofrequests Inthis case, wewill notify you and keep you updated ## 10 Glossary\\n**Legitimate Interest**means the interest ofour business inconducting and managing our business toenableus togive you the best service/product and the best and most secure experience Wemake sure weconsider and balance any potential impact onyou (both positive and negative) and your rights before weprocess your personal data for our legitimate interests\",\n", + " \"Wedonot use your personal data for activities where our interests are overridden bythe impact onyou (unless wehave your consent orare otherwise required orpermitted tobylaw) You can obtain further information about how weassess our legitimate interests against any potential impact onyou inrespect ofspecific activities bycontactingus **Performance ofContract**means processing your data where itisnecessary for the performance ofacontract towhich you are aparty ortotake steps atyour request before entering into such acontract **Comply with alegal obligation**means processing your personal data where itisnecessary for compliance with alegal obligation that weare subjectto **External Third Parties**\\n* Service providers acting asprocessors who provideIT and system administration services * Providers ofour cloud services including AWS and Google * Professional advisers acting asprocessors orjoint controllers including lawyers, bankers, auditors and insurers based inthe United Kingdom who provide consultancy, banking, legal, insurance and accounting services * Regulators and other authorities acting asprocessors orjoint controllers based inthe United Kingdom who require reporting ofprocessing activities incertain circumstances * Our third party partners and affiliates who may manage your customer relationship onour behalf * Stripe for payment management ## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved\",\n", + " \"* [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"Ifyou withdraw your consent, wemay not beable toprovide certain products orservices toyou Wewill advise you ifthis isthe case atthe time you withdraw your consent Ifyou wish toexercise any ofthe rights set out above, please contactus ### No fee usually required\\nYou will not have topay afee toaccess your personal data (ortoexercise any ofthe other rights) However, wemay charge areasonable fee ifyour request isclearly unfounded, repetitive orexcessive Alternatively, wecould refuse tocomply with your request inthese circumstances ### What we may need from you\\nWemay need torequest specific information from you tohelpus confirm your identity and ensure your right toaccess your personal data (ortoexercise any ofyour other rights) This isasecurity measure toensure that personal data isnot disclosed toany person who has noright toreceiveit Wemay also contact you toask you for further information inrelation toyour request tospeed upour response ### Time limit to respond\\nWetry torespond toall legitimate requests within one month Occasionally itcould takeus longer than amonth ifyour request isparticularly complex oryou have made anumber ofrequests Inthis case, wewill notify you and keep you updated ## 10 Glossary\\n**Legitimate Interest**means the interest ofour business inconducting and managing our business toenableus togive you the best service/product and the best and most secure experience Wemake sure weconsider and balance any potential impact onyou (both positive and negative) and your rights before weprocess your personal data for our legitimate interests\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 124 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Privacy Policy\\nLast updated: 27/03/2023\\n## INTRODUCTION\\nQuickBlox respects your privacy and iscommitted toprotecting your personal data This privacy policy will inform you astohow welook after your personal data when you access our services and tell you about your privacy rights and how the law protects you Please also use the Glossary tounderstand the meaning ofsome ofthe terms used inthis privacy policy ## 1 Important information and who we are\\n### Purpose ofthis privacy policy\\nThis privacy policy aims togive you information onhow QuickBlox collects and processes your personal data through your use ofour services, including any data you may provide through this website when you sign upto, orpurchase one ofour products orservices Itisimportant that you read this privacy policy together with any other privacy policy orfair processing policy wemay provide onspecific occasions when weare collecting, orprocessing, personal data about you, sothat you are fully aware ofhow and why weare using your data This privacy policy supplements other notices and privacy policies and isnot intended tooverride them ### Controller\\nInjoit Limited isthe controller and isresponsible for your personal data (collectively referred toasQuickBlox, ««we»»,««us»» or««our»» inthis privacy policy) Wehave appointed adata privacy manager who isresponsible for overseeing questions inrelation tothis privacy policy Ifyou have any questions about this privacy policy, including any requests toexercise your legal rights, please contact the data privacy manager using the details set out below ### Contact details\\nIf you have any questions about this privacy policy or our privacy practices, please contact our data privacy manager in the following ways:\\n* **Full name of legal entity:**\\n* **Email address:**\\n* **Telephone number:**\\n* Injoit Limited\\n* [gdpr@quickblox.com](mailto:gdpr@quickblox.com)\\n* [+1 415 755 8221]()\\nYou have the right tomake acomplaint atany time tothe Information Commissioner’’s Office (ICO), theUK supervisory authority for data protection issues (www.ico.org.uk) Wewould, however, appreciate the chance todeal with your concerns before you approach the ICO soplease contactus inthe first instance ### Changes tothe privacy policy and your duty toinformus ofchanges\\nWekeep our privacy policy under regular review Itisimportant that the personal data wehold about you isaccurate and current Please keepus informed ifyour personal data changes during your relationship withus\",\n", + " \"## 2 The data wecollect about you\\nPersonal data, orpersonal information, means any information about anindividual from which that person can beidentified Itdoes not include data where the identity has been removed (anonymous data) Wemay collect, use, store and transfer different kinds ofpersonal data about you which wehave grouped together asfollows:\\n* **Identity Data**which includes first name, maiden name, last name, username orsimilar identifier, title * **Contact Data**which includes billing address, home address, email address and telephone numbers * **Technical Data**which includes your internet protocol (IP) address, your login data, browser type and version, hardware information, time zone setting and location, browser plug-in types and versions, operating system and platform, and other technology onthe devices you use toaccess our platform * **Profile Data**which includes your username and password, purchases ororders made byyou, your interests, preferences, feedback and survey responses * **Usage Data**which includes information about how you use our platform, products and services * **Marketing and Communications Data**which includes your preferences inreceiving marketing fromus and our third parties and your communication preferences Wealso collect, use and share**Aggregated**Data such asstatistical ordemographic data for any purpose Aggregated Data could bederived from your personal data but isnot considered personal data inlaw asthis data will not directly orindirectly reveal your identity ### Ifyou fail toprovide personal data\\nWhere weneed tocollect personal data bylaw, orunder the terms ofacontract wehave with you, and you fail toprovide that data when requested, wemay not beable toperform the contract wehave orare trying toenter into with you (for example, toprovide you with our products orservices) Inthis case, wemay have tocancel aproduct orservice you have withus, but wewill notify you ifthis isthe case atthe time ## 3 How isyour personal data collected\",\n", + " \"Weuse different methods tocollect data from and about you including through:\\n* **Direct interactions.**You may giveus your Identity, Contact and Financial Data byfilling informs orbycorresponding withus bypost, phone, email orotherwise This includes personal data you provide when you:\\n1 apply for our products orservices;\\n2 create anaccount withus;\\n3 subscribe toour service;\\n4 request marketing tobesent toyou;\\n5 enter apromotion orsurvey; or\\n6 giveus feedback orcontactus 7 **Automated technologies**orinteractions Asyou interact with our Platform, wewill automatically collect Technical Data about your equipment, browsing actions and patterns Wecollect this personal data byusing cookies, server logs and other similar technologies.## 4 How weuse your personal data\\nWewill only use your personal data when the law allowsus to Most commonly, wewill use your personal data inthe following circumstances:\\n* Where weneed toperform the contract weare about toenter into orhave entered into with you * Where itisnecessary for our legitimate interests (orthose ofathird party) and your interests and fundamental rights donot override those interests\",\n", + " \"* Where weneed tocomply with alegal obligation Generally, wedonot rely onconsent asalegal basis for processing your personal data although wewill get your consent before sending direct marketing communications toyou You have the right towithdraw consent tomarketing atany time bycontactingus ### Purposes for which wewill use your personal data\\nWehave set out below, inatable format, adescription ofall the ways weplan touse your personal data, and which ofthe legal bases werely ontodoso Wehave also identified what our legitimate interests are where appropriate Note that wemay process your personal data for more than one lawful ground depending onthe specific purpose for which weare using your data Please contactus ifyou need details about the specific legal ground weare relying ontoprocess your personal data where more than one ground has been set out inthe table below * **Purpose/Activity**\\n* **Type of data**\\n* **Lawful basis for processing including basis oflegitimate interest**\\n* Toregister you asacustomer\\n* 1 a Identity\\n2 b Contact\\n3 Performance ofacontract with you\\n* Toprocess your order including:\\n1 a Manage payments, fees and charges\\n2\",\n", + " \"b Collect and recover money owed tous\\n3 1 a Identity\\n2 b Contact\\n3 c Financial\\n4 d Transaction\\n5 e Marketingand Communications\\n6 1 a\",\n", + " \"Performance ofacontract with you\\n2 b Necessary for our legitimate interests (torecover debts due tous)\\n* Tomanage our relationship with you which will include:\\n1 a Notifying you about changes toour terms orprivacy policy\\n2 b Asking you toleave areview ortake asurvey\\n3 1 a Identity\\n2 b Contact\\n3 c Profile\\n4 d\",\n", + " \"Marketingand Communications\\n5 1 a Performance of a contract with you\\n2 b Necessary to comply with a legal obligation\\n3 c Necessary for our legitimate interests (to keep our records updated and to study how customers use our products/services)\\n* Toadminister and protect our business and our services (including troubleshooting, data analysis, testing, system maintenance, support, reporting and hosting ofdata)\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4 1\",\n", + " \"a Necessary for our legitimate interests (for running our business, provision ofadministration andIT services, network security, toprevent fraud and inthe context ofabusiness reorganisation orgroup restructuring exercise)\\n2 b Necessary tocomply with alegal obligation\\n* Touse data analytics toimprove our platform, products/services, marketing, customer relationships and experiences\\n* 1 a Technical\\n2 b Usage\\n3 Necessary for our legitimate interests (todefine types ofcustomers for our products and services, tokeep our services updated and relevant, todevelop our business and toinform our marketing strategy)\\n* Tomake suggestions and recommendations toyou about goods orservices that may beofinterest toyou\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4\",\n", + " \"d Usage\\n5 e Profile\\n6 f Marketingand Communications\\n7 Necessary for our legitimate interests (todevelop our products/services and grow our business)\\n### Marketing\\nWestrive toprovide you with choices regarding certain personal data uses, particularly around marketing and advertising ### Promotional offers fromus\\nWemay use your Identity, Contact, Technical, Usage and Profile Data toform aview onwhat wethink you may want orneed, orwhat may beofinterest toyou This ishow wedecide which products, services and offers may berelevant for you You will receive marketing communications fromus ifyou have requested information fromus orpurchased products orservices fromus and you have not opted out ofreceiving that marketing ### Third-party marketing\\nWewill get your express opt-in consent before weshare your personal data with any third party for marketing purposes ### Opting out\\nYou can askus orthird parties tostop sending you marketing messages atany time Where you opt out ofreceiving these marketing messages, this will not apply topersonal data provided tous asaresult ofaproduct/service purchase, product/service experience orother transactions ### Cookies\\nYou can set your browser torefuse all orsome browser cookies, ortoalert you when services set oraccess cookies Ifyou disable orrefuse cookies, please note that some parts ofour platform may become inaccessible ornot function properly\",\n", + " \"For more information about the cookies weuse, please see Cooklie Policy ### Change of purpose\\nWewill only use your personal data for the purposes for which wecollectedit, unless wereasonably consider that weneed touse itfor another reason and that reason iscompatible with the original purpose Ifyou wish toget anexplanation astohow the processing for the new purpose iscompatible with the original purpose, please contactus Ifweneed touse your personal data for anunrelated purpose, wewill notify you and wewill explain the legal basis which allowsus todoso Please note that wemay process your personal data without your knowledge orconsent, incompliance with the above rules, where this isrequired orpermitted bylaw ## 5 Disclosures ofyour personal data\\nWemay share your personal data with the parties set out below for the purposes set out inthe table ««Purposes for which wewill use your personal data»» above * External Third Parties asset out inthe Glossary * Third parties towhom wemay choose tosell, transfer ormerge parts ofour business orour assets Alternatively, wemay seek toacquire other businesses ormerge with them Ifachange happens toour business, then the new owners may use your personal data inthe same way asset out inthis privacy policy Werequire all third parties torespect the security ofyour personal data and totreat itinaccordance with the law Wedonot allow our third-party service providers touse your personal data for their own purposes and only permit them toprocess your personal data for specified purposes and inaccordance with our instructions ## 6 International transfers\\nWedonot currently transfer your personal data outside the European Economic Area (EEA)\",\n", + " \"Ifinthe future wewere totransfer your personal data out ofthe EEA, wewould ensure asimilar degree ofprotection isafforded toitbyensuring atleast one ofthe following safeguards isimplemented:\\n* Wewill only transfer your personal data tocountries that have been deemed toprovide anadequate level ofprotection for personal data bythe European Commission * Where weuse certain service providers, wemay use specific contracts approved bythe European Commission which give personal data the same protection ithas inEurope Please contactus ifyou want further information onthe specific mechanism used byus when transferring your personal data out ofthe EEA ## 7 Data security\\nWehave put inplace appropriate security measures toprevent your personal data from being accidentally lost, used oraccessed inanunauthorised way, altered ordisclosed Inaddition, welimit access toyour personal data tothose employees, agents, contractors and other third parties who have abusiness need toknow They will only process your personal data onour instructions and they are subject toaduty ofconfidentiality Wehave put inplace procedures todeal with any suspected personal data breach and will notify you and any applicable regulator ofabreach where weare legally required todoso ## 8 Data retention\\n### How long will you use mypersonal data for Wewill only retain your personal data for aslong asreasonably necessary tofulfil the purposes wecollected itfor, including for the purposes ofsatisfying any legal, regulatory, tax, accounting orreporting requirements Wemay retain your personal data for alonger period inthe event ofacomplaint orifwereasonably believe there isaprospect oflitigation inrespect toour relationship with you Todetermine the appropriate retention period for personal data, weconsider the amount, nature and sensitivity ofthe personal data, the potential risk ofharm from unauthorised use ordisclosure ofyour personal data, the purposes for which weprocess your personal data and whether wecan achieve those purposes through other means, and the applicable legal, regulatory, tax, accounting orother requirements Bylaw wehave tokeep basic information about our customers (including Contact, Identity, Financial and Transaction Data) for six years after they cease being customers for tax purposes Insome circumstances you can askus todelete your data: see your legal rights below for further information\",\n", + " \"Insome circumstances wewill anonymise your personal data (sothat itcan nolonger beassociated with you) for research orstatistical purposes, inwhich case wemay use this information indefinitely without further notice toyou ## 9 Your legal rights\\nUnder certain circumstances, you have rights under data protection laws inrelation toyour personal data You have the rightto:\\n* **Request access**toyour personal data (commonly known asa««data subject access request»») This enables you toreceive acopy ofthe personal data wehold about you and tocheck that weare lawfully processingit * **Request correction**ofthe personal data that wehold about you This enables you tohave any incomplete orinaccurate data wehold about you corrected, though wemay need toverify the accuracy ofthe new data you provide tous * **Request erasure**ofyour personal data This enables you toaskus todelete orremove personal data where there isnogood reason forus continuing toprocessit You also have the right toaskus todelete orremove your personal data where you have successfullyexercised your right toobject toprocessing (see below), where wemay have processed your information unlawfully orwhere weare required toerase your personal data tocomply with local law Note, however, that wemay not always beable tocomply with your request oferasure for specific legal reasons which will benotified toyou, ifapplicable, atthe time ofyour request * **Object toprocessing**ofyour personal data where weare relying onalegitimate interest (orthose ofathird party) and there issomething about your particular situation which makes you want toobject toprocessing onthis ground asyou feel itimpacts onyour fundamental rights and freedoms You also have the right toobject where weare processing your personal data for direct marketing purposes Insome cases, wemay demonstrate that wehave compelling legitimate grounds toprocess your information which override your rights and freedoms * **Request restriction ofprocessing**ofyour personal data\",\n", + " \"This enables you toaskus tosuspend the processing ofyour personal data inthe following scenarios:\\n1 Ifyou wantus toestablish the data’’s accuracy 2 Where our use ofthe data isunlawful but you donot wantus toeraseit 3 Where you needus tohold the data even ifwenolonger require itasyou need ittoestablish, exercise ordefend legal claims 4 You have objected toour use ofyour data but weneed toverify whether wehave overriding legitimate grounds touseit 5 **Request the transfer**ofyour personal data toyou ortoathird party Wewill provide toyou, orathird party you have chosen, your personal data inastructured, commonly used, machine-readable format Note that this right only applies toautomated information which you initially provided consent forus touse orwhere weused the information toperform acontract with you 6 **Withdraw consent atany time**where weare relying onconsent toprocess your personal data However, this will not affect the lawfulness ofany processing carried out before you withdraw your consent\",\n", + " \"Ifyou withdraw your consent, wemay not beable toprovide certain products orservices toyou Wewill advise you ifthis isthe case atthe time you withdraw your consent Ifyou wish toexercise any ofthe rights set out above, please contactus ### No fee usually required\\nYou will not have topay afee toaccess your personal data (ortoexercise any ofthe other rights) However, wemay charge areasonable fee ifyour request isclearly unfounded, repetitive orexcessive Alternatively, wecould refuse tocomply with your request inthese circumstances ### What we may need from you\\nWemay need torequest specific information from you tohelpus confirm your identity and ensure your right toaccess your personal data (ortoexercise any ofyour other rights) This isasecurity measure toensure that personal data isnot disclosed toany person who has noright toreceiveit Wemay also contact you toask you for further information inrelation toyour request tospeed upour response ### Time limit to respond\\nWetry torespond toall legitimate requests within one month Occasionally itcould takeus longer than amonth ifyour request isparticularly complex oryou have made anumber ofrequests Inthis case, wewill notify you and keep you updated ## 10 Glossary\\n**Legitimate Interest**means the interest ofour business inconducting and managing our business toenableus togive you the best service/product and the best and most secure experience Wemake sure weconsider and balance any potential impact onyou (both positive and negative) and your rights before weprocess your personal data for our legitimate interests\",\n", + " \"Wedonot use your personal data for activities where our interests are overridden bythe impact onyou (unless wehave your consent orare otherwise required orpermitted tobylaw) You can obtain further information about how weassess our legitimate interests against any potential impact onyou inrespect ofspecific activities bycontactingus **Performance ofContract**means processing your data where itisnecessary for the performance ofacontract towhich you are aparty ortotake steps atyour request before entering into such acontract **Comply with alegal obligation**means processing your personal data where itisnecessary for compliance with alegal obligation that weare subjectto **External Third Parties**\\n* Service providers acting asprocessors who provideIT and system administration services * Providers ofour cloud services including AWS and Google * Professional advisers acting asprocessors orjoint controllers including lawyers, bankers, auditors and insurers based inthe United Kingdom who provide consultancy, banking, legal, insurance and accounting services * Regulators and other authorities acting asprocessors orjoint controllers based inthe United Kingdom who require reporting ofprocessing activities incertain circumstances * Our third party partners and affiliates who may manage your customer relationship onour behalf * Stripe for payment management ## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved\",\n", + " \"* [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"This enables you toaskus tosuspend the processing ofyour personal data inthe following scenarios:\\n1 Ifyou wantus toestablish the data’’s accuracy 2 Where our use ofthe data isunlawful but you donot wantus toeraseit 3 Where you needus tohold the data even ifwenolonger require itasyou need ittoestablish, exercise ordefend legal claims 4 You have objected toour use ofyour data but weneed toverify whether wehave overriding legitimate grounds touseit 5 **Request the transfer**ofyour personal data toyou ortoathird party Wewill provide toyou, orathird party you have chosen, your personal data inastructured, commonly used, machine-readable format Note that this right only applies toautomated information which you initially provided consent forus touse orwhere weused the information toperform acontract with you 6 **Withdraw consent atany time**where weare relying onconsent toprocess your personal data However, this will not affect the lawfulness ofany processing carried out before you withdraw your consent\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 125 Type: finish_branch\n", + "output: \"This chunk discusses the rights individuals have under data protection laws regarding their personal data, such as the rights to access, correct, erase, object to processing, and restrict processing of their data. This section is part of the privacy policy, which outlines how QuickBlox handles personal data, informs users about their rights, and explains legal grounds for processing data.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 126 Type: finish_branch\n", + "output: \"This chunk is part of QuickBlox's privacy policy document, specifically discussing international data transfers, data security measures, and data retention policies. It details safeguards for transferring personal data outside the European Economic Area (EEA), security protocols to protect personal data, and guidelines on how long personal data is retained, including conditions for deletion upon request.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 127 Type: finish_branch\n", + "output: \"The chunk is part of QuickBlox's privacy policy, detailing the conditions under which personal data may be used for purposes other than originally intended, the disclosure of personal data to third parties, and the policy on international data transfers, particularly noting that data is not currently transferred outside the EEA.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 128 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Privacy Policy\\nLast updated: 27/03/2023\\n## INTRODUCTION\\nQuickBlox respects your privacy and iscommitted toprotecting your personal data This privacy policy will inform you astohow welook after your personal data when you access our services and tell you about your privacy rights and how the law protects you Please also use the Glossary tounderstand the meaning ofsome ofthe terms used inthis privacy policy ## 1 Important information and who we are\\n### Purpose ofthis privacy policy\\nThis privacy policy aims togive you information onhow QuickBlox collects and processes your personal data through your use ofour services, including any data you may provide through this website when you sign upto, orpurchase one ofour products orservices Itisimportant that you read this privacy policy together with any other privacy policy orfair processing policy wemay provide onspecific occasions when weare collecting, orprocessing, personal data about you, sothat you are fully aware ofhow and why weare using your data This privacy policy supplements other notices and privacy policies and isnot intended tooverride them ### Controller\\nInjoit Limited isthe controller and isresponsible for your personal data (collectively referred toasQuickBlox, ««we»»,««us»» or««our»» inthis privacy policy) Wehave appointed adata privacy manager who isresponsible for overseeing questions inrelation tothis privacy policy Ifyou have any questions about this privacy policy, including any requests toexercise your legal rights, please contact the data privacy manager using the details set out below ### Contact details\\nIf you have any questions about this privacy policy or our privacy practices, please contact our data privacy manager in the following ways:\\n* **Full name of legal entity:**\\n* **Email address:**\\n* **Telephone number:**\\n* Injoit Limited\\n* [gdpr@quickblox.com](mailto:gdpr@quickblox.com)\\n* [+1 415 755 8221]()\\nYou have the right tomake acomplaint atany time tothe Information Commissioner’’s Office (ICO), theUK supervisory authority for data protection issues (www.ico.org.uk) Wewould, however, appreciate the chance todeal with your concerns before you approach the ICO soplease contactus inthe first instance ### Changes tothe privacy policy and your duty toinformus ofchanges\\nWekeep our privacy policy under regular review Itisimportant that the personal data wehold about you isaccurate and current Please keepus informed ifyour personal data changes during your relationship withus\",\n", + " \"## 2 The data wecollect about you\\nPersonal data, orpersonal information, means any information about anindividual from which that person can beidentified Itdoes not include data where the identity has been removed (anonymous data) Wemay collect, use, store and transfer different kinds ofpersonal data about you which wehave grouped together asfollows:\\n* **Identity Data**which includes first name, maiden name, last name, username orsimilar identifier, title * **Contact Data**which includes billing address, home address, email address and telephone numbers * **Technical Data**which includes your internet protocol (IP) address, your login data, browser type and version, hardware information, time zone setting and location, browser plug-in types and versions, operating system and platform, and other technology onthe devices you use toaccess our platform * **Profile Data**which includes your username and password, purchases ororders made byyou, your interests, preferences, feedback and survey responses * **Usage Data**which includes information about how you use our platform, products and services * **Marketing and Communications Data**which includes your preferences inreceiving marketing fromus and our third parties and your communication preferences Wealso collect, use and share**Aggregated**Data such asstatistical ordemographic data for any purpose Aggregated Data could bederived from your personal data but isnot considered personal data inlaw asthis data will not directly orindirectly reveal your identity ### Ifyou fail toprovide personal data\\nWhere weneed tocollect personal data bylaw, orunder the terms ofacontract wehave with you, and you fail toprovide that data when requested, wemay not beable toperform the contract wehave orare trying toenter into with you (for example, toprovide you with our products orservices) Inthis case, wemay have tocancel aproduct orservice you have withus, but wewill notify you ifthis isthe case atthe time ## 3 How isyour personal data collected\",\n", + " \"Weuse different methods tocollect data from and about you including through:\\n* **Direct interactions.**You may giveus your Identity, Contact and Financial Data byfilling informs orbycorresponding withus bypost, phone, email orotherwise This includes personal data you provide when you:\\n1 apply for our products orservices;\\n2 create anaccount withus;\\n3 subscribe toour service;\\n4 request marketing tobesent toyou;\\n5 enter apromotion orsurvey; or\\n6 giveus feedback orcontactus 7 **Automated technologies**orinteractions Asyou interact with our Platform, wewill automatically collect Technical Data about your equipment, browsing actions and patterns Wecollect this personal data byusing cookies, server logs and other similar technologies.## 4 How weuse your personal data\\nWewill only use your personal data when the law allowsus to Most commonly, wewill use your personal data inthe following circumstances:\\n* Where weneed toperform the contract weare about toenter into orhave entered into with you * Where itisnecessary for our legitimate interests (orthose ofathird party) and your interests and fundamental rights donot override those interests\",\n", + " \"* Where weneed tocomply with alegal obligation Generally, wedonot rely onconsent asalegal basis for processing your personal data although wewill get your consent before sending direct marketing communications toyou You have the right towithdraw consent tomarketing atany time bycontactingus ### Purposes for which wewill use your personal data\\nWehave set out below, inatable format, adescription ofall the ways weplan touse your personal data, and which ofthe legal bases werely ontodoso Wehave also identified what our legitimate interests are where appropriate Note that wemay process your personal data for more than one lawful ground depending onthe specific purpose for which weare using your data Please contactus ifyou need details about the specific legal ground weare relying ontoprocess your personal data where more than one ground has been set out inthe table below * **Purpose/Activity**\\n* **Type of data**\\n* **Lawful basis for processing including basis oflegitimate interest**\\n* Toregister you asacustomer\\n* 1 a Identity\\n2 b Contact\\n3 Performance ofacontract with you\\n* Toprocess your order including:\\n1 a Manage payments, fees and charges\\n2\",\n", + " \"b Collect and recover money owed tous\\n3 1 a Identity\\n2 b Contact\\n3 c Financial\\n4 d Transaction\\n5 e Marketingand Communications\\n6 1 a\",\n", + " \"Performance ofacontract with you\\n2 b Necessary for our legitimate interests (torecover debts due tous)\\n* Tomanage our relationship with you which will include:\\n1 a Notifying you about changes toour terms orprivacy policy\\n2 b Asking you toleave areview ortake asurvey\\n3 1 a Identity\\n2 b Contact\\n3 c Profile\\n4 d\",\n", + " \"Marketingand Communications\\n5 1 a Performance of a contract with you\\n2 b Necessary to comply with a legal obligation\\n3 c Necessary for our legitimate interests (to keep our records updated and to study how customers use our products/services)\\n* Toadminister and protect our business and our services (including troubleshooting, data analysis, testing, system maintenance, support, reporting and hosting ofdata)\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4 1\",\n", + " \"a Necessary for our legitimate interests (for running our business, provision ofadministration andIT services, network security, toprevent fraud and inthe context ofabusiness reorganisation orgroup restructuring exercise)\\n2 b Necessary tocomply with alegal obligation\\n* Touse data analytics toimprove our platform, products/services, marketing, customer relationships and experiences\\n* 1 a Technical\\n2 b Usage\\n3 Necessary for our legitimate interests (todefine types ofcustomers for our products and services, tokeep our services updated and relevant, todevelop our business and toinform our marketing strategy)\\n* Tomake suggestions and recommendations toyou about goods orservices that may beofinterest toyou\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4\",\n", + " \"d Usage\\n5 e Profile\\n6 f Marketingand Communications\\n7 Necessary for our legitimate interests (todevelop our products/services and grow our business)\\n### Marketing\\nWestrive toprovide you with choices regarding certain personal data uses, particularly around marketing and advertising ### Promotional offers fromus\\nWemay use your Identity, Contact, Technical, Usage and Profile Data toform aview onwhat wethink you may want orneed, orwhat may beofinterest toyou This ishow wedecide which products, services and offers may berelevant for you You will receive marketing communications fromus ifyou have requested information fromus orpurchased products orservices fromus and you have not opted out ofreceiving that marketing ### Third-party marketing\\nWewill get your express opt-in consent before weshare your personal data with any third party for marketing purposes ### Opting out\\nYou can askus orthird parties tostop sending you marketing messages atany time Where you opt out ofreceiving these marketing messages, this will not apply topersonal data provided tous asaresult ofaproduct/service purchase, product/service experience orother transactions ### Cookies\\nYou can set your browser torefuse all orsome browser cookies, ortoalert you when services set oraccess cookies Ifyou disable orrefuse cookies, please note that some parts ofour platform may become inaccessible ornot function properly\",\n", + " \"For more information about the cookies weuse, please see Cooklie Policy ### Change of purpose\\nWewill only use your personal data for the purposes for which wecollectedit, unless wereasonably consider that weneed touse itfor another reason and that reason iscompatible with the original purpose Ifyou wish toget anexplanation astohow the processing for the new purpose iscompatible with the original purpose, please contactus Ifweneed touse your personal data for anunrelated purpose, wewill notify you and wewill explain the legal basis which allowsus todoso Please note that wemay process your personal data without your knowledge orconsent, incompliance with the above rules, where this isrequired orpermitted bylaw ## 5 Disclosures ofyour personal data\\nWemay share your personal data with the parties set out below for the purposes set out inthe table ««Purposes for which wewill use your personal data»» above * External Third Parties asset out inthe Glossary * Third parties towhom wemay choose tosell, transfer ormerge parts ofour business orour assets Alternatively, wemay seek toacquire other businesses ormerge with them Ifachange happens toour business, then the new owners may use your personal data inthe same way asset out inthis privacy policy Werequire all third parties torespect the security ofyour personal data and totreat itinaccordance with the law Wedonot allow our third-party service providers touse your personal data for their own purposes and only permit them toprocess your personal data for specified purposes and inaccordance with our instructions ## 6 International transfers\\nWedonot currently transfer your personal data outside the European Economic Area (EEA)\",\n", + " \"Ifinthe future wewere totransfer your personal data out ofthe EEA, wewould ensure asimilar degree ofprotection isafforded toitbyensuring atleast one ofthe following safeguards isimplemented:\\n* Wewill only transfer your personal data tocountries that have been deemed toprovide anadequate level ofprotection for personal data bythe European Commission * Where weuse certain service providers, wemay use specific contracts approved bythe European Commission which give personal data the same protection ithas inEurope Please contactus ifyou want further information onthe specific mechanism used byus when transferring your personal data out ofthe EEA ## 7 Data security\\nWehave put inplace appropriate security measures toprevent your personal data from being accidentally lost, used oraccessed inanunauthorised way, altered ordisclosed Inaddition, welimit access toyour personal data tothose employees, agents, contractors and other third parties who have abusiness need toknow They will only process your personal data onour instructions and they are subject toaduty ofconfidentiality Wehave put inplace procedures todeal with any suspected personal data breach and will notify you and any applicable regulator ofabreach where weare legally required todoso ## 8 Data retention\\n### How long will you use mypersonal data for Wewill only retain your personal data for aslong asreasonably necessary tofulfil the purposes wecollected itfor, including for the purposes ofsatisfying any legal, regulatory, tax, accounting orreporting requirements Wemay retain your personal data for alonger period inthe event ofacomplaint orifwereasonably believe there isaprospect oflitigation inrespect toour relationship with you Todetermine the appropriate retention period for personal data, weconsider the amount, nature and sensitivity ofthe personal data, the potential risk ofharm from unauthorised use ordisclosure ofyour personal data, the purposes for which weprocess your personal data and whether wecan achieve those purposes through other means, and the applicable legal, regulatory, tax, accounting orother requirements Bylaw wehave tokeep basic information about our customers (including Contact, Identity, Financial and Transaction Data) for six years after they cease being customers for tax purposes Insome circumstances you can askus todelete your data: see your legal rights below for further information\",\n", + " \"Insome circumstances wewill anonymise your personal data (sothat itcan nolonger beassociated with you) for research orstatistical purposes, inwhich case wemay use this information indefinitely without further notice toyou ## 9 Your legal rights\\nUnder certain circumstances, you have rights under data protection laws inrelation toyour personal data You have the rightto:\\n* **Request access**toyour personal data (commonly known asa««data subject access request»») This enables you toreceive acopy ofthe personal data wehold about you and tocheck that weare lawfully processingit * **Request correction**ofthe personal data that wehold about you This enables you tohave any incomplete orinaccurate data wehold about you corrected, though wemay need toverify the accuracy ofthe new data you provide tous * **Request erasure**ofyour personal data This enables you toaskus todelete orremove personal data where there isnogood reason forus continuing toprocessit You also have the right toaskus todelete orremove your personal data where you have successfullyexercised your right toobject toprocessing (see below), where wemay have processed your information unlawfully orwhere weare required toerase your personal data tocomply with local law Note, however, that wemay not always beable tocomply with your request oferasure for specific legal reasons which will benotified toyou, ifapplicable, atthe time ofyour request * **Object toprocessing**ofyour personal data where weare relying onalegitimate interest (orthose ofathird party) and there issomething about your particular situation which makes you want toobject toprocessing onthis ground asyou feel itimpacts onyour fundamental rights and freedoms You also have the right toobject where weare processing your personal data for direct marketing purposes Insome cases, wemay demonstrate that wehave compelling legitimate grounds toprocess your information which override your rights and freedoms * **Request restriction ofprocessing**ofyour personal data\",\n", + " \"This enables you toaskus tosuspend the processing ofyour personal data inthe following scenarios:\\n1 Ifyou wantus toestablish the data’’s accuracy 2 Where our use ofthe data isunlawful but you donot wantus toeraseit 3 Where you needus tohold the data even ifwenolonger require itasyou need ittoestablish, exercise ordefend legal claims 4 You have objected toour use ofyour data but weneed toverify whether wehave overriding legitimate grounds touseit 5 **Request the transfer**ofyour personal data toyou ortoathird party Wewill provide toyou, orathird party you have chosen, your personal data inastructured, commonly used, machine-readable format Note that this right only applies toautomated information which you initially provided consent forus touse orwhere weused the information toperform acontract with you 6 **Withdraw consent atany time**where weare relying onconsent toprocess your personal data However, this will not affect the lawfulness ofany processing carried out before you withdraw your consent\",\n", + " \"Ifyou withdraw your consent, wemay not beable toprovide certain products orservices toyou Wewill advise you ifthis isthe case atthe time you withdraw your consent Ifyou wish toexercise any ofthe rights set out above, please contactus ### No fee usually required\\nYou will not have topay afee toaccess your personal data (ortoexercise any ofthe other rights) However, wemay charge areasonable fee ifyour request isclearly unfounded, repetitive orexcessive Alternatively, wecould refuse tocomply with your request inthese circumstances ### What we may need from you\\nWemay need torequest specific information from you tohelpus confirm your identity and ensure your right toaccess your personal data (ortoexercise any ofyour other rights) This isasecurity measure toensure that personal data isnot disclosed toany person who has noright toreceiveit Wemay also contact you toask you for further information inrelation toyour request tospeed upour response ### Time limit to respond\\nWetry torespond toall legitimate requests within one month Occasionally itcould takeus longer than amonth ifyour request isparticularly complex oryou have made anumber ofrequests Inthis case, wewill notify you and keep you updated ## 10 Glossary\\n**Legitimate Interest**means the interest ofour business inconducting and managing our business toenableus togive you the best service/product and the best and most secure experience Wemake sure weconsider and balance any potential impact onyou (both positive and negative) and your rights before weprocess your personal data for our legitimate interests\",\n", + " \"Wedonot use your personal data for activities where our interests are overridden bythe impact onyou (unless wehave your consent orare otherwise required orpermitted tobylaw) You can obtain further information about how weassess our legitimate interests against any potential impact onyou inrespect ofspecific activities bycontactingus **Performance ofContract**means processing your data where itisnecessary for the performance ofacontract towhich you are aparty ortotake steps atyour request before entering into such acontract **Comply with alegal obligation**means processing your personal data where itisnecessary for compliance with alegal obligation that weare subjectto **External Third Parties**\\n* Service providers acting asprocessors who provideIT and system administration services * Providers ofour cloud services including AWS and Google * Professional advisers acting asprocessors orjoint controllers including lawyers, bankers, auditors and insurers based inthe United Kingdom who provide consultancy, banking, legal, insurance and accounting services * Regulators and other authorities acting asprocessors orjoint controllers based inthe United Kingdom who require reporting ofprocessing activities incertain circumstances * Our third party partners and affiliates who may manage your customer relationship onour behalf * Stripe for payment management ## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved\",\n", + " \"* [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"Insome circumstances wewill anonymise your personal data (sothat itcan nolonger beassociated with you) for research orstatistical purposes, inwhich case wemay use this information indefinitely without further notice toyou ## 9 Your legal rights\\nUnder certain circumstances, you have rights under data protection laws inrelation toyour personal data You have the rightto:\\n* **Request access**toyour personal data (commonly known asa««data subject access request»») This enables you toreceive acopy ofthe personal data wehold about you and tocheck that weare lawfully processingit * **Request correction**ofthe personal data that wehold about you This enables you tohave any incomplete orinaccurate data wehold about you corrected, though wemay need toverify the accuracy ofthe new data you provide tous * **Request erasure**ofyour personal data This enables you toaskus todelete orremove personal data where there isnogood reason forus continuing toprocessit You also have the right toaskus todelete orremove your personal data where you have successfullyexercised your right toobject toprocessing (see below), where wemay have processed your information unlawfully orwhere weare required toerase your personal data tocomply with local law Note, however, that wemay not always beable tocomply with your request oferasure for specific legal reasons which will benotified toyou, ifapplicable, atthe time ofyour request * **Object toprocessing**ofyour personal data where weare relying onalegitimate interest (orthose ofathird party) and there issomething about your particular situation which makes you want toobject toprocessing onthis ground asyou feel itimpacts onyour fundamental rights and freedoms You also have the right toobject where weare processing your personal data for direct marketing purposes Insome cases, wemay demonstrate that wehave compelling legitimate grounds toprocess your information which override your rights and freedoms * **Request restriction ofprocessing**ofyour personal data\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 129 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Privacy Policy\\nLast updated: 27/03/2023\\n## INTRODUCTION\\nQuickBlox respects your privacy and iscommitted toprotecting your personal data This privacy policy will inform you astohow welook after your personal data when you access our services and tell you about your privacy rights and how the law protects you Please also use the Glossary tounderstand the meaning ofsome ofthe terms used inthis privacy policy ## 1 Important information and who we are\\n### Purpose ofthis privacy policy\\nThis privacy policy aims togive you information onhow QuickBlox collects and processes your personal data through your use ofour services, including any data you may provide through this website when you sign upto, orpurchase one ofour products orservices Itisimportant that you read this privacy policy together with any other privacy policy orfair processing policy wemay provide onspecific occasions when weare collecting, orprocessing, personal data about you, sothat you are fully aware ofhow and why weare using your data This privacy policy supplements other notices and privacy policies and isnot intended tooverride them ### Controller\\nInjoit Limited isthe controller and isresponsible for your personal data (collectively referred toasQuickBlox, ««we»»,««us»» or««our»» inthis privacy policy) Wehave appointed adata privacy manager who isresponsible for overseeing questions inrelation tothis privacy policy Ifyou have any questions about this privacy policy, including any requests toexercise your legal rights, please contact the data privacy manager using the details set out below ### Contact details\\nIf you have any questions about this privacy policy or our privacy practices, please contact our data privacy manager in the following ways:\\n* **Full name of legal entity:**\\n* **Email address:**\\n* **Telephone number:**\\n* Injoit Limited\\n* [gdpr@quickblox.com](mailto:gdpr@quickblox.com)\\n* [+1 415 755 8221]()\\nYou have the right tomake acomplaint atany time tothe Information Commissioner’’s Office (ICO), theUK supervisory authority for data protection issues (www.ico.org.uk) Wewould, however, appreciate the chance todeal with your concerns before you approach the ICO soplease contactus inthe first instance ### Changes tothe privacy policy and your duty toinformus ofchanges\\nWekeep our privacy policy under regular review Itisimportant that the personal data wehold about you isaccurate and current Please keepus informed ifyour personal data changes during your relationship withus\",\n", + " \"## 2 The data wecollect about you\\nPersonal data, orpersonal information, means any information about anindividual from which that person can beidentified Itdoes not include data where the identity has been removed (anonymous data) Wemay collect, use, store and transfer different kinds ofpersonal data about you which wehave grouped together asfollows:\\n* **Identity Data**which includes first name, maiden name, last name, username orsimilar identifier, title * **Contact Data**which includes billing address, home address, email address and telephone numbers * **Technical Data**which includes your internet protocol (IP) address, your login data, browser type and version, hardware information, time zone setting and location, browser plug-in types and versions, operating system and platform, and other technology onthe devices you use toaccess our platform * **Profile Data**which includes your username and password, purchases ororders made byyou, your interests, preferences, feedback and survey responses * **Usage Data**which includes information about how you use our platform, products and services * **Marketing and Communications Data**which includes your preferences inreceiving marketing fromus and our third parties and your communication preferences Wealso collect, use and share**Aggregated**Data such asstatistical ordemographic data for any purpose Aggregated Data could bederived from your personal data but isnot considered personal data inlaw asthis data will not directly orindirectly reveal your identity ### Ifyou fail toprovide personal data\\nWhere weneed tocollect personal data bylaw, orunder the terms ofacontract wehave with you, and you fail toprovide that data when requested, wemay not beable toperform the contract wehave orare trying toenter into with you (for example, toprovide you with our products orservices) Inthis case, wemay have tocancel aproduct orservice you have withus, but wewill notify you ifthis isthe case atthe time ## 3 How isyour personal data collected\",\n", + " \"Weuse different methods tocollect data from and about you including through:\\n* **Direct interactions.**You may giveus your Identity, Contact and Financial Data byfilling informs orbycorresponding withus bypost, phone, email orotherwise This includes personal data you provide when you:\\n1 apply for our products orservices;\\n2 create anaccount withus;\\n3 subscribe toour service;\\n4 request marketing tobesent toyou;\\n5 enter apromotion orsurvey; or\\n6 giveus feedback orcontactus 7 **Automated technologies**orinteractions Asyou interact with our Platform, wewill automatically collect Technical Data about your equipment, browsing actions and patterns Wecollect this personal data byusing cookies, server logs and other similar technologies.## 4 How weuse your personal data\\nWewill only use your personal data when the law allowsus to Most commonly, wewill use your personal data inthe following circumstances:\\n* Where weneed toperform the contract weare about toenter into orhave entered into with you * Where itisnecessary for our legitimate interests (orthose ofathird party) and your interests and fundamental rights donot override those interests\",\n", + " \"* Where weneed tocomply with alegal obligation Generally, wedonot rely onconsent asalegal basis for processing your personal data although wewill get your consent before sending direct marketing communications toyou You have the right towithdraw consent tomarketing atany time bycontactingus ### Purposes for which wewill use your personal data\\nWehave set out below, inatable format, adescription ofall the ways weplan touse your personal data, and which ofthe legal bases werely ontodoso Wehave also identified what our legitimate interests are where appropriate Note that wemay process your personal data for more than one lawful ground depending onthe specific purpose for which weare using your data Please contactus ifyou need details about the specific legal ground weare relying ontoprocess your personal data where more than one ground has been set out inthe table below * **Purpose/Activity**\\n* **Type of data**\\n* **Lawful basis for processing including basis oflegitimate interest**\\n* Toregister you asacustomer\\n* 1 a Identity\\n2 b Contact\\n3 Performance ofacontract with you\\n* Toprocess your order including:\\n1 a Manage payments, fees and charges\\n2\",\n", + " \"b Collect and recover money owed tous\\n3 1 a Identity\\n2 b Contact\\n3 c Financial\\n4 d Transaction\\n5 e Marketingand Communications\\n6 1 a\",\n", + " \"Performance ofacontract with you\\n2 b Necessary for our legitimate interests (torecover debts due tous)\\n* Tomanage our relationship with you which will include:\\n1 a Notifying you about changes toour terms orprivacy policy\\n2 b Asking you toleave areview ortake asurvey\\n3 1 a Identity\\n2 b Contact\\n3 c Profile\\n4 d\",\n", + " \"Marketingand Communications\\n5 1 a Performance of a contract with you\\n2 b Necessary to comply with a legal obligation\\n3 c Necessary for our legitimate interests (to keep our records updated and to study how customers use our products/services)\\n* Toadminister and protect our business and our services (including troubleshooting, data analysis, testing, system maintenance, support, reporting and hosting ofdata)\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4 1\",\n", + " \"a Necessary for our legitimate interests (for running our business, provision ofadministration andIT services, network security, toprevent fraud and inthe context ofabusiness reorganisation orgroup restructuring exercise)\\n2 b Necessary tocomply with alegal obligation\\n* Touse data analytics toimprove our platform, products/services, marketing, customer relationships and experiences\\n* 1 a Technical\\n2 b Usage\\n3 Necessary for our legitimate interests (todefine types ofcustomers for our products and services, tokeep our services updated and relevant, todevelop our business and toinform our marketing strategy)\\n* Tomake suggestions and recommendations toyou about goods orservices that may beofinterest toyou\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4\",\n", + " \"d Usage\\n5 e Profile\\n6 f Marketingand Communications\\n7 Necessary for our legitimate interests (todevelop our products/services and grow our business)\\n### Marketing\\nWestrive toprovide you with choices regarding certain personal data uses, particularly around marketing and advertising ### Promotional offers fromus\\nWemay use your Identity, Contact, Technical, Usage and Profile Data toform aview onwhat wethink you may want orneed, orwhat may beofinterest toyou This ishow wedecide which products, services and offers may berelevant for you You will receive marketing communications fromus ifyou have requested information fromus orpurchased products orservices fromus and you have not opted out ofreceiving that marketing ### Third-party marketing\\nWewill get your express opt-in consent before weshare your personal data with any third party for marketing purposes ### Opting out\\nYou can askus orthird parties tostop sending you marketing messages atany time Where you opt out ofreceiving these marketing messages, this will not apply topersonal data provided tous asaresult ofaproduct/service purchase, product/service experience orother transactions ### Cookies\\nYou can set your browser torefuse all orsome browser cookies, ortoalert you when services set oraccess cookies Ifyou disable orrefuse cookies, please note that some parts ofour platform may become inaccessible ornot function properly\",\n", + " \"For more information about the cookies weuse, please see Cooklie Policy ### Change of purpose\\nWewill only use your personal data for the purposes for which wecollectedit, unless wereasonably consider that weneed touse itfor another reason and that reason iscompatible with the original purpose Ifyou wish toget anexplanation astohow the processing for the new purpose iscompatible with the original purpose, please contactus Ifweneed touse your personal data for anunrelated purpose, wewill notify you and wewill explain the legal basis which allowsus todoso Please note that wemay process your personal data without your knowledge orconsent, incompliance with the above rules, where this isrequired orpermitted bylaw ## 5 Disclosures ofyour personal data\\nWemay share your personal data with the parties set out below for the purposes set out inthe table ««Purposes for which wewill use your personal data»» above * External Third Parties asset out inthe Glossary * Third parties towhom wemay choose tosell, transfer ormerge parts ofour business orour assets Alternatively, wemay seek toacquire other businesses ormerge with them Ifachange happens toour business, then the new owners may use your personal data inthe same way asset out inthis privacy policy Werequire all third parties torespect the security ofyour personal data and totreat itinaccordance with the law Wedonot allow our third-party service providers touse your personal data for their own purposes and only permit them toprocess your personal data for specified purposes and inaccordance with our instructions ## 6 International transfers\\nWedonot currently transfer your personal data outside the European Economic Area (EEA)\",\n", + " \"Ifinthe future wewere totransfer your personal data out ofthe EEA, wewould ensure asimilar degree ofprotection isafforded toitbyensuring atleast one ofthe following safeguards isimplemented:\\n* Wewill only transfer your personal data tocountries that have been deemed toprovide anadequate level ofprotection for personal data bythe European Commission * Where weuse certain service providers, wemay use specific contracts approved bythe European Commission which give personal data the same protection ithas inEurope Please contactus ifyou want further information onthe specific mechanism used byus when transferring your personal data out ofthe EEA ## 7 Data security\\nWehave put inplace appropriate security measures toprevent your personal data from being accidentally lost, used oraccessed inanunauthorised way, altered ordisclosed Inaddition, welimit access toyour personal data tothose employees, agents, contractors and other third parties who have abusiness need toknow They will only process your personal data onour instructions and they are subject toaduty ofconfidentiality Wehave put inplace procedures todeal with any suspected personal data breach and will notify you and any applicable regulator ofabreach where weare legally required todoso ## 8 Data retention\\n### How long will you use mypersonal data for Wewill only retain your personal data for aslong asreasonably necessary tofulfil the purposes wecollected itfor, including for the purposes ofsatisfying any legal, regulatory, tax, accounting orreporting requirements Wemay retain your personal data for alonger period inthe event ofacomplaint orifwereasonably believe there isaprospect oflitigation inrespect toour relationship with you Todetermine the appropriate retention period for personal data, weconsider the amount, nature and sensitivity ofthe personal data, the potential risk ofharm from unauthorised use ordisclosure ofyour personal data, the purposes for which weprocess your personal data and whether wecan achieve those purposes through other means, and the applicable legal, regulatory, tax, accounting orother requirements Bylaw wehave tokeep basic information about our customers (including Contact, Identity, Financial and Transaction Data) for six years after they cease being customers for tax purposes Insome circumstances you can askus todelete your data: see your legal rights below for further information\",\n", + " \"Insome circumstances wewill anonymise your personal data (sothat itcan nolonger beassociated with you) for research orstatistical purposes, inwhich case wemay use this information indefinitely without further notice toyou ## 9 Your legal rights\\nUnder certain circumstances, you have rights under data protection laws inrelation toyour personal data You have the rightto:\\n* **Request access**toyour personal data (commonly known asa««data subject access request»») This enables you toreceive acopy ofthe personal data wehold about you and tocheck that weare lawfully processingit * **Request correction**ofthe personal data that wehold about you This enables you tohave any incomplete orinaccurate data wehold about you corrected, though wemay need toverify the accuracy ofthe new data you provide tous * **Request erasure**ofyour personal data This enables you toaskus todelete orremove personal data where there isnogood reason forus continuing toprocessit You also have the right toaskus todelete orremove your personal data where you have successfullyexercised your right toobject toprocessing (see below), where wemay have processed your information unlawfully orwhere weare required toerase your personal data tocomply with local law Note, however, that wemay not always beable tocomply with your request oferasure for specific legal reasons which will benotified toyou, ifapplicable, atthe time ofyour request * **Object toprocessing**ofyour personal data where weare relying onalegitimate interest (orthose ofathird party) and there issomething about your particular situation which makes you want toobject toprocessing onthis ground asyou feel itimpacts onyour fundamental rights and freedoms You also have the right toobject where weare processing your personal data for direct marketing purposes Insome cases, wemay demonstrate that wehave compelling legitimate grounds toprocess your information which override your rights and freedoms * **Request restriction ofprocessing**ofyour personal data\",\n", + " \"This enables you toaskus tosuspend the processing ofyour personal data inthe following scenarios:\\n1 Ifyou wantus toestablish the data’’s accuracy 2 Where our use ofthe data isunlawful but you donot wantus toeraseit 3 Where you needus tohold the data even ifwenolonger require itasyou need ittoestablish, exercise ordefend legal claims 4 You have objected toour use ofyour data but weneed toverify whether wehave overriding legitimate grounds touseit 5 **Request the transfer**ofyour personal data toyou ortoathird party Wewill provide toyou, orathird party you have chosen, your personal data inastructured, commonly used, machine-readable format Note that this right only applies toautomated information which you initially provided consent forus touse orwhere weused the information toperform acontract with you 6 **Withdraw consent atany time**where weare relying onconsent toprocess your personal data However, this will not affect the lawfulness ofany processing carried out before you withdraw your consent\",\n", + " \"Ifyou withdraw your consent, wemay not beable toprovide certain products orservices toyou Wewill advise you ifthis isthe case atthe time you withdraw your consent Ifyou wish toexercise any ofthe rights set out above, please contactus ### No fee usually required\\nYou will not have topay afee toaccess your personal data (ortoexercise any ofthe other rights) However, wemay charge areasonable fee ifyour request isclearly unfounded, repetitive orexcessive Alternatively, wecould refuse tocomply with your request inthese circumstances ### What we may need from you\\nWemay need torequest specific information from you tohelpus confirm your identity and ensure your right toaccess your personal data (ortoexercise any ofyour other rights) This isasecurity measure toensure that personal data isnot disclosed toany person who has noright toreceiveit Wemay also contact you toask you for further information inrelation toyour request tospeed upour response ### Time limit to respond\\nWetry torespond toall legitimate requests within one month Occasionally itcould takeus longer than amonth ifyour request isparticularly complex oryou have made anumber ofrequests Inthis case, wewill notify you and keep you updated ## 10 Glossary\\n**Legitimate Interest**means the interest ofour business inconducting and managing our business toenableus togive you the best service/product and the best and most secure experience Wemake sure weconsider and balance any potential impact onyou (both positive and negative) and your rights before weprocess your personal data for our legitimate interests\",\n", + " \"Wedonot use your personal data for activities where our interests are overridden bythe impact onyou (unless wehave your consent orare otherwise required orpermitted tobylaw) You can obtain further information about how weassess our legitimate interests against any potential impact onyou inrespect ofspecific activities bycontactingus **Performance ofContract**means processing your data where itisnecessary for the performance ofacontract towhich you are aparty ortotake steps atyour request before entering into such acontract **Comply with alegal obligation**means processing your personal data where itisnecessary for compliance with alegal obligation that weare subjectto **External Third Parties**\\n* Service providers acting asprocessors who provideIT and system administration services * Providers ofour cloud services including AWS and Google * Professional advisers acting asprocessors orjoint controllers including lawyers, bankers, auditors and insurers based inthe United Kingdom who provide consultancy, banking, legal, insurance and accounting services * Regulators and other authorities acting asprocessors orjoint controllers based inthe United Kingdom who require reporting ofprocessing activities incertain circumstances * Our third party partners and affiliates who may manage your customer relationship onour behalf * Stripe for payment management ## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved\",\n", + " \"* [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"For more information about the cookies weuse, please see Cooklie Policy ### Change of purpose\\nWewill only use your personal data for the purposes for which wecollectedit, unless wereasonably consider that weneed touse itfor another reason and that reason iscompatible with the original purpose Ifyou wish toget anexplanation astohow the processing for the new purpose iscompatible with the original purpose, please contactus Ifweneed touse your personal data for anunrelated purpose, wewill notify you and wewill explain the legal basis which allowsus todoso Please note that wemay process your personal data without your knowledge orconsent, incompliance with the above rules, where this isrequired orpermitted bylaw ## 5 Disclosures ofyour personal data\\nWemay share your personal data with the parties set out below for the purposes set out inthe table ««Purposes for which wewill use your personal data»» above * External Third Parties asset out inthe Glossary * Third parties towhom wemay choose tosell, transfer ormerge parts ofour business orour assets Alternatively, wemay seek toacquire other businesses ormerge with them Ifachange happens toour business, then the new owners may use your personal data inthe same way asset out inthis privacy policy Werequire all third parties torespect the security ofyour personal data and totreat itinaccordance with the law Wedonot allow our third-party service providers touse your personal data for their own purposes and only permit them toprocess your personal data for specified purposes and inaccordance with our instructions ## 6 International transfers\\nWedonot currently transfer your personal data outside the European Economic Area (EEA)\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 130 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Privacy Policy\\nLast updated: 27/03/2023\\n## INTRODUCTION\\nQuickBlox respects your privacy and iscommitted toprotecting your personal data This privacy policy will inform you astohow welook after your personal data when you access our services and tell you about your privacy rights and how the law protects you Please also use the Glossary tounderstand the meaning ofsome ofthe terms used inthis privacy policy ## 1 Important information and who we are\\n### Purpose ofthis privacy policy\\nThis privacy policy aims togive you information onhow QuickBlox collects and processes your personal data through your use ofour services, including any data you may provide through this website when you sign upto, orpurchase one ofour products orservices Itisimportant that you read this privacy policy together with any other privacy policy orfair processing policy wemay provide onspecific occasions when weare collecting, orprocessing, personal data about you, sothat you are fully aware ofhow and why weare using your data This privacy policy supplements other notices and privacy policies and isnot intended tooverride them ### Controller\\nInjoit Limited isthe controller and isresponsible for your personal data (collectively referred toasQuickBlox, ««we»»,««us»» or««our»» inthis privacy policy) Wehave appointed adata privacy manager who isresponsible for overseeing questions inrelation tothis privacy policy Ifyou have any questions about this privacy policy, including any requests toexercise your legal rights, please contact the data privacy manager using the details set out below ### Contact details\\nIf you have any questions about this privacy policy or our privacy practices, please contact our data privacy manager in the following ways:\\n* **Full name of legal entity:**\\n* **Email address:**\\n* **Telephone number:**\\n* Injoit Limited\\n* [gdpr@quickblox.com](mailto:gdpr@quickblox.com)\\n* [+1 415 755 8221]()\\nYou have the right tomake acomplaint atany time tothe Information Commissioner’’s Office (ICO), theUK supervisory authority for data protection issues (www.ico.org.uk) Wewould, however, appreciate the chance todeal with your concerns before you approach the ICO soplease contactus inthe first instance ### Changes tothe privacy policy and your duty toinformus ofchanges\\nWekeep our privacy policy under regular review Itisimportant that the personal data wehold about you isaccurate and current Please keepus informed ifyour personal data changes during your relationship withus\",\n", + " \"## 2 The data wecollect about you\\nPersonal data, orpersonal information, means any information about anindividual from which that person can beidentified Itdoes not include data where the identity has been removed (anonymous data) Wemay collect, use, store and transfer different kinds ofpersonal data about you which wehave grouped together asfollows:\\n* **Identity Data**which includes first name, maiden name, last name, username orsimilar identifier, title * **Contact Data**which includes billing address, home address, email address and telephone numbers * **Technical Data**which includes your internet protocol (IP) address, your login data, browser type and version, hardware information, time zone setting and location, browser plug-in types and versions, operating system and platform, and other technology onthe devices you use toaccess our platform * **Profile Data**which includes your username and password, purchases ororders made byyou, your interests, preferences, feedback and survey responses * **Usage Data**which includes information about how you use our platform, products and services * **Marketing and Communications Data**which includes your preferences inreceiving marketing fromus and our third parties and your communication preferences Wealso collect, use and share**Aggregated**Data such asstatistical ordemographic data for any purpose Aggregated Data could bederived from your personal data but isnot considered personal data inlaw asthis data will not directly orindirectly reveal your identity ### Ifyou fail toprovide personal data\\nWhere weneed tocollect personal data bylaw, orunder the terms ofacontract wehave with you, and you fail toprovide that data when requested, wemay not beable toperform the contract wehave orare trying toenter into with you (for example, toprovide you with our products orservices) Inthis case, wemay have tocancel aproduct orservice you have withus, but wewill notify you ifthis isthe case atthe time ## 3 How isyour personal data collected\",\n", + " \"Weuse different methods tocollect data from and about you including through:\\n* **Direct interactions.**You may giveus your Identity, Contact and Financial Data byfilling informs orbycorresponding withus bypost, phone, email orotherwise This includes personal data you provide when you:\\n1 apply for our products orservices;\\n2 create anaccount withus;\\n3 subscribe toour service;\\n4 request marketing tobesent toyou;\\n5 enter apromotion orsurvey; or\\n6 giveus feedback orcontactus 7 **Automated technologies**orinteractions Asyou interact with our Platform, wewill automatically collect Technical Data about your equipment, browsing actions and patterns Wecollect this personal data byusing cookies, server logs and other similar technologies.## 4 How weuse your personal data\\nWewill only use your personal data when the law allowsus to Most commonly, wewill use your personal data inthe following circumstances:\\n* Where weneed toperform the contract weare about toenter into orhave entered into with you * Where itisnecessary for our legitimate interests (orthose ofathird party) and your interests and fundamental rights donot override those interests\",\n", + " \"* Where weneed tocomply with alegal obligation Generally, wedonot rely onconsent asalegal basis for processing your personal data although wewill get your consent before sending direct marketing communications toyou You have the right towithdraw consent tomarketing atany time bycontactingus ### Purposes for which wewill use your personal data\\nWehave set out below, inatable format, adescription ofall the ways weplan touse your personal data, and which ofthe legal bases werely ontodoso Wehave also identified what our legitimate interests are where appropriate Note that wemay process your personal data for more than one lawful ground depending onthe specific purpose for which weare using your data Please contactus ifyou need details about the specific legal ground weare relying ontoprocess your personal data where more than one ground has been set out inthe table below * **Purpose/Activity**\\n* **Type of data**\\n* **Lawful basis for processing including basis oflegitimate interest**\\n* Toregister you asacustomer\\n* 1 a Identity\\n2 b Contact\\n3 Performance ofacontract with you\\n* Toprocess your order including:\\n1 a Manage payments, fees and charges\\n2\",\n", + " \"b Collect and recover money owed tous\\n3 1 a Identity\\n2 b Contact\\n3 c Financial\\n4 d Transaction\\n5 e Marketingand Communications\\n6 1 a\",\n", + " \"Performance ofacontract with you\\n2 b Necessary for our legitimate interests (torecover debts due tous)\\n* Tomanage our relationship with you which will include:\\n1 a Notifying you about changes toour terms orprivacy policy\\n2 b Asking you toleave areview ortake asurvey\\n3 1 a Identity\\n2 b Contact\\n3 c Profile\\n4 d\",\n", + " \"Marketingand Communications\\n5 1 a Performance of a contract with you\\n2 b Necessary to comply with a legal obligation\\n3 c Necessary for our legitimate interests (to keep our records updated and to study how customers use our products/services)\\n* Toadminister and protect our business and our services (including troubleshooting, data analysis, testing, system maintenance, support, reporting and hosting ofdata)\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4 1\",\n", + " \"a Necessary for our legitimate interests (for running our business, provision ofadministration andIT services, network security, toprevent fraud and inthe context ofabusiness reorganisation orgroup restructuring exercise)\\n2 b Necessary tocomply with alegal obligation\\n* Touse data analytics toimprove our platform, products/services, marketing, customer relationships and experiences\\n* 1 a Technical\\n2 b Usage\\n3 Necessary for our legitimate interests (todefine types ofcustomers for our products and services, tokeep our services updated and relevant, todevelop our business and toinform our marketing strategy)\\n* Tomake suggestions and recommendations toyou about goods orservices that may beofinterest toyou\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4\",\n", + " \"d Usage\\n5 e Profile\\n6 f Marketingand Communications\\n7 Necessary for our legitimate interests (todevelop our products/services and grow our business)\\n### Marketing\\nWestrive toprovide you with choices regarding certain personal data uses, particularly around marketing and advertising ### Promotional offers fromus\\nWemay use your Identity, Contact, Technical, Usage and Profile Data toform aview onwhat wethink you may want orneed, orwhat may beofinterest toyou This ishow wedecide which products, services and offers may berelevant for you You will receive marketing communications fromus ifyou have requested information fromus orpurchased products orservices fromus and you have not opted out ofreceiving that marketing ### Third-party marketing\\nWewill get your express opt-in consent before weshare your personal data with any third party for marketing purposes ### Opting out\\nYou can askus orthird parties tostop sending you marketing messages atany time Where you opt out ofreceiving these marketing messages, this will not apply topersonal data provided tous asaresult ofaproduct/service purchase, product/service experience orother transactions ### Cookies\\nYou can set your browser torefuse all orsome browser cookies, ortoalert you when services set oraccess cookies Ifyou disable orrefuse cookies, please note that some parts ofour platform may become inaccessible ornot function properly\",\n", + " \"For more information about the cookies weuse, please see Cooklie Policy ### Change of purpose\\nWewill only use your personal data for the purposes for which wecollectedit, unless wereasonably consider that weneed touse itfor another reason and that reason iscompatible with the original purpose Ifyou wish toget anexplanation astohow the processing for the new purpose iscompatible with the original purpose, please contactus Ifweneed touse your personal data for anunrelated purpose, wewill notify you and wewill explain the legal basis which allowsus todoso Please note that wemay process your personal data without your knowledge orconsent, incompliance with the above rules, where this isrequired orpermitted bylaw ## 5 Disclosures ofyour personal data\\nWemay share your personal data with the parties set out below for the purposes set out inthe table ««Purposes for which wewill use your personal data»» above * External Third Parties asset out inthe Glossary * Third parties towhom wemay choose tosell, transfer ormerge parts ofour business orour assets Alternatively, wemay seek toacquire other businesses ormerge with them Ifachange happens toour business, then the new owners may use your personal data inthe same way asset out inthis privacy policy Werequire all third parties torespect the security ofyour personal data and totreat itinaccordance with the law Wedonot allow our third-party service providers touse your personal data for their own purposes and only permit them toprocess your personal data for specified purposes and inaccordance with our instructions ## 6 International transfers\\nWedonot currently transfer your personal data outside the European Economic Area (EEA)\",\n", + " \"Ifinthe future wewere totransfer your personal data out ofthe EEA, wewould ensure asimilar degree ofprotection isafforded toitbyensuring atleast one ofthe following safeguards isimplemented:\\n* Wewill only transfer your personal data tocountries that have been deemed toprovide anadequate level ofprotection for personal data bythe European Commission * Where weuse certain service providers, wemay use specific contracts approved bythe European Commission which give personal data the same protection ithas inEurope Please contactus ifyou want further information onthe specific mechanism used byus when transferring your personal data out ofthe EEA ## 7 Data security\\nWehave put inplace appropriate security measures toprevent your personal data from being accidentally lost, used oraccessed inanunauthorised way, altered ordisclosed Inaddition, welimit access toyour personal data tothose employees, agents, contractors and other third parties who have abusiness need toknow They will only process your personal data onour instructions and they are subject toaduty ofconfidentiality Wehave put inplace procedures todeal with any suspected personal data breach and will notify you and any applicable regulator ofabreach where weare legally required todoso ## 8 Data retention\\n### How long will you use mypersonal data for Wewill only retain your personal data for aslong asreasonably necessary tofulfil the purposes wecollected itfor, including for the purposes ofsatisfying any legal, regulatory, tax, accounting orreporting requirements Wemay retain your personal data for alonger period inthe event ofacomplaint orifwereasonably believe there isaprospect oflitigation inrespect toour relationship with you Todetermine the appropriate retention period for personal data, weconsider the amount, nature and sensitivity ofthe personal data, the potential risk ofharm from unauthorised use ordisclosure ofyour personal data, the purposes for which weprocess your personal data and whether wecan achieve those purposes through other means, and the applicable legal, regulatory, tax, accounting orother requirements Bylaw wehave tokeep basic information about our customers (including Contact, Identity, Financial and Transaction Data) for six years after they cease being customers for tax purposes Insome circumstances you can askus todelete your data: see your legal rights below for further information\",\n", + " \"Insome circumstances wewill anonymise your personal data (sothat itcan nolonger beassociated with you) for research orstatistical purposes, inwhich case wemay use this information indefinitely without further notice toyou ## 9 Your legal rights\\nUnder certain circumstances, you have rights under data protection laws inrelation toyour personal data You have the rightto:\\n* **Request access**toyour personal data (commonly known asa««data subject access request»») This enables you toreceive acopy ofthe personal data wehold about you and tocheck that weare lawfully processingit * **Request correction**ofthe personal data that wehold about you This enables you tohave any incomplete orinaccurate data wehold about you corrected, though wemay need toverify the accuracy ofthe new data you provide tous * **Request erasure**ofyour personal data This enables you toaskus todelete orremove personal data where there isnogood reason forus continuing toprocessit You also have the right toaskus todelete orremove your personal data where you have successfullyexercised your right toobject toprocessing (see below), where wemay have processed your information unlawfully orwhere weare required toerase your personal data tocomply with local law Note, however, that wemay not always beable tocomply with your request oferasure for specific legal reasons which will benotified toyou, ifapplicable, atthe time ofyour request * **Object toprocessing**ofyour personal data where weare relying onalegitimate interest (orthose ofathird party) and there issomething about your particular situation which makes you want toobject toprocessing onthis ground asyou feel itimpacts onyour fundamental rights and freedoms You also have the right toobject where weare processing your personal data for direct marketing purposes Insome cases, wemay demonstrate that wehave compelling legitimate grounds toprocess your information which override your rights and freedoms * **Request restriction ofprocessing**ofyour personal data\",\n", + " \"This enables you toaskus tosuspend the processing ofyour personal data inthe following scenarios:\\n1 Ifyou wantus toestablish the data’’s accuracy 2 Where our use ofthe data isunlawful but you donot wantus toeraseit 3 Where you needus tohold the data even ifwenolonger require itasyou need ittoestablish, exercise ordefend legal claims 4 You have objected toour use ofyour data but weneed toverify whether wehave overriding legitimate grounds touseit 5 **Request the transfer**ofyour personal data toyou ortoathird party Wewill provide toyou, orathird party you have chosen, your personal data inastructured, commonly used, machine-readable format Note that this right only applies toautomated information which you initially provided consent forus touse orwhere weused the information toperform acontract with you 6 **Withdraw consent atany time**where weare relying onconsent toprocess your personal data However, this will not affect the lawfulness ofany processing carried out before you withdraw your consent\",\n", + " \"Ifyou withdraw your consent, wemay not beable toprovide certain products orservices toyou Wewill advise you ifthis isthe case atthe time you withdraw your consent Ifyou wish toexercise any ofthe rights set out above, please contactus ### No fee usually required\\nYou will not have topay afee toaccess your personal data (ortoexercise any ofthe other rights) However, wemay charge areasonable fee ifyour request isclearly unfounded, repetitive orexcessive Alternatively, wecould refuse tocomply with your request inthese circumstances ### What we may need from you\\nWemay need torequest specific information from you tohelpus confirm your identity and ensure your right toaccess your personal data (ortoexercise any ofyour other rights) This isasecurity measure toensure that personal data isnot disclosed toany person who has noright toreceiveit Wemay also contact you toask you for further information inrelation toyour request tospeed upour response ### Time limit to respond\\nWetry torespond toall legitimate requests within one month Occasionally itcould takeus longer than amonth ifyour request isparticularly complex oryou have made anumber ofrequests Inthis case, wewill notify you and keep you updated ## 10 Glossary\\n**Legitimate Interest**means the interest ofour business inconducting and managing our business toenableus togive you the best service/product and the best and most secure experience Wemake sure weconsider and balance any potential impact onyou (both positive and negative) and your rights before weprocess your personal data for our legitimate interests\",\n", + " \"Wedonot use your personal data for activities where our interests are overridden bythe impact onyou (unless wehave your consent orare otherwise required orpermitted tobylaw) You can obtain further information about how weassess our legitimate interests against any potential impact onyou inrespect ofspecific activities bycontactingus **Performance ofContract**means processing your data where itisnecessary for the performance ofacontract towhich you are aparty ortotake steps atyour request before entering into such acontract **Comply with alegal obligation**means processing your personal data where itisnecessary for compliance with alegal obligation that weare subjectto **External Third Parties**\\n* Service providers acting asprocessors who provideIT and system administration services * Providers ofour cloud services including AWS and Google * Professional advisers acting asprocessors orjoint controllers including lawyers, bankers, auditors and insurers based inthe United Kingdom who provide consultancy, banking, legal, insurance and accounting services * Regulators and other authorities acting asprocessors orjoint controllers based inthe United Kingdom who require reporting ofprocessing activities incertain circumstances * Our third party partners and affiliates who may manage your customer relationship onour behalf * Stripe for payment management ## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved\",\n", + " \"* [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"Ifinthe future wewere totransfer your personal data out ofthe EEA, wewould ensure asimilar degree ofprotection isafforded toitbyensuring atleast one ofthe following safeguards isimplemented:\\n* Wewill only transfer your personal data tocountries that have been deemed toprovide anadequate level ofprotection for personal data bythe European Commission * Where weuse certain service providers, wemay use specific contracts approved bythe European Commission which give personal data the same protection ithas inEurope Please contactus ifyou want further information onthe specific mechanism used byus when transferring your personal data out ofthe EEA ## 7 Data security\\nWehave put inplace appropriate security measures toprevent your personal data from being accidentally lost, used oraccessed inanunauthorised way, altered ordisclosed Inaddition, welimit access toyour personal data tothose employees, agents, contractors and other third parties who have abusiness need toknow They will only process your personal data onour instructions and they are subject toaduty ofconfidentiality Wehave put inplace procedures todeal with any suspected personal data breach and will notify you and any applicable regulator ofabreach where weare legally required todoso ## 8 Data retention\\n### How long will you use mypersonal data for Wewill only retain your personal data for aslong asreasonably necessary tofulfil the purposes wecollected itfor, including for the purposes ofsatisfying any legal, regulatory, tax, accounting orreporting requirements Wemay retain your personal data for alonger period inthe event ofacomplaint orifwereasonably believe there isaprospect oflitigation inrespect toour relationship with you Todetermine the appropriate retention period for personal data, weconsider the amount, nature and sensitivity ofthe personal data, the potential risk ofharm from unauthorised use ordisclosure ofyour personal data, the purposes for which weprocess your personal data and whether wecan achieve those purposes through other means, and the applicable legal, regulatory, tax, accounting orother requirements Bylaw wehave tokeep basic information about our customers (including Contact, Identity, Financial and Transaction Data) for six years after they cease being customers for tax purposes Insome circumstances you can askus todelete your data: see your legal rights below for further information\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 131 Type: finish_branch\n", + "output: \"This chunk discusses QuickBlox's approach to marketing and advertising, highlighting the use of personal data to tailor marketing communications and offers to users. It explains the company's policy on obtaining opt-in consent for third-party marketing, options for opting out of marketing messages, and the use of cookies, noting potential impacts on platform accessibility if cookies are disabled.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 132 Type: finish_branch\n", + "output: \"This chunk is part of QuickBlox's privacy policy, specifically focusing on the lawful basis for processing personal data. It outlines the legitimate interests for using personal data, such as business operations, IT services, fraud prevention, and data analytics for improving services and marketing strategies.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 133 Type: finish_branch\n", + "output: \"The chunk is part of QuickBlox's privacy policy detailing how the company uses personal data, specifically for managing customer relationships, administering and protecting business services, and fulfilling legal obligations or legitimate interests.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 134 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Privacy Policy\\nLast updated: 27/03/2023\\n## INTRODUCTION\\nQuickBlox respects your privacy and iscommitted toprotecting your personal data This privacy policy will inform you astohow welook after your personal data when you access our services and tell you about your privacy rights and how the law protects you Please also use the Glossary tounderstand the meaning ofsome ofthe terms used inthis privacy policy ## 1 Important information and who we are\\n### Purpose ofthis privacy policy\\nThis privacy policy aims togive you information onhow QuickBlox collects and processes your personal data through your use ofour services, including any data you may provide through this website when you sign upto, orpurchase one ofour products orservices Itisimportant that you read this privacy policy together with any other privacy policy orfair processing policy wemay provide onspecific occasions when weare collecting, orprocessing, personal data about you, sothat you are fully aware ofhow and why weare using your data This privacy policy supplements other notices and privacy policies and isnot intended tooverride them ### Controller\\nInjoit Limited isthe controller and isresponsible for your personal data (collectively referred toasQuickBlox, ««we»»,««us»» or««our»» inthis privacy policy) Wehave appointed adata privacy manager who isresponsible for overseeing questions inrelation tothis privacy policy Ifyou have any questions about this privacy policy, including any requests toexercise your legal rights, please contact the data privacy manager using the details set out below ### Contact details\\nIf you have any questions about this privacy policy or our privacy practices, please contact our data privacy manager in the following ways:\\n* **Full name of legal entity:**\\n* **Email address:**\\n* **Telephone number:**\\n* Injoit Limited\\n* [gdpr@quickblox.com](mailto:gdpr@quickblox.com)\\n* [+1 415 755 8221]()\\nYou have the right tomake acomplaint atany time tothe Information Commissioner’’s Office (ICO), theUK supervisory authority for data protection issues (www.ico.org.uk) Wewould, however, appreciate the chance todeal with your concerns before you approach the ICO soplease contactus inthe first instance ### Changes tothe privacy policy and your duty toinformus ofchanges\\nWekeep our privacy policy under regular review Itisimportant that the personal data wehold about you isaccurate and current Please keepus informed ifyour personal data changes during your relationship withus\",\n", + " \"## 2 The data wecollect about you\\nPersonal data, orpersonal information, means any information about anindividual from which that person can beidentified Itdoes not include data where the identity has been removed (anonymous data) Wemay collect, use, store and transfer different kinds ofpersonal data about you which wehave grouped together asfollows:\\n* **Identity Data**which includes first name, maiden name, last name, username orsimilar identifier, title * **Contact Data**which includes billing address, home address, email address and telephone numbers * **Technical Data**which includes your internet protocol (IP) address, your login data, browser type and version, hardware information, time zone setting and location, browser plug-in types and versions, operating system and platform, and other technology onthe devices you use toaccess our platform * **Profile Data**which includes your username and password, purchases ororders made byyou, your interests, preferences, feedback and survey responses * **Usage Data**which includes information about how you use our platform, products and services * **Marketing and Communications Data**which includes your preferences inreceiving marketing fromus and our third parties and your communication preferences Wealso collect, use and share**Aggregated**Data such asstatistical ordemographic data for any purpose Aggregated Data could bederived from your personal data but isnot considered personal data inlaw asthis data will not directly orindirectly reveal your identity ### Ifyou fail toprovide personal data\\nWhere weneed tocollect personal data bylaw, orunder the terms ofacontract wehave with you, and you fail toprovide that data when requested, wemay not beable toperform the contract wehave orare trying toenter into with you (for example, toprovide you with our products orservices) Inthis case, wemay have tocancel aproduct orservice you have withus, but wewill notify you ifthis isthe case atthe time ## 3 How isyour personal data collected\",\n", + " \"Weuse different methods tocollect data from and about you including through:\\n* **Direct interactions.**You may giveus your Identity, Contact and Financial Data byfilling informs orbycorresponding withus bypost, phone, email orotherwise This includes personal data you provide when you:\\n1 apply for our products orservices;\\n2 create anaccount withus;\\n3 subscribe toour service;\\n4 request marketing tobesent toyou;\\n5 enter apromotion orsurvey; or\\n6 giveus feedback orcontactus 7 **Automated technologies**orinteractions Asyou interact with our Platform, wewill automatically collect Technical Data about your equipment, browsing actions and patterns Wecollect this personal data byusing cookies, server logs and other similar technologies.## 4 How weuse your personal data\\nWewill only use your personal data when the law allowsus to Most commonly, wewill use your personal data inthe following circumstances:\\n* Where weneed toperform the contract weare about toenter into orhave entered into with you * Where itisnecessary for our legitimate interests (orthose ofathird party) and your interests and fundamental rights donot override those interests\",\n", + " \"* Where weneed tocomply with alegal obligation Generally, wedonot rely onconsent asalegal basis for processing your personal data although wewill get your consent before sending direct marketing communications toyou You have the right towithdraw consent tomarketing atany time bycontactingus ### Purposes for which wewill use your personal data\\nWehave set out below, inatable format, adescription ofall the ways weplan touse your personal data, and which ofthe legal bases werely ontodoso Wehave also identified what our legitimate interests are where appropriate Note that wemay process your personal data for more than one lawful ground depending onthe specific purpose for which weare using your data Please contactus ifyou need details about the specific legal ground weare relying ontoprocess your personal data where more than one ground has been set out inthe table below * **Purpose/Activity**\\n* **Type of data**\\n* **Lawful basis for processing including basis oflegitimate interest**\\n* Toregister you asacustomer\\n* 1 a Identity\\n2 b Contact\\n3 Performance ofacontract with you\\n* Toprocess your order including:\\n1 a Manage payments, fees and charges\\n2\",\n", + " \"b Collect and recover money owed tous\\n3 1 a Identity\\n2 b Contact\\n3 c Financial\\n4 d Transaction\\n5 e Marketingand Communications\\n6 1 a\",\n", + " \"Performance ofacontract with you\\n2 b Necessary for our legitimate interests (torecover debts due tous)\\n* Tomanage our relationship with you which will include:\\n1 a Notifying you about changes toour terms orprivacy policy\\n2 b Asking you toleave areview ortake asurvey\\n3 1 a Identity\\n2 b Contact\\n3 c Profile\\n4 d\",\n", + " \"Marketingand Communications\\n5 1 a Performance of a contract with you\\n2 b Necessary to comply with a legal obligation\\n3 c Necessary for our legitimate interests (to keep our records updated and to study how customers use our products/services)\\n* Toadminister and protect our business and our services (including troubleshooting, data analysis, testing, system maintenance, support, reporting and hosting ofdata)\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4 1\",\n", + " \"a Necessary for our legitimate interests (for running our business, provision ofadministration andIT services, network security, toprevent fraud and inthe context ofabusiness reorganisation orgroup restructuring exercise)\\n2 b Necessary tocomply with alegal obligation\\n* Touse data analytics toimprove our platform, products/services, marketing, customer relationships and experiences\\n* 1 a Technical\\n2 b Usage\\n3 Necessary for our legitimate interests (todefine types ofcustomers for our products and services, tokeep our services updated and relevant, todevelop our business and toinform our marketing strategy)\\n* Tomake suggestions and recommendations toyou about goods orservices that may beofinterest toyou\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4\",\n", + " \"d Usage\\n5 e Profile\\n6 f Marketingand Communications\\n7 Necessary for our legitimate interests (todevelop our products/services and grow our business)\\n### Marketing\\nWestrive toprovide you with choices regarding certain personal data uses, particularly around marketing and advertising ### Promotional offers fromus\\nWemay use your Identity, Contact, Technical, Usage and Profile Data toform aview onwhat wethink you may want orneed, orwhat may beofinterest toyou This ishow wedecide which products, services and offers may berelevant for you You will receive marketing communications fromus ifyou have requested information fromus orpurchased products orservices fromus and you have not opted out ofreceiving that marketing ### Third-party marketing\\nWewill get your express opt-in consent before weshare your personal data with any third party for marketing purposes ### Opting out\\nYou can askus orthird parties tostop sending you marketing messages atany time Where you opt out ofreceiving these marketing messages, this will not apply topersonal data provided tous asaresult ofaproduct/service purchase, product/service experience orother transactions ### Cookies\\nYou can set your browser torefuse all orsome browser cookies, ortoalert you when services set oraccess cookies Ifyou disable orrefuse cookies, please note that some parts ofour platform may become inaccessible ornot function properly\",\n", + " \"For more information about the cookies weuse, please see Cooklie Policy ### Change of purpose\\nWewill only use your personal data for the purposes for which wecollectedit, unless wereasonably consider that weneed touse itfor another reason and that reason iscompatible with the original purpose Ifyou wish toget anexplanation astohow the processing for the new purpose iscompatible with the original purpose, please contactus Ifweneed touse your personal data for anunrelated purpose, wewill notify you and wewill explain the legal basis which allowsus todoso Please note that wemay process your personal data without your knowledge orconsent, incompliance with the above rules, where this isrequired orpermitted bylaw ## 5 Disclosures ofyour personal data\\nWemay share your personal data with the parties set out below for the purposes set out inthe table ««Purposes for which wewill use your personal data»» above * External Third Parties asset out inthe Glossary * Third parties towhom wemay choose tosell, transfer ormerge parts ofour business orour assets Alternatively, wemay seek toacquire other businesses ormerge with them Ifachange happens toour business, then the new owners may use your personal data inthe same way asset out inthis privacy policy Werequire all third parties torespect the security ofyour personal data and totreat itinaccordance with the law Wedonot allow our third-party service providers touse your personal data for their own purposes and only permit them toprocess your personal data for specified purposes and inaccordance with our instructions ## 6 International transfers\\nWedonot currently transfer your personal data outside the European Economic Area (EEA)\",\n", + " \"Ifinthe future wewere totransfer your personal data out ofthe EEA, wewould ensure asimilar degree ofprotection isafforded toitbyensuring atleast one ofthe following safeguards isimplemented:\\n* Wewill only transfer your personal data tocountries that have been deemed toprovide anadequate level ofprotection for personal data bythe European Commission * Where weuse certain service providers, wemay use specific contracts approved bythe European Commission which give personal data the same protection ithas inEurope Please contactus ifyou want further information onthe specific mechanism used byus when transferring your personal data out ofthe EEA ## 7 Data security\\nWehave put inplace appropriate security measures toprevent your personal data from being accidentally lost, used oraccessed inanunauthorised way, altered ordisclosed Inaddition, welimit access toyour personal data tothose employees, agents, contractors and other third parties who have abusiness need toknow They will only process your personal data onour instructions and they are subject toaduty ofconfidentiality Wehave put inplace procedures todeal with any suspected personal data breach and will notify you and any applicable regulator ofabreach where weare legally required todoso ## 8 Data retention\\n### How long will you use mypersonal data for Wewill only retain your personal data for aslong asreasonably necessary tofulfil the purposes wecollected itfor, including for the purposes ofsatisfying any legal, regulatory, tax, accounting orreporting requirements Wemay retain your personal data for alonger period inthe event ofacomplaint orifwereasonably believe there isaprospect oflitigation inrespect toour relationship with you Todetermine the appropriate retention period for personal data, weconsider the amount, nature and sensitivity ofthe personal data, the potential risk ofharm from unauthorised use ordisclosure ofyour personal data, the purposes for which weprocess your personal data and whether wecan achieve those purposes through other means, and the applicable legal, regulatory, tax, accounting orother requirements Bylaw wehave tokeep basic information about our customers (including Contact, Identity, Financial and Transaction Data) for six years after they cease being customers for tax purposes Insome circumstances you can askus todelete your data: see your legal rights below for further information\",\n", + " \"Insome circumstances wewill anonymise your personal data (sothat itcan nolonger beassociated with you) for research orstatistical purposes, inwhich case wemay use this information indefinitely without further notice toyou ## 9 Your legal rights\\nUnder certain circumstances, you have rights under data protection laws inrelation toyour personal data You have the rightto:\\n* **Request access**toyour personal data (commonly known asa««data subject access request»») This enables you toreceive acopy ofthe personal data wehold about you and tocheck that weare lawfully processingit * **Request correction**ofthe personal data that wehold about you This enables you tohave any incomplete orinaccurate data wehold about you corrected, though wemay need toverify the accuracy ofthe new data you provide tous * **Request erasure**ofyour personal data This enables you toaskus todelete orremove personal data where there isnogood reason forus continuing toprocessit You also have the right toaskus todelete orremove your personal data where you have successfullyexercised your right toobject toprocessing (see below), where wemay have processed your information unlawfully orwhere weare required toerase your personal data tocomply with local law Note, however, that wemay not always beable tocomply with your request oferasure for specific legal reasons which will benotified toyou, ifapplicable, atthe time ofyour request * **Object toprocessing**ofyour personal data where weare relying onalegitimate interest (orthose ofathird party) and there issomething about your particular situation which makes you want toobject toprocessing onthis ground asyou feel itimpacts onyour fundamental rights and freedoms You also have the right toobject where weare processing your personal data for direct marketing purposes Insome cases, wemay demonstrate that wehave compelling legitimate grounds toprocess your information which override your rights and freedoms * **Request restriction ofprocessing**ofyour personal data\",\n", + " \"This enables you toaskus tosuspend the processing ofyour personal data inthe following scenarios:\\n1 Ifyou wantus toestablish the data’’s accuracy 2 Where our use ofthe data isunlawful but you donot wantus toeraseit 3 Where you needus tohold the data even ifwenolonger require itasyou need ittoestablish, exercise ordefend legal claims 4 You have objected toour use ofyour data but weneed toverify whether wehave overriding legitimate grounds touseit 5 **Request the transfer**ofyour personal data toyou ortoathird party Wewill provide toyou, orathird party you have chosen, your personal data inastructured, commonly used, machine-readable format Note that this right only applies toautomated information which you initially provided consent forus touse orwhere weused the information toperform acontract with you 6 **Withdraw consent atany time**where weare relying onconsent toprocess your personal data However, this will not affect the lawfulness ofany processing carried out before you withdraw your consent\",\n", + " \"Ifyou withdraw your consent, wemay not beable toprovide certain products orservices toyou Wewill advise you ifthis isthe case atthe time you withdraw your consent Ifyou wish toexercise any ofthe rights set out above, please contactus ### No fee usually required\\nYou will not have topay afee toaccess your personal data (ortoexercise any ofthe other rights) However, wemay charge areasonable fee ifyour request isclearly unfounded, repetitive orexcessive Alternatively, wecould refuse tocomply with your request inthese circumstances ### What we may need from you\\nWemay need torequest specific information from you tohelpus confirm your identity and ensure your right toaccess your personal data (ortoexercise any ofyour other rights) This isasecurity measure toensure that personal data isnot disclosed toany person who has noright toreceiveit Wemay also contact you toask you for further information inrelation toyour request tospeed upour response ### Time limit to respond\\nWetry torespond toall legitimate requests within one month Occasionally itcould takeus longer than amonth ifyour request isparticularly complex oryou have made anumber ofrequests Inthis case, wewill notify you and keep you updated ## 10 Glossary\\n**Legitimate Interest**means the interest ofour business inconducting and managing our business toenableus togive you the best service/product and the best and most secure experience Wemake sure weconsider and balance any potential impact onyou (both positive and negative) and your rights before weprocess your personal data for our legitimate interests\",\n", + " \"Wedonot use your personal data for activities where our interests are overridden bythe impact onyou (unless wehave your consent orare otherwise required orpermitted tobylaw) You can obtain further information about how weassess our legitimate interests against any potential impact onyou inrespect ofspecific activities bycontactingus **Performance ofContract**means processing your data where itisnecessary for the performance ofacontract towhich you are aparty ortotake steps atyour request before entering into such acontract **Comply with alegal obligation**means processing your personal data where itisnecessary for compliance with alegal obligation that weare subjectto **External Third Parties**\\n* Service providers acting asprocessors who provideIT and system administration services * Providers ofour cloud services including AWS and Google * Professional advisers acting asprocessors orjoint controllers including lawyers, bankers, auditors and insurers based inthe United Kingdom who provide consultancy, banking, legal, insurance and accounting services * Regulators and other authorities acting asprocessors orjoint controllers based inthe United Kingdom who require reporting ofprocessing activities incertain circumstances * Our third party partners and affiliates who may manage your customer relationship onour behalf * Stripe for payment management ## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved\",\n", + " \"* [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"a Necessary for our legitimate interests (for running our business, provision ofadministration andIT services, network security, toprevent fraud and inthe context ofabusiness reorganisation orgroup restructuring exercise)\\n2 b Necessary tocomply with alegal obligation\\n* Touse data analytics toimprove our platform, products/services, marketing, customer relationships and experiences\\n* 1 a Technical\\n2 b Usage\\n3 Necessary for our legitimate interests (todefine types ofcustomers for our products and services, tokeep our services updated and relevant, todevelop our business and toinform our marketing strategy)\\n* Tomake suggestions and recommendations toyou about goods orservices that may beofinterest toyou\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 135 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Privacy Policy\\nLast updated: 27/03/2023\\n## INTRODUCTION\\nQuickBlox respects your privacy and iscommitted toprotecting your personal data This privacy policy will inform you astohow welook after your personal data when you access our services and tell you about your privacy rights and how the law protects you Please also use the Glossary tounderstand the meaning ofsome ofthe terms used inthis privacy policy ## 1 Important information and who we are\\n### Purpose ofthis privacy policy\\nThis privacy policy aims togive you information onhow QuickBlox collects and processes your personal data through your use ofour services, including any data you may provide through this website when you sign upto, orpurchase one ofour products orservices Itisimportant that you read this privacy policy together with any other privacy policy orfair processing policy wemay provide onspecific occasions when weare collecting, orprocessing, personal data about you, sothat you are fully aware ofhow and why weare using your data This privacy policy supplements other notices and privacy policies and isnot intended tooverride them ### Controller\\nInjoit Limited isthe controller and isresponsible for your personal data (collectively referred toasQuickBlox, ««we»»,««us»» or««our»» inthis privacy policy) Wehave appointed adata privacy manager who isresponsible for overseeing questions inrelation tothis privacy policy Ifyou have any questions about this privacy policy, including any requests toexercise your legal rights, please contact the data privacy manager using the details set out below ### Contact details\\nIf you have any questions about this privacy policy or our privacy practices, please contact our data privacy manager in the following ways:\\n* **Full name of legal entity:**\\n* **Email address:**\\n* **Telephone number:**\\n* Injoit Limited\\n* [gdpr@quickblox.com](mailto:gdpr@quickblox.com)\\n* [+1 415 755 8221]()\\nYou have the right tomake acomplaint atany time tothe Information Commissioner’’s Office (ICO), theUK supervisory authority for data protection issues (www.ico.org.uk) Wewould, however, appreciate the chance todeal with your concerns before you approach the ICO soplease contactus inthe first instance ### Changes tothe privacy policy and your duty toinformus ofchanges\\nWekeep our privacy policy under regular review Itisimportant that the personal data wehold about you isaccurate and current Please keepus informed ifyour personal data changes during your relationship withus\",\n", + " \"## 2 The data wecollect about you\\nPersonal data, orpersonal information, means any information about anindividual from which that person can beidentified Itdoes not include data where the identity has been removed (anonymous data) Wemay collect, use, store and transfer different kinds ofpersonal data about you which wehave grouped together asfollows:\\n* **Identity Data**which includes first name, maiden name, last name, username orsimilar identifier, title * **Contact Data**which includes billing address, home address, email address and telephone numbers * **Technical Data**which includes your internet protocol (IP) address, your login data, browser type and version, hardware information, time zone setting and location, browser plug-in types and versions, operating system and platform, and other technology onthe devices you use toaccess our platform * **Profile Data**which includes your username and password, purchases ororders made byyou, your interests, preferences, feedback and survey responses * **Usage Data**which includes information about how you use our platform, products and services * **Marketing and Communications Data**which includes your preferences inreceiving marketing fromus and our third parties and your communication preferences Wealso collect, use and share**Aggregated**Data such asstatistical ordemographic data for any purpose Aggregated Data could bederived from your personal data but isnot considered personal data inlaw asthis data will not directly orindirectly reveal your identity ### Ifyou fail toprovide personal data\\nWhere weneed tocollect personal data bylaw, orunder the terms ofacontract wehave with you, and you fail toprovide that data when requested, wemay not beable toperform the contract wehave orare trying toenter into with you (for example, toprovide you with our products orservices) Inthis case, wemay have tocancel aproduct orservice you have withus, but wewill notify you ifthis isthe case atthe time ## 3 How isyour personal data collected\",\n", + " \"Weuse different methods tocollect data from and about you including through:\\n* **Direct interactions.**You may giveus your Identity, Contact and Financial Data byfilling informs orbycorresponding withus bypost, phone, email orotherwise This includes personal data you provide when you:\\n1 apply for our products orservices;\\n2 create anaccount withus;\\n3 subscribe toour service;\\n4 request marketing tobesent toyou;\\n5 enter apromotion orsurvey; or\\n6 giveus feedback orcontactus 7 **Automated technologies**orinteractions Asyou interact with our Platform, wewill automatically collect Technical Data about your equipment, browsing actions and patterns Wecollect this personal data byusing cookies, server logs and other similar technologies.## 4 How weuse your personal data\\nWewill only use your personal data when the law allowsus to Most commonly, wewill use your personal data inthe following circumstances:\\n* Where weneed toperform the contract weare about toenter into orhave entered into with you * Where itisnecessary for our legitimate interests (orthose ofathird party) and your interests and fundamental rights donot override those interests\",\n", + " \"* Where weneed tocomply with alegal obligation Generally, wedonot rely onconsent asalegal basis for processing your personal data although wewill get your consent before sending direct marketing communications toyou You have the right towithdraw consent tomarketing atany time bycontactingus ### Purposes for which wewill use your personal data\\nWehave set out below, inatable format, adescription ofall the ways weplan touse your personal data, and which ofthe legal bases werely ontodoso Wehave also identified what our legitimate interests are where appropriate Note that wemay process your personal data for more than one lawful ground depending onthe specific purpose for which weare using your data Please contactus ifyou need details about the specific legal ground weare relying ontoprocess your personal data where more than one ground has been set out inthe table below * **Purpose/Activity**\\n* **Type of data**\\n* **Lawful basis for processing including basis oflegitimate interest**\\n* Toregister you asacustomer\\n* 1 a Identity\\n2 b Contact\\n3 Performance ofacontract with you\\n* Toprocess your order including:\\n1 a Manage payments, fees and charges\\n2\",\n", + " \"b Collect and recover money owed tous\\n3 1 a Identity\\n2 b Contact\\n3 c Financial\\n4 d Transaction\\n5 e Marketingand Communications\\n6 1 a\",\n", + " \"Performance ofacontract with you\\n2 b Necessary for our legitimate interests (torecover debts due tous)\\n* Tomanage our relationship with you which will include:\\n1 a Notifying you about changes toour terms orprivacy policy\\n2 b Asking you toleave areview ortake asurvey\\n3 1 a Identity\\n2 b Contact\\n3 c Profile\\n4 d\",\n", + " \"Marketingand Communications\\n5 1 a Performance of a contract with you\\n2 b Necessary to comply with a legal obligation\\n3 c Necessary for our legitimate interests (to keep our records updated and to study how customers use our products/services)\\n* Toadminister and protect our business and our services (including troubleshooting, data analysis, testing, system maintenance, support, reporting and hosting ofdata)\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4 1\",\n", + " \"a Necessary for our legitimate interests (for running our business, provision ofadministration andIT services, network security, toprevent fraud and inthe context ofabusiness reorganisation orgroup restructuring exercise)\\n2 b Necessary tocomply with alegal obligation\\n* Touse data analytics toimprove our platform, products/services, marketing, customer relationships and experiences\\n* 1 a Technical\\n2 b Usage\\n3 Necessary for our legitimate interests (todefine types ofcustomers for our products and services, tokeep our services updated and relevant, todevelop our business and toinform our marketing strategy)\\n* Tomake suggestions and recommendations toyou about goods orservices that may beofinterest toyou\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4\",\n", + " \"d Usage\\n5 e Profile\\n6 f Marketingand Communications\\n7 Necessary for our legitimate interests (todevelop our products/services and grow our business)\\n### Marketing\\nWestrive toprovide you with choices regarding certain personal data uses, particularly around marketing and advertising ### Promotional offers fromus\\nWemay use your Identity, Contact, Technical, Usage and Profile Data toform aview onwhat wethink you may want orneed, orwhat may beofinterest toyou This ishow wedecide which products, services and offers may berelevant for you You will receive marketing communications fromus ifyou have requested information fromus orpurchased products orservices fromus and you have not opted out ofreceiving that marketing ### Third-party marketing\\nWewill get your express opt-in consent before weshare your personal data with any third party for marketing purposes ### Opting out\\nYou can askus orthird parties tostop sending you marketing messages atany time Where you opt out ofreceiving these marketing messages, this will not apply topersonal data provided tous asaresult ofaproduct/service purchase, product/service experience orother transactions ### Cookies\\nYou can set your browser torefuse all orsome browser cookies, ortoalert you when services set oraccess cookies Ifyou disable orrefuse cookies, please note that some parts ofour platform may become inaccessible ornot function properly\",\n", + " \"For more information about the cookies weuse, please see Cooklie Policy ### Change of purpose\\nWewill only use your personal data for the purposes for which wecollectedit, unless wereasonably consider that weneed touse itfor another reason and that reason iscompatible with the original purpose Ifyou wish toget anexplanation astohow the processing for the new purpose iscompatible with the original purpose, please contactus Ifweneed touse your personal data for anunrelated purpose, wewill notify you and wewill explain the legal basis which allowsus todoso Please note that wemay process your personal data without your knowledge orconsent, incompliance with the above rules, where this isrequired orpermitted bylaw ## 5 Disclosures ofyour personal data\\nWemay share your personal data with the parties set out below for the purposes set out inthe table ««Purposes for which wewill use your personal data»» above * External Third Parties asset out inthe Glossary * Third parties towhom wemay choose tosell, transfer ormerge parts ofour business orour assets Alternatively, wemay seek toacquire other businesses ormerge with them Ifachange happens toour business, then the new owners may use your personal data inthe same way asset out inthis privacy policy Werequire all third parties torespect the security ofyour personal data and totreat itinaccordance with the law Wedonot allow our third-party service providers touse your personal data for their own purposes and only permit them toprocess your personal data for specified purposes and inaccordance with our instructions ## 6 International transfers\\nWedonot currently transfer your personal data outside the European Economic Area (EEA)\",\n", + " \"Ifinthe future wewere totransfer your personal data out ofthe EEA, wewould ensure asimilar degree ofprotection isafforded toitbyensuring atleast one ofthe following safeguards isimplemented:\\n* Wewill only transfer your personal data tocountries that have been deemed toprovide anadequate level ofprotection for personal data bythe European Commission * Where weuse certain service providers, wemay use specific contracts approved bythe European Commission which give personal data the same protection ithas inEurope Please contactus ifyou want further information onthe specific mechanism used byus when transferring your personal data out ofthe EEA ## 7 Data security\\nWehave put inplace appropriate security measures toprevent your personal data from being accidentally lost, used oraccessed inanunauthorised way, altered ordisclosed Inaddition, welimit access toyour personal data tothose employees, agents, contractors and other third parties who have abusiness need toknow They will only process your personal data onour instructions and they are subject toaduty ofconfidentiality Wehave put inplace procedures todeal with any suspected personal data breach and will notify you and any applicable regulator ofabreach where weare legally required todoso ## 8 Data retention\\n### How long will you use mypersonal data for Wewill only retain your personal data for aslong asreasonably necessary tofulfil the purposes wecollected itfor, including for the purposes ofsatisfying any legal, regulatory, tax, accounting orreporting requirements Wemay retain your personal data for alonger period inthe event ofacomplaint orifwereasonably believe there isaprospect oflitigation inrespect toour relationship with you Todetermine the appropriate retention period for personal data, weconsider the amount, nature and sensitivity ofthe personal data, the potential risk ofharm from unauthorised use ordisclosure ofyour personal data, the purposes for which weprocess your personal data and whether wecan achieve those purposes through other means, and the applicable legal, regulatory, tax, accounting orother requirements Bylaw wehave tokeep basic information about our customers (including Contact, Identity, Financial and Transaction Data) for six years after they cease being customers for tax purposes Insome circumstances you can askus todelete your data: see your legal rights below for further information\",\n", + " \"Insome circumstances wewill anonymise your personal data (sothat itcan nolonger beassociated with you) for research orstatistical purposes, inwhich case wemay use this information indefinitely without further notice toyou ## 9 Your legal rights\\nUnder certain circumstances, you have rights under data protection laws inrelation toyour personal data You have the rightto:\\n* **Request access**toyour personal data (commonly known asa««data subject access request»») This enables you toreceive acopy ofthe personal data wehold about you and tocheck that weare lawfully processingit * **Request correction**ofthe personal data that wehold about you This enables you tohave any incomplete orinaccurate data wehold about you corrected, though wemay need toverify the accuracy ofthe new data you provide tous * **Request erasure**ofyour personal data This enables you toaskus todelete orremove personal data where there isnogood reason forus continuing toprocessit You also have the right toaskus todelete orremove your personal data where you have successfullyexercised your right toobject toprocessing (see below), where wemay have processed your information unlawfully orwhere weare required toerase your personal data tocomply with local law Note, however, that wemay not always beable tocomply with your request oferasure for specific legal reasons which will benotified toyou, ifapplicable, atthe time ofyour request * **Object toprocessing**ofyour personal data where weare relying onalegitimate interest (orthose ofathird party) and there issomething about your particular situation which makes you want toobject toprocessing onthis ground asyou feel itimpacts onyour fundamental rights and freedoms You also have the right toobject where weare processing your personal data for direct marketing purposes Insome cases, wemay demonstrate that wehave compelling legitimate grounds toprocess your information which override your rights and freedoms * **Request restriction ofprocessing**ofyour personal data\",\n", + " \"This enables you toaskus tosuspend the processing ofyour personal data inthe following scenarios:\\n1 Ifyou wantus toestablish the data’’s accuracy 2 Where our use ofthe data isunlawful but you donot wantus toeraseit 3 Where you needus tohold the data even ifwenolonger require itasyou need ittoestablish, exercise ordefend legal claims 4 You have objected toour use ofyour data but weneed toverify whether wehave overriding legitimate grounds touseit 5 **Request the transfer**ofyour personal data toyou ortoathird party Wewill provide toyou, orathird party you have chosen, your personal data inastructured, commonly used, machine-readable format Note that this right only applies toautomated information which you initially provided consent forus touse orwhere weused the information toperform acontract with you 6 **Withdraw consent atany time**where weare relying onconsent toprocess your personal data However, this will not affect the lawfulness ofany processing carried out before you withdraw your consent\",\n", + " \"Ifyou withdraw your consent, wemay not beable toprovide certain products orservices toyou Wewill advise you ifthis isthe case atthe time you withdraw your consent Ifyou wish toexercise any ofthe rights set out above, please contactus ### No fee usually required\\nYou will not have topay afee toaccess your personal data (ortoexercise any ofthe other rights) However, wemay charge areasonable fee ifyour request isclearly unfounded, repetitive orexcessive Alternatively, wecould refuse tocomply with your request inthese circumstances ### What we may need from you\\nWemay need torequest specific information from you tohelpus confirm your identity and ensure your right toaccess your personal data (ortoexercise any ofyour other rights) This isasecurity measure toensure that personal data isnot disclosed toany person who has noright toreceiveit Wemay also contact you toask you for further information inrelation toyour request tospeed upour response ### Time limit to respond\\nWetry torespond toall legitimate requests within one month Occasionally itcould takeus longer than amonth ifyour request isparticularly complex oryou have made anumber ofrequests Inthis case, wewill notify you and keep you updated ## 10 Glossary\\n**Legitimate Interest**means the interest ofour business inconducting and managing our business toenableus togive you the best service/product and the best and most secure experience Wemake sure weconsider and balance any potential impact onyou (both positive and negative) and your rights before weprocess your personal data for our legitimate interests\",\n", + " \"Wedonot use your personal data for activities where our interests are overridden bythe impact onyou (unless wehave your consent orare otherwise required orpermitted tobylaw) You can obtain further information about how weassess our legitimate interests against any potential impact onyou inrespect ofspecific activities bycontactingus **Performance ofContract**means processing your data where itisnecessary for the performance ofacontract towhich you are aparty ortotake steps atyour request before entering into such acontract **Comply with alegal obligation**means processing your personal data where itisnecessary for compliance with alegal obligation that weare subjectto **External Third Parties**\\n* Service providers acting asprocessors who provideIT and system administration services * Providers ofour cloud services including AWS and Google * Professional advisers acting asprocessors orjoint controllers including lawyers, bankers, auditors and insurers based inthe United Kingdom who provide consultancy, banking, legal, insurance and accounting services * Regulators and other authorities acting asprocessors orjoint controllers based inthe United Kingdom who require reporting ofprocessing activities incertain circumstances * Our third party partners and affiliates who may manage your customer relationship onour behalf * Stripe for payment management ## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved\",\n", + " \"* [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"d Usage\\n5 e Profile\\n6 f Marketingand Communications\\n7 Necessary for our legitimate interests (todevelop our products/services and grow our business)\\n### Marketing\\nWestrive toprovide you with choices regarding certain personal data uses, particularly around marketing and advertising ### Promotional offers fromus\\nWemay use your Identity, Contact, Technical, Usage and Profile Data toform aview onwhat wethink you may want orneed, orwhat may beofinterest toyou This ishow wedecide which products, services and offers may berelevant for you You will receive marketing communications fromus ifyou have requested information fromus orpurchased products orservices fromus and you have not opted out ofreceiving that marketing ### Third-party marketing\\nWewill get your express opt-in consent before weshare your personal data with any third party for marketing purposes ### Opting out\\nYou can askus orthird parties tostop sending you marketing messages atany time Where you opt out ofreceiving these marketing messages, this will not apply topersonal data provided tous asaresult ofaproduct/service purchase, product/service experience orother transactions ### Cookies\\nYou can set your browser torefuse all orsome browser cookies, ortoalert you when services set oraccess cookies Ifyou disable orrefuse cookies, please note that some parts ofour platform may become inaccessible ornot function properly\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 136 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Privacy Policy\\nLast updated: 27/03/2023\\n## INTRODUCTION\\nQuickBlox respects your privacy and iscommitted toprotecting your personal data This privacy policy will inform you astohow welook after your personal data when you access our services and tell you about your privacy rights and how the law protects you Please also use the Glossary tounderstand the meaning ofsome ofthe terms used inthis privacy policy ## 1 Important information and who we are\\n### Purpose ofthis privacy policy\\nThis privacy policy aims togive you information onhow QuickBlox collects and processes your personal data through your use ofour services, including any data you may provide through this website when you sign upto, orpurchase one ofour products orservices Itisimportant that you read this privacy policy together with any other privacy policy orfair processing policy wemay provide onspecific occasions when weare collecting, orprocessing, personal data about you, sothat you are fully aware ofhow and why weare using your data This privacy policy supplements other notices and privacy policies and isnot intended tooverride them ### Controller\\nInjoit Limited isthe controller and isresponsible for your personal data (collectively referred toasQuickBlox, ««we»»,««us»» or««our»» inthis privacy policy) Wehave appointed adata privacy manager who isresponsible for overseeing questions inrelation tothis privacy policy Ifyou have any questions about this privacy policy, including any requests toexercise your legal rights, please contact the data privacy manager using the details set out below ### Contact details\\nIf you have any questions about this privacy policy or our privacy practices, please contact our data privacy manager in the following ways:\\n* **Full name of legal entity:**\\n* **Email address:**\\n* **Telephone number:**\\n* Injoit Limited\\n* [gdpr@quickblox.com](mailto:gdpr@quickblox.com)\\n* [+1 415 755 8221]()\\nYou have the right tomake acomplaint atany time tothe Information Commissioner’’s Office (ICO), theUK supervisory authority for data protection issues (www.ico.org.uk) Wewould, however, appreciate the chance todeal with your concerns before you approach the ICO soplease contactus inthe first instance ### Changes tothe privacy policy and your duty toinformus ofchanges\\nWekeep our privacy policy under regular review Itisimportant that the personal data wehold about you isaccurate and current Please keepus informed ifyour personal data changes during your relationship withus\",\n", + " \"## 2 The data wecollect about you\\nPersonal data, orpersonal information, means any information about anindividual from which that person can beidentified Itdoes not include data where the identity has been removed (anonymous data) Wemay collect, use, store and transfer different kinds ofpersonal data about you which wehave grouped together asfollows:\\n* **Identity Data**which includes first name, maiden name, last name, username orsimilar identifier, title * **Contact Data**which includes billing address, home address, email address and telephone numbers * **Technical Data**which includes your internet protocol (IP) address, your login data, browser type and version, hardware information, time zone setting and location, browser plug-in types and versions, operating system and platform, and other technology onthe devices you use toaccess our platform * **Profile Data**which includes your username and password, purchases ororders made byyou, your interests, preferences, feedback and survey responses * **Usage Data**which includes information about how you use our platform, products and services * **Marketing and Communications Data**which includes your preferences inreceiving marketing fromus and our third parties and your communication preferences Wealso collect, use and share**Aggregated**Data such asstatistical ordemographic data for any purpose Aggregated Data could bederived from your personal data but isnot considered personal data inlaw asthis data will not directly orindirectly reveal your identity ### Ifyou fail toprovide personal data\\nWhere weneed tocollect personal data bylaw, orunder the terms ofacontract wehave with you, and you fail toprovide that data when requested, wemay not beable toperform the contract wehave orare trying toenter into with you (for example, toprovide you with our products orservices) Inthis case, wemay have tocancel aproduct orservice you have withus, but wewill notify you ifthis isthe case atthe time ## 3 How isyour personal data collected\",\n", + " \"Weuse different methods tocollect data from and about you including through:\\n* **Direct interactions.**You may giveus your Identity, Contact and Financial Data byfilling informs orbycorresponding withus bypost, phone, email orotherwise This includes personal data you provide when you:\\n1 apply for our products orservices;\\n2 create anaccount withus;\\n3 subscribe toour service;\\n4 request marketing tobesent toyou;\\n5 enter apromotion orsurvey; or\\n6 giveus feedback orcontactus 7 **Automated technologies**orinteractions Asyou interact with our Platform, wewill automatically collect Technical Data about your equipment, browsing actions and patterns Wecollect this personal data byusing cookies, server logs and other similar technologies.## 4 How weuse your personal data\\nWewill only use your personal data when the law allowsus to Most commonly, wewill use your personal data inthe following circumstances:\\n* Where weneed toperform the contract weare about toenter into orhave entered into with you * Where itisnecessary for our legitimate interests (orthose ofathird party) and your interests and fundamental rights donot override those interests\",\n", + " \"* Where weneed tocomply with alegal obligation Generally, wedonot rely onconsent asalegal basis for processing your personal data although wewill get your consent before sending direct marketing communications toyou You have the right towithdraw consent tomarketing atany time bycontactingus ### Purposes for which wewill use your personal data\\nWehave set out below, inatable format, adescription ofall the ways weplan touse your personal data, and which ofthe legal bases werely ontodoso Wehave also identified what our legitimate interests are where appropriate Note that wemay process your personal data for more than one lawful ground depending onthe specific purpose for which weare using your data Please contactus ifyou need details about the specific legal ground weare relying ontoprocess your personal data where more than one ground has been set out inthe table below * **Purpose/Activity**\\n* **Type of data**\\n* **Lawful basis for processing including basis oflegitimate interest**\\n* Toregister you asacustomer\\n* 1 a Identity\\n2 b Contact\\n3 Performance ofacontract with you\\n* Toprocess your order including:\\n1 a Manage payments, fees and charges\\n2\",\n", + " \"b Collect and recover money owed tous\\n3 1 a Identity\\n2 b Contact\\n3 c Financial\\n4 d Transaction\\n5 e Marketingand Communications\\n6 1 a\",\n", + " \"Performance ofacontract with you\\n2 b Necessary for our legitimate interests (torecover debts due tous)\\n* Tomanage our relationship with you which will include:\\n1 a Notifying you about changes toour terms orprivacy policy\\n2 b Asking you toleave areview ortake asurvey\\n3 1 a Identity\\n2 b Contact\\n3 c Profile\\n4 d\",\n", + " \"Marketingand Communications\\n5 1 a Performance of a contract with you\\n2 b Necessary to comply with a legal obligation\\n3 c Necessary for our legitimate interests (to keep our records updated and to study how customers use our products/services)\\n* Toadminister and protect our business and our services (including troubleshooting, data analysis, testing, system maintenance, support, reporting and hosting ofdata)\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4 1\",\n", + " \"a Necessary for our legitimate interests (for running our business, provision ofadministration andIT services, network security, toprevent fraud and inthe context ofabusiness reorganisation orgroup restructuring exercise)\\n2 b Necessary tocomply with alegal obligation\\n* Touse data analytics toimprove our platform, products/services, marketing, customer relationships and experiences\\n* 1 a Technical\\n2 b Usage\\n3 Necessary for our legitimate interests (todefine types ofcustomers for our products and services, tokeep our services updated and relevant, todevelop our business and toinform our marketing strategy)\\n* Tomake suggestions and recommendations toyou about goods orservices that may beofinterest toyou\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4\",\n", + " \"d Usage\\n5 e Profile\\n6 f Marketingand Communications\\n7 Necessary for our legitimate interests (todevelop our products/services and grow our business)\\n### Marketing\\nWestrive toprovide you with choices regarding certain personal data uses, particularly around marketing and advertising ### Promotional offers fromus\\nWemay use your Identity, Contact, Technical, Usage and Profile Data toform aview onwhat wethink you may want orneed, orwhat may beofinterest toyou This ishow wedecide which products, services and offers may berelevant for you You will receive marketing communications fromus ifyou have requested information fromus orpurchased products orservices fromus and you have not opted out ofreceiving that marketing ### Third-party marketing\\nWewill get your express opt-in consent before weshare your personal data with any third party for marketing purposes ### Opting out\\nYou can askus orthird parties tostop sending you marketing messages atany time Where you opt out ofreceiving these marketing messages, this will not apply topersonal data provided tous asaresult ofaproduct/service purchase, product/service experience orother transactions ### Cookies\\nYou can set your browser torefuse all orsome browser cookies, ortoalert you when services set oraccess cookies Ifyou disable orrefuse cookies, please note that some parts ofour platform may become inaccessible ornot function properly\",\n", + " \"For more information about the cookies weuse, please see Cooklie Policy ### Change of purpose\\nWewill only use your personal data for the purposes for which wecollectedit, unless wereasonably consider that weneed touse itfor another reason and that reason iscompatible with the original purpose Ifyou wish toget anexplanation astohow the processing for the new purpose iscompatible with the original purpose, please contactus Ifweneed touse your personal data for anunrelated purpose, wewill notify you and wewill explain the legal basis which allowsus todoso Please note that wemay process your personal data without your knowledge orconsent, incompliance with the above rules, where this isrequired orpermitted bylaw ## 5 Disclosures ofyour personal data\\nWemay share your personal data with the parties set out below for the purposes set out inthe table ««Purposes for which wewill use your personal data»» above * External Third Parties asset out inthe Glossary * Third parties towhom wemay choose tosell, transfer ormerge parts ofour business orour assets Alternatively, wemay seek toacquire other businesses ormerge with them Ifachange happens toour business, then the new owners may use your personal data inthe same way asset out inthis privacy policy Werequire all third parties torespect the security ofyour personal data and totreat itinaccordance with the law Wedonot allow our third-party service providers touse your personal data for their own purposes and only permit them toprocess your personal data for specified purposes and inaccordance with our instructions ## 6 International transfers\\nWedonot currently transfer your personal data outside the European Economic Area (EEA)\",\n", + " \"Ifinthe future wewere totransfer your personal data out ofthe EEA, wewould ensure asimilar degree ofprotection isafforded toitbyensuring atleast one ofthe following safeguards isimplemented:\\n* Wewill only transfer your personal data tocountries that have been deemed toprovide anadequate level ofprotection for personal data bythe European Commission * Where weuse certain service providers, wemay use specific contracts approved bythe European Commission which give personal data the same protection ithas inEurope Please contactus ifyou want further information onthe specific mechanism used byus when transferring your personal data out ofthe EEA ## 7 Data security\\nWehave put inplace appropriate security measures toprevent your personal data from being accidentally lost, used oraccessed inanunauthorised way, altered ordisclosed Inaddition, welimit access toyour personal data tothose employees, agents, contractors and other third parties who have abusiness need toknow They will only process your personal data onour instructions and they are subject toaduty ofconfidentiality Wehave put inplace procedures todeal with any suspected personal data breach and will notify you and any applicable regulator ofabreach where weare legally required todoso ## 8 Data retention\\n### How long will you use mypersonal data for Wewill only retain your personal data for aslong asreasonably necessary tofulfil the purposes wecollected itfor, including for the purposes ofsatisfying any legal, regulatory, tax, accounting orreporting requirements Wemay retain your personal data for alonger period inthe event ofacomplaint orifwereasonably believe there isaprospect oflitigation inrespect toour relationship with you Todetermine the appropriate retention period for personal data, weconsider the amount, nature and sensitivity ofthe personal data, the potential risk ofharm from unauthorised use ordisclosure ofyour personal data, the purposes for which weprocess your personal data and whether wecan achieve those purposes through other means, and the applicable legal, regulatory, tax, accounting orother requirements Bylaw wehave tokeep basic information about our customers (including Contact, Identity, Financial and Transaction Data) for six years after they cease being customers for tax purposes Insome circumstances you can askus todelete your data: see your legal rights below for further information\",\n", + " \"Insome circumstances wewill anonymise your personal data (sothat itcan nolonger beassociated with you) for research orstatistical purposes, inwhich case wemay use this information indefinitely without further notice toyou ## 9 Your legal rights\\nUnder certain circumstances, you have rights under data protection laws inrelation toyour personal data You have the rightto:\\n* **Request access**toyour personal data (commonly known asa««data subject access request»») This enables you toreceive acopy ofthe personal data wehold about you and tocheck that weare lawfully processingit * **Request correction**ofthe personal data that wehold about you This enables you tohave any incomplete orinaccurate data wehold about you corrected, though wemay need toverify the accuracy ofthe new data you provide tous * **Request erasure**ofyour personal data This enables you toaskus todelete orremove personal data where there isnogood reason forus continuing toprocessit You also have the right toaskus todelete orremove your personal data where you have successfullyexercised your right toobject toprocessing (see below), where wemay have processed your information unlawfully orwhere weare required toerase your personal data tocomply with local law Note, however, that wemay not always beable tocomply with your request oferasure for specific legal reasons which will benotified toyou, ifapplicable, atthe time ofyour request * **Object toprocessing**ofyour personal data where weare relying onalegitimate interest (orthose ofathird party) and there issomething about your particular situation which makes you want toobject toprocessing onthis ground asyou feel itimpacts onyour fundamental rights and freedoms You also have the right toobject where weare processing your personal data for direct marketing purposes Insome cases, wemay demonstrate that wehave compelling legitimate grounds toprocess your information which override your rights and freedoms * **Request restriction ofprocessing**ofyour personal data\",\n", + " \"This enables you toaskus tosuspend the processing ofyour personal data inthe following scenarios:\\n1 Ifyou wantus toestablish the data’’s accuracy 2 Where our use ofthe data isunlawful but you donot wantus toeraseit 3 Where you needus tohold the data even ifwenolonger require itasyou need ittoestablish, exercise ordefend legal claims 4 You have objected toour use ofyour data but weneed toverify whether wehave overriding legitimate grounds touseit 5 **Request the transfer**ofyour personal data toyou ortoathird party Wewill provide toyou, orathird party you have chosen, your personal data inastructured, commonly used, machine-readable format Note that this right only applies toautomated information which you initially provided consent forus touse orwhere weused the information toperform acontract with you 6 **Withdraw consent atany time**where weare relying onconsent toprocess your personal data However, this will not affect the lawfulness ofany processing carried out before you withdraw your consent\",\n", + " \"Ifyou withdraw your consent, wemay not beable toprovide certain products orservices toyou Wewill advise you ifthis isthe case atthe time you withdraw your consent Ifyou wish toexercise any ofthe rights set out above, please contactus ### No fee usually required\\nYou will not have topay afee toaccess your personal data (ortoexercise any ofthe other rights) However, wemay charge areasonable fee ifyour request isclearly unfounded, repetitive orexcessive Alternatively, wecould refuse tocomply with your request inthese circumstances ### What we may need from you\\nWemay need torequest specific information from you tohelpus confirm your identity and ensure your right toaccess your personal data (ortoexercise any ofyour other rights) This isasecurity measure toensure that personal data isnot disclosed toany person who has noright toreceiveit Wemay also contact you toask you for further information inrelation toyour request tospeed upour response ### Time limit to respond\\nWetry torespond toall legitimate requests within one month Occasionally itcould takeus longer than amonth ifyour request isparticularly complex oryou have made anumber ofrequests Inthis case, wewill notify you and keep you updated ## 10 Glossary\\n**Legitimate Interest**means the interest ofour business inconducting and managing our business toenableus togive you the best service/product and the best and most secure experience Wemake sure weconsider and balance any potential impact onyou (both positive and negative) and your rights before weprocess your personal data for our legitimate interests\",\n", + " \"Wedonot use your personal data for activities where our interests are overridden bythe impact onyou (unless wehave your consent orare otherwise required orpermitted tobylaw) You can obtain further information about how weassess our legitimate interests against any potential impact onyou inrespect ofspecific activities bycontactingus **Performance ofContract**means processing your data where itisnecessary for the performance ofacontract towhich you are aparty ortotake steps atyour request before entering into such acontract **Comply with alegal obligation**means processing your personal data where itisnecessary for compliance with alegal obligation that weare subjectto **External Third Parties**\\n* Service providers acting asprocessors who provideIT and system administration services * Providers ofour cloud services including AWS and Google * Professional advisers acting asprocessors orjoint controllers including lawyers, bankers, auditors and insurers based inthe United Kingdom who provide consultancy, banking, legal, insurance and accounting services * Regulators and other authorities acting asprocessors orjoint controllers based inthe United Kingdom who require reporting ofprocessing activities incertain circumstances * Our third party partners and affiliates who may manage your customer relationship onour behalf * Stripe for payment management ## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved\",\n", + " \"* [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"Marketingand Communications\\n5 1 a Performance of a contract with you\\n2 b Necessary to comply with a legal obligation\\n3 c Necessary for our legitimate interests (to keep our records updated and to study how customers use our products/services)\\n* Toadminister and protect our business and our services (including troubleshooting, data analysis, testing, system maintenance, support, reporting and hosting ofdata)\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4 1\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 137 Type: finish_branch\n", + "output: \"The chunk is part of QuickBlox's privacy policy, detailing the legal bases for processing personal data. It explains that consent is not generally relied upon, except for direct marketing, and lists the purposes for which personal data is used, types of data involved, and lawful bases for processing, including legitimate interests.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 138 Type: finish_branch\n", + "output: \"This chunk is part of the \\\"Purposes for which we will use your personal data\\\" section in QuickBlox's privacy policy. It outlines the lawful basis for processing personal data, specifically focusing on performance of contracts and legitimate interests, such as managing customer relationships and notifying users about policy changes.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 139 Type: finish_branch\n", + "output: \"The chunk is part of a section detailing how QuickBlox processes personal data, specifically related to managing financial transactions, including managing payments and recovering debts, as part of their lawful basis for processing user data.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 140 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Privacy Policy\\nLast updated: 27/03/2023\\n## INTRODUCTION\\nQuickBlox respects your privacy and iscommitted toprotecting your personal data This privacy policy will inform you astohow welook after your personal data when you access our services and tell you about your privacy rights and how the law protects you Please also use the Glossary tounderstand the meaning ofsome ofthe terms used inthis privacy policy ## 1 Important information and who we are\\n### Purpose ofthis privacy policy\\nThis privacy policy aims togive you information onhow QuickBlox collects and processes your personal data through your use ofour services, including any data you may provide through this website when you sign upto, orpurchase one ofour products orservices Itisimportant that you read this privacy policy together with any other privacy policy orfair processing policy wemay provide onspecific occasions when weare collecting, orprocessing, personal data about you, sothat you are fully aware ofhow and why weare using your data This privacy policy supplements other notices and privacy policies and isnot intended tooverride them ### Controller\\nInjoit Limited isthe controller and isresponsible for your personal data (collectively referred toasQuickBlox, ««we»»,««us»» or««our»» inthis privacy policy) Wehave appointed adata privacy manager who isresponsible for overseeing questions inrelation tothis privacy policy Ifyou have any questions about this privacy policy, including any requests toexercise your legal rights, please contact the data privacy manager using the details set out below ### Contact details\\nIf you have any questions about this privacy policy or our privacy practices, please contact our data privacy manager in the following ways:\\n* **Full name of legal entity:**\\n* **Email address:**\\n* **Telephone number:**\\n* Injoit Limited\\n* [gdpr@quickblox.com](mailto:gdpr@quickblox.com)\\n* [+1 415 755 8221]()\\nYou have the right tomake acomplaint atany time tothe Information Commissioner’’s Office (ICO), theUK supervisory authority for data protection issues (www.ico.org.uk) Wewould, however, appreciate the chance todeal with your concerns before you approach the ICO soplease contactus inthe first instance ### Changes tothe privacy policy and your duty toinformus ofchanges\\nWekeep our privacy policy under regular review Itisimportant that the personal data wehold about you isaccurate and current Please keepus informed ifyour personal data changes during your relationship withus\",\n", + " \"## 2 The data wecollect about you\\nPersonal data, orpersonal information, means any information about anindividual from which that person can beidentified Itdoes not include data where the identity has been removed (anonymous data) Wemay collect, use, store and transfer different kinds ofpersonal data about you which wehave grouped together asfollows:\\n* **Identity Data**which includes first name, maiden name, last name, username orsimilar identifier, title * **Contact Data**which includes billing address, home address, email address and telephone numbers * **Technical Data**which includes your internet protocol (IP) address, your login data, browser type and version, hardware information, time zone setting and location, browser plug-in types and versions, operating system and platform, and other technology onthe devices you use toaccess our platform * **Profile Data**which includes your username and password, purchases ororders made byyou, your interests, preferences, feedback and survey responses * **Usage Data**which includes information about how you use our platform, products and services * **Marketing and Communications Data**which includes your preferences inreceiving marketing fromus and our third parties and your communication preferences Wealso collect, use and share**Aggregated**Data such asstatistical ordemographic data for any purpose Aggregated Data could bederived from your personal data but isnot considered personal data inlaw asthis data will not directly orindirectly reveal your identity ### Ifyou fail toprovide personal data\\nWhere weneed tocollect personal data bylaw, orunder the terms ofacontract wehave with you, and you fail toprovide that data when requested, wemay not beable toperform the contract wehave orare trying toenter into with you (for example, toprovide you with our products orservices) Inthis case, wemay have tocancel aproduct orservice you have withus, but wewill notify you ifthis isthe case atthe time ## 3 How isyour personal data collected\",\n", + " \"Weuse different methods tocollect data from and about you including through:\\n* **Direct interactions.**You may giveus your Identity, Contact and Financial Data byfilling informs orbycorresponding withus bypost, phone, email orotherwise This includes personal data you provide when you:\\n1 apply for our products orservices;\\n2 create anaccount withus;\\n3 subscribe toour service;\\n4 request marketing tobesent toyou;\\n5 enter apromotion orsurvey; or\\n6 giveus feedback orcontactus 7 **Automated technologies**orinteractions Asyou interact with our Platform, wewill automatically collect Technical Data about your equipment, browsing actions and patterns Wecollect this personal data byusing cookies, server logs and other similar technologies.## 4 How weuse your personal data\\nWewill only use your personal data when the law allowsus to Most commonly, wewill use your personal data inthe following circumstances:\\n* Where weneed toperform the contract weare about toenter into orhave entered into with you * Where itisnecessary for our legitimate interests (orthose ofathird party) and your interests and fundamental rights donot override those interests\",\n", + " \"* Where weneed tocomply with alegal obligation Generally, wedonot rely onconsent asalegal basis for processing your personal data although wewill get your consent before sending direct marketing communications toyou You have the right towithdraw consent tomarketing atany time bycontactingus ### Purposes for which wewill use your personal data\\nWehave set out below, inatable format, adescription ofall the ways weplan touse your personal data, and which ofthe legal bases werely ontodoso Wehave also identified what our legitimate interests are where appropriate Note that wemay process your personal data for more than one lawful ground depending onthe specific purpose for which weare using your data Please contactus ifyou need details about the specific legal ground weare relying ontoprocess your personal data where more than one ground has been set out inthe table below * **Purpose/Activity**\\n* **Type of data**\\n* **Lawful basis for processing including basis oflegitimate interest**\\n* Toregister you asacustomer\\n* 1 a Identity\\n2 b Contact\\n3 Performance ofacontract with you\\n* Toprocess your order including:\\n1 a Manage payments, fees and charges\\n2\",\n", + " \"b Collect and recover money owed tous\\n3 1 a Identity\\n2 b Contact\\n3 c Financial\\n4 d Transaction\\n5 e Marketingand Communications\\n6 1 a\",\n", + " \"Performance ofacontract with you\\n2 b Necessary for our legitimate interests (torecover debts due tous)\\n* Tomanage our relationship with you which will include:\\n1 a Notifying you about changes toour terms orprivacy policy\\n2 b Asking you toleave areview ortake asurvey\\n3 1 a Identity\\n2 b Contact\\n3 c Profile\\n4 d\",\n", + " \"Marketingand Communications\\n5 1 a Performance of a contract with you\\n2 b Necessary to comply with a legal obligation\\n3 c Necessary for our legitimate interests (to keep our records updated and to study how customers use our products/services)\\n* Toadminister and protect our business and our services (including troubleshooting, data analysis, testing, system maintenance, support, reporting and hosting ofdata)\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4 1\",\n", + " \"a Necessary for our legitimate interests (for running our business, provision ofadministration andIT services, network security, toprevent fraud and inthe context ofabusiness reorganisation orgroup restructuring exercise)\\n2 b Necessary tocomply with alegal obligation\\n* Touse data analytics toimprove our platform, products/services, marketing, customer relationships and experiences\\n* 1 a Technical\\n2 b Usage\\n3 Necessary for our legitimate interests (todefine types ofcustomers for our products and services, tokeep our services updated and relevant, todevelop our business and toinform our marketing strategy)\\n* Tomake suggestions and recommendations toyou about goods orservices that may beofinterest toyou\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4\",\n", + " \"d Usage\\n5 e Profile\\n6 f Marketingand Communications\\n7 Necessary for our legitimate interests (todevelop our products/services and grow our business)\\n### Marketing\\nWestrive toprovide you with choices regarding certain personal data uses, particularly around marketing and advertising ### Promotional offers fromus\\nWemay use your Identity, Contact, Technical, Usage and Profile Data toform aview onwhat wethink you may want orneed, orwhat may beofinterest toyou This ishow wedecide which products, services and offers may berelevant for you You will receive marketing communications fromus ifyou have requested information fromus orpurchased products orservices fromus and you have not opted out ofreceiving that marketing ### Third-party marketing\\nWewill get your express opt-in consent before weshare your personal data with any third party for marketing purposes ### Opting out\\nYou can askus orthird parties tostop sending you marketing messages atany time Where you opt out ofreceiving these marketing messages, this will not apply topersonal data provided tous asaresult ofaproduct/service purchase, product/service experience orother transactions ### Cookies\\nYou can set your browser torefuse all orsome browser cookies, ortoalert you when services set oraccess cookies Ifyou disable orrefuse cookies, please note that some parts ofour platform may become inaccessible ornot function properly\",\n", + " \"For more information about the cookies weuse, please see Cooklie Policy ### Change of purpose\\nWewill only use your personal data for the purposes for which wecollectedit, unless wereasonably consider that weneed touse itfor another reason and that reason iscompatible with the original purpose Ifyou wish toget anexplanation astohow the processing for the new purpose iscompatible with the original purpose, please contactus Ifweneed touse your personal data for anunrelated purpose, wewill notify you and wewill explain the legal basis which allowsus todoso Please note that wemay process your personal data without your knowledge orconsent, incompliance with the above rules, where this isrequired orpermitted bylaw ## 5 Disclosures ofyour personal data\\nWemay share your personal data with the parties set out below for the purposes set out inthe table ««Purposes for which wewill use your personal data»» above * External Third Parties asset out inthe Glossary * Third parties towhom wemay choose tosell, transfer ormerge parts ofour business orour assets Alternatively, wemay seek toacquire other businesses ormerge with them Ifachange happens toour business, then the new owners may use your personal data inthe same way asset out inthis privacy policy Werequire all third parties torespect the security ofyour personal data and totreat itinaccordance with the law Wedonot allow our third-party service providers touse your personal data for their own purposes and only permit them toprocess your personal data for specified purposes and inaccordance with our instructions ## 6 International transfers\\nWedonot currently transfer your personal data outside the European Economic Area (EEA)\",\n", + " \"Ifinthe future wewere totransfer your personal data out ofthe EEA, wewould ensure asimilar degree ofprotection isafforded toitbyensuring atleast one ofthe following safeguards isimplemented:\\n* Wewill only transfer your personal data tocountries that have been deemed toprovide anadequate level ofprotection for personal data bythe European Commission * Where weuse certain service providers, wemay use specific contracts approved bythe European Commission which give personal data the same protection ithas inEurope Please contactus ifyou want further information onthe specific mechanism used byus when transferring your personal data out ofthe EEA ## 7 Data security\\nWehave put inplace appropriate security measures toprevent your personal data from being accidentally lost, used oraccessed inanunauthorised way, altered ordisclosed Inaddition, welimit access toyour personal data tothose employees, agents, contractors and other third parties who have abusiness need toknow They will only process your personal data onour instructions and they are subject toaduty ofconfidentiality Wehave put inplace procedures todeal with any suspected personal data breach and will notify you and any applicable regulator ofabreach where weare legally required todoso ## 8 Data retention\\n### How long will you use mypersonal data for Wewill only retain your personal data for aslong asreasonably necessary tofulfil the purposes wecollected itfor, including for the purposes ofsatisfying any legal, regulatory, tax, accounting orreporting requirements Wemay retain your personal data for alonger period inthe event ofacomplaint orifwereasonably believe there isaprospect oflitigation inrespect toour relationship with you Todetermine the appropriate retention period for personal data, weconsider the amount, nature and sensitivity ofthe personal data, the potential risk ofharm from unauthorised use ordisclosure ofyour personal data, the purposes for which weprocess your personal data and whether wecan achieve those purposes through other means, and the applicable legal, regulatory, tax, accounting orother requirements Bylaw wehave tokeep basic information about our customers (including Contact, Identity, Financial and Transaction Data) for six years after they cease being customers for tax purposes Insome circumstances you can askus todelete your data: see your legal rights below for further information\",\n", + " \"Insome circumstances wewill anonymise your personal data (sothat itcan nolonger beassociated with you) for research orstatistical purposes, inwhich case wemay use this information indefinitely without further notice toyou ## 9 Your legal rights\\nUnder certain circumstances, you have rights under data protection laws inrelation toyour personal data You have the rightto:\\n* **Request access**toyour personal data (commonly known asa««data subject access request»») This enables you toreceive acopy ofthe personal data wehold about you and tocheck that weare lawfully processingit * **Request correction**ofthe personal data that wehold about you This enables you tohave any incomplete orinaccurate data wehold about you corrected, though wemay need toverify the accuracy ofthe new data you provide tous * **Request erasure**ofyour personal data This enables you toaskus todelete orremove personal data where there isnogood reason forus continuing toprocessit You also have the right toaskus todelete orremove your personal data where you have successfullyexercised your right toobject toprocessing (see below), where wemay have processed your information unlawfully orwhere weare required toerase your personal data tocomply with local law Note, however, that wemay not always beable tocomply with your request oferasure for specific legal reasons which will benotified toyou, ifapplicable, atthe time ofyour request * **Object toprocessing**ofyour personal data where weare relying onalegitimate interest (orthose ofathird party) and there issomething about your particular situation which makes you want toobject toprocessing onthis ground asyou feel itimpacts onyour fundamental rights and freedoms You also have the right toobject where weare processing your personal data for direct marketing purposes Insome cases, wemay demonstrate that wehave compelling legitimate grounds toprocess your information which override your rights and freedoms * **Request restriction ofprocessing**ofyour personal data\",\n", + " \"This enables you toaskus tosuspend the processing ofyour personal data inthe following scenarios:\\n1 Ifyou wantus toestablish the data’’s accuracy 2 Where our use ofthe data isunlawful but you donot wantus toeraseit 3 Where you needus tohold the data even ifwenolonger require itasyou need ittoestablish, exercise ordefend legal claims 4 You have objected toour use ofyour data but weneed toverify whether wehave overriding legitimate grounds touseit 5 **Request the transfer**ofyour personal data toyou ortoathird party Wewill provide toyou, orathird party you have chosen, your personal data inastructured, commonly used, machine-readable format Note that this right only applies toautomated information which you initially provided consent forus touse orwhere weused the information toperform acontract with you 6 **Withdraw consent atany time**where weare relying onconsent toprocess your personal data However, this will not affect the lawfulness ofany processing carried out before you withdraw your consent\",\n", + " \"Ifyou withdraw your consent, wemay not beable toprovide certain products orservices toyou Wewill advise you ifthis isthe case atthe time you withdraw your consent Ifyou wish toexercise any ofthe rights set out above, please contactus ### No fee usually required\\nYou will not have topay afee toaccess your personal data (ortoexercise any ofthe other rights) However, wemay charge areasonable fee ifyour request isclearly unfounded, repetitive orexcessive Alternatively, wecould refuse tocomply with your request inthese circumstances ### What we may need from you\\nWemay need torequest specific information from you tohelpus confirm your identity and ensure your right toaccess your personal data (ortoexercise any ofyour other rights) This isasecurity measure toensure that personal data isnot disclosed toany person who has noright toreceiveit Wemay also contact you toask you for further information inrelation toyour request tospeed upour response ### Time limit to respond\\nWetry torespond toall legitimate requests within one month Occasionally itcould takeus longer than amonth ifyour request isparticularly complex oryou have made anumber ofrequests Inthis case, wewill notify you and keep you updated ## 10 Glossary\\n**Legitimate Interest**means the interest ofour business inconducting and managing our business toenableus togive you the best service/product and the best and most secure experience Wemake sure weconsider and balance any potential impact onyou (both positive and negative) and your rights before weprocess your personal data for our legitimate interests\",\n", + " \"Wedonot use your personal data for activities where our interests are overridden bythe impact onyou (unless wehave your consent orare otherwise required orpermitted tobylaw) You can obtain further information about how weassess our legitimate interests against any potential impact onyou inrespect ofspecific activities bycontactingus **Performance ofContract**means processing your data where itisnecessary for the performance ofacontract towhich you are aparty ortotake steps atyour request before entering into such acontract **Comply with alegal obligation**means processing your personal data where itisnecessary for compliance with alegal obligation that weare subjectto **External Third Parties**\\n* Service providers acting asprocessors who provideIT and system administration services * Providers ofour cloud services including AWS and Google * Professional advisers acting asprocessors orjoint controllers including lawyers, bankers, auditors and insurers based inthe United Kingdom who provide consultancy, banking, legal, insurance and accounting services * Regulators and other authorities acting asprocessors orjoint controllers based inthe United Kingdom who require reporting ofprocessing activities incertain circumstances * Our third party partners and affiliates who may manage your customer relationship onour behalf * Stripe for payment management ## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved\",\n", + " \"* [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"Performance ofacontract with you\\n2 b Necessary for our legitimate interests (torecover debts due tous)\\n* Tomanage our relationship with you which will include:\\n1 a Notifying you about changes toour terms orprivacy policy\\n2 b Asking you toleave areview ortake asurvey\\n3 1 a Identity\\n2 b Contact\\n3 c Profile\\n4 d\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 141 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Privacy Policy\\nLast updated: 27/03/2023\\n## INTRODUCTION\\nQuickBlox respects your privacy and iscommitted toprotecting your personal data This privacy policy will inform you astohow welook after your personal data when you access our services and tell you about your privacy rights and how the law protects you Please also use the Glossary tounderstand the meaning ofsome ofthe terms used inthis privacy policy ## 1 Important information and who we are\\n### Purpose ofthis privacy policy\\nThis privacy policy aims togive you information onhow QuickBlox collects and processes your personal data through your use ofour services, including any data you may provide through this website when you sign upto, orpurchase one ofour products orservices Itisimportant that you read this privacy policy together with any other privacy policy orfair processing policy wemay provide onspecific occasions when weare collecting, orprocessing, personal data about you, sothat you are fully aware ofhow and why weare using your data This privacy policy supplements other notices and privacy policies and isnot intended tooverride them ### Controller\\nInjoit Limited isthe controller and isresponsible for your personal data (collectively referred toasQuickBlox, ««we»»,««us»» or««our»» inthis privacy policy) Wehave appointed adata privacy manager who isresponsible for overseeing questions inrelation tothis privacy policy Ifyou have any questions about this privacy policy, including any requests toexercise your legal rights, please contact the data privacy manager using the details set out below ### Contact details\\nIf you have any questions about this privacy policy or our privacy practices, please contact our data privacy manager in the following ways:\\n* **Full name of legal entity:**\\n* **Email address:**\\n* **Telephone number:**\\n* Injoit Limited\\n* [gdpr@quickblox.com](mailto:gdpr@quickblox.com)\\n* [+1 415 755 8221]()\\nYou have the right tomake acomplaint atany time tothe Information Commissioner’’s Office (ICO), theUK supervisory authority for data protection issues (www.ico.org.uk) Wewould, however, appreciate the chance todeal with your concerns before you approach the ICO soplease contactus inthe first instance ### Changes tothe privacy policy and your duty toinformus ofchanges\\nWekeep our privacy policy under regular review Itisimportant that the personal data wehold about you isaccurate and current Please keepus informed ifyour personal data changes during your relationship withus\",\n", + " \"## 2 The data wecollect about you\\nPersonal data, orpersonal information, means any information about anindividual from which that person can beidentified Itdoes not include data where the identity has been removed (anonymous data) Wemay collect, use, store and transfer different kinds ofpersonal data about you which wehave grouped together asfollows:\\n* **Identity Data**which includes first name, maiden name, last name, username orsimilar identifier, title * **Contact Data**which includes billing address, home address, email address and telephone numbers * **Technical Data**which includes your internet protocol (IP) address, your login data, browser type and version, hardware information, time zone setting and location, browser plug-in types and versions, operating system and platform, and other technology onthe devices you use toaccess our platform * **Profile Data**which includes your username and password, purchases ororders made byyou, your interests, preferences, feedback and survey responses * **Usage Data**which includes information about how you use our platform, products and services * **Marketing and Communications Data**which includes your preferences inreceiving marketing fromus and our third parties and your communication preferences Wealso collect, use and share**Aggregated**Data such asstatistical ordemographic data for any purpose Aggregated Data could bederived from your personal data but isnot considered personal data inlaw asthis data will not directly orindirectly reveal your identity ### Ifyou fail toprovide personal data\\nWhere weneed tocollect personal data bylaw, orunder the terms ofacontract wehave with you, and you fail toprovide that data when requested, wemay not beable toperform the contract wehave orare trying toenter into with you (for example, toprovide you with our products orservices) Inthis case, wemay have tocancel aproduct orservice you have withus, but wewill notify you ifthis isthe case atthe time ## 3 How isyour personal data collected\",\n", + " \"Weuse different methods tocollect data from and about you including through:\\n* **Direct interactions.**You may giveus your Identity, Contact and Financial Data byfilling informs orbycorresponding withus bypost, phone, email orotherwise This includes personal data you provide when you:\\n1 apply for our products orservices;\\n2 create anaccount withus;\\n3 subscribe toour service;\\n4 request marketing tobesent toyou;\\n5 enter apromotion orsurvey; or\\n6 giveus feedback orcontactus 7 **Automated technologies**orinteractions Asyou interact with our Platform, wewill automatically collect Technical Data about your equipment, browsing actions and patterns Wecollect this personal data byusing cookies, server logs and other similar technologies.## 4 How weuse your personal data\\nWewill only use your personal data when the law allowsus to Most commonly, wewill use your personal data inthe following circumstances:\\n* Where weneed toperform the contract weare about toenter into orhave entered into with you * Where itisnecessary for our legitimate interests (orthose ofathird party) and your interests and fundamental rights donot override those interests\",\n", + " \"* Where weneed tocomply with alegal obligation Generally, wedonot rely onconsent asalegal basis for processing your personal data although wewill get your consent before sending direct marketing communications toyou You have the right towithdraw consent tomarketing atany time bycontactingus ### Purposes for which wewill use your personal data\\nWehave set out below, inatable format, adescription ofall the ways weplan touse your personal data, and which ofthe legal bases werely ontodoso Wehave also identified what our legitimate interests are where appropriate Note that wemay process your personal data for more than one lawful ground depending onthe specific purpose for which weare using your data Please contactus ifyou need details about the specific legal ground weare relying ontoprocess your personal data where more than one ground has been set out inthe table below * **Purpose/Activity**\\n* **Type of data**\\n* **Lawful basis for processing including basis oflegitimate interest**\\n* Toregister you asacustomer\\n* 1 a Identity\\n2 b Contact\\n3 Performance ofacontract with you\\n* Toprocess your order including:\\n1 a Manage payments, fees and charges\\n2\",\n", + " \"b Collect and recover money owed tous\\n3 1 a Identity\\n2 b Contact\\n3 c Financial\\n4 d Transaction\\n5 e Marketingand Communications\\n6 1 a\",\n", + " \"Performance ofacontract with you\\n2 b Necessary for our legitimate interests (torecover debts due tous)\\n* Tomanage our relationship with you which will include:\\n1 a Notifying you about changes toour terms orprivacy policy\\n2 b Asking you toleave areview ortake asurvey\\n3 1 a Identity\\n2 b Contact\\n3 c Profile\\n4 d\",\n", + " \"Marketingand Communications\\n5 1 a Performance of a contract with you\\n2 b Necessary to comply with a legal obligation\\n3 c Necessary for our legitimate interests (to keep our records updated and to study how customers use our products/services)\\n* Toadminister and protect our business and our services (including troubleshooting, data analysis, testing, system maintenance, support, reporting and hosting ofdata)\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4 1\",\n", + " \"a Necessary for our legitimate interests (for running our business, provision ofadministration andIT services, network security, toprevent fraud and inthe context ofabusiness reorganisation orgroup restructuring exercise)\\n2 b Necessary tocomply with alegal obligation\\n* Touse data analytics toimprove our platform, products/services, marketing, customer relationships and experiences\\n* 1 a Technical\\n2 b Usage\\n3 Necessary for our legitimate interests (todefine types ofcustomers for our products and services, tokeep our services updated and relevant, todevelop our business and toinform our marketing strategy)\\n* Tomake suggestions and recommendations toyou about goods orservices that may beofinterest toyou\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4\",\n", + " \"d Usage\\n5 e Profile\\n6 f Marketingand Communications\\n7 Necessary for our legitimate interests (todevelop our products/services and grow our business)\\n### Marketing\\nWestrive toprovide you with choices regarding certain personal data uses, particularly around marketing and advertising ### Promotional offers fromus\\nWemay use your Identity, Contact, Technical, Usage and Profile Data toform aview onwhat wethink you may want orneed, orwhat may beofinterest toyou This ishow wedecide which products, services and offers may berelevant for you You will receive marketing communications fromus ifyou have requested information fromus orpurchased products orservices fromus and you have not opted out ofreceiving that marketing ### Third-party marketing\\nWewill get your express opt-in consent before weshare your personal data with any third party for marketing purposes ### Opting out\\nYou can askus orthird parties tostop sending you marketing messages atany time Where you opt out ofreceiving these marketing messages, this will not apply topersonal data provided tous asaresult ofaproduct/service purchase, product/service experience orother transactions ### Cookies\\nYou can set your browser torefuse all orsome browser cookies, ortoalert you when services set oraccess cookies Ifyou disable orrefuse cookies, please note that some parts ofour platform may become inaccessible ornot function properly\",\n", + " \"For more information about the cookies weuse, please see Cooklie Policy ### Change of purpose\\nWewill only use your personal data for the purposes for which wecollectedit, unless wereasonably consider that weneed touse itfor another reason and that reason iscompatible with the original purpose Ifyou wish toget anexplanation astohow the processing for the new purpose iscompatible with the original purpose, please contactus Ifweneed touse your personal data for anunrelated purpose, wewill notify you and wewill explain the legal basis which allowsus todoso Please note that wemay process your personal data without your knowledge orconsent, incompliance with the above rules, where this isrequired orpermitted bylaw ## 5 Disclosures ofyour personal data\\nWemay share your personal data with the parties set out below for the purposes set out inthe table ««Purposes for which wewill use your personal data»» above * External Third Parties asset out inthe Glossary * Third parties towhom wemay choose tosell, transfer ormerge parts ofour business orour assets Alternatively, wemay seek toacquire other businesses ormerge with them Ifachange happens toour business, then the new owners may use your personal data inthe same way asset out inthis privacy policy Werequire all third parties torespect the security ofyour personal data and totreat itinaccordance with the law Wedonot allow our third-party service providers touse your personal data for their own purposes and only permit them toprocess your personal data for specified purposes and inaccordance with our instructions ## 6 International transfers\\nWedonot currently transfer your personal data outside the European Economic Area (EEA)\",\n", + " \"Ifinthe future wewere totransfer your personal data out ofthe EEA, wewould ensure asimilar degree ofprotection isafforded toitbyensuring atleast one ofthe following safeguards isimplemented:\\n* Wewill only transfer your personal data tocountries that have been deemed toprovide anadequate level ofprotection for personal data bythe European Commission * Where weuse certain service providers, wemay use specific contracts approved bythe European Commission which give personal data the same protection ithas inEurope Please contactus ifyou want further information onthe specific mechanism used byus when transferring your personal data out ofthe EEA ## 7 Data security\\nWehave put inplace appropriate security measures toprevent your personal data from being accidentally lost, used oraccessed inanunauthorised way, altered ordisclosed Inaddition, welimit access toyour personal data tothose employees, agents, contractors and other third parties who have abusiness need toknow They will only process your personal data onour instructions and they are subject toaduty ofconfidentiality Wehave put inplace procedures todeal with any suspected personal data breach and will notify you and any applicable regulator ofabreach where weare legally required todoso ## 8 Data retention\\n### How long will you use mypersonal data for Wewill only retain your personal data for aslong asreasonably necessary tofulfil the purposes wecollected itfor, including for the purposes ofsatisfying any legal, regulatory, tax, accounting orreporting requirements Wemay retain your personal data for alonger period inthe event ofacomplaint orifwereasonably believe there isaprospect oflitigation inrespect toour relationship with you Todetermine the appropriate retention period for personal data, weconsider the amount, nature and sensitivity ofthe personal data, the potential risk ofharm from unauthorised use ordisclosure ofyour personal data, the purposes for which weprocess your personal data and whether wecan achieve those purposes through other means, and the applicable legal, regulatory, tax, accounting orother requirements Bylaw wehave tokeep basic information about our customers (including Contact, Identity, Financial and Transaction Data) for six years after they cease being customers for tax purposes Insome circumstances you can askus todelete your data: see your legal rights below for further information\",\n", + " \"Insome circumstances wewill anonymise your personal data (sothat itcan nolonger beassociated with you) for research orstatistical purposes, inwhich case wemay use this information indefinitely without further notice toyou ## 9 Your legal rights\\nUnder certain circumstances, you have rights under data protection laws inrelation toyour personal data You have the rightto:\\n* **Request access**toyour personal data (commonly known asa««data subject access request»») This enables you toreceive acopy ofthe personal data wehold about you and tocheck that weare lawfully processingit * **Request correction**ofthe personal data that wehold about you This enables you tohave any incomplete orinaccurate data wehold about you corrected, though wemay need toverify the accuracy ofthe new data you provide tous * **Request erasure**ofyour personal data This enables you toaskus todelete orremove personal data where there isnogood reason forus continuing toprocessit You also have the right toaskus todelete orremove your personal data where you have successfullyexercised your right toobject toprocessing (see below), where wemay have processed your information unlawfully orwhere weare required toerase your personal data tocomply with local law Note, however, that wemay not always beable tocomply with your request oferasure for specific legal reasons which will benotified toyou, ifapplicable, atthe time ofyour request * **Object toprocessing**ofyour personal data where weare relying onalegitimate interest (orthose ofathird party) and there issomething about your particular situation which makes you want toobject toprocessing onthis ground asyou feel itimpacts onyour fundamental rights and freedoms You also have the right toobject where weare processing your personal data for direct marketing purposes Insome cases, wemay demonstrate that wehave compelling legitimate grounds toprocess your information which override your rights and freedoms * **Request restriction ofprocessing**ofyour personal data\",\n", + " \"This enables you toaskus tosuspend the processing ofyour personal data inthe following scenarios:\\n1 Ifyou wantus toestablish the data’’s accuracy 2 Where our use ofthe data isunlawful but you donot wantus toeraseit 3 Where you needus tohold the data even ifwenolonger require itasyou need ittoestablish, exercise ordefend legal claims 4 You have objected toour use ofyour data but weneed toverify whether wehave overriding legitimate grounds touseit 5 **Request the transfer**ofyour personal data toyou ortoathird party Wewill provide toyou, orathird party you have chosen, your personal data inastructured, commonly used, machine-readable format Note that this right only applies toautomated information which you initially provided consent forus touse orwhere weused the information toperform acontract with you 6 **Withdraw consent atany time**where weare relying onconsent toprocess your personal data However, this will not affect the lawfulness ofany processing carried out before you withdraw your consent\",\n", + " \"Ifyou withdraw your consent, wemay not beable toprovide certain products orservices toyou Wewill advise you ifthis isthe case atthe time you withdraw your consent Ifyou wish toexercise any ofthe rights set out above, please contactus ### No fee usually required\\nYou will not have topay afee toaccess your personal data (ortoexercise any ofthe other rights) However, wemay charge areasonable fee ifyour request isclearly unfounded, repetitive orexcessive Alternatively, wecould refuse tocomply with your request inthese circumstances ### What we may need from you\\nWemay need torequest specific information from you tohelpus confirm your identity and ensure your right toaccess your personal data (ortoexercise any ofyour other rights) This isasecurity measure toensure that personal data isnot disclosed toany person who has noright toreceiveit Wemay also contact you toask you for further information inrelation toyour request tospeed upour response ### Time limit to respond\\nWetry torespond toall legitimate requests within one month Occasionally itcould takeus longer than amonth ifyour request isparticularly complex oryou have made anumber ofrequests Inthis case, wewill notify you and keep you updated ## 10 Glossary\\n**Legitimate Interest**means the interest ofour business inconducting and managing our business toenableus togive you the best service/product and the best and most secure experience Wemake sure weconsider and balance any potential impact onyou (both positive and negative) and your rights before weprocess your personal data for our legitimate interests\",\n", + " \"Wedonot use your personal data for activities where our interests are overridden bythe impact onyou (unless wehave your consent orare otherwise required orpermitted tobylaw) You can obtain further information about how weassess our legitimate interests against any potential impact onyou inrespect ofspecific activities bycontactingus **Performance ofContract**means processing your data where itisnecessary for the performance ofacontract towhich you are aparty ortotake steps atyour request before entering into such acontract **Comply with alegal obligation**means processing your personal data where itisnecessary for compliance with alegal obligation that weare subjectto **External Third Parties**\\n* Service providers acting asprocessors who provideIT and system administration services * Providers ofour cloud services including AWS and Google * Professional advisers acting asprocessors orjoint controllers including lawyers, bankers, auditors and insurers based inthe United Kingdom who provide consultancy, banking, legal, insurance and accounting services * Regulators and other authorities acting asprocessors orjoint controllers based inthe United Kingdom who require reporting ofprocessing activities incertain circumstances * Our third party partners and affiliates who may manage your customer relationship onour behalf * Stripe for payment management ## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved\",\n", + " \"* [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"b Collect and recover money owed tous\\n3 1 a Identity\\n2 b Contact\\n3 c Financial\\n4 d Transaction\\n5 e Marketingand Communications\\n6 1 a\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 142 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Privacy Policy\\nLast updated: 27/03/2023\\n## INTRODUCTION\\nQuickBlox respects your privacy and iscommitted toprotecting your personal data This privacy policy will inform you astohow welook after your personal data when you access our services and tell you about your privacy rights and how the law protects you Please also use the Glossary tounderstand the meaning ofsome ofthe terms used inthis privacy policy ## 1 Important information and who we are\\n### Purpose ofthis privacy policy\\nThis privacy policy aims togive you information onhow QuickBlox collects and processes your personal data through your use ofour services, including any data you may provide through this website when you sign upto, orpurchase one ofour products orservices Itisimportant that you read this privacy policy together with any other privacy policy orfair processing policy wemay provide onspecific occasions when weare collecting, orprocessing, personal data about you, sothat you are fully aware ofhow and why weare using your data This privacy policy supplements other notices and privacy policies and isnot intended tooverride them ### Controller\\nInjoit Limited isthe controller and isresponsible for your personal data (collectively referred toasQuickBlox, ««we»»,««us»» or««our»» inthis privacy policy) Wehave appointed adata privacy manager who isresponsible for overseeing questions inrelation tothis privacy policy Ifyou have any questions about this privacy policy, including any requests toexercise your legal rights, please contact the data privacy manager using the details set out below ### Contact details\\nIf you have any questions about this privacy policy or our privacy practices, please contact our data privacy manager in the following ways:\\n* **Full name of legal entity:**\\n* **Email address:**\\n* **Telephone number:**\\n* Injoit Limited\\n* [gdpr@quickblox.com](mailto:gdpr@quickblox.com)\\n* [+1 415 755 8221]()\\nYou have the right tomake acomplaint atany time tothe Information Commissioner’’s Office (ICO), theUK supervisory authority for data protection issues (www.ico.org.uk) Wewould, however, appreciate the chance todeal with your concerns before you approach the ICO soplease contactus inthe first instance ### Changes tothe privacy policy and your duty toinformus ofchanges\\nWekeep our privacy policy under regular review Itisimportant that the personal data wehold about you isaccurate and current Please keepus informed ifyour personal data changes during your relationship withus\",\n", + " \"## 2 The data wecollect about you\\nPersonal data, orpersonal information, means any information about anindividual from which that person can beidentified Itdoes not include data where the identity has been removed (anonymous data) Wemay collect, use, store and transfer different kinds ofpersonal data about you which wehave grouped together asfollows:\\n* **Identity Data**which includes first name, maiden name, last name, username orsimilar identifier, title * **Contact Data**which includes billing address, home address, email address and telephone numbers * **Technical Data**which includes your internet protocol (IP) address, your login data, browser type and version, hardware information, time zone setting and location, browser plug-in types and versions, operating system and platform, and other technology onthe devices you use toaccess our platform * **Profile Data**which includes your username and password, purchases ororders made byyou, your interests, preferences, feedback and survey responses * **Usage Data**which includes information about how you use our platform, products and services * **Marketing and Communications Data**which includes your preferences inreceiving marketing fromus and our third parties and your communication preferences Wealso collect, use and share**Aggregated**Data such asstatistical ordemographic data for any purpose Aggregated Data could bederived from your personal data but isnot considered personal data inlaw asthis data will not directly orindirectly reveal your identity ### Ifyou fail toprovide personal data\\nWhere weneed tocollect personal data bylaw, orunder the terms ofacontract wehave with you, and you fail toprovide that data when requested, wemay not beable toperform the contract wehave orare trying toenter into with you (for example, toprovide you with our products orservices) Inthis case, wemay have tocancel aproduct orservice you have withus, but wewill notify you ifthis isthe case atthe time ## 3 How isyour personal data collected\",\n", + " \"Weuse different methods tocollect data from and about you including through:\\n* **Direct interactions.**You may giveus your Identity, Contact and Financial Data byfilling informs orbycorresponding withus bypost, phone, email orotherwise This includes personal data you provide when you:\\n1 apply for our products orservices;\\n2 create anaccount withus;\\n3 subscribe toour service;\\n4 request marketing tobesent toyou;\\n5 enter apromotion orsurvey; or\\n6 giveus feedback orcontactus 7 **Automated technologies**orinteractions Asyou interact with our Platform, wewill automatically collect Technical Data about your equipment, browsing actions and patterns Wecollect this personal data byusing cookies, server logs and other similar technologies.## 4 How weuse your personal data\\nWewill only use your personal data when the law allowsus to Most commonly, wewill use your personal data inthe following circumstances:\\n* Where weneed toperform the contract weare about toenter into orhave entered into with you * Where itisnecessary for our legitimate interests (orthose ofathird party) and your interests and fundamental rights donot override those interests\",\n", + " \"* Where weneed tocomply with alegal obligation Generally, wedonot rely onconsent asalegal basis for processing your personal data although wewill get your consent before sending direct marketing communications toyou You have the right towithdraw consent tomarketing atany time bycontactingus ### Purposes for which wewill use your personal data\\nWehave set out below, inatable format, adescription ofall the ways weplan touse your personal data, and which ofthe legal bases werely ontodoso Wehave also identified what our legitimate interests are where appropriate Note that wemay process your personal data for more than one lawful ground depending onthe specific purpose for which weare using your data Please contactus ifyou need details about the specific legal ground weare relying ontoprocess your personal data where more than one ground has been set out inthe table below * **Purpose/Activity**\\n* **Type of data**\\n* **Lawful basis for processing including basis oflegitimate interest**\\n* Toregister you asacustomer\\n* 1 a Identity\\n2 b Contact\\n3 Performance ofacontract with you\\n* Toprocess your order including:\\n1 a Manage payments, fees and charges\\n2\",\n", + " \"b Collect and recover money owed tous\\n3 1 a Identity\\n2 b Contact\\n3 c Financial\\n4 d Transaction\\n5 e Marketingand Communications\\n6 1 a\",\n", + " \"Performance ofacontract with you\\n2 b Necessary for our legitimate interests (torecover debts due tous)\\n* Tomanage our relationship with you which will include:\\n1 a Notifying you about changes toour terms orprivacy policy\\n2 b Asking you toleave areview ortake asurvey\\n3 1 a Identity\\n2 b Contact\\n3 c Profile\\n4 d\",\n", + " \"Marketingand Communications\\n5 1 a Performance of a contract with you\\n2 b Necessary to comply with a legal obligation\\n3 c Necessary for our legitimate interests (to keep our records updated and to study how customers use our products/services)\\n* Toadminister and protect our business and our services (including troubleshooting, data analysis, testing, system maintenance, support, reporting and hosting ofdata)\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4 1\",\n", + " \"a Necessary for our legitimate interests (for running our business, provision ofadministration andIT services, network security, toprevent fraud and inthe context ofabusiness reorganisation orgroup restructuring exercise)\\n2 b Necessary tocomply with alegal obligation\\n* Touse data analytics toimprove our platform, products/services, marketing, customer relationships and experiences\\n* 1 a Technical\\n2 b Usage\\n3 Necessary for our legitimate interests (todefine types ofcustomers for our products and services, tokeep our services updated and relevant, todevelop our business and toinform our marketing strategy)\\n* Tomake suggestions and recommendations toyou about goods orservices that may beofinterest toyou\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4\",\n", + " \"d Usage\\n5 e Profile\\n6 f Marketingand Communications\\n7 Necessary for our legitimate interests (todevelop our products/services and grow our business)\\n### Marketing\\nWestrive toprovide you with choices regarding certain personal data uses, particularly around marketing and advertising ### Promotional offers fromus\\nWemay use your Identity, Contact, Technical, Usage and Profile Data toform aview onwhat wethink you may want orneed, orwhat may beofinterest toyou This ishow wedecide which products, services and offers may berelevant for you You will receive marketing communications fromus ifyou have requested information fromus orpurchased products orservices fromus and you have not opted out ofreceiving that marketing ### Third-party marketing\\nWewill get your express opt-in consent before weshare your personal data with any third party for marketing purposes ### Opting out\\nYou can askus orthird parties tostop sending you marketing messages atany time Where you opt out ofreceiving these marketing messages, this will not apply topersonal data provided tous asaresult ofaproduct/service purchase, product/service experience orother transactions ### Cookies\\nYou can set your browser torefuse all orsome browser cookies, ortoalert you when services set oraccess cookies Ifyou disable orrefuse cookies, please note that some parts ofour platform may become inaccessible ornot function properly\",\n", + " \"For more information about the cookies weuse, please see Cooklie Policy ### Change of purpose\\nWewill only use your personal data for the purposes for which wecollectedit, unless wereasonably consider that weneed touse itfor another reason and that reason iscompatible with the original purpose Ifyou wish toget anexplanation astohow the processing for the new purpose iscompatible with the original purpose, please contactus Ifweneed touse your personal data for anunrelated purpose, wewill notify you and wewill explain the legal basis which allowsus todoso Please note that wemay process your personal data without your knowledge orconsent, incompliance with the above rules, where this isrequired orpermitted bylaw ## 5 Disclosures ofyour personal data\\nWemay share your personal data with the parties set out below for the purposes set out inthe table ««Purposes for which wewill use your personal data»» above * External Third Parties asset out inthe Glossary * Third parties towhom wemay choose tosell, transfer ormerge parts ofour business orour assets Alternatively, wemay seek toacquire other businesses ormerge with them Ifachange happens toour business, then the new owners may use your personal data inthe same way asset out inthis privacy policy Werequire all third parties torespect the security ofyour personal data and totreat itinaccordance with the law Wedonot allow our third-party service providers touse your personal data for their own purposes and only permit them toprocess your personal data for specified purposes and inaccordance with our instructions ## 6 International transfers\\nWedonot currently transfer your personal data outside the European Economic Area (EEA)\",\n", + " \"Ifinthe future wewere totransfer your personal data out ofthe EEA, wewould ensure asimilar degree ofprotection isafforded toitbyensuring atleast one ofthe following safeguards isimplemented:\\n* Wewill only transfer your personal data tocountries that have been deemed toprovide anadequate level ofprotection for personal data bythe European Commission * Where weuse certain service providers, wemay use specific contracts approved bythe European Commission which give personal data the same protection ithas inEurope Please contactus ifyou want further information onthe specific mechanism used byus when transferring your personal data out ofthe EEA ## 7 Data security\\nWehave put inplace appropriate security measures toprevent your personal data from being accidentally lost, used oraccessed inanunauthorised way, altered ordisclosed Inaddition, welimit access toyour personal data tothose employees, agents, contractors and other third parties who have abusiness need toknow They will only process your personal data onour instructions and they are subject toaduty ofconfidentiality Wehave put inplace procedures todeal with any suspected personal data breach and will notify you and any applicable regulator ofabreach where weare legally required todoso ## 8 Data retention\\n### How long will you use mypersonal data for Wewill only retain your personal data for aslong asreasonably necessary tofulfil the purposes wecollected itfor, including for the purposes ofsatisfying any legal, regulatory, tax, accounting orreporting requirements Wemay retain your personal data for alonger period inthe event ofacomplaint orifwereasonably believe there isaprospect oflitigation inrespect toour relationship with you Todetermine the appropriate retention period for personal data, weconsider the amount, nature and sensitivity ofthe personal data, the potential risk ofharm from unauthorised use ordisclosure ofyour personal data, the purposes for which weprocess your personal data and whether wecan achieve those purposes through other means, and the applicable legal, regulatory, tax, accounting orother requirements Bylaw wehave tokeep basic information about our customers (including Contact, Identity, Financial and Transaction Data) for six years after they cease being customers for tax purposes Insome circumstances you can askus todelete your data: see your legal rights below for further information\",\n", + " \"Insome circumstances wewill anonymise your personal data (sothat itcan nolonger beassociated with you) for research orstatistical purposes, inwhich case wemay use this information indefinitely without further notice toyou ## 9 Your legal rights\\nUnder certain circumstances, you have rights under data protection laws inrelation toyour personal data You have the rightto:\\n* **Request access**toyour personal data (commonly known asa««data subject access request»») This enables you toreceive acopy ofthe personal data wehold about you and tocheck that weare lawfully processingit * **Request correction**ofthe personal data that wehold about you This enables you tohave any incomplete orinaccurate data wehold about you corrected, though wemay need toverify the accuracy ofthe new data you provide tous * **Request erasure**ofyour personal data This enables you toaskus todelete orremove personal data where there isnogood reason forus continuing toprocessit You also have the right toaskus todelete orremove your personal data where you have successfullyexercised your right toobject toprocessing (see below), where wemay have processed your information unlawfully orwhere weare required toerase your personal data tocomply with local law Note, however, that wemay not always beable tocomply with your request oferasure for specific legal reasons which will benotified toyou, ifapplicable, atthe time ofyour request * **Object toprocessing**ofyour personal data where weare relying onalegitimate interest (orthose ofathird party) and there issomething about your particular situation which makes you want toobject toprocessing onthis ground asyou feel itimpacts onyour fundamental rights and freedoms You also have the right toobject where weare processing your personal data for direct marketing purposes Insome cases, wemay demonstrate that wehave compelling legitimate grounds toprocess your information which override your rights and freedoms * **Request restriction ofprocessing**ofyour personal data\",\n", + " \"This enables you toaskus tosuspend the processing ofyour personal data inthe following scenarios:\\n1 Ifyou wantus toestablish the data’’s accuracy 2 Where our use ofthe data isunlawful but you donot wantus toeraseit 3 Where you needus tohold the data even ifwenolonger require itasyou need ittoestablish, exercise ordefend legal claims 4 You have objected toour use ofyour data but weneed toverify whether wehave overriding legitimate grounds touseit 5 **Request the transfer**ofyour personal data toyou ortoathird party Wewill provide toyou, orathird party you have chosen, your personal data inastructured, commonly used, machine-readable format Note that this right only applies toautomated information which you initially provided consent forus touse orwhere weused the information toperform acontract with you 6 **Withdraw consent atany time**where weare relying onconsent toprocess your personal data However, this will not affect the lawfulness ofany processing carried out before you withdraw your consent\",\n", + " \"Ifyou withdraw your consent, wemay not beable toprovide certain products orservices toyou Wewill advise you ifthis isthe case atthe time you withdraw your consent Ifyou wish toexercise any ofthe rights set out above, please contactus ### No fee usually required\\nYou will not have topay afee toaccess your personal data (ortoexercise any ofthe other rights) However, wemay charge areasonable fee ifyour request isclearly unfounded, repetitive orexcessive Alternatively, wecould refuse tocomply with your request inthese circumstances ### What we may need from you\\nWemay need torequest specific information from you tohelpus confirm your identity and ensure your right toaccess your personal data (ortoexercise any ofyour other rights) This isasecurity measure toensure that personal data isnot disclosed toany person who has noright toreceiveit Wemay also contact you toask you for further information inrelation toyour request tospeed upour response ### Time limit to respond\\nWetry torespond toall legitimate requests within one month Occasionally itcould takeus longer than amonth ifyour request isparticularly complex oryou have made anumber ofrequests Inthis case, wewill notify you and keep you updated ## 10 Glossary\\n**Legitimate Interest**means the interest ofour business inconducting and managing our business toenableus togive you the best service/product and the best and most secure experience Wemake sure weconsider and balance any potential impact onyou (both positive and negative) and your rights before weprocess your personal data for our legitimate interests\",\n", + " \"Wedonot use your personal data for activities where our interests are overridden bythe impact onyou (unless wehave your consent orare otherwise required orpermitted tobylaw) You can obtain further information about how weassess our legitimate interests against any potential impact onyou inrespect ofspecific activities bycontactingus **Performance ofContract**means processing your data where itisnecessary for the performance ofacontract towhich you are aparty ortotake steps atyour request before entering into such acontract **Comply with alegal obligation**means processing your personal data where itisnecessary for compliance with alegal obligation that weare subjectto **External Third Parties**\\n* Service providers acting asprocessors who provideIT and system administration services * Providers ofour cloud services including AWS and Google * Professional advisers acting asprocessors orjoint controllers including lawyers, bankers, auditors and insurers based inthe United Kingdom who provide consultancy, banking, legal, insurance and accounting services * Regulators and other authorities acting asprocessors orjoint controllers based inthe United Kingdom who require reporting ofprocessing activities incertain circumstances * Our third party partners and affiliates who may manage your customer relationship onour behalf * Stripe for payment management ## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved\",\n", + " \"* [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"* Where weneed tocomply with alegal obligation Generally, wedonot rely onconsent asalegal basis for processing your personal data although wewill get your consent before sending direct marketing communications toyou You have the right towithdraw consent tomarketing atany time bycontactingus ### Purposes for which wewill use your personal data\\nWehave set out below, inatable format, adescription ofall the ways weplan touse your personal data, and which ofthe legal bases werely ontodoso Wehave also identified what our legitimate interests are where appropriate Note that wemay process your personal data for more than one lawful ground depending onthe specific purpose for which weare using your data Please contactus ifyou need details about the specific legal ground weare relying ontoprocess your personal data where more than one ground has been set out inthe table below * **Purpose/Activity**\\n* **Type of data**\\n* **Lawful basis for processing including basis oflegitimate interest**\\n* Toregister you asacustomer\\n* 1 a Identity\\n2 b Contact\\n3 Performance ofacontract with you\\n* Toprocess your order including:\\n1 a Manage payments, fees and charges\\n2\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 143 Type: finish_branch\n", + "output: \"The chunk is part of QuickBlox's privacy policy, specifically detailing how the company collects and uses personal data. It outlines the methods of data collection, including direct interactions and automated technologies, and the circumstances under which personal data is used, such as fulfilling contracts and legitimate interests. This section is crucial for understanding QuickBlox's data handling practices and user privacy rights.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 144 Type: finish_branch\n", + "output: \"This chunk provides an overview of QuickBlox's product offerings, including communication tools, AI features, and white-label solutions, alongside resources for developers, support, and enterprise services. It includes links to their SDKs, APIs, and various industry solutions, as well as contact and privacy policy information.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 145 Type: finish_branch\n", + "output: \"This chunk is part of QuickBlox's privacy policy, detailing the types of personal data collected, including identity, contact, technical, profile, usage, and marketing data. It also explains the consequences of failing to provide required personal data, emphasizing the importance of data collection for contractual and legal obligations.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 146 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Privacy Policy\\nLast updated: 27/03/2023\\n## INTRODUCTION\\nQuickBlox respects your privacy and iscommitted toprotecting your personal data This privacy policy will inform you astohow welook after your personal data when you access our services and tell you about your privacy rights and how the law protects you Please also use the Glossary tounderstand the meaning ofsome ofthe terms used inthis privacy policy ## 1 Important information and who we are\\n### Purpose ofthis privacy policy\\nThis privacy policy aims togive you information onhow QuickBlox collects and processes your personal data through your use ofour services, including any data you may provide through this website when you sign upto, orpurchase one ofour products orservices Itisimportant that you read this privacy policy together with any other privacy policy orfair processing policy wemay provide onspecific occasions when weare collecting, orprocessing, personal data about you, sothat you are fully aware ofhow and why weare using your data This privacy policy supplements other notices and privacy policies and isnot intended tooverride them ### Controller\\nInjoit Limited isthe controller and isresponsible for your personal data (collectively referred toasQuickBlox, ««we»»,««us»» or««our»» inthis privacy policy) Wehave appointed adata privacy manager who isresponsible for overseeing questions inrelation tothis privacy policy Ifyou have any questions about this privacy policy, including any requests toexercise your legal rights, please contact the data privacy manager using the details set out below ### Contact details\\nIf you have any questions about this privacy policy or our privacy practices, please contact our data privacy manager in the following ways:\\n* **Full name of legal entity:**\\n* **Email address:**\\n* **Telephone number:**\\n* Injoit Limited\\n* [gdpr@quickblox.com](mailto:gdpr@quickblox.com)\\n* [+1 415 755 8221]()\\nYou have the right tomake acomplaint atany time tothe Information Commissioner’’s Office (ICO), theUK supervisory authority for data protection issues (www.ico.org.uk) Wewould, however, appreciate the chance todeal with your concerns before you approach the ICO soplease contactus inthe first instance ### Changes tothe privacy policy and your duty toinformus ofchanges\\nWekeep our privacy policy under regular review Itisimportant that the personal data wehold about you isaccurate and current Please keepus informed ifyour personal data changes during your relationship withus\",\n", + " \"## 2 The data wecollect about you\\nPersonal data, orpersonal information, means any information about anindividual from which that person can beidentified Itdoes not include data where the identity has been removed (anonymous data) Wemay collect, use, store and transfer different kinds ofpersonal data about you which wehave grouped together asfollows:\\n* **Identity Data**which includes first name, maiden name, last name, username orsimilar identifier, title * **Contact Data**which includes billing address, home address, email address and telephone numbers * **Technical Data**which includes your internet protocol (IP) address, your login data, browser type and version, hardware information, time zone setting and location, browser plug-in types and versions, operating system and platform, and other technology onthe devices you use toaccess our platform * **Profile Data**which includes your username and password, purchases ororders made byyou, your interests, preferences, feedback and survey responses * **Usage Data**which includes information about how you use our platform, products and services * **Marketing and Communications Data**which includes your preferences inreceiving marketing fromus and our third parties and your communication preferences Wealso collect, use and share**Aggregated**Data such asstatistical ordemographic data for any purpose Aggregated Data could bederived from your personal data but isnot considered personal data inlaw asthis data will not directly orindirectly reveal your identity ### Ifyou fail toprovide personal data\\nWhere weneed tocollect personal data bylaw, orunder the terms ofacontract wehave with you, and you fail toprovide that data when requested, wemay not beable toperform the contract wehave orare trying toenter into with you (for example, toprovide you with our products orservices) Inthis case, wemay have tocancel aproduct orservice you have withus, but wewill notify you ifthis isthe case atthe time ## 3 How isyour personal data collected\",\n", + " \"Weuse different methods tocollect data from and about you including through:\\n* **Direct interactions.**You may giveus your Identity, Contact and Financial Data byfilling informs orbycorresponding withus bypost, phone, email orotherwise This includes personal data you provide when you:\\n1 apply for our products orservices;\\n2 create anaccount withus;\\n3 subscribe toour service;\\n4 request marketing tobesent toyou;\\n5 enter apromotion orsurvey; or\\n6 giveus feedback orcontactus 7 **Automated technologies**orinteractions Asyou interact with our Platform, wewill automatically collect Technical Data about your equipment, browsing actions and patterns Wecollect this personal data byusing cookies, server logs and other similar technologies.## 4 How weuse your personal data\\nWewill only use your personal data when the law allowsus to Most commonly, wewill use your personal data inthe following circumstances:\\n* Where weneed toperform the contract weare about toenter into orhave entered into with you * Where itisnecessary for our legitimate interests (orthose ofathird party) and your interests and fundamental rights donot override those interests\",\n", + " \"* Where weneed tocomply with alegal obligation Generally, wedonot rely onconsent asalegal basis for processing your personal data although wewill get your consent before sending direct marketing communications toyou You have the right towithdraw consent tomarketing atany time bycontactingus ### Purposes for which wewill use your personal data\\nWehave set out below, inatable format, adescription ofall the ways weplan touse your personal data, and which ofthe legal bases werely ontodoso Wehave also identified what our legitimate interests are where appropriate Note that wemay process your personal data for more than one lawful ground depending onthe specific purpose for which weare using your data Please contactus ifyou need details about the specific legal ground weare relying ontoprocess your personal data where more than one ground has been set out inthe table below * **Purpose/Activity**\\n* **Type of data**\\n* **Lawful basis for processing including basis oflegitimate interest**\\n* Toregister you asacustomer\\n* 1 a Identity\\n2 b Contact\\n3 Performance ofacontract with you\\n* Toprocess your order including:\\n1 a Manage payments, fees and charges\\n2\",\n", + " \"b Collect and recover money owed tous\\n3 1 a Identity\\n2 b Contact\\n3 c Financial\\n4 d Transaction\\n5 e Marketingand Communications\\n6 1 a\",\n", + " \"Performance ofacontract with you\\n2 b Necessary for our legitimate interests (torecover debts due tous)\\n* Tomanage our relationship with you which will include:\\n1 a Notifying you about changes toour terms orprivacy policy\\n2 b Asking you toleave areview ortake asurvey\\n3 1 a Identity\\n2 b Contact\\n3 c Profile\\n4 d\",\n", + " \"Marketingand Communications\\n5 1 a Performance of a contract with you\\n2 b Necessary to comply with a legal obligation\\n3 c Necessary for our legitimate interests (to keep our records updated and to study how customers use our products/services)\\n* Toadminister and protect our business and our services (including troubleshooting, data analysis, testing, system maintenance, support, reporting and hosting ofdata)\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4 1\",\n", + " \"a Necessary for our legitimate interests (for running our business, provision ofadministration andIT services, network security, toprevent fraud and inthe context ofabusiness reorganisation orgroup restructuring exercise)\\n2 b Necessary tocomply with alegal obligation\\n* Touse data analytics toimprove our platform, products/services, marketing, customer relationships and experiences\\n* 1 a Technical\\n2 b Usage\\n3 Necessary for our legitimate interests (todefine types ofcustomers for our products and services, tokeep our services updated and relevant, todevelop our business and toinform our marketing strategy)\\n* Tomake suggestions and recommendations toyou about goods orservices that may beofinterest toyou\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4\",\n", + " \"d Usage\\n5 e Profile\\n6 f Marketingand Communications\\n7 Necessary for our legitimate interests (todevelop our products/services and grow our business)\\n### Marketing\\nWestrive toprovide you with choices regarding certain personal data uses, particularly around marketing and advertising ### Promotional offers fromus\\nWemay use your Identity, Contact, Technical, Usage and Profile Data toform aview onwhat wethink you may want orneed, orwhat may beofinterest toyou This ishow wedecide which products, services and offers may berelevant for you You will receive marketing communications fromus ifyou have requested information fromus orpurchased products orservices fromus and you have not opted out ofreceiving that marketing ### Third-party marketing\\nWewill get your express opt-in consent before weshare your personal data with any third party for marketing purposes ### Opting out\\nYou can askus orthird parties tostop sending you marketing messages atany time Where you opt out ofreceiving these marketing messages, this will not apply topersonal data provided tous asaresult ofaproduct/service purchase, product/service experience orother transactions ### Cookies\\nYou can set your browser torefuse all orsome browser cookies, ortoalert you when services set oraccess cookies Ifyou disable orrefuse cookies, please note that some parts ofour platform may become inaccessible ornot function properly\",\n", + " \"For more information about the cookies weuse, please see Cooklie Policy ### Change of purpose\\nWewill only use your personal data for the purposes for which wecollectedit, unless wereasonably consider that weneed touse itfor another reason and that reason iscompatible with the original purpose Ifyou wish toget anexplanation astohow the processing for the new purpose iscompatible with the original purpose, please contactus Ifweneed touse your personal data for anunrelated purpose, wewill notify you and wewill explain the legal basis which allowsus todoso Please note that wemay process your personal data without your knowledge orconsent, incompliance with the above rules, where this isrequired orpermitted bylaw ## 5 Disclosures ofyour personal data\\nWemay share your personal data with the parties set out below for the purposes set out inthe table ««Purposes for which wewill use your personal data»» above * External Third Parties asset out inthe Glossary * Third parties towhom wemay choose tosell, transfer ormerge parts ofour business orour assets Alternatively, wemay seek toacquire other businesses ormerge with them Ifachange happens toour business, then the new owners may use your personal data inthe same way asset out inthis privacy policy Werequire all third parties torespect the security ofyour personal data and totreat itinaccordance with the law Wedonot allow our third-party service providers touse your personal data for their own purposes and only permit them toprocess your personal data for specified purposes and inaccordance with our instructions ## 6 International transfers\\nWedonot currently transfer your personal data outside the European Economic Area (EEA)\",\n", + " \"Ifinthe future wewere totransfer your personal data out ofthe EEA, wewould ensure asimilar degree ofprotection isafforded toitbyensuring atleast one ofthe following safeguards isimplemented:\\n* Wewill only transfer your personal data tocountries that have been deemed toprovide anadequate level ofprotection for personal data bythe European Commission * Where weuse certain service providers, wemay use specific contracts approved bythe European Commission which give personal data the same protection ithas inEurope Please contactus ifyou want further information onthe specific mechanism used byus when transferring your personal data out ofthe EEA ## 7 Data security\\nWehave put inplace appropriate security measures toprevent your personal data from being accidentally lost, used oraccessed inanunauthorised way, altered ordisclosed Inaddition, welimit access toyour personal data tothose employees, agents, contractors and other third parties who have abusiness need toknow They will only process your personal data onour instructions and they are subject toaduty ofconfidentiality Wehave put inplace procedures todeal with any suspected personal data breach and will notify you and any applicable regulator ofabreach where weare legally required todoso ## 8 Data retention\\n### How long will you use mypersonal data for Wewill only retain your personal data for aslong asreasonably necessary tofulfil the purposes wecollected itfor, including for the purposes ofsatisfying any legal, regulatory, tax, accounting orreporting requirements Wemay retain your personal data for alonger period inthe event ofacomplaint orifwereasonably believe there isaprospect oflitigation inrespect toour relationship with you Todetermine the appropriate retention period for personal data, weconsider the amount, nature and sensitivity ofthe personal data, the potential risk ofharm from unauthorised use ordisclosure ofyour personal data, the purposes for which weprocess your personal data and whether wecan achieve those purposes through other means, and the applicable legal, regulatory, tax, accounting orother requirements Bylaw wehave tokeep basic information about our customers (including Contact, Identity, Financial and Transaction Data) for six years after they cease being customers for tax purposes Insome circumstances you can askus todelete your data: see your legal rights below for further information\",\n", + " \"Insome circumstances wewill anonymise your personal data (sothat itcan nolonger beassociated with you) for research orstatistical purposes, inwhich case wemay use this information indefinitely without further notice toyou ## 9 Your legal rights\\nUnder certain circumstances, you have rights under data protection laws inrelation toyour personal data You have the rightto:\\n* **Request access**toyour personal data (commonly known asa««data subject access request»») This enables you toreceive acopy ofthe personal data wehold about you and tocheck that weare lawfully processingit * **Request correction**ofthe personal data that wehold about you This enables you tohave any incomplete orinaccurate data wehold about you corrected, though wemay need toverify the accuracy ofthe new data you provide tous * **Request erasure**ofyour personal data This enables you toaskus todelete orremove personal data where there isnogood reason forus continuing toprocessit You also have the right toaskus todelete orremove your personal data where you have successfullyexercised your right toobject toprocessing (see below), where wemay have processed your information unlawfully orwhere weare required toerase your personal data tocomply with local law Note, however, that wemay not always beable tocomply with your request oferasure for specific legal reasons which will benotified toyou, ifapplicable, atthe time ofyour request * **Object toprocessing**ofyour personal data where weare relying onalegitimate interest (orthose ofathird party) and there issomething about your particular situation which makes you want toobject toprocessing onthis ground asyou feel itimpacts onyour fundamental rights and freedoms You also have the right toobject where weare processing your personal data for direct marketing purposes Insome cases, wemay demonstrate that wehave compelling legitimate grounds toprocess your information which override your rights and freedoms * **Request restriction ofprocessing**ofyour personal data\",\n", + " \"This enables you toaskus tosuspend the processing ofyour personal data inthe following scenarios:\\n1 Ifyou wantus toestablish the data’’s accuracy 2 Where our use ofthe data isunlawful but you donot wantus toeraseit 3 Where you needus tohold the data even ifwenolonger require itasyou need ittoestablish, exercise ordefend legal claims 4 You have objected toour use ofyour data but weneed toverify whether wehave overriding legitimate grounds touseit 5 **Request the transfer**ofyour personal data toyou ortoathird party Wewill provide toyou, orathird party you have chosen, your personal data inastructured, commonly used, machine-readable format Note that this right only applies toautomated information which you initially provided consent forus touse orwhere weused the information toperform acontract with you 6 **Withdraw consent atany time**where weare relying onconsent toprocess your personal data However, this will not affect the lawfulness ofany processing carried out before you withdraw your consent\",\n", + " \"Ifyou withdraw your consent, wemay not beable toprovide certain products orservices toyou Wewill advise you ifthis isthe case atthe time you withdraw your consent Ifyou wish toexercise any ofthe rights set out above, please contactus ### No fee usually required\\nYou will not have topay afee toaccess your personal data (ortoexercise any ofthe other rights) However, wemay charge areasonable fee ifyour request isclearly unfounded, repetitive orexcessive Alternatively, wecould refuse tocomply with your request inthese circumstances ### What we may need from you\\nWemay need torequest specific information from you tohelpus confirm your identity and ensure your right toaccess your personal data (ortoexercise any ofyour other rights) This isasecurity measure toensure that personal data isnot disclosed toany person who has noright toreceiveit Wemay also contact you toask you for further information inrelation toyour request tospeed upour response ### Time limit to respond\\nWetry torespond toall legitimate requests within one month Occasionally itcould takeus longer than amonth ifyour request isparticularly complex oryou have made anumber ofrequests Inthis case, wewill notify you and keep you updated ## 10 Glossary\\n**Legitimate Interest**means the interest ofour business inconducting and managing our business toenableus togive you the best service/product and the best and most secure experience Wemake sure weconsider and balance any potential impact onyou (both positive and negative) and your rights before weprocess your personal data for our legitimate interests\",\n", + " \"Wedonot use your personal data for activities where our interests are overridden bythe impact onyou (unless wehave your consent orare otherwise required orpermitted tobylaw) You can obtain further information about how weassess our legitimate interests against any potential impact onyou inrespect ofspecific activities bycontactingus **Performance ofContract**means processing your data where itisnecessary for the performance ofacontract towhich you are aparty ortotake steps atyour request before entering into such acontract **Comply with alegal obligation**means processing your personal data where itisnecessary for compliance with alegal obligation that weare subjectto **External Third Parties**\\n* Service providers acting asprocessors who provideIT and system administration services * Providers ofour cloud services including AWS and Google * Professional advisers acting asprocessors orjoint controllers including lawyers, bankers, auditors and insurers based inthe United Kingdom who provide consultancy, banking, legal, insurance and accounting services * Regulators and other authorities acting asprocessors orjoint controllers based inthe United Kingdom who require reporting ofprocessing activities incertain circumstances * Our third party partners and affiliates who may manage your customer relationship onour behalf * Stripe for payment management ## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved\",\n", + " \"* [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"## 2 The data wecollect about you\\nPersonal data, orpersonal information, means any information about anindividual from which that person can beidentified Itdoes not include data where the identity has been removed (anonymous data) Wemay collect, use, store and transfer different kinds ofpersonal data about you which wehave grouped together asfollows:\\n* **Identity Data**which includes first name, maiden name, last name, username orsimilar identifier, title * **Contact Data**which includes billing address, home address, email address and telephone numbers * **Technical Data**which includes your internet protocol (IP) address, your login data, browser type and version, hardware information, time zone setting and location, browser plug-in types and versions, operating system and platform, and other technology onthe devices you use toaccess our platform * **Profile Data**which includes your username and password, purchases ororders made byyou, your interests, preferences, feedback and survey responses * **Usage Data**which includes information about how you use our platform, products and services * **Marketing and Communications Data**which includes your preferences inreceiving marketing fromus and our third parties and your communication preferences Wealso collect, use and share**Aggregated**Data such asstatistical ordemographic data for any purpose Aggregated Data could bederived from your personal data but isnot considered personal data inlaw asthis data will not directly orindirectly reveal your identity ### Ifyou fail toprovide personal data\\nWhere weneed tocollect personal data bylaw, orunder the terms ofacontract wehave with you, and you fail toprovide that data when requested, wemay not beable toperform the contract wehave orare trying toenter into with you (for example, toprovide you with our products orservices) Inthis case, wemay have tocancel aproduct orservice you have withus, but wewill notify you ifthis isthe case atthe time ## 3 How isyour personal data collected\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 147 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Privacy Policy\\nLast updated: 27/03/2023\\n## INTRODUCTION\\nQuickBlox respects your privacy and iscommitted toprotecting your personal data This privacy policy will inform you astohow welook after your personal data when you access our services and tell you about your privacy rights and how the law protects you Please also use the Glossary tounderstand the meaning ofsome ofthe terms used inthis privacy policy ## 1 Important information and who we are\\n### Purpose ofthis privacy policy\\nThis privacy policy aims togive you information onhow QuickBlox collects and processes your personal data through your use ofour services, including any data you may provide through this website when you sign upto, orpurchase one ofour products orservices Itisimportant that you read this privacy policy together with any other privacy policy orfair processing policy wemay provide onspecific occasions when weare collecting, orprocessing, personal data about you, sothat you are fully aware ofhow and why weare using your data This privacy policy supplements other notices and privacy policies and isnot intended tooverride them ### Controller\\nInjoit Limited isthe controller and isresponsible for your personal data (collectively referred toasQuickBlox, ««we»»,««us»» or««our»» inthis privacy policy) Wehave appointed adata privacy manager who isresponsible for overseeing questions inrelation tothis privacy policy Ifyou have any questions about this privacy policy, including any requests toexercise your legal rights, please contact the data privacy manager using the details set out below ### Contact details\\nIf you have any questions about this privacy policy or our privacy practices, please contact our data privacy manager in the following ways:\\n* **Full name of legal entity:**\\n* **Email address:**\\n* **Telephone number:**\\n* Injoit Limited\\n* [gdpr@quickblox.com](mailto:gdpr@quickblox.com)\\n* [+1 415 755 8221]()\\nYou have the right tomake acomplaint atany time tothe Information Commissioner’’s Office (ICO), theUK supervisory authority for data protection issues (www.ico.org.uk) Wewould, however, appreciate the chance todeal with your concerns before you approach the ICO soplease contactus inthe first instance ### Changes tothe privacy policy and your duty toinformus ofchanges\\nWekeep our privacy policy under regular review Itisimportant that the personal data wehold about you isaccurate and current Please keepus informed ifyour personal data changes during your relationship withus\",\n", + " \"## 2 The data wecollect about you\\nPersonal data, orpersonal information, means any information about anindividual from which that person can beidentified Itdoes not include data where the identity has been removed (anonymous data) Wemay collect, use, store and transfer different kinds ofpersonal data about you which wehave grouped together asfollows:\\n* **Identity Data**which includes first name, maiden name, last name, username orsimilar identifier, title * **Contact Data**which includes billing address, home address, email address and telephone numbers * **Technical Data**which includes your internet protocol (IP) address, your login data, browser type and version, hardware information, time zone setting and location, browser plug-in types and versions, operating system and platform, and other technology onthe devices you use toaccess our platform * **Profile Data**which includes your username and password, purchases ororders made byyou, your interests, preferences, feedback and survey responses * **Usage Data**which includes information about how you use our platform, products and services * **Marketing and Communications Data**which includes your preferences inreceiving marketing fromus and our third parties and your communication preferences Wealso collect, use and share**Aggregated**Data such asstatistical ordemographic data for any purpose Aggregated Data could bederived from your personal data but isnot considered personal data inlaw asthis data will not directly orindirectly reveal your identity ### Ifyou fail toprovide personal data\\nWhere weneed tocollect personal data bylaw, orunder the terms ofacontract wehave with you, and you fail toprovide that data when requested, wemay not beable toperform the contract wehave orare trying toenter into with you (for example, toprovide you with our products orservices) Inthis case, wemay have tocancel aproduct orservice you have withus, but wewill notify you ifthis isthe case atthe time ## 3 How isyour personal data collected\",\n", + " \"Weuse different methods tocollect data from and about you including through:\\n* **Direct interactions.**You may giveus your Identity, Contact and Financial Data byfilling informs orbycorresponding withus bypost, phone, email orotherwise This includes personal data you provide when you:\\n1 apply for our products orservices;\\n2 create anaccount withus;\\n3 subscribe toour service;\\n4 request marketing tobesent toyou;\\n5 enter apromotion orsurvey; or\\n6 giveus feedback orcontactus 7 **Automated technologies**orinteractions Asyou interact with our Platform, wewill automatically collect Technical Data about your equipment, browsing actions and patterns Wecollect this personal data byusing cookies, server logs and other similar technologies.## 4 How weuse your personal data\\nWewill only use your personal data when the law allowsus to Most commonly, wewill use your personal data inthe following circumstances:\\n* Where weneed toperform the contract weare about toenter into orhave entered into with you * Where itisnecessary for our legitimate interests (orthose ofathird party) and your interests and fundamental rights donot override those interests\",\n", + " \"* Where weneed tocomply with alegal obligation Generally, wedonot rely onconsent asalegal basis for processing your personal data although wewill get your consent before sending direct marketing communications toyou You have the right towithdraw consent tomarketing atany time bycontactingus ### Purposes for which wewill use your personal data\\nWehave set out below, inatable format, adescription ofall the ways weplan touse your personal data, and which ofthe legal bases werely ontodoso Wehave also identified what our legitimate interests are where appropriate Note that wemay process your personal data for more than one lawful ground depending onthe specific purpose for which weare using your data Please contactus ifyou need details about the specific legal ground weare relying ontoprocess your personal data where more than one ground has been set out inthe table below * **Purpose/Activity**\\n* **Type of data**\\n* **Lawful basis for processing including basis oflegitimate interest**\\n* Toregister you asacustomer\\n* 1 a Identity\\n2 b Contact\\n3 Performance ofacontract with you\\n* Toprocess your order including:\\n1 a Manage payments, fees and charges\\n2\",\n", + " \"b Collect and recover money owed tous\\n3 1 a Identity\\n2 b Contact\\n3 c Financial\\n4 d Transaction\\n5 e Marketingand Communications\\n6 1 a\",\n", + " \"Performance ofacontract with you\\n2 b Necessary for our legitimate interests (torecover debts due tous)\\n* Tomanage our relationship with you which will include:\\n1 a Notifying you about changes toour terms orprivacy policy\\n2 b Asking you toleave areview ortake asurvey\\n3 1 a Identity\\n2 b Contact\\n3 c Profile\\n4 d\",\n", + " \"Marketingand Communications\\n5 1 a Performance of a contract with you\\n2 b Necessary to comply with a legal obligation\\n3 c Necessary for our legitimate interests (to keep our records updated and to study how customers use our products/services)\\n* Toadminister and protect our business and our services (including troubleshooting, data analysis, testing, system maintenance, support, reporting and hosting ofdata)\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4 1\",\n", + " \"a Necessary for our legitimate interests (for running our business, provision ofadministration andIT services, network security, toprevent fraud and inthe context ofabusiness reorganisation orgroup restructuring exercise)\\n2 b Necessary tocomply with alegal obligation\\n* Touse data analytics toimprove our platform, products/services, marketing, customer relationships and experiences\\n* 1 a Technical\\n2 b Usage\\n3 Necessary for our legitimate interests (todefine types ofcustomers for our products and services, tokeep our services updated and relevant, todevelop our business and toinform our marketing strategy)\\n* Tomake suggestions and recommendations toyou about goods orservices that may beofinterest toyou\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4\",\n", + " \"d Usage\\n5 e Profile\\n6 f Marketingand Communications\\n7 Necessary for our legitimate interests (todevelop our products/services and grow our business)\\n### Marketing\\nWestrive toprovide you with choices regarding certain personal data uses, particularly around marketing and advertising ### Promotional offers fromus\\nWemay use your Identity, Contact, Technical, Usage and Profile Data toform aview onwhat wethink you may want orneed, orwhat may beofinterest toyou This ishow wedecide which products, services and offers may berelevant for you You will receive marketing communications fromus ifyou have requested information fromus orpurchased products orservices fromus and you have not opted out ofreceiving that marketing ### Third-party marketing\\nWewill get your express opt-in consent before weshare your personal data with any third party for marketing purposes ### Opting out\\nYou can askus orthird parties tostop sending you marketing messages atany time Where you opt out ofreceiving these marketing messages, this will not apply topersonal data provided tous asaresult ofaproduct/service purchase, product/service experience orother transactions ### Cookies\\nYou can set your browser torefuse all orsome browser cookies, ortoalert you when services set oraccess cookies Ifyou disable orrefuse cookies, please note that some parts ofour platform may become inaccessible ornot function properly\",\n", + " \"For more information about the cookies weuse, please see Cooklie Policy ### Change of purpose\\nWewill only use your personal data for the purposes for which wecollectedit, unless wereasonably consider that weneed touse itfor another reason and that reason iscompatible with the original purpose Ifyou wish toget anexplanation astohow the processing for the new purpose iscompatible with the original purpose, please contactus Ifweneed touse your personal data for anunrelated purpose, wewill notify you and wewill explain the legal basis which allowsus todoso Please note that wemay process your personal data without your knowledge orconsent, incompliance with the above rules, where this isrequired orpermitted bylaw ## 5 Disclosures ofyour personal data\\nWemay share your personal data with the parties set out below for the purposes set out inthe table ««Purposes for which wewill use your personal data»» above * External Third Parties asset out inthe Glossary * Third parties towhom wemay choose tosell, transfer ormerge parts ofour business orour assets Alternatively, wemay seek toacquire other businesses ormerge with them Ifachange happens toour business, then the new owners may use your personal data inthe same way asset out inthis privacy policy Werequire all third parties torespect the security ofyour personal data and totreat itinaccordance with the law Wedonot allow our third-party service providers touse your personal data for their own purposes and only permit them toprocess your personal data for specified purposes and inaccordance with our instructions ## 6 International transfers\\nWedonot currently transfer your personal data outside the European Economic Area (EEA)\",\n", + " \"Ifinthe future wewere totransfer your personal data out ofthe EEA, wewould ensure asimilar degree ofprotection isafforded toitbyensuring atleast one ofthe following safeguards isimplemented:\\n* Wewill only transfer your personal data tocountries that have been deemed toprovide anadequate level ofprotection for personal data bythe European Commission * Where weuse certain service providers, wemay use specific contracts approved bythe European Commission which give personal data the same protection ithas inEurope Please contactus ifyou want further information onthe specific mechanism used byus when transferring your personal data out ofthe EEA ## 7 Data security\\nWehave put inplace appropriate security measures toprevent your personal data from being accidentally lost, used oraccessed inanunauthorised way, altered ordisclosed Inaddition, welimit access toyour personal data tothose employees, agents, contractors and other third parties who have abusiness need toknow They will only process your personal data onour instructions and they are subject toaduty ofconfidentiality Wehave put inplace procedures todeal with any suspected personal data breach and will notify you and any applicable regulator ofabreach where weare legally required todoso ## 8 Data retention\\n### How long will you use mypersonal data for Wewill only retain your personal data for aslong asreasonably necessary tofulfil the purposes wecollected itfor, including for the purposes ofsatisfying any legal, regulatory, tax, accounting orreporting requirements Wemay retain your personal data for alonger period inthe event ofacomplaint orifwereasonably believe there isaprospect oflitigation inrespect toour relationship with you Todetermine the appropriate retention period for personal data, weconsider the amount, nature and sensitivity ofthe personal data, the potential risk ofharm from unauthorised use ordisclosure ofyour personal data, the purposes for which weprocess your personal data and whether wecan achieve those purposes through other means, and the applicable legal, regulatory, tax, accounting orother requirements Bylaw wehave tokeep basic information about our customers (including Contact, Identity, Financial and Transaction Data) for six years after they cease being customers for tax purposes Insome circumstances you can askus todelete your data: see your legal rights below for further information\",\n", + " \"Insome circumstances wewill anonymise your personal data (sothat itcan nolonger beassociated with you) for research orstatistical purposes, inwhich case wemay use this information indefinitely without further notice toyou ## 9 Your legal rights\\nUnder certain circumstances, you have rights under data protection laws inrelation toyour personal data You have the rightto:\\n* **Request access**toyour personal data (commonly known asa««data subject access request»») This enables you toreceive acopy ofthe personal data wehold about you and tocheck that weare lawfully processingit * **Request correction**ofthe personal data that wehold about you This enables you tohave any incomplete orinaccurate data wehold about you corrected, though wemay need toverify the accuracy ofthe new data you provide tous * **Request erasure**ofyour personal data This enables you toaskus todelete orremove personal data where there isnogood reason forus continuing toprocessit You also have the right toaskus todelete orremove your personal data where you have successfullyexercised your right toobject toprocessing (see below), where wemay have processed your information unlawfully orwhere weare required toerase your personal data tocomply with local law Note, however, that wemay not always beable tocomply with your request oferasure for specific legal reasons which will benotified toyou, ifapplicable, atthe time ofyour request * **Object toprocessing**ofyour personal data where weare relying onalegitimate interest (orthose ofathird party) and there issomething about your particular situation which makes you want toobject toprocessing onthis ground asyou feel itimpacts onyour fundamental rights and freedoms You also have the right toobject where weare processing your personal data for direct marketing purposes Insome cases, wemay demonstrate that wehave compelling legitimate grounds toprocess your information which override your rights and freedoms * **Request restriction ofprocessing**ofyour personal data\",\n", + " \"This enables you toaskus tosuspend the processing ofyour personal data inthe following scenarios:\\n1 Ifyou wantus toestablish the data’’s accuracy 2 Where our use ofthe data isunlawful but you donot wantus toeraseit 3 Where you needus tohold the data even ifwenolonger require itasyou need ittoestablish, exercise ordefend legal claims 4 You have objected toour use ofyour data but weneed toverify whether wehave overriding legitimate grounds touseit 5 **Request the transfer**ofyour personal data toyou ortoathird party Wewill provide toyou, orathird party you have chosen, your personal data inastructured, commonly used, machine-readable format Note that this right only applies toautomated information which you initially provided consent forus touse orwhere weused the information toperform acontract with you 6 **Withdraw consent atany time**where weare relying onconsent toprocess your personal data However, this will not affect the lawfulness ofany processing carried out before you withdraw your consent\",\n", + " \"Ifyou withdraw your consent, wemay not beable toprovide certain products orservices toyou Wewill advise you ifthis isthe case atthe time you withdraw your consent Ifyou wish toexercise any ofthe rights set out above, please contactus ### No fee usually required\\nYou will not have topay afee toaccess your personal data (ortoexercise any ofthe other rights) However, wemay charge areasonable fee ifyour request isclearly unfounded, repetitive orexcessive Alternatively, wecould refuse tocomply with your request inthese circumstances ### What we may need from you\\nWemay need torequest specific information from you tohelpus confirm your identity and ensure your right toaccess your personal data (ortoexercise any ofyour other rights) This isasecurity measure toensure that personal data isnot disclosed toany person who has noright toreceiveit Wemay also contact you toask you for further information inrelation toyour request tospeed upour response ### Time limit to respond\\nWetry torespond toall legitimate requests within one month Occasionally itcould takeus longer than amonth ifyour request isparticularly complex oryou have made anumber ofrequests Inthis case, wewill notify you and keep you updated ## 10 Glossary\\n**Legitimate Interest**means the interest ofour business inconducting and managing our business toenableus togive you the best service/product and the best and most secure experience Wemake sure weconsider and balance any potential impact onyou (both positive and negative) and your rights before weprocess your personal data for our legitimate interests\",\n", + " \"Wedonot use your personal data for activities where our interests are overridden bythe impact onyou (unless wehave your consent orare otherwise required orpermitted tobylaw) You can obtain further information about how weassess our legitimate interests against any potential impact onyou inrespect ofspecific activities bycontactingus **Performance ofContract**means processing your data where itisnecessary for the performance ofacontract towhich you are aparty ortotake steps atyour request before entering into such acontract **Comply with alegal obligation**means processing your personal data where itisnecessary for compliance with alegal obligation that weare subjectto **External Third Parties**\\n* Service providers acting asprocessors who provideIT and system administration services * Providers ofour cloud services including AWS and Google * Professional advisers acting asprocessors orjoint controllers including lawyers, bankers, auditors and insurers based inthe United Kingdom who provide consultancy, banking, legal, insurance and accounting services * Regulators and other authorities acting asprocessors orjoint controllers based inthe United Kingdom who require reporting ofprocessing activities incertain circumstances * Our third party partners and affiliates who may manage your customer relationship onour behalf * Stripe for payment management ## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved\",\n", + " \"* [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"Weuse different methods tocollect data from and about you including through:\\n* **Direct interactions.**You may giveus your Identity, Contact and Financial Data byfilling informs orbycorresponding withus bypost, phone, email orotherwise This includes personal data you provide when you:\\n1 apply for our products orservices;\\n2 create anaccount withus;\\n3 subscribe toour service;\\n4 request marketing tobesent toyou;\\n5 enter apromotion orsurvey; or\\n6 giveus feedback orcontactus 7 **Automated technologies**orinteractions Asyou interact with our Platform, wewill automatically collect Technical Data about your equipment, browsing actions and patterns Wecollect this personal data byusing cookies, server logs and other similar technologies.## 4 How weuse your personal data\\nWewill only use your personal data when the law allowsus to Most commonly, wewill use your personal data inthe following circumstances:\\n* Where weneed toperform the contract weare about toenter into orhave entered into with you * Where itisnecessary for our legitimate interests (orthose ofathird party) and your interests and fundamental rights donot override those interests\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 148 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Privacy Policy\\nLast updated: 27/03/2023\\n## INTRODUCTION\\nQuickBlox respects your privacy and iscommitted toprotecting your personal data This privacy policy will inform you astohow welook after your personal data when you access our services and tell you about your privacy rights and how the law protects you Please also use the Glossary tounderstand the meaning ofsome ofthe terms used inthis privacy policy ## 1 Important information and who we are\\n### Purpose ofthis privacy policy\\nThis privacy policy aims togive you information onhow QuickBlox collects and processes your personal data through your use ofour services, including any data you may provide through this website when you sign upto, orpurchase one ofour products orservices Itisimportant that you read this privacy policy together with any other privacy policy orfair processing policy wemay provide onspecific occasions when weare collecting, orprocessing, personal data about you, sothat you are fully aware ofhow and why weare using your data This privacy policy supplements other notices and privacy policies and isnot intended tooverride them ### Controller\\nInjoit Limited isthe controller and isresponsible for your personal data (collectively referred toasQuickBlox, ««we»»,««us»» or««our»» inthis privacy policy) Wehave appointed adata privacy manager who isresponsible for overseeing questions inrelation tothis privacy policy Ifyou have any questions about this privacy policy, including any requests toexercise your legal rights, please contact the data privacy manager using the details set out below ### Contact details\\nIf you have any questions about this privacy policy or our privacy practices, please contact our data privacy manager in the following ways:\\n* **Full name of legal entity:**\\n* **Email address:**\\n* **Telephone number:**\\n* Injoit Limited\\n* [gdpr@quickblox.com](mailto:gdpr@quickblox.com)\\n* [+1 415 755 8221]()\\nYou have the right tomake acomplaint atany time tothe Information Commissioner’’s Office (ICO), theUK supervisory authority for data protection issues (www.ico.org.uk) Wewould, however, appreciate the chance todeal with your concerns before you approach the ICO soplease contactus inthe first instance ### Changes tothe privacy policy and your duty toinformus ofchanges\\nWekeep our privacy policy under regular review Itisimportant that the personal data wehold about you isaccurate and current Please keepus informed ifyour personal data changes during your relationship withus\",\n", + " \"## 2 The data wecollect about you\\nPersonal data, orpersonal information, means any information about anindividual from which that person can beidentified Itdoes not include data where the identity has been removed (anonymous data) Wemay collect, use, store and transfer different kinds ofpersonal data about you which wehave grouped together asfollows:\\n* **Identity Data**which includes first name, maiden name, last name, username orsimilar identifier, title * **Contact Data**which includes billing address, home address, email address and telephone numbers * **Technical Data**which includes your internet protocol (IP) address, your login data, browser type and version, hardware information, time zone setting and location, browser plug-in types and versions, operating system and platform, and other technology onthe devices you use toaccess our platform * **Profile Data**which includes your username and password, purchases ororders made byyou, your interests, preferences, feedback and survey responses * **Usage Data**which includes information about how you use our platform, products and services * **Marketing and Communications Data**which includes your preferences inreceiving marketing fromus and our third parties and your communication preferences Wealso collect, use and share**Aggregated**Data such asstatistical ordemographic data for any purpose Aggregated Data could bederived from your personal data but isnot considered personal data inlaw asthis data will not directly orindirectly reveal your identity ### Ifyou fail toprovide personal data\\nWhere weneed tocollect personal data bylaw, orunder the terms ofacontract wehave with you, and you fail toprovide that data when requested, wemay not beable toperform the contract wehave orare trying toenter into with you (for example, toprovide you with our products orservices) Inthis case, wemay have tocancel aproduct orservice you have withus, but wewill notify you ifthis isthe case atthe time ## 3 How isyour personal data collected\",\n", + " \"Weuse different methods tocollect data from and about you including through:\\n* **Direct interactions.**You may giveus your Identity, Contact and Financial Data byfilling informs orbycorresponding withus bypost, phone, email orotherwise This includes personal data you provide when you:\\n1 apply for our products orservices;\\n2 create anaccount withus;\\n3 subscribe toour service;\\n4 request marketing tobesent toyou;\\n5 enter apromotion orsurvey; or\\n6 giveus feedback orcontactus 7 **Automated technologies**orinteractions Asyou interact with our Platform, wewill automatically collect Technical Data about your equipment, browsing actions and patterns Wecollect this personal data byusing cookies, server logs and other similar technologies.## 4 How weuse your personal data\\nWewill only use your personal data when the law allowsus to Most commonly, wewill use your personal data inthe following circumstances:\\n* Where weneed toperform the contract weare about toenter into orhave entered into with you * Where itisnecessary for our legitimate interests (orthose ofathird party) and your interests and fundamental rights donot override those interests\",\n", + " \"* Where weneed tocomply with alegal obligation Generally, wedonot rely onconsent asalegal basis for processing your personal data although wewill get your consent before sending direct marketing communications toyou You have the right towithdraw consent tomarketing atany time bycontactingus ### Purposes for which wewill use your personal data\\nWehave set out below, inatable format, adescription ofall the ways weplan touse your personal data, and which ofthe legal bases werely ontodoso Wehave also identified what our legitimate interests are where appropriate Note that wemay process your personal data for more than one lawful ground depending onthe specific purpose for which weare using your data Please contactus ifyou need details about the specific legal ground weare relying ontoprocess your personal data where more than one ground has been set out inthe table below * **Purpose/Activity**\\n* **Type of data**\\n* **Lawful basis for processing including basis oflegitimate interest**\\n* Toregister you asacustomer\\n* 1 a Identity\\n2 b Contact\\n3 Performance ofacontract with you\\n* Toprocess your order including:\\n1 a Manage payments, fees and charges\\n2\",\n", + " \"b Collect and recover money owed tous\\n3 1 a Identity\\n2 b Contact\\n3 c Financial\\n4 d Transaction\\n5 e Marketingand Communications\\n6 1 a\",\n", + " \"Performance ofacontract with you\\n2 b Necessary for our legitimate interests (torecover debts due tous)\\n* Tomanage our relationship with you which will include:\\n1 a Notifying you about changes toour terms orprivacy policy\\n2 b Asking you toleave areview ortake asurvey\\n3 1 a Identity\\n2 b Contact\\n3 c Profile\\n4 d\",\n", + " \"Marketingand Communications\\n5 1 a Performance of a contract with you\\n2 b Necessary to comply with a legal obligation\\n3 c Necessary for our legitimate interests (to keep our records updated and to study how customers use our products/services)\\n* Toadminister and protect our business and our services (including troubleshooting, data analysis, testing, system maintenance, support, reporting and hosting ofdata)\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4 1\",\n", + " \"a Necessary for our legitimate interests (for running our business, provision ofadministration andIT services, network security, toprevent fraud and inthe context ofabusiness reorganisation orgroup restructuring exercise)\\n2 b Necessary tocomply with alegal obligation\\n* Touse data analytics toimprove our platform, products/services, marketing, customer relationships and experiences\\n* 1 a Technical\\n2 b Usage\\n3 Necessary for our legitimate interests (todefine types ofcustomers for our products and services, tokeep our services updated and relevant, todevelop our business and toinform our marketing strategy)\\n* Tomake suggestions and recommendations toyou about goods orservices that may beofinterest toyou\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4\",\n", + " \"d Usage\\n5 e Profile\\n6 f Marketingand Communications\\n7 Necessary for our legitimate interests (todevelop our products/services and grow our business)\\n### Marketing\\nWestrive toprovide you with choices regarding certain personal data uses, particularly around marketing and advertising ### Promotional offers fromus\\nWemay use your Identity, Contact, Technical, Usage and Profile Data toform aview onwhat wethink you may want orneed, orwhat may beofinterest toyou This ishow wedecide which products, services and offers may berelevant for you You will receive marketing communications fromus ifyou have requested information fromus orpurchased products orservices fromus and you have not opted out ofreceiving that marketing ### Third-party marketing\\nWewill get your express opt-in consent before weshare your personal data with any third party for marketing purposes ### Opting out\\nYou can askus orthird parties tostop sending you marketing messages atany time Where you opt out ofreceiving these marketing messages, this will not apply topersonal data provided tous asaresult ofaproduct/service purchase, product/service experience orother transactions ### Cookies\\nYou can set your browser torefuse all orsome browser cookies, ortoalert you when services set oraccess cookies Ifyou disable orrefuse cookies, please note that some parts ofour platform may become inaccessible ornot function properly\",\n", + " \"For more information about the cookies weuse, please see Cooklie Policy ### Change of purpose\\nWewill only use your personal data for the purposes for which wecollectedit, unless wereasonably consider that weneed touse itfor another reason and that reason iscompatible with the original purpose Ifyou wish toget anexplanation astohow the processing for the new purpose iscompatible with the original purpose, please contactus Ifweneed touse your personal data for anunrelated purpose, wewill notify you and wewill explain the legal basis which allowsus todoso Please note that wemay process your personal data without your knowledge orconsent, incompliance with the above rules, where this isrequired orpermitted bylaw ## 5 Disclosures ofyour personal data\\nWemay share your personal data with the parties set out below for the purposes set out inthe table ««Purposes for which wewill use your personal data»» above * External Third Parties asset out inthe Glossary * Third parties towhom wemay choose tosell, transfer ormerge parts ofour business orour assets Alternatively, wemay seek toacquire other businesses ormerge with them Ifachange happens toour business, then the new owners may use your personal data inthe same way asset out inthis privacy policy Werequire all third parties torespect the security ofyour personal data and totreat itinaccordance with the law Wedonot allow our third-party service providers touse your personal data for their own purposes and only permit them toprocess your personal data for specified purposes and inaccordance with our instructions ## 6 International transfers\\nWedonot currently transfer your personal data outside the European Economic Area (EEA)\",\n", + " \"Ifinthe future wewere totransfer your personal data out ofthe EEA, wewould ensure asimilar degree ofprotection isafforded toitbyensuring atleast one ofthe following safeguards isimplemented:\\n* Wewill only transfer your personal data tocountries that have been deemed toprovide anadequate level ofprotection for personal data bythe European Commission * Where weuse certain service providers, wemay use specific contracts approved bythe European Commission which give personal data the same protection ithas inEurope Please contactus ifyou want further information onthe specific mechanism used byus when transferring your personal data out ofthe EEA ## 7 Data security\\nWehave put inplace appropriate security measures toprevent your personal data from being accidentally lost, used oraccessed inanunauthorised way, altered ordisclosed Inaddition, welimit access toyour personal data tothose employees, agents, contractors and other third parties who have abusiness need toknow They will only process your personal data onour instructions and they are subject toaduty ofconfidentiality Wehave put inplace procedures todeal with any suspected personal data breach and will notify you and any applicable regulator ofabreach where weare legally required todoso ## 8 Data retention\\n### How long will you use mypersonal data for Wewill only retain your personal data for aslong asreasonably necessary tofulfil the purposes wecollected itfor, including for the purposes ofsatisfying any legal, regulatory, tax, accounting orreporting requirements Wemay retain your personal data for alonger period inthe event ofacomplaint orifwereasonably believe there isaprospect oflitigation inrespect toour relationship with you Todetermine the appropriate retention period for personal data, weconsider the amount, nature and sensitivity ofthe personal data, the potential risk ofharm from unauthorised use ordisclosure ofyour personal data, the purposes for which weprocess your personal data and whether wecan achieve those purposes through other means, and the applicable legal, regulatory, tax, accounting orother requirements Bylaw wehave tokeep basic information about our customers (including Contact, Identity, Financial and Transaction Data) for six years after they cease being customers for tax purposes Insome circumstances you can askus todelete your data: see your legal rights below for further information\",\n", + " \"Insome circumstances wewill anonymise your personal data (sothat itcan nolonger beassociated with you) for research orstatistical purposes, inwhich case wemay use this information indefinitely without further notice toyou ## 9 Your legal rights\\nUnder certain circumstances, you have rights under data protection laws inrelation toyour personal data You have the rightto:\\n* **Request access**toyour personal data (commonly known asa««data subject access request»») This enables you toreceive acopy ofthe personal data wehold about you and tocheck that weare lawfully processingit * **Request correction**ofthe personal data that wehold about you This enables you tohave any incomplete orinaccurate data wehold about you corrected, though wemay need toverify the accuracy ofthe new data you provide tous * **Request erasure**ofyour personal data This enables you toaskus todelete orremove personal data where there isnogood reason forus continuing toprocessit You also have the right toaskus todelete orremove your personal data where you have successfullyexercised your right toobject toprocessing (see below), where wemay have processed your information unlawfully orwhere weare required toerase your personal data tocomply with local law Note, however, that wemay not always beable tocomply with your request oferasure for specific legal reasons which will benotified toyou, ifapplicable, atthe time ofyour request * **Object toprocessing**ofyour personal data where weare relying onalegitimate interest (orthose ofathird party) and there issomething about your particular situation which makes you want toobject toprocessing onthis ground asyou feel itimpacts onyour fundamental rights and freedoms You also have the right toobject where weare processing your personal data for direct marketing purposes Insome cases, wemay demonstrate that wehave compelling legitimate grounds toprocess your information which override your rights and freedoms * **Request restriction ofprocessing**ofyour personal data\",\n", + " \"This enables you toaskus tosuspend the processing ofyour personal data inthe following scenarios:\\n1 Ifyou wantus toestablish the data’’s accuracy 2 Where our use ofthe data isunlawful but you donot wantus toeraseit 3 Where you needus tohold the data even ifwenolonger require itasyou need ittoestablish, exercise ordefend legal claims 4 You have objected toour use ofyour data but weneed toverify whether wehave overriding legitimate grounds touseit 5 **Request the transfer**ofyour personal data toyou ortoathird party Wewill provide toyou, orathird party you have chosen, your personal data inastructured, commonly used, machine-readable format Note that this right only applies toautomated information which you initially provided consent forus touse orwhere weused the information toperform acontract with you 6 **Withdraw consent atany time**where weare relying onconsent toprocess your personal data However, this will not affect the lawfulness ofany processing carried out before you withdraw your consent\",\n", + " \"Ifyou withdraw your consent, wemay not beable toprovide certain products orservices toyou Wewill advise you ifthis isthe case atthe time you withdraw your consent Ifyou wish toexercise any ofthe rights set out above, please contactus ### No fee usually required\\nYou will not have topay afee toaccess your personal data (ortoexercise any ofthe other rights) However, wemay charge areasonable fee ifyour request isclearly unfounded, repetitive orexcessive Alternatively, wecould refuse tocomply with your request inthese circumstances ### What we may need from you\\nWemay need torequest specific information from you tohelpus confirm your identity and ensure your right toaccess your personal data (ortoexercise any ofyour other rights) This isasecurity measure toensure that personal data isnot disclosed toany person who has noright toreceiveit Wemay also contact you toask you for further information inrelation toyour request tospeed upour response ### Time limit to respond\\nWetry torespond toall legitimate requests within one month Occasionally itcould takeus longer than amonth ifyour request isparticularly complex oryou have made anumber ofrequests Inthis case, wewill notify you and keep you updated ## 10 Glossary\\n**Legitimate Interest**means the interest ofour business inconducting and managing our business toenableus togive you the best service/product and the best and most secure experience Wemake sure weconsider and balance any potential impact onyou (both positive and negative) and your rights before weprocess your personal data for our legitimate interests\",\n", + " \"Wedonot use your personal data for activities where our interests are overridden bythe impact onyou (unless wehave your consent orare otherwise required orpermitted tobylaw) You can obtain further information about how weassess our legitimate interests against any potential impact onyou inrespect ofspecific activities bycontactingus **Performance ofContract**means processing your data where itisnecessary for the performance ofacontract towhich you are aparty ortotake steps atyour request before entering into such acontract **Comply with alegal obligation**means processing your personal data where itisnecessary for compliance with alegal obligation that weare subjectto **External Third Parties**\\n* Service providers acting asprocessors who provideIT and system administration services * Providers ofour cloud services including AWS and Google * Professional advisers acting asprocessors orjoint controllers including lawyers, bankers, auditors and insurers based inthe United Kingdom who provide consultancy, banking, legal, insurance and accounting services * Regulators and other authorities acting asprocessors orjoint controllers based inthe United Kingdom who require reporting ofprocessing activities incertain circumstances * Our third party partners and affiliates who may manage your customer relationship onour behalf * Stripe for payment management ## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved\",\n", + " \"* [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Privacy Policy\\nLast updated: 27/03/2023\\n## INTRODUCTION\\nQuickBlox respects your privacy and iscommitted toprotecting your personal data This privacy policy will inform you astohow welook after your personal data when you access our services and tell you about your privacy rights and how the law protects you Please also use the Glossary tounderstand the meaning ofsome ofthe terms used inthis privacy policy ## 1 Important information and who we are\\n### Purpose ofthis privacy policy\\nThis privacy policy aims togive you information onhow QuickBlox collects and processes your personal data through your use ofour services, including any data you may provide through this website when you sign upto, orpurchase one ofour products orservices Itisimportant that you read this privacy policy together with any other privacy policy orfair processing policy wemay provide onspecific occasions when weare collecting, orprocessing, personal data about you, sothat you are fully aware ofhow and why weare using your data This privacy policy supplements other notices and privacy policies and isnot intended tooverride them ### Controller\\nInjoit Limited isthe controller and isresponsible for your personal data (collectively referred toasQuickBlox, ««we»»,««us»» or««our»» inthis privacy policy) Wehave appointed adata privacy manager who isresponsible for overseeing questions inrelation tothis privacy policy Ifyou have any questions about this privacy policy, including any requests toexercise your legal rights, please contact the data privacy manager using the details set out below ### Contact details\\nIf you have any questions about this privacy policy or our privacy practices, please contact our data privacy manager in the following ways:\\n* **Full name of legal entity:**\\n* **Email address:**\\n* **Telephone number:**\\n* Injoit Limited\\n* [gdpr@quickblox.com](mailto:gdpr@quickblox.com)\\n* [+1 415 755 8221]()\\nYou have the right tomake acomplaint atany time tothe Information Commissioner’’s Office (ICO), theUK supervisory authority for data protection issues (www.ico.org.uk) Wewould, however, appreciate the chance todeal with your concerns before you approach the ICO soplease contactus inthe first instance ### Changes tothe privacy policy and your duty toinformus ofchanges\\nWekeep our privacy policy under regular review Itisimportant that the personal data wehold about you isaccurate and current Please keepus informed ifyour personal data changes during your relationship withus\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 149 Type: step\n", + "output: {\n", + " \"documents\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Privacy Policy\\nLast updated: 27/03/2023\\n## INTRODUCTION\\nQuickBlox respects your privacy and iscommitted toprotecting your personal data This privacy policy will inform you astohow welook after your personal data when you access our services and tell you about your privacy rights and how the law protects you Please also use the Glossary tounderstand the meaning ofsome ofthe terms used inthis privacy policy ## 1 Important information and who we are\\n### Purpose ofthis privacy policy\\nThis privacy policy aims togive you information onhow QuickBlox collects and processes your personal data through your use ofour services, including any data you may provide through this website when you sign upto, orpurchase one ofour products orservices Itisimportant that you read this privacy policy together with any other privacy policy orfair processing policy wemay provide onspecific occasions when weare collecting, orprocessing, personal data about you, sothat you are fully aware ofhow and why weare using your data This privacy policy supplements other notices and privacy policies and isnot intended tooverride them ### Controller\\nInjoit Limited isthe controller and isresponsible for your personal data (collectively referred toasQuickBlox, ««we»»,««us»» or««our»» inthis privacy policy) Wehave appointed adata privacy manager who isresponsible for overseeing questions inrelation tothis privacy policy Ifyou have any questions about this privacy policy, including any requests toexercise your legal rights, please contact the data privacy manager using the details set out below ### Contact details\\nIf you have any questions about this privacy policy or our privacy practices, please contact our data privacy manager in the following ways:\\n* **Full name of legal entity:**\\n* **Email address:**\\n* **Telephone number:**\\n* Injoit Limited\\n* [gdpr@quickblox.com](mailto:gdpr@quickblox.com)\\n* [+1 415 755 8221]()\\nYou have the right tomake acomplaint atany time tothe Information Commissioner’’s Office (ICO), theUK supervisory authority for data protection issues (www.ico.org.uk) Wewould, however, appreciate the chance todeal with your concerns before you approach the ICO soplease contactus inthe first instance ### Changes tothe privacy policy and your duty toinformus ofchanges\\nWekeep our privacy policy under regular review Itisimportant that the personal data wehold about you isaccurate and current Please keepus informed ifyour personal data changes during your relationship withus\",\n", + " \"## 2 The data wecollect about you\\nPersonal data, orpersonal information, means any information about anindividual from which that person can beidentified Itdoes not include data where the identity has been removed (anonymous data) Wemay collect, use, store and transfer different kinds ofpersonal data about you which wehave grouped together asfollows:\\n* **Identity Data**which includes first name, maiden name, last name, username orsimilar identifier, title * **Contact Data**which includes billing address, home address, email address and telephone numbers * **Technical Data**which includes your internet protocol (IP) address, your login data, browser type and version, hardware information, time zone setting and location, browser plug-in types and versions, operating system and platform, and other technology onthe devices you use toaccess our platform * **Profile Data**which includes your username and password, purchases ororders made byyou, your interests, preferences, feedback and survey responses * **Usage Data**which includes information about how you use our platform, products and services * **Marketing and Communications Data**which includes your preferences inreceiving marketing fromus and our third parties and your communication preferences Wealso collect, use and share**Aggregated**Data such asstatistical ordemographic data for any purpose Aggregated Data could bederived from your personal data but isnot considered personal data inlaw asthis data will not directly orindirectly reveal your identity ### Ifyou fail toprovide personal data\\nWhere weneed tocollect personal data bylaw, orunder the terms ofacontract wehave with you, and you fail toprovide that data when requested, wemay not beable toperform the contract wehave orare trying toenter into with you (for example, toprovide you with our products orservices) Inthis case, wemay have tocancel aproduct orservice you have withus, but wewill notify you ifthis isthe case atthe time ## 3 How isyour personal data collected\",\n", + " \"Weuse different methods tocollect data from and about you including through:\\n* **Direct interactions.**You may giveus your Identity, Contact and Financial Data byfilling informs orbycorresponding withus bypost, phone, email orotherwise This includes personal data you provide when you:\\n1 apply for our products orservices;\\n2 create anaccount withus;\\n3 subscribe toour service;\\n4 request marketing tobesent toyou;\\n5 enter apromotion orsurvey; or\\n6 giveus feedback orcontactus 7 **Automated technologies**orinteractions Asyou interact with our Platform, wewill automatically collect Technical Data about your equipment, browsing actions and patterns Wecollect this personal data byusing cookies, server logs and other similar technologies.## 4 How weuse your personal data\\nWewill only use your personal data when the law allowsus to Most commonly, wewill use your personal data inthe following circumstances:\\n* Where weneed toperform the contract weare about toenter into orhave entered into with you * Where itisnecessary for our legitimate interests (orthose ofathird party) and your interests and fundamental rights donot override those interests\",\n", + " \"* Where weneed tocomply with alegal obligation Generally, wedonot rely onconsent asalegal basis for processing your personal data although wewill get your consent before sending direct marketing communications toyou You have the right towithdraw consent tomarketing atany time bycontactingus ### Purposes for which wewill use your personal data\\nWehave set out below, inatable format, adescription ofall the ways weplan touse your personal data, and which ofthe legal bases werely ontodoso Wehave also identified what our legitimate interests are where appropriate Note that wemay process your personal data for more than one lawful ground depending onthe specific purpose for which weare using your data Please contactus ifyou need details about the specific legal ground weare relying ontoprocess your personal data where more than one ground has been set out inthe table below * **Purpose/Activity**\\n* **Type of data**\\n* **Lawful basis for processing including basis oflegitimate interest**\\n* Toregister you asacustomer\\n* 1 a Identity\\n2 b Contact\\n3 Performance ofacontract with you\\n* Toprocess your order including:\\n1 a Manage payments, fees and charges\\n2\",\n", + " \"b Collect and recover money owed tous\\n3 1 a Identity\\n2 b Contact\\n3 c Financial\\n4 d Transaction\\n5 e Marketingand Communications\\n6 1 a\",\n", + " \"Performance ofacontract with you\\n2 b Necessary for our legitimate interests (torecover debts due tous)\\n* Tomanage our relationship with you which will include:\\n1 a Notifying you about changes toour terms orprivacy policy\\n2 b Asking you toleave areview ortake asurvey\\n3 1 a Identity\\n2 b Contact\\n3 c Profile\\n4 d\",\n", + " \"Marketingand Communications\\n5 1 a Performance of a contract with you\\n2 b Necessary to comply with a legal obligation\\n3 c Necessary for our legitimate interests (to keep our records updated and to study how customers use our products/services)\\n* Toadminister and protect our business and our services (including troubleshooting, data analysis, testing, system maintenance, support, reporting and hosting ofdata)\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4 1\",\n", + " \"a Necessary for our legitimate interests (for running our business, provision ofadministration andIT services, network security, toprevent fraud and inthe context ofabusiness reorganisation orgroup restructuring exercise)\\n2 b Necessary tocomply with alegal obligation\\n* Touse data analytics toimprove our platform, products/services, marketing, customer relationships and experiences\\n* 1 a Technical\\n2 b Usage\\n3 Necessary for our legitimate interests (todefine types ofcustomers for our products and services, tokeep our services updated and relevant, todevelop our business and toinform our marketing strategy)\\n* Tomake suggestions and recommendations toyou about goods orservices that may beofinterest toyou\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4\",\n", + " \"d Usage\\n5 e Profile\\n6 f Marketingand Communications\\n7 Necessary for our legitimate interests (todevelop our products/services and grow our business)\\n### Marketing\\nWestrive toprovide you with choices regarding certain personal data uses, particularly around marketing and advertising ### Promotional offers fromus\\nWemay use your Identity, Contact, Technical, Usage and Profile Data toform aview onwhat wethink you may want orneed, orwhat may beofinterest toyou This ishow wedecide which products, services and offers may berelevant for you You will receive marketing communications fromus ifyou have requested information fromus orpurchased products orservices fromus and you have not opted out ofreceiving that marketing ### Third-party marketing\\nWewill get your express opt-in consent before weshare your personal data with any third party for marketing purposes ### Opting out\\nYou can askus orthird parties tostop sending you marketing messages atany time Where you opt out ofreceiving these marketing messages, this will not apply topersonal data provided tous asaresult ofaproduct/service purchase, product/service experience orother transactions ### Cookies\\nYou can set your browser torefuse all orsome browser cookies, ortoalert you when services set oraccess cookies Ifyou disable orrefuse cookies, please note that some parts ofour platform may become inaccessible ornot function properly\",\n", + " \"For more information about the cookies weuse, please see Cooklie Policy ### Change of purpose\\nWewill only use your personal data for the purposes for which wecollectedit, unless wereasonably consider that weneed touse itfor another reason and that reason iscompatible with the original purpose Ifyou wish toget anexplanation astohow the processing for the new purpose iscompatible with the original purpose, please contactus Ifweneed touse your personal data for anunrelated purpose, wewill notify you and wewill explain the legal basis which allowsus todoso Please note that wemay process your personal data without your knowledge orconsent, incompliance with the above rules, where this isrequired orpermitted bylaw ## 5 Disclosures ofyour personal data\\nWemay share your personal data with the parties set out below for the purposes set out inthe table ««Purposes for which wewill use your personal data»» above * External Third Parties asset out inthe Glossary * Third parties towhom wemay choose tosell, transfer ormerge parts ofour business orour assets Alternatively, wemay seek toacquire other businesses ormerge with them Ifachange happens toour business, then the new owners may use your personal data inthe same way asset out inthis privacy policy Werequire all third parties torespect the security ofyour personal data and totreat itinaccordance with the law Wedonot allow our third-party service providers touse your personal data for their own purposes and only permit them toprocess your personal data for specified purposes and inaccordance with our instructions ## 6 International transfers\\nWedonot currently transfer your personal data outside the European Economic Area (EEA)\",\n", + " \"Ifinthe future wewere totransfer your personal data out ofthe EEA, wewould ensure asimilar degree ofprotection isafforded toitbyensuring atleast one ofthe following safeguards isimplemented:\\n* Wewill only transfer your personal data tocountries that have been deemed toprovide anadequate level ofprotection for personal data bythe European Commission * Where weuse certain service providers, wemay use specific contracts approved bythe European Commission which give personal data the same protection ithas inEurope Please contactus ifyou want further information onthe specific mechanism used byus when transferring your personal data out ofthe EEA ## 7 Data security\\nWehave put inplace appropriate security measures toprevent your personal data from being accidentally lost, used oraccessed inanunauthorised way, altered ordisclosed Inaddition, welimit access toyour personal data tothose employees, agents, contractors and other third parties who have abusiness need toknow They will only process your personal data onour instructions and they are subject toaduty ofconfidentiality Wehave put inplace procedures todeal with any suspected personal data breach and will notify you and any applicable regulator ofabreach where weare legally required todoso ## 8 Data retention\\n### How long will you use mypersonal data for Wewill only retain your personal data for aslong asreasonably necessary tofulfil the purposes wecollected itfor, including for the purposes ofsatisfying any legal, regulatory, tax, accounting orreporting requirements Wemay retain your personal data for alonger period inthe event ofacomplaint orifwereasonably believe there isaprospect oflitigation inrespect toour relationship with you Todetermine the appropriate retention period for personal data, weconsider the amount, nature and sensitivity ofthe personal data, the potential risk ofharm from unauthorised use ordisclosure ofyour personal data, the purposes for which weprocess your personal data and whether wecan achieve those purposes through other means, and the applicable legal, regulatory, tax, accounting orother requirements Bylaw wehave tokeep basic information about our customers (including Contact, Identity, Financial and Transaction Data) for six years after they cease being customers for tax purposes Insome circumstances you can askus todelete your data: see your legal rights below for further information\",\n", + " \"Insome circumstances wewill anonymise your personal data (sothat itcan nolonger beassociated with you) for research orstatistical purposes, inwhich case wemay use this information indefinitely without further notice toyou ## 9 Your legal rights\\nUnder certain circumstances, you have rights under data protection laws inrelation toyour personal data You have the rightto:\\n* **Request access**toyour personal data (commonly known asa««data subject access request»») This enables you toreceive acopy ofthe personal data wehold about you and tocheck that weare lawfully processingit * **Request correction**ofthe personal data that wehold about you This enables you tohave any incomplete orinaccurate data wehold about you corrected, though wemay need toverify the accuracy ofthe new data you provide tous * **Request erasure**ofyour personal data This enables you toaskus todelete orremove personal data where there isnogood reason forus continuing toprocessit You also have the right toaskus todelete orremove your personal data where you have successfullyexercised your right toobject toprocessing (see below), where wemay have processed your information unlawfully orwhere weare required toerase your personal data tocomply with local law Note, however, that wemay not always beable tocomply with your request oferasure for specific legal reasons which will benotified toyou, ifapplicable, atthe time ofyour request * **Object toprocessing**ofyour personal data where weare relying onalegitimate interest (orthose ofathird party) and there issomething about your particular situation which makes you want toobject toprocessing onthis ground asyou feel itimpacts onyour fundamental rights and freedoms You also have the right toobject where weare processing your personal data for direct marketing purposes Insome cases, wemay demonstrate that wehave compelling legitimate grounds toprocess your information which override your rights and freedoms * **Request restriction ofprocessing**ofyour personal data\",\n", + " \"This enables you toaskus tosuspend the processing ofyour personal data inthe following scenarios:\\n1 Ifyou wantus toestablish the data’’s accuracy 2 Where our use ofthe data isunlawful but you donot wantus toeraseit 3 Where you needus tohold the data even ifwenolonger require itasyou need ittoestablish, exercise ordefend legal claims 4 You have objected toour use ofyour data but weneed toverify whether wehave overriding legitimate grounds touseit 5 **Request the transfer**ofyour personal data toyou ortoathird party Wewill provide toyou, orathird party you have chosen, your personal data inastructured, commonly used, machine-readable format Note that this right only applies toautomated information which you initially provided consent forus touse orwhere weused the information toperform acontract with you 6 **Withdraw consent atany time**where weare relying onconsent toprocess your personal data However, this will not affect the lawfulness ofany processing carried out before you withdraw your consent\",\n", + " \"Ifyou withdraw your consent, wemay not beable toprovide certain products orservices toyou Wewill advise you ifthis isthe case atthe time you withdraw your consent Ifyou wish toexercise any ofthe rights set out above, please contactus ### No fee usually required\\nYou will not have topay afee toaccess your personal data (ortoexercise any ofthe other rights) However, wemay charge areasonable fee ifyour request isclearly unfounded, repetitive orexcessive Alternatively, wecould refuse tocomply with your request inthese circumstances ### What we may need from you\\nWemay need torequest specific information from you tohelpus confirm your identity and ensure your right toaccess your personal data (ortoexercise any ofyour other rights) This isasecurity measure toensure that personal data isnot disclosed toany person who has noright toreceiveit Wemay also contact you toask you for further information inrelation toyour request tospeed upour response ### Time limit to respond\\nWetry torespond toall legitimate requests within one month Occasionally itcould takeus longer than amonth ifyour request isparticularly complex oryou have made anumber ofrequests Inthis case, wewill notify you and keep you updated ## 10 Glossary\\n**Legitimate Interest**means the interest ofour business inconducting and managing our business toenableus togive you the best service/product and the best and most secure experience Wemake sure weconsider and balance any potential impact onyou (both positive and negative) and your rights before weprocess your personal data for our legitimate interests\",\n", + " \"Wedonot use your personal data for activities where our interests are overridden bythe impact onyou (unless wehave your consent orare otherwise required orpermitted tobylaw) You can obtain further information about how weassess our legitimate interests against any potential impact onyou inrespect ofspecific activities bycontactingus **Performance ofContract**means processing your data where itisnecessary for the performance ofacontract towhich you are aparty ortotake steps atyour request before entering into such acontract **Comply with alegal obligation**means processing your personal data where itisnecessary for compliance with alegal obligation that weare subjectto **External Third Parties**\\n* Service providers acting asprocessors who provideIT and system administration services * Providers ofour cloud services including AWS and Google * Professional advisers acting asprocessors orjoint controllers including lawyers, bankers, auditors and insurers based inthe United Kingdom who provide consultancy, banking, legal, insurance and accounting services * Regulators and other authorities acting asprocessors orjoint controllers based inthe United Kingdom who require reporting ofprocessing activities incertain circumstances * Our third party partners and affiliates who may manage your customer relationship onour behalf * Stripe for payment management ## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved\",\n", + " \"* [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 150 Type: init_branch\n", + "output: {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Privacy Policy\\nLast updated: 27/03/2023\\n## INTRODUCTION\\nQuickBlox respects your privacy and iscommitted toprotecting your personal data This privacy policy will inform you astohow welook after your personal data when you access our services and tell you about your privacy rights and how the law protects you Please also use the Glossary tounderstand the meaning ofsome ofthe terms used inthis privacy policy ## 1 Important information and who we are\\n### Purpose ofthis privacy policy\\nThis privacy policy aims togive you information onhow QuickBlox collects and processes your personal data through your use ofour services, including any data you may provide through this website when you sign upto, orpurchase one ofour products orservices Itisimportant that you read this privacy policy together with any other privacy policy orfair processing policy wemay provide onspecific occasions when weare collecting, orprocessing, personal data about you, sothat you are fully aware ofhow and why weare using your data This privacy policy supplements other notices and privacy policies and isnot intended tooverride them ### Controller\\nInjoit Limited isthe controller and isresponsible for your personal data (collectively referred toasQuickBlox, ««we»»,««us»» or««our»» inthis privacy policy) Wehave appointed adata privacy manager who isresponsible for overseeing questions inrelation tothis privacy policy Ifyou have any questions about this privacy policy, including any requests toexercise your legal rights, please contact the data privacy manager using the details set out below ### Contact details\\nIf you have any questions about this privacy policy or our privacy practices, please contact our data privacy manager in the following ways:\\n* **Full name of legal entity:**\\n* **Email address:**\\n* **Telephone number:**\\n* Injoit Limited\\n* [gdpr@quickblox.com](mailto:gdpr@quickblox.com)\\n* [+1 415 755 8221]()\\nYou have the right tomake acomplaint atany time tothe Information Commissioner’’s Office (ICO), theUK supervisory authority for data protection issues (www.ico.org.uk) Wewould, however, appreciate the chance todeal with your concerns before you approach the ICO soplease contactus inthe first instance ### Changes tothe privacy policy and your duty toinformus ofchanges\\nWekeep our privacy policy under regular review Itisimportant that the personal data wehold about you isaccurate and current Please keepus informed ifyour personal data changes during your relationship withus\",\n", + " \"## 2 The data wecollect about you\\nPersonal data, orpersonal information, means any information about anindividual from which that person can beidentified Itdoes not include data where the identity has been removed (anonymous data) Wemay collect, use, store and transfer different kinds ofpersonal data about you which wehave grouped together asfollows:\\n* **Identity Data**which includes first name, maiden name, last name, username orsimilar identifier, title * **Contact Data**which includes billing address, home address, email address and telephone numbers * **Technical Data**which includes your internet protocol (IP) address, your login data, browser type and version, hardware information, time zone setting and location, browser plug-in types and versions, operating system and platform, and other technology onthe devices you use toaccess our platform * **Profile Data**which includes your username and password, purchases ororders made byyou, your interests, preferences, feedback and survey responses * **Usage Data**which includes information about how you use our platform, products and services * **Marketing and Communications Data**which includes your preferences inreceiving marketing fromus and our third parties and your communication preferences Wealso collect, use and share**Aggregated**Data such asstatistical ordemographic data for any purpose Aggregated Data could bederived from your personal data but isnot considered personal data inlaw asthis data will not directly orindirectly reveal your identity ### Ifyou fail toprovide personal data\\nWhere weneed tocollect personal data bylaw, orunder the terms ofacontract wehave with you, and you fail toprovide that data when requested, wemay not beable toperform the contract wehave orare trying toenter into with you (for example, toprovide you with our products orservices) Inthis case, wemay have tocancel aproduct orservice you have withus, but wewill notify you ifthis isthe case atthe time ## 3 How isyour personal data collected\",\n", + " \"Weuse different methods tocollect data from and about you including through:\\n* **Direct interactions.**You may giveus your Identity, Contact and Financial Data byfilling informs orbycorresponding withus bypost, phone, email orotherwise This includes personal data you provide when you:\\n1 apply for our products orservices;\\n2 create anaccount withus;\\n3 subscribe toour service;\\n4 request marketing tobesent toyou;\\n5 enter apromotion orsurvey; or\\n6 giveus feedback orcontactus 7 **Automated technologies**orinteractions Asyou interact with our Platform, wewill automatically collect Technical Data about your equipment, browsing actions and patterns Wecollect this personal data byusing cookies, server logs and other similar technologies.## 4 How weuse your personal data\\nWewill only use your personal data when the law allowsus to Most commonly, wewill use your personal data inthe following circumstances:\\n* Where weneed toperform the contract weare about toenter into orhave entered into with you * Where itisnecessary for our legitimate interests (orthose ofathird party) and your interests and fundamental rights donot override those interests\",\n", + " \"* Where weneed tocomply with alegal obligation Generally, wedonot rely onconsent asalegal basis for processing your personal data although wewill get your consent before sending direct marketing communications toyou You have the right towithdraw consent tomarketing atany time bycontactingus ### Purposes for which wewill use your personal data\\nWehave set out below, inatable format, adescription ofall the ways weplan touse your personal data, and which ofthe legal bases werely ontodoso Wehave also identified what our legitimate interests are where appropriate Note that wemay process your personal data for more than one lawful ground depending onthe specific purpose for which weare using your data Please contactus ifyou need details about the specific legal ground weare relying ontoprocess your personal data where more than one ground has been set out inthe table below * **Purpose/Activity**\\n* **Type of data**\\n* **Lawful basis for processing including basis oflegitimate interest**\\n* Toregister you asacustomer\\n* 1 a Identity\\n2 b Contact\\n3 Performance ofacontract with you\\n* Toprocess your order including:\\n1 a Manage payments, fees and charges\\n2\",\n", + " \"b Collect and recover money owed tous\\n3 1 a Identity\\n2 b Contact\\n3 c Financial\\n4 d Transaction\\n5 e Marketingand Communications\\n6 1 a\",\n", + " \"Performance ofacontract with you\\n2 b Necessary for our legitimate interests (torecover debts due tous)\\n* Tomanage our relationship with you which will include:\\n1 a Notifying you about changes toour terms orprivacy policy\\n2 b Asking you toleave areview ortake asurvey\\n3 1 a Identity\\n2 b Contact\\n3 c Profile\\n4 d\",\n", + " \"Marketingand Communications\\n5 1 a Performance of a contract with you\\n2 b Necessary to comply with a legal obligation\\n3 c Necessary for our legitimate interests (to keep our records updated and to study how customers use our products/services)\\n* Toadminister and protect our business and our services (including troubleshooting, data analysis, testing, system maintenance, support, reporting and hosting ofdata)\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4 1\",\n", + " \"a Necessary for our legitimate interests (for running our business, provision ofadministration andIT services, network security, toprevent fraud and inthe context ofabusiness reorganisation orgroup restructuring exercise)\\n2 b Necessary tocomply with alegal obligation\\n* Touse data analytics toimprove our platform, products/services, marketing, customer relationships and experiences\\n* 1 a Technical\\n2 b Usage\\n3 Necessary for our legitimate interests (todefine types ofcustomers for our products and services, tokeep our services updated and relevant, todevelop our business and toinform our marketing strategy)\\n* Tomake suggestions and recommendations toyou about goods orservices that may beofinterest toyou\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4\",\n", + " \"d Usage\\n5 e Profile\\n6 f Marketingand Communications\\n7 Necessary for our legitimate interests (todevelop our products/services and grow our business)\\n### Marketing\\nWestrive toprovide you with choices regarding certain personal data uses, particularly around marketing and advertising ### Promotional offers fromus\\nWemay use your Identity, Contact, Technical, Usage and Profile Data toform aview onwhat wethink you may want orneed, orwhat may beofinterest toyou This ishow wedecide which products, services and offers may berelevant for you You will receive marketing communications fromus ifyou have requested information fromus orpurchased products orservices fromus and you have not opted out ofreceiving that marketing ### Third-party marketing\\nWewill get your express opt-in consent before weshare your personal data with any third party for marketing purposes ### Opting out\\nYou can askus orthird parties tostop sending you marketing messages atany time Where you opt out ofreceiving these marketing messages, this will not apply topersonal data provided tous asaresult ofaproduct/service purchase, product/service experience orother transactions ### Cookies\\nYou can set your browser torefuse all orsome browser cookies, ortoalert you when services set oraccess cookies Ifyou disable orrefuse cookies, please note that some parts ofour platform may become inaccessible ornot function properly\",\n", + " \"For more information about the cookies weuse, please see Cooklie Policy ### Change of purpose\\nWewill only use your personal data for the purposes for which wecollectedit, unless wereasonably consider that weneed touse itfor another reason and that reason iscompatible with the original purpose Ifyou wish toget anexplanation astohow the processing for the new purpose iscompatible with the original purpose, please contactus Ifweneed touse your personal data for anunrelated purpose, wewill notify you and wewill explain the legal basis which allowsus todoso Please note that wemay process your personal data without your knowledge orconsent, incompliance with the above rules, where this isrequired orpermitted bylaw ## 5 Disclosures ofyour personal data\\nWemay share your personal data with the parties set out below for the purposes set out inthe table ««Purposes for which wewill use your personal data»» above * External Third Parties asset out inthe Glossary * Third parties towhom wemay choose tosell, transfer ormerge parts ofour business orour assets Alternatively, wemay seek toacquire other businesses ormerge with them Ifachange happens toour business, then the new owners may use your personal data inthe same way asset out inthis privacy policy Werequire all third parties torespect the security ofyour personal data and totreat itinaccordance with the law Wedonot allow our third-party service providers touse your personal data for their own purposes and only permit them toprocess your personal data for specified purposes and inaccordance with our instructions ## 6 International transfers\\nWedonot currently transfer your personal data outside the European Economic Area (EEA)\",\n", + " \"Ifinthe future wewere totransfer your personal data out ofthe EEA, wewould ensure asimilar degree ofprotection isafforded toitbyensuring atleast one ofthe following safeguards isimplemented:\\n* Wewill only transfer your personal data tocountries that have been deemed toprovide anadequate level ofprotection for personal data bythe European Commission * Where weuse certain service providers, wemay use specific contracts approved bythe European Commission which give personal data the same protection ithas inEurope Please contactus ifyou want further information onthe specific mechanism used byus when transferring your personal data out ofthe EEA ## 7 Data security\\nWehave put inplace appropriate security measures toprevent your personal data from being accidentally lost, used oraccessed inanunauthorised way, altered ordisclosed Inaddition, welimit access toyour personal data tothose employees, agents, contractors and other third parties who have abusiness need toknow They will only process your personal data onour instructions and they are subject toaduty ofconfidentiality Wehave put inplace procedures todeal with any suspected personal data breach and will notify you and any applicable regulator ofabreach where weare legally required todoso ## 8 Data retention\\n### How long will you use mypersonal data for Wewill only retain your personal data for aslong asreasonably necessary tofulfil the purposes wecollected itfor, including for the purposes ofsatisfying any legal, regulatory, tax, accounting orreporting requirements Wemay retain your personal data for alonger period inthe event ofacomplaint orifwereasonably believe there isaprospect oflitigation inrespect toour relationship with you Todetermine the appropriate retention period for personal data, weconsider the amount, nature and sensitivity ofthe personal data, the potential risk ofharm from unauthorised use ordisclosure ofyour personal data, the purposes for which weprocess your personal data and whether wecan achieve those purposes through other means, and the applicable legal, regulatory, tax, accounting orother requirements Bylaw wehave tokeep basic information about our customers (including Contact, Identity, Financial and Transaction Data) for six years after they cease being customers for tax purposes Insome circumstances you can askus todelete your data: see your legal rights below for further information\",\n", + " \"Insome circumstances wewill anonymise your personal data (sothat itcan nolonger beassociated with you) for research orstatistical purposes, inwhich case wemay use this information indefinitely without further notice toyou ## 9 Your legal rights\\nUnder certain circumstances, you have rights under data protection laws inrelation toyour personal data You have the rightto:\\n* **Request access**toyour personal data (commonly known asa««data subject access request»») This enables you toreceive acopy ofthe personal data wehold about you and tocheck that weare lawfully processingit * **Request correction**ofthe personal data that wehold about you This enables you tohave any incomplete orinaccurate data wehold about you corrected, though wemay need toverify the accuracy ofthe new data you provide tous * **Request erasure**ofyour personal data This enables you toaskus todelete orremove personal data where there isnogood reason forus continuing toprocessit You also have the right toaskus todelete orremove your personal data where you have successfullyexercised your right toobject toprocessing (see below), where wemay have processed your information unlawfully orwhere weare required toerase your personal data tocomply with local law Note, however, that wemay not always beable tocomply with your request oferasure for specific legal reasons which will benotified toyou, ifapplicable, atthe time ofyour request * **Object toprocessing**ofyour personal data where weare relying onalegitimate interest (orthose ofathird party) and there issomething about your particular situation which makes you want toobject toprocessing onthis ground asyou feel itimpacts onyour fundamental rights and freedoms You also have the right toobject where weare processing your personal data for direct marketing purposes Insome cases, wemay demonstrate that wehave compelling legitimate grounds toprocess your information which override your rights and freedoms * **Request restriction ofprocessing**ofyour personal data\",\n", + " \"This enables you toaskus tosuspend the processing ofyour personal data inthe following scenarios:\\n1 Ifyou wantus toestablish the data’’s accuracy 2 Where our use ofthe data isunlawful but you donot wantus toeraseit 3 Where you needus tohold the data even ifwenolonger require itasyou need ittoestablish, exercise ordefend legal claims 4 You have objected toour use ofyour data but weneed toverify whether wehave overriding legitimate grounds touseit 5 **Request the transfer**ofyour personal data toyou ortoathird party Wewill provide toyou, orathird party you have chosen, your personal data inastructured, commonly used, machine-readable format Note that this right only applies toautomated information which you initially provided consent forus touse orwhere weused the information toperform acontract with you 6 **Withdraw consent atany time**where weare relying onconsent toprocess your personal data However, this will not affect the lawfulness ofany processing carried out before you withdraw your consent\",\n", + " \"Ifyou withdraw your consent, wemay not beable toprovide certain products orservices toyou Wewill advise you ifthis isthe case atthe time you withdraw your consent Ifyou wish toexercise any ofthe rights set out above, please contactus ### No fee usually required\\nYou will not have topay afee toaccess your personal data (ortoexercise any ofthe other rights) However, wemay charge areasonable fee ifyour request isclearly unfounded, repetitive orexcessive Alternatively, wecould refuse tocomply with your request inthese circumstances ### What we may need from you\\nWemay need torequest specific information from you tohelpus confirm your identity and ensure your right toaccess your personal data (ortoexercise any ofyour other rights) This isasecurity measure toensure that personal data isnot disclosed toany person who has noright toreceiveit Wemay also contact you toask you for further information inrelation toyour request tospeed upour response ### Time limit to respond\\nWetry torespond toall legitimate requests within one month Occasionally itcould takeus longer than amonth ifyour request isparticularly complex oryou have made anumber ofrequests Inthis case, wewill notify you and keep you updated ## 10 Glossary\\n**Legitimate Interest**means the interest ofour business inconducting and managing our business toenableus togive you the best service/product and the best and most secure experience Wemake sure weconsider and balance any potential impact onyou (both positive and negative) and your rights before weprocess your personal data for our legitimate interests\",\n", + " \"Wedonot use your personal data for activities where our interests are overridden bythe impact onyou (unless wehave your consent orare otherwise required orpermitted tobylaw) You can obtain further information about how weassess our legitimate interests against any potential impact onyou inrespect ofspecific activities bycontactingus **Performance ofContract**means processing your data where itisnecessary for the performance ofacontract towhich you are aparty ortotake steps atyour request before entering into such acontract **Comply with alegal obligation**means processing your personal data where itisnecessary for compliance with alegal obligation that weare subjectto **External Third Parties**\\n* Service providers acting asprocessors who provideIT and system administration services * Providers ofour cloud services including AWS and Google * Professional advisers acting asprocessors orjoint controllers including lawyers, bankers, auditors and insurers based inthe United Kingdom who provide consultancy, banking, legal, insurance and accounting services * Regulators and other authorities acting asprocessors orjoint controllers based inthe United Kingdom who require reporting ofprocessing activities incertain circumstances * Our third party partners and affiliates who may manage your customer relationship onour behalf * Stripe for payment management ## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved\",\n", + " \"* [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 151 Type: step\n", + "output: {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Privacy Policy\\nLast updated: 27/03/2023\\n## INTRODUCTION\\nQuickBlox respects your privacy and iscommitted toprotecting your personal data This privacy policy will inform you astohow welook after your personal data when you access our services and tell you about your privacy rights and how the law protects you Please also use the Glossary tounderstand the meaning ofsome ofthe terms used inthis privacy policy ## 1 Important information and who we are\\n### Purpose ofthis privacy policy\\nThis privacy policy aims togive you information onhow QuickBlox collects and processes your personal data through your use ofour services, including any data you may provide through this website when you sign upto, orpurchase one ofour products orservices Itisimportant that you read this privacy policy together with any other privacy policy orfair processing policy wemay provide onspecific occasions when weare collecting, orprocessing, personal data about you, sothat you are fully aware ofhow and why weare using your data This privacy policy supplements other notices and privacy policies and isnot intended tooverride them ### Controller\\nInjoit Limited isthe controller and isresponsible for your personal data (collectively referred toasQuickBlox, ««we»»,««us»» or««our»» inthis privacy policy) Wehave appointed adata privacy manager who isresponsible for overseeing questions inrelation tothis privacy policy Ifyou have any questions about this privacy policy, including any requests toexercise your legal rights, please contact the data privacy manager using the details set out below ### Contact details\\nIf you have any questions about this privacy policy or our privacy practices, please contact our data privacy manager in the following ways:\\n* **Full name of legal entity:**\\n* **Email address:**\\n* **Telephone number:**\\n* Injoit Limited\\n* [gdpr@quickblox.com](mailto:gdpr@quickblox.com)\\n* [+1 415 755 8221]()\\nYou have the right tomake acomplaint atany time tothe Information Commissioner’’s Office (ICO), theUK supervisory authority for data protection issues (www.ico.org.uk) Wewould, however, appreciate the chance todeal with your concerns before you approach the ICO soplease contactus inthe first instance ### Changes tothe privacy policy and your duty toinformus ofchanges\\nWekeep our privacy policy under regular review Itisimportant that the personal data wehold about you isaccurate and current Please keepus informed ifyour personal data changes during your relationship withus\",\n", + " \"## 2 The data wecollect about you\\nPersonal data, orpersonal information, means any information about anindividual from which that person can beidentified Itdoes not include data where the identity has been removed (anonymous data) Wemay collect, use, store and transfer different kinds ofpersonal data about you which wehave grouped together asfollows:\\n* **Identity Data**which includes first name, maiden name, last name, username orsimilar identifier, title * **Contact Data**which includes billing address, home address, email address and telephone numbers * **Technical Data**which includes your internet protocol (IP) address, your login data, browser type and version, hardware information, time zone setting and location, browser plug-in types and versions, operating system and platform, and other technology onthe devices you use toaccess our platform * **Profile Data**which includes your username and password, purchases ororders made byyou, your interests, preferences, feedback and survey responses * **Usage Data**which includes information about how you use our platform, products and services * **Marketing and Communications Data**which includes your preferences inreceiving marketing fromus and our third parties and your communication preferences Wealso collect, use and share**Aggregated**Data such asstatistical ordemographic data for any purpose Aggregated Data could bederived from your personal data but isnot considered personal data inlaw asthis data will not directly orindirectly reveal your identity ### Ifyou fail toprovide personal data\\nWhere weneed tocollect personal data bylaw, orunder the terms ofacontract wehave with you, and you fail toprovide that data when requested, wemay not beable toperform the contract wehave orare trying toenter into with you (for example, toprovide you with our products orservices) Inthis case, wemay have tocancel aproduct orservice you have withus, but wewill notify you ifthis isthe case atthe time ## 3 How isyour personal data collected\",\n", + " \"Weuse different methods tocollect data from and about you including through:\\n* **Direct interactions.**You may giveus your Identity, Contact and Financial Data byfilling informs orbycorresponding withus bypost, phone, email orotherwise This includes personal data you provide when you:\\n1 apply for our products orservices;\\n2 create anaccount withus;\\n3 subscribe toour service;\\n4 request marketing tobesent toyou;\\n5 enter apromotion orsurvey; or\\n6 giveus feedback orcontactus 7 **Automated technologies**orinteractions Asyou interact with our Platform, wewill automatically collect Technical Data about your equipment, browsing actions and patterns Wecollect this personal data byusing cookies, server logs and other similar technologies.## 4 How weuse your personal data\\nWewill only use your personal data when the law allowsus to Most commonly, wewill use your personal data inthe following circumstances:\\n* Where weneed toperform the contract weare about toenter into orhave entered into with you * Where itisnecessary for our legitimate interests (orthose ofathird party) and your interests and fundamental rights donot override those interests\",\n", + " \"* Where weneed tocomply with alegal obligation Generally, wedonot rely onconsent asalegal basis for processing your personal data although wewill get your consent before sending direct marketing communications toyou You have the right towithdraw consent tomarketing atany time bycontactingus ### Purposes for which wewill use your personal data\\nWehave set out below, inatable format, adescription ofall the ways weplan touse your personal data, and which ofthe legal bases werely ontodoso Wehave also identified what our legitimate interests are where appropriate Note that wemay process your personal data for more than one lawful ground depending onthe specific purpose for which weare using your data Please contactus ifyou need details about the specific legal ground weare relying ontoprocess your personal data where more than one ground has been set out inthe table below * **Purpose/Activity**\\n* **Type of data**\\n* **Lawful basis for processing including basis oflegitimate interest**\\n* Toregister you asacustomer\\n* 1 a Identity\\n2 b Contact\\n3 Performance ofacontract with you\\n* Toprocess your order including:\\n1 a Manage payments, fees and charges\\n2\",\n", + " \"b Collect and recover money owed tous\\n3 1 a Identity\\n2 b Contact\\n3 c Financial\\n4 d Transaction\\n5 e Marketingand Communications\\n6 1 a\",\n", + " \"Performance ofacontract with you\\n2 b Necessary for our legitimate interests (torecover debts due tous)\\n* Tomanage our relationship with you which will include:\\n1 a Notifying you about changes toour terms orprivacy policy\\n2 b Asking you toleave areview ortake asurvey\\n3 1 a Identity\\n2 b Contact\\n3 c Profile\\n4 d\",\n", + " \"Marketingand Communications\\n5 1 a Performance of a contract with you\\n2 b Necessary to comply with a legal obligation\\n3 c Necessary for our legitimate interests (to keep our records updated and to study how customers use our products/services)\\n* Toadminister and protect our business and our services (including troubleshooting, data analysis, testing, system maintenance, support, reporting and hosting ofdata)\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4 1\",\n", + " \"a Necessary for our legitimate interests (for running our business, provision ofadministration andIT services, network security, toprevent fraud and inthe context ofabusiness reorganisation orgroup restructuring exercise)\\n2 b Necessary tocomply with alegal obligation\\n* Touse data analytics toimprove our platform, products/services, marketing, customer relationships and experiences\\n* 1 a Technical\\n2 b Usage\\n3 Necessary for our legitimate interests (todefine types ofcustomers for our products and services, tokeep our services updated and relevant, todevelop our business and toinform our marketing strategy)\\n* Tomake suggestions and recommendations toyou about goods orservices that may beofinterest toyou\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4\",\n", + " \"d Usage\\n5 e Profile\\n6 f Marketingand Communications\\n7 Necessary for our legitimate interests (todevelop our products/services and grow our business)\\n### Marketing\\nWestrive toprovide you with choices regarding certain personal data uses, particularly around marketing and advertising ### Promotional offers fromus\\nWemay use your Identity, Contact, Technical, Usage and Profile Data toform aview onwhat wethink you may want orneed, orwhat may beofinterest toyou This ishow wedecide which products, services and offers may berelevant for you You will receive marketing communications fromus ifyou have requested information fromus orpurchased products orservices fromus and you have not opted out ofreceiving that marketing ### Third-party marketing\\nWewill get your express opt-in consent before weshare your personal data with any third party for marketing purposes ### Opting out\\nYou can askus orthird parties tostop sending you marketing messages atany time Where you opt out ofreceiving these marketing messages, this will not apply topersonal data provided tous asaresult ofaproduct/service purchase, product/service experience orother transactions ### Cookies\\nYou can set your browser torefuse all orsome browser cookies, ortoalert you when services set oraccess cookies Ifyou disable orrefuse cookies, please note that some parts ofour platform may become inaccessible ornot function properly\",\n", + " \"For more information about the cookies weuse, please see Cooklie Policy ### Change of purpose\\nWewill only use your personal data for the purposes for which wecollectedit, unless wereasonably consider that weneed touse itfor another reason and that reason iscompatible with the original purpose Ifyou wish toget anexplanation astohow the processing for the new purpose iscompatible with the original purpose, please contactus Ifweneed touse your personal data for anunrelated purpose, wewill notify you and wewill explain the legal basis which allowsus todoso Please note that wemay process your personal data without your knowledge orconsent, incompliance with the above rules, where this isrequired orpermitted bylaw ## 5 Disclosures ofyour personal data\\nWemay share your personal data with the parties set out below for the purposes set out inthe table ««Purposes for which wewill use your personal data»» above * External Third Parties asset out inthe Glossary * Third parties towhom wemay choose tosell, transfer ormerge parts ofour business orour assets Alternatively, wemay seek toacquire other businesses ormerge with them Ifachange happens toour business, then the new owners may use your personal data inthe same way asset out inthis privacy policy Werequire all third parties torespect the security ofyour personal data and totreat itinaccordance with the law Wedonot allow our third-party service providers touse your personal data for their own purposes and only permit them toprocess your personal data for specified purposes and inaccordance with our instructions ## 6 International transfers\\nWedonot currently transfer your personal data outside the European Economic Area (EEA)\",\n", + " \"Ifinthe future wewere totransfer your personal data out ofthe EEA, wewould ensure asimilar degree ofprotection isafforded toitbyensuring atleast one ofthe following safeguards isimplemented:\\n* Wewill only transfer your personal data tocountries that have been deemed toprovide anadequate level ofprotection for personal data bythe European Commission * Where weuse certain service providers, wemay use specific contracts approved bythe European Commission which give personal data the same protection ithas inEurope Please contactus ifyou want further information onthe specific mechanism used byus when transferring your personal data out ofthe EEA ## 7 Data security\\nWehave put inplace appropriate security measures toprevent your personal data from being accidentally lost, used oraccessed inanunauthorised way, altered ordisclosed Inaddition, welimit access toyour personal data tothose employees, agents, contractors and other third parties who have abusiness need toknow They will only process your personal data onour instructions and they are subject toaduty ofconfidentiality Wehave put inplace procedures todeal with any suspected personal data breach and will notify you and any applicable regulator ofabreach where weare legally required todoso ## 8 Data retention\\n### How long will you use mypersonal data for Wewill only retain your personal data for aslong asreasonably necessary tofulfil the purposes wecollected itfor, including for the purposes ofsatisfying any legal, regulatory, tax, accounting orreporting requirements Wemay retain your personal data for alonger period inthe event ofacomplaint orifwereasonably believe there isaprospect oflitigation inrespect toour relationship with you Todetermine the appropriate retention period for personal data, weconsider the amount, nature and sensitivity ofthe personal data, the potential risk ofharm from unauthorised use ordisclosure ofyour personal data, the purposes for which weprocess your personal data and whether wecan achieve those purposes through other means, and the applicable legal, regulatory, tax, accounting orother requirements Bylaw wehave tokeep basic information about our customers (including Contact, Identity, Financial and Transaction Data) for six years after they cease being customers for tax purposes Insome circumstances you can askus todelete your data: see your legal rights below for further information\",\n", + " \"Insome circumstances wewill anonymise your personal data (sothat itcan nolonger beassociated with you) for research orstatistical purposes, inwhich case wemay use this information indefinitely without further notice toyou ## 9 Your legal rights\\nUnder certain circumstances, you have rights under data protection laws inrelation toyour personal data You have the rightto:\\n* **Request access**toyour personal data (commonly known asa««data subject access request»») This enables you toreceive acopy ofthe personal data wehold about you and tocheck that weare lawfully processingit * **Request correction**ofthe personal data that wehold about you This enables you tohave any incomplete orinaccurate data wehold about you corrected, though wemay need toverify the accuracy ofthe new data you provide tous * **Request erasure**ofyour personal data This enables you toaskus todelete orremove personal data where there isnogood reason forus continuing toprocessit You also have the right toaskus todelete orremove your personal data where you have successfullyexercised your right toobject toprocessing (see below), where wemay have processed your information unlawfully orwhere weare required toerase your personal data tocomply with local law Note, however, that wemay not always beable tocomply with your request oferasure for specific legal reasons which will benotified toyou, ifapplicable, atthe time ofyour request * **Object toprocessing**ofyour personal data where weare relying onalegitimate interest (orthose ofathird party) and there issomething about your particular situation which makes you want toobject toprocessing onthis ground asyou feel itimpacts onyour fundamental rights and freedoms You also have the right toobject where weare processing your personal data for direct marketing purposes Insome cases, wemay demonstrate that wehave compelling legitimate grounds toprocess your information which override your rights and freedoms * **Request restriction ofprocessing**ofyour personal data\",\n", + " \"This enables you toaskus tosuspend the processing ofyour personal data inthe following scenarios:\\n1 Ifyou wantus toestablish the data’’s accuracy 2 Where our use ofthe data isunlawful but you donot wantus toeraseit 3 Where you needus tohold the data even ifwenolonger require itasyou need ittoestablish, exercise ordefend legal claims 4 You have objected toour use ofyour data but weneed toverify whether wehave overriding legitimate grounds touseit 5 **Request the transfer**ofyour personal data toyou ortoathird party Wewill provide toyou, orathird party you have chosen, your personal data inastructured, commonly used, machine-readable format Note that this right only applies toautomated information which you initially provided consent forus touse orwhere weused the information toperform acontract with you 6 **Withdraw consent atany time**where weare relying onconsent toprocess your personal data However, this will not affect the lawfulness ofany processing carried out before you withdraw your consent\",\n", + " \"Ifyou withdraw your consent, wemay not beable toprovide certain products orservices toyou Wewill advise you ifthis isthe case atthe time you withdraw your consent Ifyou wish toexercise any ofthe rights set out above, please contactus ### No fee usually required\\nYou will not have topay afee toaccess your personal data (ortoexercise any ofthe other rights) However, wemay charge areasonable fee ifyour request isclearly unfounded, repetitive orexcessive Alternatively, wecould refuse tocomply with your request inthese circumstances ### What we may need from you\\nWemay need torequest specific information from you tohelpus confirm your identity and ensure your right toaccess your personal data (ortoexercise any ofyour other rights) This isasecurity measure toensure that personal data isnot disclosed toany person who has noright toreceiveit Wemay also contact you toask you for further information inrelation toyour request tospeed upour response ### Time limit to respond\\nWetry torespond toall legitimate requests within one month Occasionally itcould takeus longer than amonth ifyour request isparticularly complex oryou have made anumber ofrequests Inthis case, wewill notify you and keep you updated ## 10 Glossary\\n**Legitimate Interest**means the interest ofour business inconducting and managing our business toenableus togive you the best service/product and the best and most secure experience Wemake sure weconsider and balance any potential impact onyou (both positive and negative) and your rights before weprocess your personal data for our legitimate interests\",\n", + " \"Wedonot use your personal data for activities where our interests are overridden bythe impact onyou (unless wehave your consent orare otherwise required orpermitted tobylaw) You can obtain further information about how weassess our legitimate interests against any potential impact onyou inrespect ofspecific activities bycontactingus **Performance ofContract**means processing your data where itisnecessary for the performance ofacontract towhich you are aparty ortotake steps atyour request before entering into such acontract **Comply with alegal obligation**means processing your personal data where itisnecessary for compliance with alegal obligation that weare subjectto **External Third Parties**\\n* Service providers acting asprocessors who provideIT and system administration services * Providers ofour cloud services including AWS and Google * Professional advisers acting asprocessors orjoint controllers including lawyers, bankers, auditors and insurers based inthe United Kingdom who provide consultancy, banking, legal, insurance and accounting services * Regulators and other authorities acting asprocessors orjoint controllers based inthe United Kingdom who require reporting ofprocessing activities incertain circumstances * Our third party partners and affiliates who may manage your customer relationship onour behalf * Stripe for payment management ## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved\",\n", + " \"* [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 152 Type: init_branch\n", + "output: {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Privacy Policy\\nLast updated: 27/03/2023\\n## INTRODUCTION\\nQuickBlox respects your privacy and iscommitted toprotecting your personal data This privacy policy will inform you astohow welook after your personal data when you access our services and tell you about your privacy rights and how the law protects you Please also use the Glossary tounderstand the meaning ofsome ofthe terms used inthis privacy policy ## 1 Important information and who we are\\n### Purpose ofthis privacy policy\\nThis privacy policy aims togive you information onhow QuickBlox collects and processes your personal data through your use ofour services, including any data you may provide through this website when you sign upto, orpurchase one ofour products orservices Itisimportant that you read this privacy policy together with any other privacy policy orfair processing policy wemay provide onspecific occasions when weare collecting, orprocessing, personal data about you, sothat you are fully aware ofhow and why weare using your data This privacy policy supplements other notices and privacy policies and isnot intended tooverride them ### Controller\\nInjoit Limited isthe controller and isresponsible for your personal data (collectively referred toasQuickBlox, ««we»»,««us»» or««our»» inthis privacy policy) Wehave appointed adata privacy manager who isresponsible for overseeing questions inrelation tothis privacy policy Ifyou have any questions about this privacy policy, including any requests toexercise your legal rights, please contact the data privacy manager using the details set out below ### Contact details\\nIf you have any questions about this privacy policy or our privacy practices, please contact our data privacy manager in the following ways:\\n* **Full name of legal entity:**\\n* **Email address:**\\n* **Telephone number:**\\n* Injoit Limited\\n* [gdpr@quickblox.com](mailto:gdpr@quickblox.com)\\n* [+1 415 755 8221]()\\nYou have the right tomake acomplaint atany time tothe Information Commissioner’’s Office (ICO), theUK supervisory authority for data protection issues (www.ico.org.uk) Wewould, however, appreciate the chance todeal with your concerns before you approach the ICO soplease contactus inthe first instance ### Changes tothe privacy policy and your duty toinformus ofchanges\\nWekeep our privacy policy under regular review Itisimportant that the personal data wehold about you isaccurate and current Please keepus informed ifyour personal data changes during your relationship withus\",\n", + " \"## 2 The data wecollect about you\\nPersonal data, orpersonal information, means any information about anindividual from which that person can beidentified Itdoes not include data where the identity has been removed (anonymous data) Wemay collect, use, store and transfer different kinds ofpersonal data about you which wehave grouped together asfollows:\\n* **Identity Data**which includes first name, maiden name, last name, username orsimilar identifier, title * **Contact Data**which includes billing address, home address, email address and telephone numbers * **Technical Data**which includes your internet protocol (IP) address, your login data, browser type and version, hardware information, time zone setting and location, browser plug-in types and versions, operating system and platform, and other technology onthe devices you use toaccess our platform * **Profile Data**which includes your username and password, purchases ororders made byyou, your interests, preferences, feedback and survey responses * **Usage Data**which includes information about how you use our platform, products and services * **Marketing and Communications Data**which includes your preferences inreceiving marketing fromus and our third parties and your communication preferences Wealso collect, use and share**Aggregated**Data such asstatistical ordemographic data for any purpose Aggregated Data could bederived from your personal data but isnot considered personal data inlaw asthis data will not directly orindirectly reveal your identity ### Ifyou fail toprovide personal data\\nWhere weneed tocollect personal data bylaw, orunder the terms ofacontract wehave with you, and you fail toprovide that data when requested, wemay not beable toperform the contract wehave orare trying toenter into with you (for example, toprovide you with our products orservices) Inthis case, wemay have tocancel aproduct orservice you have withus, but wewill notify you ifthis isthe case atthe time ## 3 How isyour personal data collected\",\n", + " \"Weuse different methods tocollect data from and about you including through:\\n* **Direct interactions.**You may giveus your Identity, Contact and Financial Data byfilling informs orbycorresponding withus bypost, phone, email orotherwise This includes personal data you provide when you:\\n1 apply for our products orservices;\\n2 create anaccount withus;\\n3 subscribe toour service;\\n4 request marketing tobesent toyou;\\n5 enter apromotion orsurvey; or\\n6 giveus feedback orcontactus 7 **Automated technologies**orinteractions Asyou interact with our Platform, wewill automatically collect Technical Data about your equipment, browsing actions and patterns Wecollect this personal data byusing cookies, server logs and other similar technologies.## 4 How weuse your personal data\\nWewill only use your personal data when the law allowsus to Most commonly, wewill use your personal data inthe following circumstances:\\n* Where weneed toperform the contract weare about toenter into orhave entered into with you * Where itisnecessary for our legitimate interests (orthose ofathird party) and your interests and fundamental rights donot override those interests\",\n", + " \"* Where weneed tocomply with alegal obligation Generally, wedonot rely onconsent asalegal basis for processing your personal data although wewill get your consent before sending direct marketing communications toyou You have the right towithdraw consent tomarketing atany time bycontactingus ### Purposes for which wewill use your personal data\\nWehave set out below, inatable format, adescription ofall the ways weplan touse your personal data, and which ofthe legal bases werely ontodoso Wehave also identified what our legitimate interests are where appropriate Note that wemay process your personal data for more than one lawful ground depending onthe specific purpose for which weare using your data Please contactus ifyou need details about the specific legal ground weare relying ontoprocess your personal data where more than one ground has been set out inthe table below * **Purpose/Activity**\\n* **Type of data**\\n* **Lawful basis for processing including basis oflegitimate interest**\\n* Toregister you asacustomer\\n* 1 a Identity\\n2 b Contact\\n3 Performance ofacontract with you\\n* Toprocess your order including:\\n1 a Manage payments, fees and charges\\n2\",\n", + " \"b Collect and recover money owed tous\\n3 1 a Identity\\n2 b Contact\\n3 c Financial\\n4 d Transaction\\n5 e Marketingand Communications\\n6 1 a\",\n", + " \"Performance ofacontract with you\\n2 b Necessary for our legitimate interests (torecover debts due tous)\\n* Tomanage our relationship with you which will include:\\n1 a Notifying you about changes toour terms orprivacy policy\\n2 b Asking you toleave areview ortake asurvey\\n3 1 a Identity\\n2 b Contact\\n3 c Profile\\n4 d\",\n", + " \"Marketingand Communications\\n5 1 a Performance of a contract with you\\n2 b Necessary to comply with a legal obligation\\n3 c Necessary for our legitimate interests (to keep our records updated and to study how customers use our products/services)\\n* Toadminister and protect our business and our services (including troubleshooting, data analysis, testing, system maintenance, support, reporting and hosting ofdata)\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4 1\",\n", + " \"a Necessary for our legitimate interests (for running our business, provision ofadministration andIT services, network security, toprevent fraud and inthe context ofabusiness reorganisation orgroup restructuring exercise)\\n2 b Necessary tocomply with alegal obligation\\n* Touse data analytics toimprove our platform, products/services, marketing, customer relationships and experiences\\n* 1 a Technical\\n2 b Usage\\n3 Necessary for our legitimate interests (todefine types ofcustomers for our products and services, tokeep our services updated and relevant, todevelop our business and toinform our marketing strategy)\\n* Tomake suggestions and recommendations toyou about goods orservices that may beofinterest toyou\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4\",\n", + " \"d Usage\\n5 e Profile\\n6 f Marketingand Communications\\n7 Necessary for our legitimate interests (todevelop our products/services and grow our business)\\n### Marketing\\nWestrive toprovide you with choices regarding certain personal data uses, particularly around marketing and advertising ### Promotional offers fromus\\nWemay use your Identity, Contact, Technical, Usage and Profile Data toform aview onwhat wethink you may want orneed, orwhat may beofinterest toyou This ishow wedecide which products, services and offers may berelevant for you You will receive marketing communications fromus ifyou have requested information fromus orpurchased products orservices fromus and you have not opted out ofreceiving that marketing ### Third-party marketing\\nWewill get your express opt-in consent before weshare your personal data with any third party for marketing purposes ### Opting out\\nYou can askus orthird parties tostop sending you marketing messages atany time Where you opt out ofreceiving these marketing messages, this will not apply topersonal data provided tous asaresult ofaproduct/service purchase, product/service experience orother transactions ### Cookies\\nYou can set your browser torefuse all orsome browser cookies, ortoalert you when services set oraccess cookies Ifyou disable orrefuse cookies, please note that some parts ofour platform may become inaccessible ornot function properly\",\n", + " \"For more information about the cookies weuse, please see Cooklie Policy ### Change of purpose\\nWewill only use your personal data for the purposes for which wecollectedit, unless wereasonably consider that weneed touse itfor another reason and that reason iscompatible with the original purpose Ifyou wish toget anexplanation astohow the processing for the new purpose iscompatible with the original purpose, please contactus Ifweneed touse your personal data for anunrelated purpose, wewill notify you and wewill explain the legal basis which allowsus todoso Please note that wemay process your personal data without your knowledge orconsent, incompliance with the above rules, where this isrequired orpermitted bylaw ## 5 Disclosures ofyour personal data\\nWemay share your personal data with the parties set out below for the purposes set out inthe table ««Purposes for which wewill use your personal data»» above * External Third Parties asset out inthe Glossary * Third parties towhom wemay choose tosell, transfer ormerge parts ofour business orour assets Alternatively, wemay seek toacquire other businesses ormerge with them Ifachange happens toour business, then the new owners may use your personal data inthe same way asset out inthis privacy policy Werequire all third parties torespect the security ofyour personal data and totreat itinaccordance with the law Wedonot allow our third-party service providers touse your personal data for their own purposes and only permit them toprocess your personal data for specified purposes and inaccordance with our instructions ## 6 International transfers\\nWedonot currently transfer your personal data outside the European Economic Area (EEA)\",\n", + " \"Ifinthe future wewere totransfer your personal data out ofthe EEA, wewould ensure asimilar degree ofprotection isafforded toitbyensuring atleast one ofthe following safeguards isimplemented:\\n* Wewill only transfer your personal data tocountries that have been deemed toprovide anadequate level ofprotection for personal data bythe European Commission * Where weuse certain service providers, wemay use specific contracts approved bythe European Commission which give personal data the same protection ithas inEurope Please contactus ifyou want further information onthe specific mechanism used byus when transferring your personal data out ofthe EEA ## 7 Data security\\nWehave put inplace appropriate security measures toprevent your personal data from being accidentally lost, used oraccessed inanunauthorised way, altered ordisclosed Inaddition, welimit access toyour personal data tothose employees, agents, contractors and other third parties who have abusiness need toknow They will only process your personal data onour instructions and they are subject toaduty ofconfidentiality Wehave put inplace procedures todeal with any suspected personal data breach and will notify you and any applicable regulator ofabreach where weare legally required todoso ## 8 Data retention\\n### How long will you use mypersonal data for Wewill only retain your personal data for aslong asreasonably necessary tofulfil the purposes wecollected itfor, including for the purposes ofsatisfying any legal, regulatory, tax, accounting orreporting requirements Wemay retain your personal data for alonger period inthe event ofacomplaint orifwereasonably believe there isaprospect oflitigation inrespect toour relationship with you Todetermine the appropriate retention period for personal data, weconsider the amount, nature and sensitivity ofthe personal data, the potential risk ofharm from unauthorised use ordisclosure ofyour personal data, the purposes for which weprocess your personal data and whether wecan achieve those purposes through other means, and the applicable legal, regulatory, tax, accounting orother requirements Bylaw wehave tokeep basic information about our customers (including Contact, Identity, Financial and Transaction Data) for six years after they cease being customers for tax purposes Insome circumstances you can askus todelete your data: see your legal rights below for further information\",\n", + " \"Insome circumstances wewill anonymise your personal data (sothat itcan nolonger beassociated with you) for research orstatistical purposes, inwhich case wemay use this information indefinitely without further notice toyou ## 9 Your legal rights\\nUnder certain circumstances, you have rights under data protection laws inrelation toyour personal data You have the rightto:\\n* **Request access**toyour personal data (commonly known asa««data subject access request»») This enables you toreceive acopy ofthe personal data wehold about you and tocheck that weare lawfully processingit * **Request correction**ofthe personal data that wehold about you This enables you tohave any incomplete orinaccurate data wehold about you corrected, though wemay need toverify the accuracy ofthe new data you provide tous * **Request erasure**ofyour personal data This enables you toaskus todelete orremove personal data where there isnogood reason forus continuing toprocessit You also have the right toaskus todelete orremove your personal data where you have successfullyexercised your right toobject toprocessing (see below), where wemay have processed your information unlawfully orwhere weare required toerase your personal data tocomply with local law Note, however, that wemay not always beable tocomply with your request oferasure for specific legal reasons which will benotified toyou, ifapplicable, atthe time ofyour request * **Object toprocessing**ofyour personal data where weare relying onalegitimate interest (orthose ofathird party) and there issomething about your particular situation which makes you want toobject toprocessing onthis ground asyou feel itimpacts onyour fundamental rights and freedoms You also have the right toobject where weare processing your personal data for direct marketing purposes Insome cases, wemay demonstrate that wehave compelling legitimate grounds toprocess your information which override your rights and freedoms * **Request restriction ofprocessing**ofyour personal data\",\n", + " \"This enables you toaskus tosuspend the processing ofyour personal data inthe following scenarios:\\n1 Ifyou wantus toestablish the data’’s accuracy 2 Where our use ofthe data isunlawful but you donot wantus toeraseit 3 Where you needus tohold the data even ifwenolonger require itasyou need ittoestablish, exercise ordefend legal claims 4 You have objected toour use ofyour data but weneed toverify whether wehave overriding legitimate grounds touseit 5 **Request the transfer**ofyour personal data toyou ortoathird party Wewill provide toyou, orathird party you have chosen, your personal data inastructured, commonly used, machine-readable format Note that this right only applies toautomated information which you initially provided consent forus touse orwhere weused the information toperform acontract with you 6 **Withdraw consent atany time**where weare relying onconsent toprocess your personal data However, this will not affect the lawfulness ofany processing carried out before you withdraw your consent\",\n", + " \"Ifyou withdraw your consent, wemay not beable toprovide certain products orservices toyou Wewill advise you ifthis isthe case atthe time you withdraw your consent Ifyou wish toexercise any ofthe rights set out above, please contactus ### No fee usually required\\nYou will not have topay afee toaccess your personal data (ortoexercise any ofthe other rights) However, wemay charge areasonable fee ifyour request isclearly unfounded, repetitive orexcessive Alternatively, wecould refuse tocomply with your request inthese circumstances ### What we may need from you\\nWemay need torequest specific information from you tohelpus confirm your identity and ensure your right toaccess your personal data (ortoexercise any ofyour other rights) This isasecurity measure toensure that personal data isnot disclosed toany person who has noright toreceiveit Wemay also contact you toask you for further information inrelation toyour request tospeed upour response ### Time limit to respond\\nWetry torespond toall legitimate requests within one month Occasionally itcould takeus longer than amonth ifyour request isparticularly complex oryou have made anumber ofrequests Inthis case, wewill notify you and keep you updated ## 10 Glossary\\n**Legitimate Interest**means the interest ofour business inconducting and managing our business toenableus togive you the best service/product and the best and most secure experience Wemake sure weconsider and balance any potential impact onyou (both positive and negative) and your rights before weprocess your personal data for our legitimate interests\",\n", + " \"Wedonot use your personal data for activities where our interests are overridden bythe impact onyou (unless wehave your consent orare otherwise required orpermitted tobylaw) You can obtain further information about how weassess our legitimate interests against any potential impact onyou inrespect ofspecific activities bycontactingus **Performance ofContract**means processing your data where itisnecessary for the performance ofacontract towhich you are aparty ortotake steps atyour request before entering into such acontract **Comply with alegal obligation**means processing your personal data where itisnecessary for compliance with alegal obligation that weare subjectto **External Third Parties**\\n* Service providers acting asprocessors who provideIT and system administration services * Providers ofour cloud services including AWS and Google * Professional advisers acting asprocessors orjoint controllers including lawyers, bankers, auditors and insurers based inthe United Kingdom who provide consultancy, banking, legal, insurance and accounting services * Regulators and other authorities acting asprocessors orjoint controllers based inthe United Kingdom who require reporting ofprocessing activities incertain circumstances * Our third party partners and affiliates who may manage your customer relationship onour behalf * Stripe for payment management ## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved\",\n", + " \"* [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"costs\": {\n", + " \"ai_cost\": 0,\n", + " \"bytes_transferred_cost\": 0,\n", + " \"compute_cost\": 0.0001,\n", + " \"file_cost\": 0.0002,\n", + " \"total_cost\": 0.0004,\n", + " \"transform_cost\": 0.0001\n", + " },\n", + " \"error\": null,\n", + " \"status\": 200,\n", + " \"url\": \"https://quickblox.com/privacy-policy/\"\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 153 Type: finish_branch\n", + "output: [\n", + " {\n", + " \"created_at\": \"2024-12-16T20:09:56.144855Z\",\n", + " \"id\": \"df682ff9-595c-403e-853e-a292a30d8c1b\",\n", + " \"jobs\": [\n", + " \"53a783b5-e5fd-4412-a63c-8d4d9327587e\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:09:56.121164Z\",\n", + " \"id\": \"caf19cfa-3969-4ba3-bc42-4190c8ef5a09\",\n", + " \"jobs\": [\n", + " \"83dcbbee-cf29-47ad-9991-412927946f7f\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:09:56.192716Z\",\n", + " \"id\": \"ecf13b56-070c-4deb-8ca2-333891d14d7f\",\n", + " \"jobs\": [\n", + " \"8ffda58e-b473-4b9f-b59b-aafddba12b30\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:09:59.306138Z\",\n", + " \"id\": \"4f86452c-8c52-4f5e-814d-4c79d43ce093\",\n", + " \"jobs\": [\n", + " \"4e9c6028-c35c-4529-b420-5898f0bee811\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:09:59.288487Z\",\n", + " \"id\": \"f535903f-f4f9-4195-86e6-e121d8d2df4f\",\n", + " \"jobs\": [\n", + " \"44b556d7-07ca-41f5-b0b6-492a473da0a7\"\n", + " ]\n", + " }\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 154 Type: finish_branch\n", + "output: [\n", + " {\n", + " \"created_at\": \"2024-12-16T20:09:56.144855Z\",\n", + " \"id\": \"df682ff9-595c-403e-853e-a292a30d8c1b\",\n", + " \"jobs\": [\n", + " \"53a783b5-e5fd-4412-a63c-8d4d9327587e\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:09:56.121164Z\",\n", + " \"id\": \"caf19cfa-3969-4ba3-bc42-4190c8ef5a09\",\n", + " \"jobs\": [\n", + " \"83dcbbee-cf29-47ad-9991-412927946f7f\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:09:56.192716Z\",\n", + " \"id\": \"ecf13b56-070c-4deb-8ca2-333891d14d7f\",\n", + " \"jobs\": [\n", + " \"8ffda58e-b473-4b9f-b59b-aafddba12b30\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:09:59.306138Z\",\n", + " \"id\": \"4f86452c-8c52-4f5e-814d-4c79d43ce093\",\n", + " \"jobs\": [\n", + " \"4e9c6028-c35c-4529-b420-5898f0bee811\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:09:59.288487Z\",\n", + " \"id\": \"f535903f-f4f9-4195-86e6-e121d8d2df4f\",\n", + " \"jobs\": [\n", + " \"44b556d7-07ca-41f5-b0b6-492a473da0a7\"\n", + " ]\n", + " }\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 155 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:09:59.306138Z\",\n", + " \"id\": \"4f86452c-8c52-4f5e-814d-4c79d43ce093\",\n", + " \"jobs\": [\n", + " \"4e9c6028-c35c-4529-b420-5898f0bee811\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 156 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:09:59.288487Z\",\n", + " \"id\": \"f535903f-f4f9-4195-86e6-e121d8d2df4f\",\n", + " \"jobs\": [\n", + " \"44b556d7-07ca-41f5-b0b6-492a473da0a7\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 157 Type: init_branch\n", + "output: \"### Itay Shechter,Co-founder, Vanywhere\\nQuickBlox chat has enhanced our platform and allowed us to facilitate better communication between caregivers and care coordinators\\n### Robin Jerome,Principal Architect, BayShore HealthCare\\nI have worked with QuickBlox for several years using their Flutter SDK to add chat features to several client apps Their SDKs are easy to work with, saving us much time and money not having to build chat from scratch ### Samyak Jain,CEO & Founder, Pixel apps\\n[Previous](#carousel)[Next](#carousel)\\n## Explore Documentation\\nFamiliarize yourself with our chat and calling APIs Use our platform SDKs and code samples to learn more about the software and integration process [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n[Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n[JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n[React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n[Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n[Server API](https://quickblox.com/sdk/chat-api/)\\n## Start For FREE Customize Everything Build Your Dream Online Platform Our real-time chat and messaging solutions scale as your business grows, and can be customized to create 100% custom in-app messaging [Contact Sales](https://quickblox.com/enterprise/#get-enterprise)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere\\nThe chunk is a section from a document detailing the features, products, and testimonials of QuickBlox, a company offering communication solutions through APIs and SDKs. It includes testimonials from users highlighting the benefits of QuickBlox's chat features, followed by a detailed list of products, solutions, and resources available for different industries and developers. The chunk emphasizes the ease of integrating QuickBlox's services and provides links to documentation, support, and company information.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 158 Type: init_branch\n", + "output: \"Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\\nThe chunk lists QuickBlox's social media profiles, encouraging visitors to engage with the company on various platforms. It fits within the broader context of the document, which provides comprehensive information about QuickBlox's products, services, and resources, aiming to enhance communication tools in apps and websites.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 159 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:09:56.121164Z\",\n", + " \"id\": \"caf19cfa-3969-4ba3-bc42-4190c8ef5a09\",\n", + " \"jobs\": [\n", + " \"83dcbbee-cf29-47ad-9991-412927946f7f\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 160 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:09:56.144855Z\",\n", + " \"id\": \"df682ff9-595c-403e-853e-a292a30d8c1b\",\n", + " \"jobs\": [\n", + " \"53a783b5-e5fd-4412-a63c-8d4d9327587e\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 161 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:09:56.192716Z\",\n", + " \"id\": \"ecf13b56-070c-4deb-8ca2-333891d14d7f\",\n", + " \"jobs\": [\n", + " \"8ffda58e-b473-4b9f-b59b-aafddba12b30\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 162 Type: init_branch\n", + "output: \"#### Docs:\\nIntegrating QuickBlox across multiple platforms #### Support:\\nQuickblox support is a click away ## Trust QuickBlox for secure communication\\n### SOC2\\n### HIPAA\\n### GDPR\\n## Do you need additional security, compliance, and support for the long-term We have a more scalable and flexible solution for you, customized to your unique business/app requirements [Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Insanely powerful in-app chat solutions- for every industry\\n* #### Healthcare\\nProvide better care for your patients and teams using feature-rich HIPAA\\u2011compliant chat solutions Integrate powerful telemedicine communication tools into your existing platform * #### Finance & Banking\\nSecure communication solutions for the financial and banking industry to support your clients Easily integrated with your banking APIs with full customization available * #### Marketplaces & E-commerce\\nIntegrate chat and calling into your e\\u2011commerce marketplace platform to connect with customers using chat, audio, and video calling features * #### Social Networking\\nGive your users the option to connect one-on-one or with a group, usinghigh quality voice, video, and chatbox app features - build a well connected community * #### Education & Coaching\\nAdd communication functions to connect teachers with students, coaches with players, and trainers with clients Appropriate for any remote learning application ## Trusted by Developers & Product Owners\\nCommunication with the QuickBlox team has been great The QuickBlox team is a vital partner and I appreciate their support, their platform, and its capabilities ### Justin Harr,Founder, Eden\\nWhat I like best about QuickBlox is their reliability and performance - I've rarely experienced any issues with their solutions, whether I'm using their video or voice SDK, or their chat API\\nThe chunk provides an overview of QuickBlox's secure communication solutions, emphasizing integration across multiple platforms and industries such as healthcare, finance, e-commerce, social networking, and education. It highlights the company's compliance with SOC2, HIPAA, and GDPR standards, and mentions the scalability and customization of its in-app chat solutions. Additionally, it includes testimonials from developers and product owners praising QuickBlox's reliability and performance.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 163 Type: init_branch\n", + "output: \"enterpriseinstances\\napplications\\nchatsperday\\nrequestspermonth\\n## Wherever you are in your product journey, we have chat, voice, and video APIs ready to build new features into your app\\n[Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Why QuickBlox Quickblox APIs are equipped to support mobile applications and websites at different stages, be it a fresh product idea, an MVP, early stage startup or a scaling enterprise Our documentation and developer support are highly efficient to make your dream product a reality ### Chat API and Feature-Rich SDKs\\nOur versatile software is designed for multi\\u2011platform use including iOS, Android, and the Web #### SDKs and Code Samples:\\nCross-platform kits and sample apps for easy and quick integration of chat #### Restful API:\\nEnable real-time communication via the server ### Fully Customizable White Label Solutions\\nCustomizable UI Kits to speed up your design workflow and build a product of your vision as well as a ready white\\u2011label solution for virtual rooms and video calling use cases #### UI Kits:\\nCustomize everything as you want with our ready UI Kits #### Q-Consultation:\\nWhite\\u2011label solution for teleconsultation and similar use cases ### Cloud & Dedicated Infrastructure\\nHost your apps wherever you want - opt for a dedicated fully managed server or on\\u2011premises infrastructure Pick a cloud provider that\\u2019s best as per your business goals #### Cloud:\\nA dedicated QuickBlox cloud or your own virtual cloud #### On-Premise:\\nDeployed and managed on your own physical server ### Rich Documentation & Constant Support\\nGet easy step by step guidance to build a powerful chat/messaging/communication app Easily integrate new features using our documentation and developer support\\nThe chunk is part of a section highlighting QuickBlox's comprehensive offerings for building communication features in apps, emphasizing their chat, voice, and video APIs, SDKs, customizable UI Kits, and infrastructure options. It underscores QuickBlox's support for various stages of product development, from startups to scaling enterprises, and their robust documentation and customer support.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 164 Type: init_branch\n", + "output: \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n### New ProductOpen source video consultation software with OpenAI Integration\\nElevate Your Video Communication with Q‑Consultation\\n[Learn more](https://quickblox.com/products/q-consultation/open-source/)\\n### New ProductBuild Exceptional Chat Experiences with AI‑Enhanced UI Kits\\n[Learn more](https://quickblox.com/ui-kit/)\\n[Previous](#carouselMainTopSlider)[Next](#carouselMainTopSlider)\\n# Build Your Own Messenger With Real-Time Chat & Video APIs\\nAdd instant messaging and online video chat to any Android, iOS, or Web application, with ease and flexibility In-app chat and calling APIs and SDKs, trusted globally by developers, startups, and enterprises [Start FREE Trial](https://admin.quickblox.com/signup?_ga=2.166318714.519349007.1585816300-1447393030.1568645682)[Talk to an Expert](https://quickblox.com/enterprise/#get-enterprise)\\n## Launch quickly and convert more prospects withreal‑‑timeChat, Audio, and Video communication\\nIf you own a product, you know exactly how drawn-out and exorbitant it can be to build real-time communication features from scratch Quickblox can help you design, create, and enter the market at a much faster rate with APIs and SDKs that shortcut product and engineering delivery Convert your ideas into a successful product with us and watch the engagement rate rise, while you build a loyal user base [\\n#### Chat\\nEmbedded chat features- you can customize and build a fully-functioning chat product for mobile and web in a matter of hours ](https://quickblox.com/products/chat/)[\\n#### Voice and Video calling\\nStreamline customer usability with high\\u2011quality peer\\u2011to\\u2011peer voice and video calls Drive more engagement and build meaningful connections ](https://quickblox.com/products/voice-and-video-calling/)[\\n#### Video Conferencing\\nCreate real-time video group interactions to enhance collaboration and productivity Designed to meet your user experience goals and increase conversations ](https://quickblox.com/products/video-conferencing/)[\\n#### Push Notifications\\nGive your customers/users reasons to keep coming back - send in-app reminders, offers, updates and watch retention rates climb ](https://quickblox.com/products/push-notifications/)\\n#### Data Storage\\nProtect your data from hackers and unwanted modification attempts using flexible data storage options Choose between dedicated, on-premise, or your own virtual cloud #### Secure File Sharing\\nAllow sharing and linking of all types of files (images, audio, video, docs, and other file formats) and enable your users to interact and engage more ## Over30,000 software developers and organizations worldwide are using QuickBlox messagingAPI\\nThis chunk provides an overview of QuickBlox's product offerings and solutions, highlighting their communication tools, AI-enhanced features, white label solutions, and industry-specific applications. It serves as a comprehensive guide to QuickBlox's SDKs, APIs, and UI Kits for building customizable chat and video applications.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 165 Type: step\n", + "output: {\n", + " \"final_chunks\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n### New ProductOpen source video consultation software with OpenAI Integration\\nElevate Your Video Communication with Q‑Consultation\\n[Learn more](https://quickblox.com/products/q-consultation/open-source/)\\n### New ProductBuild Exceptional Chat Experiences with AI‑Enhanced UI Kits\\n[Learn more](https://quickblox.com/ui-kit/)\\n[Previous](#carouselMainTopSlider)[Next](#carouselMainTopSlider)\\n# Build Your Own Messenger With Real-Time Chat & Video APIs\\nAdd instant messaging and online video chat to any Android, iOS, or Web application, with ease and flexibility In-app chat and calling APIs and SDKs, trusted globally by developers, startups, and enterprises [Start FREE Trial](https://admin.quickblox.com/signup?_ga=2.166318714.519349007.1585816300-1447393030.1568645682)[Talk to an Expert](https://quickblox.com/enterprise/#get-enterprise)\\n## Launch quickly and convert more prospects withreal‑‑timeChat, Audio, and Video communication\\nIf you own a product, you know exactly how drawn-out and exorbitant it can be to build real-time communication features from scratch Quickblox can help you design, create, and enter the market at a much faster rate with APIs and SDKs that shortcut product and engineering delivery Convert your ideas into a successful product with us and watch the engagement rate rise, while you build a loyal user base [\\n#### Chat\\nEmbedded chat features- you can customize and build a fully-functioning chat product for mobile and web in a matter of hours ](https://quickblox.com/products/chat/)[\\n#### Voice and Video calling\\nStreamline customer usability with high\\u2011quality peer\\u2011to\\u2011peer voice and video calls Drive more engagement and build meaningful connections ](https://quickblox.com/products/voice-and-video-calling/)[\\n#### Video Conferencing\\nCreate real-time video group interactions to enhance collaboration and productivity Designed to meet your user experience goals and increase conversations ](https://quickblox.com/products/video-conferencing/)[\\n#### Push Notifications\\nGive your customers/users reasons to keep coming back - send in-app reminders, offers, updates and watch retention rates climb ](https://quickblox.com/products/push-notifications/)\\n#### Data Storage\\nProtect your data from hackers and unwanted modification attempts using flexible data storage options Choose between dedicated, on-premise, or your own virtual cloud #### Secure File Sharing\\nAllow sharing and linking of all types of files (images, audio, video, docs, and other file formats) and enable your users to interact and engage more ## Over30,000 software developers and organizations worldwide are using QuickBlox messagingAPI\\nThis chunk provides an overview of QuickBlox's product offerings and solutions, highlighting their communication tools, AI-enhanced features, white label solutions, and industry-specific applications. It serves as a comprehensive guide to QuickBlox's SDKs, APIs, and UI Kits for building customizable chat and video applications.\",\n", + " \"enterpriseinstances\\napplications\\nchatsperday\\nrequestspermonth\\n## Wherever you are in your product journey, we have chat, voice, and video APIs ready to build new features into your app\\n[Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Why QuickBlox Quickblox APIs are equipped to support mobile applications and websites at different stages, be it a fresh product idea, an MVP, early stage startup or a scaling enterprise Our documentation and developer support are highly efficient to make your dream product a reality ### Chat API and Feature-Rich SDKs\\nOur versatile software is designed for multi\\u2011platform use including iOS, Android, and the Web #### SDKs and Code Samples:\\nCross-platform kits and sample apps for easy and quick integration of chat #### Restful API:\\nEnable real-time communication via the server ### Fully Customizable White Label Solutions\\nCustomizable UI Kits to speed up your design workflow and build a product of your vision as well as a ready white\\u2011label solution for virtual rooms and video calling use cases #### UI Kits:\\nCustomize everything as you want with our ready UI Kits #### Q-Consultation:\\nWhite\\u2011label solution for teleconsultation and similar use cases ### Cloud & Dedicated Infrastructure\\nHost your apps wherever you want - opt for a dedicated fully managed server or on\\u2011premises infrastructure Pick a cloud provider that\\u2019s best as per your business goals #### Cloud:\\nA dedicated QuickBlox cloud or your own virtual cloud #### On-Premise:\\nDeployed and managed on your own physical server ### Rich Documentation & Constant Support\\nGet easy step by step guidance to build a powerful chat/messaging/communication app Easily integrate new features using our documentation and developer support\\nThe chunk is part of a section highlighting QuickBlox's comprehensive offerings for building communication features in apps, emphasizing their chat, voice, and video APIs, SDKs, customizable UI Kits, and infrastructure options. It underscores QuickBlox's support for various stages of product development, from startups to scaling enterprises, and their robust documentation and customer support.\",\n", + " \"#### Docs:\\nIntegrating QuickBlox across multiple platforms #### Support:\\nQuickblox support is a click away ## Trust QuickBlox for secure communication\\n### SOC2\\n### HIPAA\\n### GDPR\\n## Do you need additional security, compliance, and support for the long-term We have a more scalable and flexible solution for you, customized to your unique business/app requirements [Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Insanely powerful in-app chat solutions- for every industry\\n* #### Healthcare\\nProvide better care for your patients and teams using feature-rich HIPAA\\u2011compliant chat solutions Integrate powerful telemedicine communication tools into your existing platform * #### Finance & Banking\\nSecure communication solutions for the financial and banking industry to support your clients Easily integrated with your banking APIs with full customization available * #### Marketplaces & E-commerce\\nIntegrate chat and calling into your e\\u2011commerce marketplace platform to connect with customers using chat, audio, and video calling features * #### Social Networking\\nGive your users the option to connect one-on-one or with a group, usinghigh quality voice, video, and chatbox app features - build a well connected community * #### Education & Coaching\\nAdd communication functions to connect teachers with students, coaches with players, and trainers with clients Appropriate for any remote learning application ## Trusted by Developers & Product Owners\\nCommunication with the QuickBlox team has been great The QuickBlox team is a vital partner and I appreciate their support, their platform, and its capabilities ### Justin Harr,Founder, Eden\\nWhat I like best about QuickBlox is their reliability and performance - I've rarely experienced any issues with their solutions, whether I'm using their video or voice SDK, or their chat API\\nThe chunk provides an overview of QuickBlox's secure communication solutions, emphasizing integration across multiple platforms and industries such as healthcare, finance, e-commerce, social networking, and education. It highlights the company's compliance with SOC2, HIPAA, and GDPR standards, and mentions the scalability and customization of its in-app chat solutions. Additionally, it includes testimonials from developers and product owners praising QuickBlox's reliability and performance.\",\n", + " \"### Itay Shechter,Co-founder, Vanywhere\\nQuickBlox chat has enhanced our platform and allowed us to facilitate better communication between caregivers and care coordinators\\n### Robin Jerome,Principal Architect, BayShore HealthCare\\nI have worked with QuickBlox for several years using their Flutter SDK to add chat features to several client apps Their SDKs are easy to work with, saving us much time and money not having to build chat from scratch ### Samyak Jain,CEO & Founder, Pixel apps\\n[Previous](#carousel)[Next](#carousel)\\n## Explore Documentation\\nFamiliarize yourself with our chat and calling APIs Use our platform SDKs and code samples to learn more about the software and integration process [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n[Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n[JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n[React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n[Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n[Server API](https://quickblox.com/sdk/chat-api/)\\n## Start For FREE Customize Everything Build Your Dream Online Platform Our real-time chat and messaging solutions scale as your business grows, and can be customized to create 100% custom in-app messaging [Contact Sales](https://quickblox.com/enterprise/#get-enterprise)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere\\nThe chunk is a section from a document detailing the features, products, and testimonials of QuickBlox, a company offering communication solutions through APIs and SDKs. It includes testimonials from users highlighting the benefits of QuickBlox's chat features, followed by a detailed list of products, solutions, and resources available for different industries and developers. The chunk emphasizes the ease of integrating QuickBlox's services and provides links to documentation, support, and company information.\",\n", + " \"Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\\nThe chunk lists QuickBlox's social media profiles, encouraging visitors to engage with the company on various platforms. It fits within the broader context of the document, which provides comprehensive information about QuickBlox's products, services, and resources, aiming to enhance communication tools in apps and websites.\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 166 Type: step\n", + "output: [\n", + " \"This chunk provides an overview of QuickBlox's product offerings and solutions, highlighting their communication tools, AI-enhanced features, white label solutions, and industry-specific applications. It serves as a comprehensive guide to QuickBlox's SDKs, APIs, and UI Kits for building customizable chat and video applications.\",\n", + " \"The chunk is part of a section highlighting QuickBlox's comprehensive offerings for building communication features in apps, emphasizing their chat, voice, and video APIs, SDKs, customizable UI Kits, and infrastructure options. It underscores QuickBlox's support for various stages of product development, from startups to scaling enterprises, and their robust documentation and customer support.\",\n", + " \"The chunk provides an overview of QuickBlox's secure communication solutions, emphasizing integration across multiple platforms and industries such as healthcare, finance, e-commerce, social networking, and education. It highlights the company's compliance with SOC2, HIPAA, and GDPR standards, and mentions the scalability and customization of its in-app chat solutions. Additionally, it includes testimonials from developers and product owners praising QuickBlox's reliability and performance.\",\n", + " \"The chunk is a section from a document detailing the features, products, and testimonials of QuickBlox, a company offering communication solutions through APIs and SDKs. It includes testimonials from users highlighting the benefits of QuickBlox's chat features, followed by a detailed list of products, solutions, and resources available for different industries and developers. The chunk emphasizes the ease of integrating QuickBlox's services and provides links to documentation, support, and company information.\",\n", + " \"The chunk lists QuickBlox's social media profiles, encouraging visitors to engage with the company on various platforms. It fits within the broader context of the document, which provides comprehensive information about QuickBlox's products, services, and resources, aiming to enhance communication tools in apps and websites.\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 167 Type: finish_branch\n", + "output: \"The chunk is a section from a document detailing the features, products, and testimonials of QuickBlox, a company offering communication solutions through APIs and SDKs. It includes testimonials from users highlighting the benefits of QuickBlox's chat features, followed by a detailed list of products, solutions, and resources available for different industries and developers. The chunk emphasizes the ease of integrating QuickBlox's services and provides links to documentation, support, and company information.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 168 Type: finish_branch\n", + "output: \"The chunk lists QuickBlox's social media profiles, encouraging visitors to engage with the company on various platforms. It fits within the broader context of the document, which provides comprehensive information about QuickBlox's products, services, and resources, aiming to enhance communication tools in apps and websites.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 169 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n### New ProductOpen source video consultation software with OpenAI Integration\\nElevate Your Video Communication with Q‑Consultation\\n[Learn more](https://quickblox.com/products/q-consultation/open-source/)\\n### New ProductBuild Exceptional Chat Experiences with AI‑Enhanced UI Kits\\n[Learn more](https://quickblox.com/ui-kit/)\\n[Previous](#carouselMainTopSlider)[Next](#carouselMainTopSlider)\\n# Build Your Own Messenger With Real-Time Chat & Video APIs\\nAdd instant messaging and online video chat to any Android, iOS, or Web application, with ease and flexibility In-app chat and calling APIs and SDKs, trusted globally by developers, startups, and enterprises [Start FREE Trial](https://admin.quickblox.com/signup?_ga=2.166318714.519349007.1585816300-1447393030.1568645682)[Talk to an Expert](https://quickblox.com/enterprise/#get-enterprise)\\n## Launch quickly and convert more prospects withreal‑‑timeChat, Audio, and Video communication\\nIf you own a product, you know exactly how drawn-out and exorbitant it can be to build real-time communication features from scratch Quickblox can help you design, create, and enter the market at a much faster rate with APIs and SDKs that shortcut product and engineering delivery Convert your ideas into a successful product with us and watch the engagement rate rise, while you build a loyal user base [\\n#### Chat\\nEmbedded chat features- you can customize and build a fully-functioning chat product for mobile and web in a matter of hours ](https://quickblox.com/products/chat/)[\\n#### Voice and Video calling\\nStreamline customer usability with high\\u2011quality peer\\u2011to\\u2011peer voice and video calls Drive more engagement and build meaningful connections ](https://quickblox.com/products/voice-and-video-calling/)[\\n#### Video Conferencing\\nCreate real-time video group interactions to enhance collaboration and productivity Designed to meet your user experience goals and increase conversations ](https://quickblox.com/products/video-conferencing/)[\\n#### Push Notifications\\nGive your customers/users reasons to keep coming back - send in-app reminders, offers, updates and watch retention rates climb ](https://quickblox.com/products/push-notifications/)\\n#### Data Storage\\nProtect your data from hackers and unwanted modification attempts using flexible data storage options Choose between dedicated, on-premise, or your own virtual cloud #### Secure File Sharing\\nAllow sharing and linking of all types of files (images, audio, video, docs, and other file formats) and enable your users to interact and engage more ## Over30,000 software developers and organizations worldwide are using QuickBlox messagingAPI\",\n", + " \"enterpriseinstances\\napplications\\nchatsperday\\nrequestspermonth\\n## Wherever you are in your product journey, we have chat, voice, and video APIs ready to build new features into your app\\n[Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Why QuickBlox Quickblox APIs are equipped to support mobile applications and websites at different stages, be it a fresh product idea, an MVP, early stage startup or a scaling enterprise Our documentation and developer support are highly efficient to make your dream product a reality ### Chat API and Feature-Rich SDKs\\nOur versatile software is designed for multi\\u2011platform use including iOS, Android, and the Web #### SDKs and Code Samples:\\nCross-platform kits and sample apps for easy and quick integration of chat #### Restful API:\\nEnable real-time communication via the server ### Fully Customizable White Label Solutions\\nCustomizable UI Kits to speed up your design workflow and build a product of your vision as well as a ready white\\u2011label solution for virtual rooms and video calling use cases #### UI Kits:\\nCustomize everything as you want with our ready UI Kits #### Q-Consultation:\\nWhite\\u2011label solution for teleconsultation and similar use cases ### Cloud & Dedicated Infrastructure\\nHost your apps wherever you want - opt for a dedicated fully managed server or on\\u2011premises infrastructure Pick a cloud provider that\\u2019s best as per your business goals #### Cloud:\\nA dedicated QuickBlox cloud or your own virtual cloud #### On-Premise:\\nDeployed and managed on your own physical server ### Rich Documentation & Constant Support\\nGet easy step by step guidance to build a powerful chat/messaging/communication app Easily integrate new features using our documentation and developer support\",\n", + " \"#### Docs:\\nIntegrating QuickBlox across multiple platforms #### Support:\\nQuickblox support is a click away ## Trust QuickBlox for secure communication\\n### SOC2\\n### HIPAA\\n### GDPR\\n## Do you need additional security, compliance, and support for the long-term We have a more scalable and flexible solution for you, customized to your unique business/app requirements [Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Insanely powerful in-app chat solutions- for every industry\\n* #### Healthcare\\nProvide better care for your patients and teams using feature-rich HIPAA\\u2011compliant chat solutions Integrate powerful telemedicine communication tools into your existing platform * #### Finance & Banking\\nSecure communication solutions for the financial and banking industry to support your clients Easily integrated with your banking APIs with full customization available * #### Marketplaces & E-commerce\\nIntegrate chat and calling into your e\\u2011commerce marketplace platform to connect with customers using chat, audio, and video calling features * #### Social Networking\\nGive your users the option to connect one-on-one or with a group, usinghigh quality voice, video, and chatbox app features - build a well connected community * #### Education & Coaching\\nAdd communication functions to connect teachers with students, coaches with players, and trainers with clients Appropriate for any remote learning application ## Trusted by Developers & Product Owners\\nCommunication with the QuickBlox team has been great The QuickBlox team is a vital partner and I appreciate their support, their platform, and its capabilities ### Justin Harr,Founder, Eden\\nWhat I like best about QuickBlox is their reliability and performance - I've rarely experienced any issues with their solutions, whether I'm using their video or voice SDK, or their chat API\",\n", + " \"### Itay Shechter,Co-founder, Vanywhere\\nQuickBlox chat has enhanced our platform and allowed us to facilitate better communication between caregivers and care coordinators\\n### Robin Jerome,Principal Architect, BayShore HealthCare\\nI have worked with QuickBlox for several years using their Flutter SDK to add chat features to several client apps Their SDKs are easy to work with, saving us much time and money not having to build chat from scratch ### Samyak Jain,CEO & Founder, Pixel apps\\n[Previous](#carousel)[Next](#carousel)\\n## Explore Documentation\\nFamiliarize yourself with our chat and calling APIs Use our platform SDKs and code samples to learn more about the software and integration process [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n[Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n[JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n[React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n[Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n[Server API](https://quickblox.com/sdk/chat-api/)\\n## Start For FREE Customize Everything Build Your Dream Online Platform Our real-time chat and messaging solutions scale as your business grows, and can be customized to create 100% custom in-app messaging [Contact Sales](https://quickblox.com/enterprise/#get-enterprise)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere\",\n", + " \"Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 170 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n### New ProductOpen source video consultation software with OpenAI Integration\\nElevate Your Video Communication with Q‑Consultation\\n[Learn more](https://quickblox.com/products/q-consultation/open-source/)\\n### New ProductBuild Exceptional Chat Experiences with AI‑Enhanced UI Kits\\n[Learn more](https://quickblox.com/ui-kit/)\\n[Previous](#carouselMainTopSlider)[Next](#carouselMainTopSlider)\\n# Build Your Own Messenger With Real-Time Chat & Video APIs\\nAdd instant messaging and online video chat to any Android, iOS, or Web application, with ease and flexibility In-app chat and calling APIs and SDKs, trusted globally by developers, startups, and enterprises [Start FREE Trial](https://admin.quickblox.com/signup?_ga=2.166318714.519349007.1585816300-1447393030.1568645682)[Talk to an Expert](https://quickblox.com/enterprise/#get-enterprise)\\n## Launch quickly and convert more prospects withreal‑‑timeChat, Audio, and Video communication\\nIf you own a product, you know exactly how drawn-out and exorbitant it can be to build real-time communication features from scratch Quickblox can help you design, create, and enter the market at a much faster rate with APIs and SDKs that shortcut product and engineering delivery Convert your ideas into a successful product with us and watch the engagement rate rise, while you build a loyal user base [\\n#### Chat\\nEmbedded chat features- you can customize and build a fully-functioning chat product for mobile and web in a matter of hours ](https://quickblox.com/products/chat/)[\\n#### Voice and Video calling\\nStreamline customer usability with high\\u2011quality peer\\u2011to\\u2011peer voice and video calls Drive more engagement and build meaningful connections ](https://quickblox.com/products/voice-and-video-calling/)[\\n#### Video Conferencing\\nCreate real-time video group interactions to enhance collaboration and productivity Designed to meet your user experience goals and increase conversations ](https://quickblox.com/products/video-conferencing/)[\\n#### Push Notifications\\nGive your customers/users reasons to keep coming back - send in-app reminders, offers, updates and watch retention rates climb ](https://quickblox.com/products/push-notifications/)\\n#### Data Storage\\nProtect your data from hackers and unwanted modification attempts using flexible data storage options Choose between dedicated, on-premise, or your own virtual cloud #### Secure File Sharing\\nAllow sharing and linking of all types of files (images, audio, video, docs, and other file formats) and enable your users to interact and engage more ## Over30,000 software developers and organizations worldwide are using QuickBlox messagingAPI\",\n", + " \"enterpriseinstances\\napplications\\nchatsperday\\nrequestspermonth\\n## Wherever you are in your product journey, we have chat, voice, and video APIs ready to build new features into your app\\n[Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Why QuickBlox Quickblox APIs are equipped to support mobile applications and websites at different stages, be it a fresh product idea, an MVP, early stage startup or a scaling enterprise Our documentation and developer support are highly efficient to make your dream product a reality ### Chat API and Feature-Rich SDKs\\nOur versatile software is designed for multi\\u2011platform use including iOS, Android, and the Web #### SDKs and Code Samples:\\nCross-platform kits and sample apps for easy and quick integration of chat #### Restful API:\\nEnable real-time communication via the server ### Fully Customizable White Label Solutions\\nCustomizable UI Kits to speed up your design workflow and build a product of your vision as well as a ready white\\u2011label solution for virtual rooms and video calling use cases #### UI Kits:\\nCustomize everything as you want with our ready UI Kits #### Q-Consultation:\\nWhite\\u2011label solution for teleconsultation and similar use cases ### Cloud & Dedicated Infrastructure\\nHost your apps wherever you want - opt for a dedicated fully managed server or on\\u2011premises infrastructure Pick a cloud provider that\\u2019s best as per your business goals #### Cloud:\\nA dedicated QuickBlox cloud or your own virtual cloud #### On-Premise:\\nDeployed and managed on your own physical server ### Rich Documentation & Constant Support\\nGet easy step by step guidance to build a powerful chat/messaging/communication app Easily integrate new features using our documentation and developer support\",\n", + " \"#### Docs:\\nIntegrating QuickBlox across multiple platforms #### Support:\\nQuickblox support is a click away ## Trust QuickBlox for secure communication\\n### SOC2\\n### HIPAA\\n### GDPR\\n## Do you need additional security, compliance, and support for the long-term We have a more scalable and flexible solution for you, customized to your unique business/app requirements [Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Insanely powerful in-app chat solutions- for every industry\\n* #### Healthcare\\nProvide better care for your patients and teams using feature-rich HIPAA\\u2011compliant chat solutions Integrate powerful telemedicine communication tools into your existing platform * #### Finance & Banking\\nSecure communication solutions for the financial and banking industry to support your clients Easily integrated with your banking APIs with full customization available * #### Marketplaces & E-commerce\\nIntegrate chat and calling into your e\\u2011commerce marketplace platform to connect with customers using chat, audio, and video calling features * #### Social Networking\\nGive your users the option to connect one-on-one or with a group, usinghigh quality voice, video, and chatbox app features - build a well connected community * #### Education & Coaching\\nAdd communication functions to connect teachers with students, coaches with players, and trainers with clients Appropriate for any remote learning application ## Trusted by Developers & Product Owners\\nCommunication with the QuickBlox team has been great The QuickBlox team is a vital partner and I appreciate their support, their platform, and its capabilities ### Justin Harr,Founder, Eden\\nWhat I like best about QuickBlox is their reliability and performance - I've rarely experienced any issues with their solutions, whether I'm using their video or voice SDK, or their chat API\",\n", + " \"### Itay Shechter,Co-founder, Vanywhere\\nQuickBlox chat has enhanced our platform and allowed us to facilitate better communication between caregivers and care coordinators\\n### Robin Jerome,Principal Architect, BayShore HealthCare\\nI have worked with QuickBlox for several years using their Flutter SDK to add chat features to several client apps Their SDKs are easy to work with, saving us much time and money not having to build chat from scratch ### Samyak Jain,CEO & Founder, Pixel apps\\n[Previous](#carousel)[Next](#carousel)\\n## Explore Documentation\\nFamiliarize yourself with our chat and calling APIs Use our platform SDKs and code samples to learn more about the software and integration process [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n[Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n[JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n[React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n[Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n[Server API](https://quickblox.com/sdk/chat-api/)\\n## Start For FREE Customize Everything Build Your Dream Online Platform Our real-time chat and messaging solutions scale as your business grows, and can be customized to create 100% custom in-app messaging [Contact Sales](https://quickblox.com/enterprise/#get-enterprise)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere\",\n", + " \"Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"### Itay Shechter,Co-founder, Vanywhere\\nQuickBlox chat has enhanced our platform and allowed us to facilitate better communication between caregivers and care coordinators\\n### Robin Jerome,Principal Architect, BayShore HealthCare\\nI have worked with QuickBlox for several years using their Flutter SDK to add chat features to several client apps Their SDKs are easy to work with, saving us much time and money not having to build chat from scratch ### Samyak Jain,CEO & Founder, Pixel apps\\n[Previous](#carousel)[Next](#carousel)\\n## Explore Documentation\\nFamiliarize yourself with our chat and calling APIs Use our platform SDKs and code samples to learn more about the software and integration process [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n[Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n[JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n[React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n[Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n[Server API](https://quickblox.com/sdk/chat-api/)\\n## Start For FREE Customize Everything Build Your Dream Online Platform Our real-time chat and messaging solutions scale as your business grows, and can be customized to create 100% custom in-app messaging [Contact Sales](https://quickblox.com/enterprise/#get-enterprise)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 171 Type: finish_branch\n", + "output: \"The chunk provides an overview of QuickBlox's secure communication solutions, emphasizing integration across multiple platforms and industries such as healthcare, finance, e-commerce, social networking, and education. It highlights the company's compliance with SOC2, HIPAA, and GDPR standards, and mentions the scalability and customization of its in-app chat solutions. Additionally, it includes testimonials from developers and product owners praising QuickBlox's reliability and performance.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 172 Type: finish_branch\n", + "output: \"The chunk is part of a section highlighting QuickBlox's comprehensive offerings for building communication features in apps, emphasizing their chat, voice, and video APIs, SDKs, customizable UI Kits, and infrastructure options. It underscores QuickBlox's support for various stages of product development, from startups to scaling enterprises, and their robust documentation and customer support.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 173 Type: finish_branch\n", + "output: \"This chunk provides an overview of QuickBlox's product offerings and solutions, highlighting their communication tools, AI-enhanced features, white label solutions, and industry-specific applications. It serves as a comprehensive guide to QuickBlox's SDKs, APIs, and UI Kits for building customizable chat and video applications.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 174 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n### New ProductOpen source video consultation software with OpenAI Integration\\nElevate Your Video Communication with Q‑Consultation\\n[Learn more](https://quickblox.com/products/q-consultation/open-source/)\\n### New ProductBuild Exceptional Chat Experiences with AI‑Enhanced UI Kits\\n[Learn more](https://quickblox.com/ui-kit/)\\n[Previous](#carouselMainTopSlider)[Next](#carouselMainTopSlider)\\n# Build Your Own Messenger With Real-Time Chat & Video APIs\\nAdd instant messaging and online video chat to any Android, iOS, or Web application, with ease and flexibility In-app chat and calling APIs and SDKs, trusted globally by developers, startups, and enterprises [Start FREE Trial](https://admin.quickblox.com/signup?_ga=2.166318714.519349007.1585816300-1447393030.1568645682)[Talk to an Expert](https://quickblox.com/enterprise/#get-enterprise)\\n## Launch quickly and convert more prospects withreal‑‑timeChat, Audio, and Video communication\\nIf you own a product, you know exactly how drawn-out and exorbitant it can be to build real-time communication features from scratch Quickblox can help you design, create, and enter the market at a much faster rate with APIs and SDKs that shortcut product and engineering delivery Convert your ideas into a successful product with us and watch the engagement rate rise, while you build a loyal user base [\\n#### Chat\\nEmbedded chat features- you can customize and build a fully-functioning chat product for mobile and web in a matter of hours ](https://quickblox.com/products/chat/)[\\n#### Voice and Video calling\\nStreamline customer usability with high\\u2011quality peer\\u2011to\\u2011peer voice and video calls Drive more engagement and build meaningful connections ](https://quickblox.com/products/voice-and-video-calling/)[\\n#### Video Conferencing\\nCreate real-time video group interactions to enhance collaboration and productivity Designed to meet your user experience goals and increase conversations ](https://quickblox.com/products/video-conferencing/)[\\n#### Push Notifications\\nGive your customers/users reasons to keep coming back - send in-app reminders, offers, updates and watch retention rates climb ](https://quickblox.com/products/push-notifications/)\\n#### Data Storage\\nProtect your data from hackers and unwanted modification attempts using flexible data storage options Choose between dedicated, on-premise, or your own virtual cloud #### Secure File Sharing\\nAllow sharing and linking of all types of files (images, audio, video, docs, and other file formats) and enable your users to interact and engage more ## Over30,000 software developers and organizations worldwide are using QuickBlox messagingAPI\",\n", + " \"enterpriseinstances\\napplications\\nchatsperday\\nrequestspermonth\\n## Wherever you are in your product journey, we have chat, voice, and video APIs ready to build new features into your app\\n[Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Why QuickBlox Quickblox APIs are equipped to support mobile applications and websites at different stages, be it a fresh product idea, an MVP, early stage startup or a scaling enterprise Our documentation and developer support are highly efficient to make your dream product a reality ### Chat API and Feature-Rich SDKs\\nOur versatile software is designed for multi\\u2011platform use including iOS, Android, and the Web #### SDKs and Code Samples:\\nCross-platform kits and sample apps for easy and quick integration of chat #### Restful API:\\nEnable real-time communication via the server ### Fully Customizable White Label Solutions\\nCustomizable UI Kits to speed up your design workflow and build a product of your vision as well as a ready white\\u2011label solution for virtual rooms and video calling use cases #### UI Kits:\\nCustomize everything as you want with our ready UI Kits #### Q-Consultation:\\nWhite\\u2011label solution for teleconsultation and similar use cases ### Cloud & Dedicated Infrastructure\\nHost your apps wherever you want - opt for a dedicated fully managed server or on\\u2011premises infrastructure Pick a cloud provider that\\u2019s best as per your business goals #### Cloud:\\nA dedicated QuickBlox cloud or your own virtual cloud #### On-Premise:\\nDeployed and managed on your own physical server ### Rich Documentation & Constant Support\\nGet easy step by step guidance to build a powerful chat/messaging/communication app Easily integrate new features using our documentation and developer support\",\n", + " \"#### Docs:\\nIntegrating QuickBlox across multiple platforms #### Support:\\nQuickblox support is a click away ## Trust QuickBlox for secure communication\\n### SOC2\\n### HIPAA\\n### GDPR\\n## Do you need additional security, compliance, and support for the long-term We have a more scalable and flexible solution for you, customized to your unique business/app requirements [Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Insanely powerful in-app chat solutions- for every industry\\n* #### Healthcare\\nProvide better care for your patients and teams using feature-rich HIPAA\\u2011compliant chat solutions Integrate powerful telemedicine communication tools into your existing platform * #### Finance & Banking\\nSecure communication solutions for the financial and banking industry to support your clients Easily integrated with your banking APIs with full customization available * #### Marketplaces & E-commerce\\nIntegrate chat and calling into your e\\u2011commerce marketplace platform to connect with customers using chat, audio, and video calling features * #### Social Networking\\nGive your users the option to connect one-on-one or with a group, usinghigh quality voice, video, and chatbox app features - build a well connected community * #### Education & Coaching\\nAdd communication functions to connect teachers with students, coaches with players, and trainers with clients Appropriate for any remote learning application ## Trusted by Developers & Product Owners\\nCommunication with the QuickBlox team has been great The QuickBlox team is a vital partner and I appreciate their support, their platform, and its capabilities ### Justin Harr,Founder, Eden\\nWhat I like best about QuickBlox is their reliability and performance - I've rarely experienced any issues with their solutions, whether I'm using their video or voice SDK, or their chat API\",\n", + " \"### Itay Shechter,Co-founder, Vanywhere\\nQuickBlox chat has enhanced our platform and allowed us to facilitate better communication between caregivers and care coordinators\\n### Robin Jerome,Principal Architect, BayShore HealthCare\\nI have worked with QuickBlox for several years using their Flutter SDK to add chat features to several client apps Their SDKs are easy to work with, saving us much time and money not having to build chat from scratch ### Samyak Jain,CEO & Founder, Pixel apps\\n[Previous](#carousel)[Next](#carousel)\\n## Explore Documentation\\nFamiliarize yourself with our chat and calling APIs Use our platform SDKs and code samples to learn more about the software and integration process [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n[Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n[JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n[React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n[Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n[Server API](https://quickblox.com/sdk/chat-api/)\\n## Start For FREE Customize Everything Build Your Dream Online Platform Our real-time chat and messaging solutions scale as your business grows, and can be customized to create 100% custom in-app messaging [Contact Sales](https://quickblox.com/enterprise/#get-enterprise)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere\",\n", + " \"Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"#### Docs:\\nIntegrating QuickBlox across multiple platforms #### Support:\\nQuickblox support is a click away ## Trust QuickBlox for secure communication\\n### SOC2\\n### HIPAA\\n### GDPR\\n## Do you need additional security, compliance, and support for the long-term We have a more scalable and flexible solution for you, customized to your unique business/app requirements [Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Insanely powerful in-app chat solutions- for every industry\\n* #### Healthcare\\nProvide better care for your patients and teams using feature-rich HIPAA\\u2011compliant chat solutions Integrate powerful telemedicine communication tools into your existing platform * #### Finance & Banking\\nSecure communication solutions for the financial and banking industry to support your clients Easily integrated with your banking APIs with full customization available * #### Marketplaces & E-commerce\\nIntegrate chat and calling into your e\\u2011commerce marketplace platform to connect with customers using chat, audio, and video calling features * #### Social Networking\\nGive your users the option to connect one-on-one or with a group, usinghigh quality voice, video, and chatbox app features - build a well connected community * #### Education & Coaching\\nAdd communication functions to connect teachers with students, coaches with players, and trainers with clients Appropriate for any remote learning application ## Trusted by Developers & Product Owners\\nCommunication with the QuickBlox team has been great The QuickBlox team is a vital partner and I appreciate their support, their platform, and its capabilities ### Justin Harr,Founder, Eden\\nWhat I like best about QuickBlox is their reliability and performance - I've rarely experienced any issues with their solutions, whether I'm using their video or voice SDK, or their chat API\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 175 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n### New ProductOpen source video consultation software with OpenAI Integration\\nElevate Your Video Communication with Q‑Consultation\\n[Learn more](https://quickblox.com/products/q-consultation/open-source/)\\n### New ProductBuild Exceptional Chat Experiences with AI‑Enhanced UI Kits\\n[Learn more](https://quickblox.com/ui-kit/)\\n[Previous](#carouselMainTopSlider)[Next](#carouselMainTopSlider)\\n# Build Your Own Messenger With Real-Time Chat & Video APIs\\nAdd instant messaging and online video chat to any Android, iOS, or Web application, with ease and flexibility In-app chat and calling APIs and SDKs, trusted globally by developers, startups, and enterprises [Start FREE Trial](https://admin.quickblox.com/signup?_ga=2.166318714.519349007.1585816300-1447393030.1568645682)[Talk to an Expert](https://quickblox.com/enterprise/#get-enterprise)\\n## Launch quickly and convert more prospects withreal‑‑timeChat, Audio, and Video communication\\nIf you own a product, you know exactly how drawn-out and exorbitant it can be to build real-time communication features from scratch Quickblox can help you design, create, and enter the market at a much faster rate with APIs and SDKs that shortcut product and engineering delivery Convert your ideas into a successful product with us and watch the engagement rate rise, while you build a loyal user base [\\n#### Chat\\nEmbedded chat features- you can customize and build a fully-functioning chat product for mobile and web in a matter of hours ](https://quickblox.com/products/chat/)[\\n#### Voice and Video calling\\nStreamline customer usability with high\\u2011quality peer\\u2011to\\u2011peer voice and video calls Drive more engagement and build meaningful connections ](https://quickblox.com/products/voice-and-video-calling/)[\\n#### Video Conferencing\\nCreate real-time video group interactions to enhance collaboration and productivity Designed to meet your user experience goals and increase conversations ](https://quickblox.com/products/video-conferencing/)[\\n#### Push Notifications\\nGive your customers/users reasons to keep coming back - send in-app reminders, offers, updates and watch retention rates climb ](https://quickblox.com/products/push-notifications/)\\n#### Data Storage\\nProtect your data from hackers and unwanted modification attempts using flexible data storage options Choose between dedicated, on-premise, or your own virtual cloud #### Secure File Sharing\\nAllow sharing and linking of all types of files (images, audio, video, docs, and other file formats) and enable your users to interact and engage more ## Over30,000 software developers and organizations worldwide are using QuickBlox messagingAPI\",\n", + " \"enterpriseinstances\\napplications\\nchatsperday\\nrequestspermonth\\n## Wherever you are in your product journey, we have chat, voice, and video APIs ready to build new features into your app\\n[Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Why QuickBlox Quickblox APIs are equipped to support mobile applications and websites at different stages, be it a fresh product idea, an MVP, early stage startup or a scaling enterprise Our documentation and developer support are highly efficient to make your dream product a reality ### Chat API and Feature-Rich SDKs\\nOur versatile software is designed for multi\\u2011platform use including iOS, Android, and the Web #### SDKs and Code Samples:\\nCross-platform kits and sample apps for easy and quick integration of chat #### Restful API:\\nEnable real-time communication via the server ### Fully Customizable White Label Solutions\\nCustomizable UI Kits to speed up your design workflow and build a product of your vision as well as a ready white\\u2011label solution for virtual rooms and video calling use cases #### UI Kits:\\nCustomize everything as you want with our ready UI Kits #### Q-Consultation:\\nWhite\\u2011label solution for teleconsultation and similar use cases ### Cloud & Dedicated Infrastructure\\nHost your apps wherever you want - opt for a dedicated fully managed server or on\\u2011premises infrastructure Pick a cloud provider that\\u2019s best as per your business goals #### Cloud:\\nA dedicated QuickBlox cloud or your own virtual cloud #### On-Premise:\\nDeployed and managed on your own physical server ### Rich Documentation & Constant Support\\nGet easy step by step guidance to build a powerful chat/messaging/communication app Easily integrate new features using our documentation and developer support\",\n", + " \"#### Docs:\\nIntegrating QuickBlox across multiple platforms #### Support:\\nQuickblox support is a click away ## Trust QuickBlox for secure communication\\n### SOC2\\n### HIPAA\\n### GDPR\\n## Do you need additional security, compliance, and support for the long-term We have a more scalable and flexible solution for you, customized to your unique business/app requirements [Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Insanely powerful in-app chat solutions- for every industry\\n* #### Healthcare\\nProvide better care for your patients and teams using feature-rich HIPAA\\u2011compliant chat solutions Integrate powerful telemedicine communication tools into your existing platform * #### Finance & Banking\\nSecure communication solutions for the financial and banking industry to support your clients Easily integrated with your banking APIs with full customization available * #### Marketplaces & E-commerce\\nIntegrate chat and calling into your e\\u2011commerce marketplace platform to connect with customers using chat, audio, and video calling features * #### Social Networking\\nGive your users the option to connect one-on-one or with a group, usinghigh quality voice, video, and chatbox app features - build a well connected community * #### Education & Coaching\\nAdd communication functions to connect teachers with students, coaches with players, and trainers with clients Appropriate for any remote learning application ## Trusted by Developers & Product Owners\\nCommunication with the QuickBlox team has been great The QuickBlox team is a vital partner and I appreciate their support, their platform, and its capabilities ### Justin Harr,Founder, Eden\\nWhat I like best about QuickBlox is their reliability and performance - I've rarely experienced any issues with their solutions, whether I'm using their video or voice SDK, or their chat API\",\n", + " \"### Itay Shechter,Co-founder, Vanywhere\\nQuickBlox chat has enhanced our platform and allowed us to facilitate better communication between caregivers and care coordinators\\n### Robin Jerome,Principal Architect, BayShore HealthCare\\nI have worked with QuickBlox for several years using their Flutter SDK to add chat features to several client apps Their SDKs are easy to work with, saving us much time and money not having to build chat from scratch ### Samyak Jain,CEO & Founder, Pixel apps\\n[Previous](#carousel)[Next](#carousel)\\n## Explore Documentation\\nFamiliarize yourself with our chat and calling APIs Use our platform SDKs and code samples to learn more about the software and integration process [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n[Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n[JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n[React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n[Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n[Server API](https://quickblox.com/sdk/chat-api/)\\n## Start For FREE Customize Everything Build Your Dream Online Platform Our real-time chat and messaging solutions scale as your business grows, and can be customized to create 100% custom in-app messaging [Contact Sales](https://quickblox.com/enterprise/#get-enterprise)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere\",\n", + " \"Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n### New ProductOpen source video consultation software with OpenAI Integration\\nElevate Your Video Communication with Q‑Consultation\\n[Learn more](https://quickblox.com/products/q-consultation/open-source/)\\n### New ProductBuild Exceptional Chat Experiences with AI‑Enhanced UI Kits\\n[Learn more](https://quickblox.com/ui-kit/)\\n[Previous](#carouselMainTopSlider)[Next](#carouselMainTopSlider)\\n# Build Your Own Messenger With Real-Time Chat & Video APIs\\nAdd instant messaging and online video chat to any Android, iOS, or Web application, with ease and flexibility In-app chat and calling APIs and SDKs, trusted globally by developers, startups, and enterprises [Start FREE Trial](https://admin.quickblox.com/signup?_ga=2.166318714.519349007.1585816300-1447393030.1568645682)[Talk to an Expert](https://quickblox.com/enterprise/#get-enterprise)\\n## Launch quickly and convert more prospects withreal‑‑timeChat, Audio, and Video communication\\nIf you own a product, you know exactly how drawn-out and exorbitant it can be to build real-time communication features from scratch Quickblox can help you design, create, and enter the market at a much faster rate with APIs and SDKs that shortcut product and engineering delivery Convert your ideas into a successful product with us and watch the engagement rate rise, while you build a loyal user base [\\n#### Chat\\nEmbedded chat features- you can customize and build a fully-functioning chat product for mobile and web in a matter of hours ](https://quickblox.com/products/chat/)[\\n#### Voice and Video calling\\nStreamline customer usability with high\\u2011quality peer\\u2011to\\u2011peer voice and video calls Drive more engagement and build meaningful connections ](https://quickblox.com/products/voice-and-video-calling/)[\\n#### Video Conferencing\\nCreate real-time video group interactions to enhance collaboration and productivity Designed to meet your user experience goals and increase conversations ](https://quickblox.com/products/video-conferencing/)[\\n#### Push Notifications\\nGive your customers/users reasons to keep coming back - send in-app reminders, offers, updates and watch retention rates climb ](https://quickblox.com/products/push-notifications/)\\n#### Data Storage\\nProtect your data from hackers and unwanted modification attempts using flexible data storage options Choose between dedicated, on-premise, or your own virtual cloud #### Secure File Sharing\\nAllow sharing and linking of all types of files (images, audio, video, docs, and other file formats) and enable your users to interact and engage more ## Over30,000 software developers and organizations worldwide are using QuickBlox messagingAPI\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 176 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n### New ProductOpen source video consultation software with OpenAI Integration\\nElevate Your Video Communication with Q‑Consultation\\n[Learn more](https://quickblox.com/products/q-consultation/open-source/)\\n### New ProductBuild Exceptional Chat Experiences with AI‑Enhanced UI Kits\\n[Learn more](https://quickblox.com/ui-kit/)\\n[Previous](#carouselMainTopSlider)[Next](#carouselMainTopSlider)\\n# Build Your Own Messenger With Real-Time Chat & Video APIs\\nAdd instant messaging and online video chat to any Android, iOS, or Web application, with ease and flexibility In-app chat and calling APIs and SDKs, trusted globally by developers, startups, and enterprises [Start FREE Trial](https://admin.quickblox.com/signup?_ga=2.166318714.519349007.1585816300-1447393030.1568645682)[Talk to an Expert](https://quickblox.com/enterprise/#get-enterprise)\\n## Launch quickly and convert more prospects withreal‑‑timeChat, Audio, and Video communication\\nIf you own a product, you know exactly how drawn-out and exorbitant it can be to build real-time communication features from scratch Quickblox can help you design, create, and enter the market at a much faster rate with APIs and SDKs that shortcut product and engineering delivery Convert your ideas into a successful product with us and watch the engagement rate rise, while you build a loyal user base [\\n#### Chat\\nEmbedded chat features- you can customize and build a fully-functioning chat product for mobile and web in a matter of hours ](https://quickblox.com/products/chat/)[\\n#### Voice and Video calling\\nStreamline customer usability with high\\u2011quality peer\\u2011to\\u2011peer voice and video calls Drive more engagement and build meaningful connections ](https://quickblox.com/products/voice-and-video-calling/)[\\n#### Video Conferencing\\nCreate real-time video group interactions to enhance collaboration and productivity Designed to meet your user experience goals and increase conversations ](https://quickblox.com/products/video-conferencing/)[\\n#### Push Notifications\\nGive your customers/users reasons to keep coming back - send in-app reminders, offers, updates and watch retention rates climb ](https://quickblox.com/products/push-notifications/)\\n#### Data Storage\\nProtect your data from hackers and unwanted modification attempts using flexible data storage options Choose between dedicated, on-premise, or your own virtual cloud #### Secure File Sharing\\nAllow sharing and linking of all types of files (images, audio, video, docs, and other file formats) and enable your users to interact and engage more ## Over30,000 software developers and organizations worldwide are using QuickBlox messagingAPI\",\n", + " \"enterpriseinstances\\napplications\\nchatsperday\\nrequestspermonth\\n## Wherever you are in your product journey, we have chat, voice, and video APIs ready to build new features into your app\\n[Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Why QuickBlox Quickblox APIs are equipped to support mobile applications and websites at different stages, be it a fresh product idea, an MVP, early stage startup or a scaling enterprise Our documentation and developer support are highly efficient to make your dream product a reality ### Chat API and Feature-Rich SDKs\\nOur versatile software is designed for multi\\u2011platform use including iOS, Android, and the Web #### SDKs and Code Samples:\\nCross-platform kits and sample apps for easy and quick integration of chat #### Restful API:\\nEnable real-time communication via the server ### Fully Customizable White Label Solutions\\nCustomizable UI Kits to speed up your design workflow and build a product of your vision as well as a ready white\\u2011label solution for virtual rooms and video calling use cases #### UI Kits:\\nCustomize everything as you want with our ready UI Kits #### Q-Consultation:\\nWhite\\u2011label solution for teleconsultation and similar use cases ### Cloud & Dedicated Infrastructure\\nHost your apps wherever you want - opt for a dedicated fully managed server or on\\u2011premises infrastructure Pick a cloud provider that\\u2019s best as per your business goals #### Cloud:\\nA dedicated QuickBlox cloud or your own virtual cloud #### On-Premise:\\nDeployed and managed on your own physical server ### Rich Documentation & Constant Support\\nGet easy step by step guidance to build a powerful chat/messaging/communication app Easily integrate new features using our documentation and developer support\",\n", + " \"#### Docs:\\nIntegrating QuickBlox across multiple platforms #### Support:\\nQuickblox support is a click away ## Trust QuickBlox for secure communication\\n### SOC2\\n### HIPAA\\n### GDPR\\n## Do you need additional security, compliance, and support for the long-term We have a more scalable and flexible solution for you, customized to your unique business/app requirements [Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Insanely powerful in-app chat solutions- for every industry\\n* #### Healthcare\\nProvide better care for your patients and teams using feature-rich HIPAA\\u2011compliant chat solutions Integrate powerful telemedicine communication tools into your existing platform * #### Finance & Banking\\nSecure communication solutions for the financial and banking industry to support your clients Easily integrated with your banking APIs with full customization available * #### Marketplaces & E-commerce\\nIntegrate chat and calling into your e\\u2011commerce marketplace platform to connect with customers using chat, audio, and video calling features * #### Social Networking\\nGive your users the option to connect one-on-one or with a group, usinghigh quality voice, video, and chatbox app features - build a well connected community * #### Education & Coaching\\nAdd communication functions to connect teachers with students, coaches with players, and trainers with clients Appropriate for any remote learning application ## Trusted by Developers & Product Owners\\nCommunication with the QuickBlox team has been great The QuickBlox team is a vital partner and I appreciate their support, their platform, and its capabilities ### Justin Harr,Founder, Eden\\nWhat I like best about QuickBlox is their reliability and performance - I've rarely experienced any issues with their solutions, whether I'm using their video or voice SDK, or their chat API\",\n", + " \"### Itay Shechter,Co-founder, Vanywhere\\nQuickBlox chat has enhanced our platform and allowed us to facilitate better communication between caregivers and care coordinators\\n### Robin Jerome,Principal Architect, BayShore HealthCare\\nI have worked with QuickBlox for several years using their Flutter SDK to add chat features to several client apps Their SDKs are easy to work with, saving us much time and money not having to build chat from scratch ### Samyak Jain,CEO & Founder, Pixel apps\\n[Previous](#carousel)[Next](#carousel)\\n## Explore Documentation\\nFamiliarize yourself with our chat and calling APIs Use our platform SDKs and code samples to learn more about the software and integration process [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n[Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n[JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n[React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n[Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n[Server API](https://quickblox.com/sdk/chat-api/)\\n## Start For FREE Customize Everything Build Your Dream Online Platform Our real-time chat and messaging solutions scale as your business grows, and can be customized to create 100% custom in-app messaging [Contact Sales](https://quickblox.com/enterprise/#get-enterprise)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere\",\n", + " \"Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"enterpriseinstances\\napplications\\nchatsperday\\nrequestspermonth\\n## Wherever you are in your product journey, we have chat, voice, and video APIs ready to build new features into your app\\n[Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Why QuickBlox Quickblox APIs are equipped to support mobile applications and websites at different stages, be it a fresh product idea, an MVP, early stage startup or a scaling enterprise Our documentation and developer support are highly efficient to make your dream product a reality ### Chat API and Feature-Rich SDKs\\nOur versatile software is designed for multi\\u2011platform use including iOS, Android, and the Web #### SDKs and Code Samples:\\nCross-platform kits and sample apps for easy and quick integration of chat #### Restful API:\\nEnable real-time communication via the server ### Fully Customizable White Label Solutions\\nCustomizable UI Kits to speed up your design workflow and build a product of your vision as well as a ready white\\u2011label solution for virtual rooms and video calling use cases #### UI Kits:\\nCustomize everything as you want with our ready UI Kits #### Q-Consultation:\\nWhite\\u2011label solution for teleconsultation and similar use cases ### Cloud & Dedicated Infrastructure\\nHost your apps wherever you want - opt for a dedicated fully managed server or on\\u2011premises infrastructure Pick a cloud provider that\\u2019s best as per your business goals #### Cloud:\\nA dedicated QuickBlox cloud or your own virtual cloud #### On-Premise:\\nDeployed and managed on your own physical server ### Rich Documentation & Constant Support\\nGet easy step by step guidance to build a powerful chat/messaging/communication app Easily integrate new features using our documentation and developer support\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 177 Type: step\n", + "output: {\n", + " \"documents\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n### New ProductOpen source video consultation software with OpenAI Integration\\nElevate Your Video Communication with Q‑Consultation\\n[Learn more](https://quickblox.com/products/q-consultation/open-source/)\\n### New ProductBuild Exceptional Chat Experiences with AI‑Enhanced UI Kits\\n[Learn more](https://quickblox.com/ui-kit/)\\n[Previous](#carouselMainTopSlider)[Next](#carouselMainTopSlider)\\n# Build Your Own Messenger With Real-Time Chat & Video APIs\\nAdd instant messaging and online video chat to any Android, iOS, or Web application, with ease and flexibility In-app chat and calling APIs and SDKs, trusted globally by developers, startups, and enterprises [Start FREE Trial](https://admin.quickblox.com/signup?_ga=2.166318714.519349007.1585816300-1447393030.1568645682)[Talk to an Expert](https://quickblox.com/enterprise/#get-enterprise)\\n## Launch quickly and convert more prospects withreal‑‑timeChat, Audio, and Video communication\\nIf you own a product, you know exactly how drawn-out and exorbitant it can be to build real-time communication features from scratch Quickblox can help you design, create, and enter the market at a much faster rate with APIs and SDKs that shortcut product and engineering delivery Convert your ideas into a successful product with us and watch the engagement rate rise, while you build a loyal user base [\\n#### Chat\\nEmbedded chat features- you can customize and build a fully-functioning chat product for mobile and web in a matter of hours ](https://quickblox.com/products/chat/)[\\n#### Voice and Video calling\\nStreamline customer usability with high\\u2011quality peer\\u2011to\\u2011peer voice and video calls Drive more engagement and build meaningful connections ](https://quickblox.com/products/voice-and-video-calling/)[\\n#### Video Conferencing\\nCreate real-time video group interactions to enhance collaboration and productivity Designed to meet your user experience goals and increase conversations ](https://quickblox.com/products/video-conferencing/)[\\n#### Push Notifications\\nGive your customers/users reasons to keep coming back - send in-app reminders, offers, updates and watch retention rates climb ](https://quickblox.com/products/push-notifications/)\\n#### Data Storage\\nProtect your data from hackers and unwanted modification attempts using flexible data storage options Choose between dedicated, on-premise, or your own virtual cloud #### Secure File Sharing\\nAllow sharing and linking of all types of files (images, audio, video, docs, and other file formats) and enable your users to interact and engage more ## Over30,000 software developers and organizations worldwide are using QuickBlox messagingAPI\",\n", + " \"enterpriseinstances\\napplications\\nchatsperday\\nrequestspermonth\\n## Wherever you are in your product journey, we have chat, voice, and video APIs ready to build new features into your app\\n[Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Why QuickBlox Quickblox APIs are equipped to support mobile applications and websites at different stages, be it a fresh product idea, an MVP, early stage startup or a scaling enterprise Our documentation and developer support are highly efficient to make your dream product a reality ### Chat API and Feature-Rich SDKs\\nOur versatile software is designed for multi\\u2011platform use including iOS, Android, and the Web #### SDKs and Code Samples:\\nCross-platform kits and sample apps for easy and quick integration of chat #### Restful API:\\nEnable real-time communication via the server ### Fully Customizable White Label Solutions\\nCustomizable UI Kits to speed up your design workflow and build a product of your vision as well as a ready white\\u2011label solution for virtual rooms and video calling use cases #### UI Kits:\\nCustomize everything as you want with our ready UI Kits #### Q-Consultation:\\nWhite\\u2011label solution for teleconsultation and similar use cases ### Cloud & Dedicated Infrastructure\\nHost your apps wherever you want - opt for a dedicated fully managed server or on\\u2011premises infrastructure Pick a cloud provider that\\u2019s best as per your business goals #### Cloud:\\nA dedicated QuickBlox cloud or your own virtual cloud #### On-Premise:\\nDeployed and managed on your own physical server ### Rich Documentation & Constant Support\\nGet easy step by step guidance to build a powerful chat/messaging/communication app Easily integrate new features using our documentation and developer support\",\n", + " \"#### Docs:\\nIntegrating QuickBlox across multiple platforms #### Support:\\nQuickblox support is a click away ## Trust QuickBlox for secure communication\\n### SOC2\\n### HIPAA\\n### GDPR\\n## Do you need additional security, compliance, and support for the long-term We have a more scalable and flexible solution for you, customized to your unique business/app requirements [Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Insanely powerful in-app chat solutions- for every industry\\n* #### Healthcare\\nProvide better care for your patients and teams using feature-rich HIPAA\\u2011compliant chat solutions Integrate powerful telemedicine communication tools into your existing platform * #### Finance & Banking\\nSecure communication solutions for the financial and banking industry to support your clients Easily integrated with your banking APIs with full customization available * #### Marketplaces & E-commerce\\nIntegrate chat and calling into your e\\u2011commerce marketplace platform to connect with customers using chat, audio, and video calling features * #### Social Networking\\nGive your users the option to connect one-on-one or with a group, usinghigh quality voice, video, and chatbox app features - build a well connected community * #### Education & Coaching\\nAdd communication functions to connect teachers with students, coaches with players, and trainers with clients Appropriate for any remote learning application ## Trusted by Developers & Product Owners\\nCommunication with the QuickBlox team has been great The QuickBlox team is a vital partner and I appreciate their support, their platform, and its capabilities ### Justin Harr,Founder, Eden\\nWhat I like best about QuickBlox is their reliability and performance - I've rarely experienced any issues with their solutions, whether I'm using their video or voice SDK, or their chat API\",\n", + " \"### Itay Shechter,Co-founder, Vanywhere\\nQuickBlox chat has enhanced our platform and allowed us to facilitate better communication between caregivers and care coordinators\\n### Robin Jerome,Principal Architect, BayShore HealthCare\\nI have worked with QuickBlox for several years using their Flutter SDK to add chat features to several client apps Their SDKs are easy to work with, saving us much time and money not having to build chat from scratch ### Samyak Jain,CEO & Founder, Pixel apps\\n[Previous](#carousel)[Next](#carousel)\\n## Explore Documentation\\nFamiliarize yourself with our chat and calling APIs Use our platform SDKs and code samples to learn more about the software and integration process [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n[Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n[JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n[React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n[Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n[Server API](https://quickblox.com/sdk/chat-api/)\\n## Start For FREE Customize Everything Build Your Dream Online Platform Our real-time chat and messaging solutions scale as your business grows, and can be customized to create 100% custom in-app messaging [Contact Sales](https://quickblox.com/enterprise/#get-enterprise)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere\",\n", + " \"Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 178 Type: init_branch\n", + "output: {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n### New ProductOpen source video consultation software with OpenAI Integration\\nElevate Your Video Communication with Q‑Consultation\\n[Learn more](https://quickblox.com/products/q-consultation/open-source/)\\n### New ProductBuild Exceptional Chat Experiences with AI‑Enhanced UI Kits\\n[Learn more](https://quickblox.com/ui-kit/)\\n[Previous](#carouselMainTopSlider)[Next](#carouselMainTopSlider)\\n# Build Your Own Messenger With Real-Time Chat & Video APIs\\nAdd instant messaging and online video chat to any Android, iOS, or Web application, with ease and flexibility In-app chat and calling APIs and SDKs, trusted globally by developers, startups, and enterprises [Start FREE Trial](https://admin.quickblox.com/signup?_ga=2.166318714.519349007.1585816300-1447393030.1568645682)[Talk to an Expert](https://quickblox.com/enterprise/#get-enterprise)\\n## Launch quickly and convert more prospects withreal‑‑timeChat, Audio, and Video communication\\nIf you own a product, you know exactly how drawn-out and exorbitant it can be to build real-time communication features from scratch Quickblox can help you design, create, and enter the market at a much faster rate with APIs and SDKs that shortcut product and engineering delivery Convert your ideas into a successful product with us and watch the engagement rate rise, while you build a loyal user base [\\n#### Chat\\nEmbedded chat features- you can customize and build a fully-functioning chat product for mobile and web in a matter of hours ](https://quickblox.com/products/chat/)[\\n#### Voice and Video calling\\nStreamline customer usability with high\\u2011quality peer\\u2011to\\u2011peer voice and video calls Drive more engagement and build meaningful connections ](https://quickblox.com/products/voice-and-video-calling/)[\\n#### Video Conferencing\\nCreate real-time video group interactions to enhance collaboration and productivity Designed to meet your user experience goals and increase conversations ](https://quickblox.com/products/video-conferencing/)[\\n#### Push Notifications\\nGive your customers/users reasons to keep coming back - send in-app reminders, offers, updates and watch retention rates climb ](https://quickblox.com/products/push-notifications/)\\n#### Data Storage\\nProtect your data from hackers and unwanted modification attempts using flexible data storage options Choose between dedicated, on-premise, or your own virtual cloud #### Secure File Sharing\\nAllow sharing and linking of all types of files (images, audio, video, docs, and other file formats) and enable your users to interact and engage more ## Over30,000 software developers and organizations worldwide are using QuickBlox messagingAPI\",\n", + " \"enterpriseinstances\\napplications\\nchatsperday\\nrequestspermonth\\n## Wherever you are in your product journey, we have chat, voice, and video APIs ready to build new features into your app\\n[Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Why QuickBlox Quickblox APIs are equipped to support mobile applications and websites at different stages, be it a fresh product idea, an MVP, early stage startup or a scaling enterprise Our documentation and developer support are highly efficient to make your dream product a reality ### Chat API and Feature-Rich SDKs\\nOur versatile software is designed for multi\\u2011platform use including iOS, Android, and the Web #### SDKs and Code Samples:\\nCross-platform kits and sample apps for easy and quick integration of chat #### Restful API:\\nEnable real-time communication via the server ### Fully Customizable White Label Solutions\\nCustomizable UI Kits to speed up your design workflow and build a product of your vision as well as a ready white\\u2011label solution for virtual rooms and video calling use cases #### UI Kits:\\nCustomize everything as you want with our ready UI Kits #### Q-Consultation:\\nWhite\\u2011label solution for teleconsultation and similar use cases ### Cloud & Dedicated Infrastructure\\nHost your apps wherever you want - opt for a dedicated fully managed server or on\\u2011premises infrastructure Pick a cloud provider that\\u2019s best as per your business goals #### Cloud:\\nA dedicated QuickBlox cloud or your own virtual cloud #### On-Premise:\\nDeployed and managed on your own physical server ### Rich Documentation & Constant Support\\nGet easy step by step guidance to build a powerful chat/messaging/communication app Easily integrate new features using our documentation and developer support\",\n", + " \"#### Docs:\\nIntegrating QuickBlox across multiple platforms #### Support:\\nQuickblox support is a click away ## Trust QuickBlox for secure communication\\n### SOC2\\n### HIPAA\\n### GDPR\\n## Do you need additional security, compliance, and support for the long-term We have a more scalable and flexible solution for you, customized to your unique business/app requirements [Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Insanely powerful in-app chat solutions- for every industry\\n* #### Healthcare\\nProvide better care for your patients and teams using feature-rich HIPAA\\u2011compliant chat solutions Integrate powerful telemedicine communication tools into your existing platform * #### Finance & Banking\\nSecure communication solutions for the financial and banking industry to support your clients Easily integrated with your banking APIs with full customization available * #### Marketplaces & E-commerce\\nIntegrate chat and calling into your e\\u2011commerce marketplace platform to connect with customers using chat, audio, and video calling features * #### Social Networking\\nGive your users the option to connect one-on-one or with a group, usinghigh quality voice, video, and chatbox app features - build a well connected community * #### Education & Coaching\\nAdd communication functions to connect teachers with students, coaches with players, and trainers with clients Appropriate for any remote learning application ## Trusted by Developers & Product Owners\\nCommunication with the QuickBlox team has been great The QuickBlox team is a vital partner and I appreciate their support, their platform, and its capabilities ### Justin Harr,Founder, Eden\\nWhat I like best about QuickBlox is their reliability and performance - I've rarely experienced any issues with their solutions, whether I'm using their video or voice SDK, or their chat API\",\n", + " \"### Itay Shechter,Co-founder, Vanywhere\\nQuickBlox chat has enhanced our platform and allowed us to facilitate better communication between caregivers and care coordinators\\n### Robin Jerome,Principal Architect, BayShore HealthCare\\nI have worked with QuickBlox for several years using their Flutter SDK to add chat features to several client apps Their SDKs are easy to work with, saving us much time and money not having to build chat from scratch ### Samyak Jain,CEO & Founder, Pixel apps\\n[Previous](#carousel)[Next](#carousel)\\n## Explore Documentation\\nFamiliarize yourself with our chat and calling APIs Use our platform SDKs and code samples to learn more about the software and integration process [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n[Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n[JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n[React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n[Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n[Server API](https://quickblox.com/sdk/chat-api/)\\n## Start For FREE Customize Everything Build Your Dream Online Platform Our real-time chat and messaging solutions scale as your business grows, and can be customized to create 100% custom in-app messaging [Contact Sales](https://quickblox.com/enterprise/#get-enterprise)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere\",\n", + " \"Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 179 Type: step\n", + "output: {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n### New ProductOpen source video consultation software with OpenAI Integration\\nElevate Your Video Communication with Q‑Consultation\\n[Learn more](https://quickblox.com/products/q-consultation/open-source/)\\n### New ProductBuild Exceptional Chat Experiences with AI‑Enhanced UI Kits\\n[Learn more](https://quickblox.com/ui-kit/)\\n[Previous](#carouselMainTopSlider)[Next](#carouselMainTopSlider)\\n# Build Your Own Messenger With Real-Time Chat & Video APIs\\nAdd instant messaging and online video chat to any Android, iOS, or Web application, with ease and flexibility In-app chat and calling APIs and SDKs, trusted globally by developers, startups, and enterprises [Start FREE Trial](https://admin.quickblox.com/signup?_ga=2.166318714.519349007.1585816300-1447393030.1568645682)[Talk to an Expert](https://quickblox.com/enterprise/#get-enterprise)\\n## Launch quickly and convert more prospects withreal‑‑timeChat, Audio, and Video communication\\nIf you own a product, you know exactly how drawn-out and exorbitant it can be to build real-time communication features from scratch Quickblox can help you design, create, and enter the market at a much faster rate with APIs and SDKs that shortcut product and engineering delivery Convert your ideas into a successful product with us and watch the engagement rate rise, while you build a loyal user base [\\n#### Chat\\nEmbedded chat features- you can customize and build a fully-functioning chat product for mobile and web in a matter of hours ](https://quickblox.com/products/chat/)[\\n#### Voice and Video calling\\nStreamline customer usability with high\\u2011quality peer\\u2011to\\u2011peer voice and video calls Drive more engagement and build meaningful connections ](https://quickblox.com/products/voice-and-video-calling/)[\\n#### Video Conferencing\\nCreate real-time video group interactions to enhance collaboration and productivity Designed to meet your user experience goals and increase conversations ](https://quickblox.com/products/video-conferencing/)[\\n#### Push Notifications\\nGive your customers/users reasons to keep coming back - send in-app reminders, offers, updates and watch retention rates climb ](https://quickblox.com/products/push-notifications/)\\n#### Data Storage\\nProtect your data from hackers and unwanted modification attempts using flexible data storage options Choose between dedicated, on-premise, or your own virtual cloud #### Secure File Sharing\\nAllow sharing and linking of all types of files (images, audio, video, docs, and other file formats) and enable your users to interact and engage more ## Over30,000 software developers and organizations worldwide are using QuickBlox messagingAPI\",\n", + " \"enterpriseinstances\\napplications\\nchatsperday\\nrequestspermonth\\n## Wherever you are in your product journey, we have chat, voice, and video APIs ready to build new features into your app\\n[Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Why QuickBlox Quickblox APIs are equipped to support mobile applications and websites at different stages, be it a fresh product idea, an MVP, early stage startup or a scaling enterprise Our documentation and developer support are highly efficient to make your dream product a reality ### Chat API and Feature-Rich SDKs\\nOur versatile software is designed for multi\\u2011platform use including iOS, Android, and the Web #### SDKs and Code Samples:\\nCross-platform kits and sample apps for easy and quick integration of chat #### Restful API:\\nEnable real-time communication via the server ### Fully Customizable White Label Solutions\\nCustomizable UI Kits to speed up your design workflow and build a product of your vision as well as a ready white\\u2011label solution for virtual rooms and video calling use cases #### UI Kits:\\nCustomize everything as you want with our ready UI Kits #### Q-Consultation:\\nWhite\\u2011label solution for teleconsultation and similar use cases ### Cloud & Dedicated Infrastructure\\nHost your apps wherever you want - opt for a dedicated fully managed server or on\\u2011premises infrastructure Pick a cloud provider that\\u2019s best as per your business goals #### Cloud:\\nA dedicated QuickBlox cloud or your own virtual cloud #### On-Premise:\\nDeployed and managed on your own physical server ### Rich Documentation & Constant Support\\nGet easy step by step guidance to build a powerful chat/messaging/communication app Easily integrate new features using our documentation and developer support\",\n", + " \"#### Docs:\\nIntegrating QuickBlox across multiple platforms #### Support:\\nQuickblox support is a click away ## Trust QuickBlox for secure communication\\n### SOC2\\n### HIPAA\\n### GDPR\\n## Do you need additional security, compliance, and support for the long-term We have a more scalable and flexible solution for you, customized to your unique business/app requirements [Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Insanely powerful in-app chat solutions- for every industry\\n* #### Healthcare\\nProvide better care for your patients and teams using feature-rich HIPAA\\u2011compliant chat solutions Integrate powerful telemedicine communication tools into your existing platform * #### Finance & Banking\\nSecure communication solutions for the financial and banking industry to support your clients Easily integrated with your banking APIs with full customization available * #### Marketplaces & E-commerce\\nIntegrate chat and calling into your e\\u2011commerce marketplace platform to connect with customers using chat, audio, and video calling features * #### Social Networking\\nGive your users the option to connect one-on-one or with a group, usinghigh quality voice, video, and chatbox app features - build a well connected community * #### Education & Coaching\\nAdd communication functions to connect teachers with students, coaches with players, and trainers with clients Appropriate for any remote learning application ## Trusted by Developers & Product Owners\\nCommunication with the QuickBlox team has been great The QuickBlox team is a vital partner and I appreciate their support, their platform, and its capabilities ### Justin Harr,Founder, Eden\\nWhat I like best about QuickBlox is their reliability and performance - I've rarely experienced any issues with their solutions, whether I'm using their video or voice SDK, or their chat API\",\n", + " \"### Itay Shechter,Co-founder, Vanywhere\\nQuickBlox chat has enhanced our platform and allowed us to facilitate better communication between caregivers and care coordinators\\n### Robin Jerome,Principal Architect, BayShore HealthCare\\nI have worked with QuickBlox for several years using their Flutter SDK to add chat features to several client apps Their SDKs are easy to work with, saving us much time and money not having to build chat from scratch ### Samyak Jain,CEO & Founder, Pixel apps\\n[Previous](#carousel)[Next](#carousel)\\n## Explore Documentation\\nFamiliarize yourself with our chat and calling APIs Use our platform SDKs and code samples to learn more about the software and integration process [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n[Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n[JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n[React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n[Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n[Server API](https://quickblox.com/sdk/chat-api/)\\n## Start For FREE Customize Everything Build Your Dream Online Platform Our real-time chat and messaging solutions scale as your business grows, and can be customized to create 100% custom in-app messaging [Contact Sales](https://quickblox.com/enterprise/#get-enterprise)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere\",\n", + " \"Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 180 Type: init_branch\n", + "output: {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n### New ProductOpen source video consultation software with OpenAI Integration\\nElevate Your Video Communication with Q‑Consultation\\n[Learn more](https://quickblox.com/products/q-consultation/open-source/)\\n### New ProductBuild Exceptional Chat Experiences with AI‑Enhanced UI Kits\\n[Learn more](https://quickblox.com/ui-kit/)\\n[Previous](#carouselMainTopSlider)[Next](#carouselMainTopSlider)\\n# Build Your Own Messenger With Real-Time Chat & Video APIs\\nAdd instant messaging and online video chat to any Android, iOS, or Web application, with ease and flexibility In-app chat and calling APIs and SDKs, trusted globally by developers, startups, and enterprises [Start FREE Trial](https://admin.quickblox.com/signup?_ga=2.166318714.519349007.1585816300-1447393030.1568645682)[Talk to an Expert](https://quickblox.com/enterprise/#get-enterprise)\\n## Launch quickly and convert more prospects withreal‑‑timeChat, Audio, and Video communication\\nIf you own a product, you know exactly how drawn-out and exorbitant it can be to build real-time communication features from scratch Quickblox can help you design, create, and enter the market at a much faster rate with APIs and SDKs that shortcut product and engineering delivery Convert your ideas into a successful product with us and watch the engagement rate rise, while you build a loyal user base [\\n#### Chat\\nEmbedded chat features- you can customize and build a fully-functioning chat product for mobile and web in a matter of hours ](https://quickblox.com/products/chat/)[\\n#### Voice and Video calling\\nStreamline customer usability with high\\u2011quality peer\\u2011to\\u2011peer voice and video calls Drive more engagement and build meaningful connections ](https://quickblox.com/products/voice-and-video-calling/)[\\n#### Video Conferencing\\nCreate real-time video group interactions to enhance collaboration and productivity Designed to meet your user experience goals and increase conversations ](https://quickblox.com/products/video-conferencing/)[\\n#### Push Notifications\\nGive your customers/users reasons to keep coming back - send in-app reminders, offers, updates and watch retention rates climb ](https://quickblox.com/products/push-notifications/)\\n#### Data Storage\\nProtect your data from hackers and unwanted modification attempts using flexible data storage options Choose between dedicated, on-premise, or your own virtual cloud #### Secure File Sharing\\nAllow sharing and linking of all types of files (images, audio, video, docs, and other file formats) and enable your users to interact and engage more ## Over30,000 software developers and organizations worldwide are using QuickBlox messagingAPI\",\n", + " \"enterpriseinstances\\napplications\\nchatsperday\\nrequestspermonth\\n## Wherever you are in your product journey, we have chat, voice, and video APIs ready to build new features into your app\\n[Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Why QuickBlox Quickblox APIs are equipped to support mobile applications and websites at different stages, be it a fresh product idea, an MVP, early stage startup or a scaling enterprise Our documentation and developer support are highly efficient to make your dream product a reality ### Chat API and Feature-Rich SDKs\\nOur versatile software is designed for multi\\u2011platform use including iOS, Android, and the Web #### SDKs and Code Samples:\\nCross-platform kits and sample apps for easy and quick integration of chat #### Restful API:\\nEnable real-time communication via the server ### Fully Customizable White Label Solutions\\nCustomizable UI Kits to speed up your design workflow and build a product of your vision as well as a ready white\\u2011label solution for virtual rooms and video calling use cases #### UI Kits:\\nCustomize everything as you want with our ready UI Kits #### Q-Consultation:\\nWhite\\u2011label solution for teleconsultation and similar use cases ### Cloud & Dedicated Infrastructure\\nHost your apps wherever you want - opt for a dedicated fully managed server or on\\u2011premises infrastructure Pick a cloud provider that\\u2019s best as per your business goals #### Cloud:\\nA dedicated QuickBlox cloud or your own virtual cloud #### On-Premise:\\nDeployed and managed on your own physical server ### Rich Documentation & Constant Support\\nGet easy step by step guidance to build a powerful chat/messaging/communication app Easily integrate new features using our documentation and developer support\",\n", + " \"#### Docs:\\nIntegrating QuickBlox across multiple platforms #### Support:\\nQuickblox support is a click away ## Trust QuickBlox for secure communication\\n### SOC2\\n### HIPAA\\n### GDPR\\n## Do you need additional security, compliance, and support for the long-term We have a more scalable and flexible solution for you, customized to your unique business/app requirements [Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Insanely powerful in-app chat solutions- for every industry\\n* #### Healthcare\\nProvide better care for your patients and teams using feature-rich HIPAA\\u2011compliant chat solutions Integrate powerful telemedicine communication tools into your existing platform * #### Finance & Banking\\nSecure communication solutions for the financial and banking industry to support your clients Easily integrated with your banking APIs with full customization available * #### Marketplaces & E-commerce\\nIntegrate chat and calling into your e\\u2011commerce marketplace platform to connect with customers using chat, audio, and video calling features * #### Social Networking\\nGive your users the option to connect one-on-one or with a group, usinghigh quality voice, video, and chatbox app features - build a well connected community * #### Education & Coaching\\nAdd communication functions to connect teachers with students, coaches with players, and trainers with clients Appropriate for any remote learning application ## Trusted by Developers & Product Owners\\nCommunication with the QuickBlox team has been great The QuickBlox team is a vital partner and I appreciate their support, their platform, and its capabilities ### Justin Harr,Founder, Eden\\nWhat I like best about QuickBlox is their reliability and performance - I've rarely experienced any issues with their solutions, whether I'm using their video or voice SDK, or their chat API\",\n", + " \"### Itay Shechter,Co-founder, Vanywhere\\nQuickBlox chat has enhanced our platform and allowed us to facilitate better communication between caregivers and care coordinators\\n### Robin Jerome,Principal Architect, BayShore HealthCare\\nI have worked with QuickBlox for several years using their Flutter SDK to add chat features to several client apps Their SDKs are easy to work with, saving us much time and money not having to build chat from scratch ### Samyak Jain,CEO & Founder, Pixel apps\\n[Previous](#carousel)[Next](#carousel)\\n## Explore Documentation\\nFamiliarize yourself with our chat and calling APIs Use our platform SDKs and code samples to learn more about the software and integration process [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n[Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n[JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n[React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n[Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n[Server API](https://quickblox.com/sdk/chat-api/)\\n## Start For FREE Customize Everything Build Your Dream Online Platform Our real-time chat and messaging solutions scale as your business grows, and can be customized to create 100% custom in-app messaging [Contact Sales](https://quickblox.com/enterprise/#get-enterprise)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere\",\n", + " \"Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"costs\": {\n", + " \"ai_cost\": 0,\n", + " \"bytes_transferred_cost\": 0,\n", + " \"compute_cost\": 0.0001,\n", + " \"file_cost\": 0.0002,\n", + " \"total_cost\": 0.0004,\n", + " \"transform_cost\": 0.0001\n", + " },\n", + " \"error\": null,\n", + " \"status\": 200,\n", + " \"url\": \"https://quickblox.com/\"\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 181 Type: step\n", + "output: {\n", + " \"result\": [\n", + " {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n### New ProductOpen source video consultation software with OpenAI Integration\\nElevate Your Video Communication with Q‑Consultation\\n[Learn more](https://quickblox.com/products/q-consultation/open-source/)\\n### New ProductBuild Exceptional Chat Experiences with AI‑Enhanced UI Kits\\n[Learn more](https://quickblox.com/ui-kit/)\\n[Previous](#carouselMainTopSlider)[Next](#carouselMainTopSlider)\\n# Build Your Own Messenger With Real-Time Chat & Video APIs\\nAdd instant messaging and online video chat to any Android, iOS, or Web application, with ease and flexibility In-app chat and calling APIs and SDKs, trusted globally by developers, startups, and enterprises [Start FREE Trial](https://admin.quickblox.com/signup?_ga=2.166318714.519349007.1585816300-1447393030.1568645682)[Talk to an Expert](https://quickblox.com/enterprise/#get-enterprise)\\n## Launch quickly and convert more prospects withreal‑‑timeChat, Audio, and Video communication\\nIf you own a product, you know exactly how drawn-out and exorbitant it can be to build real-time communication features from scratch Quickblox can help you design, create, and enter the market at a much faster rate with APIs and SDKs that shortcut product and engineering delivery Convert your ideas into a successful product with us and watch the engagement rate rise, while you build a loyal user base [\\n#### Chat\\nEmbedded chat features- you can customize and build a fully-functioning chat product for mobile and web in a matter of hours ](https://quickblox.com/products/chat/)[\\n#### Voice and Video calling\\nStreamline customer usability with high\\u2011quality peer\\u2011to\\u2011peer voice and video calls Drive more engagement and build meaningful connections ](https://quickblox.com/products/voice-and-video-calling/)[\\n#### Video Conferencing\\nCreate real-time video group interactions to enhance collaboration and productivity Designed to meet your user experience goals and increase conversations ](https://quickblox.com/products/video-conferencing/)[\\n#### Push Notifications\\nGive your customers/users reasons to keep coming back - send in-app reminders, offers, updates and watch retention rates climb ](https://quickblox.com/products/push-notifications/)\\n#### Data Storage\\nProtect your data from hackers and unwanted modification attempts using flexible data storage options Choose between dedicated, on-premise, or your own virtual cloud #### Secure File Sharing\\nAllow sharing and linking of all types of files (images, audio, video, docs, and other file formats) and enable your users to interact and engage more ## Over30,000 software developers and organizations worldwide are using QuickBlox messagingAPI\",\n", + " \"enterpriseinstances\\napplications\\nchatsperday\\nrequestspermonth\\n## Wherever you are in your product journey, we have chat, voice, and video APIs ready to build new features into your app\\n[Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Why QuickBlox Quickblox APIs are equipped to support mobile applications and websites at different stages, be it a fresh product idea, an MVP, early stage startup or a scaling enterprise Our documentation and developer support are highly efficient to make your dream product a reality ### Chat API and Feature-Rich SDKs\\nOur versatile software is designed for multi\\u2011platform use including iOS, Android, and the Web #### SDKs and Code Samples:\\nCross-platform kits and sample apps for easy and quick integration of chat #### Restful API:\\nEnable real-time communication via the server ### Fully Customizable White Label Solutions\\nCustomizable UI Kits to speed up your design workflow and build a product of your vision as well as a ready white\\u2011label solution for virtual rooms and video calling use cases #### UI Kits:\\nCustomize everything as you want with our ready UI Kits #### Q-Consultation:\\nWhite\\u2011label solution for teleconsultation and similar use cases ### Cloud & Dedicated Infrastructure\\nHost your apps wherever you want - opt for a dedicated fully managed server or on\\u2011premises infrastructure Pick a cloud provider that\\u2019s best as per your business goals #### Cloud:\\nA dedicated QuickBlox cloud or your own virtual cloud #### On-Premise:\\nDeployed and managed on your own physical server ### Rich Documentation & Constant Support\\nGet easy step by step guidance to build a powerful chat/messaging/communication app Easily integrate new features using our documentation and developer support\",\n", + " \"#### Docs:\\nIntegrating QuickBlox across multiple platforms #### Support:\\nQuickblox support is a click away ## Trust QuickBlox for secure communication\\n### SOC2\\n### HIPAA\\n### GDPR\\n## Do you need additional security, compliance, and support for the long-term We have a more scalable and flexible solution for you, customized to your unique business/app requirements [Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Insanely powerful in-app chat solutions- for every industry\\n* #### Healthcare\\nProvide better care for your patients and teams using feature-rich HIPAA\\u2011compliant chat solutions Integrate powerful telemedicine communication tools into your existing platform * #### Finance & Banking\\nSecure communication solutions for the financial and banking industry to support your clients Easily integrated with your banking APIs with full customization available * #### Marketplaces & E-commerce\\nIntegrate chat and calling into your e\\u2011commerce marketplace platform to connect with customers using chat, audio, and video calling features * #### Social Networking\\nGive your users the option to connect one-on-one or with a group, usinghigh quality voice, video, and chatbox app features - build a well connected community * #### Education & Coaching\\nAdd communication functions to connect teachers with students, coaches with players, and trainers with clients Appropriate for any remote learning application ## Trusted by Developers & Product Owners\\nCommunication with the QuickBlox team has been great The QuickBlox team is a vital partner and I appreciate their support, their platform, and its capabilities ### Justin Harr,Founder, Eden\\nWhat I like best about QuickBlox is their reliability and performance - I've rarely experienced any issues with their solutions, whether I'm using their video or voice SDK, or their chat API\",\n", + " \"### Itay Shechter,Co-founder, Vanywhere\\nQuickBlox chat has enhanced our platform and allowed us to facilitate better communication between caregivers and care coordinators\\n### Robin Jerome,Principal Architect, BayShore HealthCare\\nI have worked with QuickBlox for several years using their Flutter SDK to add chat features to several client apps Their SDKs are easy to work with, saving us much time and money not having to build chat from scratch ### Samyak Jain,CEO & Founder, Pixel apps\\n[Previous](#carousel)[Next](#carousel)\\n## Explore Documentation\\nFamiliarize yourself with our chat and calling APIs Use our platform SDKs and code samples to learn more about the software and integration process [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n[Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n[JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n[React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n[Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n[Server API](https://quickblox.com/sdk/chat-api/)\\n## Start For FREE Customize Everything Build Your Dream Online Platform Our real-time chat and messaging solutions scale as your business grows, and can be customized to create 100% custom in-app messaging [Contact Sales](https://quickblox.com/enterprise/#get-enterprise)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere\",\n", + " \"Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"costs\": {\n", + " \"ai_cost\": 0,\n", + " \"bytes_transferred_cost\": 0,\n", + " \"compute_cost\": 0.0001,\n", + " \"file_cost\": 0.0002,\n", + " \"total_cost\": 0.0004,\n", + " \"transform_cost\": 0.0001\n", + " },\n", + " \"error\": null,\n", + " \"status\": 200,\n", + " \"url\": \"https://quickblox.com/\"\n", + " },\n", + " {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Privacy Policy\\nLast updated: 27/03/2023\\n## INTRODUCTION\\nQuickBlox respects your privacy and iscommitted toprotecting your personal data This privacy policy will inform you astohow welook after your personal data when you access our services and tell you about your privacy rights and how the law protects you Please also use the Glossary tounderstand the meaning ofsome ofthe terms used inthis privacy policy ## 1 Important information and who we are\\n### Purpose ofthis privacy policy\\nThis privacy policy aims togive you information onhow QuickBlox collects and processes your personal data through your use ofour services, including any data you may provide through this website when you sign upto, orpurchase one ofour products orservices Itisimportant that you read this privacy policy together with any other privacy policy orfair processing policy wemay provide onspecific occasions when weare collecting, orprocessing, personal data about you, sothat you are fully aware ofhow and why weare using your data This privacy policy supplements other notices and privacy policies and isnot intended tooverride them ### Controller\\nInjoit Limited isthe controller and isresponsible for your personal data (collectively referred toasQuickBlox, ««we»»,««us»» or««our»» inthis privacy policy) Wehave appointed adata privacy manager who isresponsible for overseeing questions inrelation tothis privacy policy Ifyou have any questions about this privacy policy, including any requests toexercise your legal rights, please contact the data privacy manager using the details set out below ### Contact details\\nIf you have any questions about this privacy policy or our privacy practices, please contact our data privacy manager in the following ways:\\n* **Full name of legal entity:**\\n* **Email address:**\\n* **Telephone number:**\\n* Injoit Limited\\n* [gdpr@quickblox.com](mailto:gdpr@quickblox.com)\\n* [+1 415 755 8221]()\\nYou have the right tomake acomplaint atany time tothe Information Commissioner’’s Office (ICO), theUK supervisory authority for data protection issues (www.ico.org.uk) Wewould, however, appreciate the chance todeal with your concerns before you approach the ICO soplease contactus inthe first instance ### Changes tothe privacy policy and your duty toinformus ofchanges\\nWekeep our privacy policy under regular review Itisimportant that the personal data wehold about you isaccurate and current Please keepus informed ifyour personal data changes during your relationship withus\",\n", + " \"## 2 The data wecollect about you\\nPersonal data, orpersonal information, means any information about anindividual from which that person can beidentified Itdoes not include data where the identity has been removed (anonymous data) Wemay collect, use, store and transfer different kinds ofpersonal data about you which wehave grouped together asfollows:\\n* **Identity Data**which includes first name, maiden name, last name, username orsimilar identifier, title * **Contact Data**which includes billing address, home address, email address and telephone numbers * **Technical Data**which includes your internet protocol (IP) address, your login data, browser type and version, hardware information, time zone setting and location, browser plug-in types and versions, operating system and platform, and other technology onthe devices you use toaccess our platform * **Profile Data**which includes your username and password, purchases ororders made byyou, your interests, preferences, feedback and survey responses * **Usage Data**which includes information about how you use our platform, products and services * **Marketing and Communications Data**which includes your preferences inreceiving marketing fromus and our third parties and your communication preferences Wealso collect, use and share**Aggregated**Data such asstatistical ordemographic data for any purpose Aggregated Data could bederived from your personal data but isnot considered personal data inlaw asthis data will not directly orindirectly reveal your identity ### Ifyou fail toprovide personal data\\nWhere weneed tocollect personal data bylaw, orunder the terms ofacontract wehave with you, and you fail toprovide that data when requested, wemay not beable toperform the contract wehave orare trying toenter into with you (for example, toprovide you with our products orservices) Inthis case, wemay have tocancel aproduct orservice you have withus, but wewill notify you ifthis isthe case atthe time ## 3 How isyour personal data collected\",\n", + " \"Weuse different methods tocollect data from and about you including through:\\n* **Direct interactions.**You may giveus your Identity, Contact and Financial Data byfilling informs orbycorresponding withus bypost, phone, email orotherwise This includes personal data you provide when you:\\n1 apply for our products orservices;\\n2 create anaccount withus;\\n3 subscribe toour service;\\n4 request marketing tobesent toyou;\\n5 enter apromotion orsurvey; or\\n6 giveus feedback orcontactus 7 **Automated technologies**orinteractions Asyou interact with our Platform, wewill automatically collect Technical Data about your equipment, browsing actions and patterns Wecollect this personal data byusing cookies, server logs and other similar technologies.## 4 How weuse your personal data\\nWewill only use your personal data when the law allowsus to Most commonly, wewill use your personal data inthe following circumstances:\\n* Where weneed toperform the contract weare about toenter into orhave entered into with you * Where itisnecessary for our legitimate interests (orthose ofathird party) and your interests and fundamental rights donot override those interests\",\n", + " \"* Where weneed tocomply with alegal obligation Generally, wedonot rely onconsent asalegal basis for processing your personal data although wewill get your consent before sending direct marketing communications toyou You have the right towithdraw consent tomarketing atany time bycontactingus ### Purposes for which wewill use your personal data\\nWehave set out below, inatable format, adescription ofall the ways weplan touse your personal data, and which ofthe legal bases werely ontodoso Wehave also identified what our legitimate interests are where appropriate Note that wemay process your personal data for more than one lawful ground depending onthe specific purpose for which weare using your data Please contactus ifyou need details about the specific legal ground weare relying ontoprocess your personal data where more than one ground has been set out inthe table below * **Purpose/Activity**\\n* **Type of data**\\n* **Lawful basis for processing including basis oflegitimate interest**\\n* Toregister you asacustomer\\n* 1 a Identity\\n2 b Contact\\n3 Performance ofacontract with you\\n* Toprocess your order including:\\n1 a Manage payments, fees and charges\\n2\",\n", + " \"b Collect and recover money owed tous\\n3 1 a Identity\\n2 b Contact\\n3 c Financial\\n4 d Transaction\\n5 e Marketingand Communications\\n6 1 a\",\n", + " \"Performance ofacontract with you\\n2 b Necessary for our legitimate interests (torecover debts due tous)\\n* Tomanage our relationship with you which will include:\\n1 a Notifying you about changes toour terms orprivacy policy\\n2 b Asking you toleave areview ortake asurvey\\n3 1 a Identity\\n2 b Contact\\n3 c Profile\\n4 d\",\n", + " \"Marketingand Communications\\n5 1 a Performance of a contract with you\\n2 b Necessary to comply with a legal obligation\\n3 c Necessary for our legitimate interests (to keep our records updated and to study how customers use our products/services)\\n* Toadminister and protect our business and our services (including troubleshooting, data analysis, testing, system maintenance, support, reporting and hosting ofdata)\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4 1\",\n", + " \"a Necessary for our legitimate interests (for running our business, provision ofadministration andIT services, network security, toprevent fraud and inthe context ofabusiness reorganisation orgroup restructuring exercise)\\n2 b Necessary tocomply with alegal obligation\\n* Touse data analytics toimprove our platform, products/services, marketing, customer relationships and experiences\\n* 1 a Technical\\n2 b Usage\\n3 Necessary for our legitimate interests (todefine types ofcustomers for our products and services, tokeep our services updated and relevant, todevelop our business and toinform our marketing strategy)\\n* Tomake suggestions and recommendations toyou about goods orservices that may beofinterest toyou\\n* 1 a Identity\\n2 b Contact\\n3 c Technical\\n4\",\n", + " \"d Usage\\n5 e Profile\\n6 f Marketingand Communications\\n7 Necessary for our legitimate interests (todevelop our products/services and grow our business)\\n### Marketing\\nWestrive toprovide you with choices regarding certain personal data uses, particularly around marketing and advertising ### Promotional offers fromus\\nWemay use your Identity, Contact, Technical, Usage and Profile Data toform aview onwhat wethink you may want orneed, orwhat may beofinterest toyou This ishow wedecide which products, services and offers may berelevant for you You will receive marketing communications fromus ifyou have requested information fromus orpurchased products orservices fromus and you have not opted out ofreceiving that marketing ### Third-party marketing\\nWewill get your express opt-in consent before weshare your personal data with any third party for marketing purposes ### Opting out\\nYou can askus orthird parties tostop sending you marketing messages atany time Where you opt out ofreceiving these marketing messages, this will not apply topersonal data provided tous asaresult ofaproduct/service purchase, product/service experience orother transactions ### Cookies\\nYou can set your browser torefuse all orsome browser cookies, ortoalert you when services set oraccess cookies Ifyou disable orrefuse cookies, please note that some parts ofour platform may become inaccessible ornot function properly\",\n", + " \"For more information about the cookies weuse, please see Cooklie Policy ### Change of purpose\\nWewill only use your personal data for the purposes for which wecollectedit, unless wereasonably consider that weneed touse itfor another reason and that reason iscompatible with the original purpose Ifyou wish toget anexplanation astohow the processing for the new purpose iscompatible with the original purpose, please contactus Ifweneed touse your personal data for anunrelated purpose, wewill notify you and wewill explain the legal basis which allowsus todoso Please note that wemay process your personal data without your knowledge orconsent, incompliance with the above rules, where this isrequired orpermitted bylaw ## 5 Disclosures ofyour personal data\\nWemay share your personal data with the parties set out below for the purposes set out inthe table ««Purposes for which wewill use your personal data»» above * External Third Parties asset out inthe Glossary * Third parties towhom wemay choose tosell, transfer ormerge parts ofour business orour assets Alternatively, wemay seek toacquire other businesses ormerge with them Ifachange happens toour business, then the new owners may use your personal data inthe same way asset out inthis privacy policy Werequire all third parties torespect the security ofyour personal data and totreat itinaccordance with the law Wedonot allow our third-party service providers touse your personal data for their own purposes and only permit them toprocess your personal data for specified purposes and inaccordance with our instructions ## 6 International transfers\\nWedonot currently transfer your personal data outside the European Economic Area (EEA)\",\n", + " \"Ifinthe future wewere totransfer your personal data out ofthe EEA, wewould ensure asimilar degree ofprotection isafforded toitbyensuring atleast one ofthe following safeguards isimplemented:\\n* Wewill only transfer your personal data tocountries that have been deemed toprovide anadequate level ofprotection for personal data bythe European Commission * Where weuse certain service providers, wemay use specific contracts approved bythe European Commission which give personal data the same protection ithas inEurope Please contactus ifyou want further information onthe specific mechanism used byus when transferring your personal data out ofthe EEA ## 7 Data security\\nWehave put inplace appropriate security measures toprevent your personal data from being accidentally lost, used oraccessed inanunauthorised way, altered ordisclosed Inaddition, welimit access toyour personal data tothose employees, agents, contractors and other third parties who have abusiness need toknow They will only process your personal data onour instructions and they are subject toaduty ofconfidentiality Wehave put inplace procedures todeal with any suspected personal data breach and will notify you and any applicable regulator ofabreach where weare legally required todoso ## 8 Data retention\\n### How long will you use mypersonal data for Wewill only retain your personal data for aslong asreasonably necessary tofulfil the purposes wecollected itfor, including for the purposes ofsatisfying any legal, regulatory, tax, accounting orreporting requirements Wemay retain your personal data for alonger period inthe event ofacomplaint orifwereasonably believe there isaprospect oflitigation inrespect toour relationship with you Todetermine the appropriate retention period for personal data, weconsider the amount, nature and sensitivity ofthe personal data, the potential risk ofharm from unauthorised use ordisclosure ofyour personal data, the purposes for which weprocess your personal data and whether wecan achieve those purposes through other means, and the applicable legal, regulatory, tax, accounting orother requirements Bylaw wehave tokeep basic information about our customers (including Contact, Identity, Financial and Transaction Data) for six years after they cease being customers for tax purposes Insome circumstances you can askus todelete your data: see your legal rights below for further information\",\n", + " \"Insome circumstances wewill anonymise your personal data (sothat itcan nolonger beassociated with you) for research orstatistical purposes, inwhich case wemay use this information indefinitely without further notice toyou ## 9 Your legal rights\\nUnder certain circumstances, you have rights under data protection laws inrelation toyour personal data You have the rightto:\\n* **Request access**toyour personal data (commonly known asa««data subject access request»») This enables you toreceive acopy ofthe personal data wehold about you and tocheck that weare lawfully processingit * **Request correction**ofthe personal data that wehold about you This enables you tohave any incomplete orinaccurate data wehold about you corrected, though wemay need toverify the accuracy ofthe new data you provide tous * **Request erasure**ofyour personal data This enables you toaskus todelete orremove personal data where there isnogood reason forus continuing toprocessit You also have the right toaskus todelete orremove your personal data where you have successfullyexercised your right toobject toprocessing (see below), where wemay have processed your information unlawfully orwhere weare required toerase your personal data tocomply with local law Note, however, that wemay not always beable tocomply with your request oferasure for specific legal reasons which will benotified toyou, ifapplicable, atthe time ofyour request * **Object toprocessing**ofyour personal data where weare relying onalegitimate interest (orthose ofathird party) and there issomething about your particular situation which makes you want toobject toprocessing onthis ground asyou feel itimpacts onyour fundamental rights and freedoms You also have the right toobject where weare processing your personal data for direct marketing purposes Insome cases, wemay demonstrate that wehave compelling legitimate grounds toprocess your information which override your rights and freedoms * **Request restriction ofprocessing**ofyour personal data\",\n", + " \"This enables you toaskus tosuspend the processing ofyour personal data inthe following scenarios:\\n1 Ifyou wantus toestablish the data’’s accuracy 2 Where our use ofthe data isunlawful but you donot wantus toeraseit 3 Where you needus tohold the data even ifwenolonger require itasyou need ittoestablish, exercise ordefend legal claims 4 You have objected toour use ofyour data but weneed toverify whether wehave overriding legitimate grounds touseit 5 **Request the transfer**ofyour personal data toyou ortoathird party Wewill provide toyou, orathird party you have chosen, your personal data inastructured, commonly used, machine-readable format Note that this right only applies toautomated information which you initially provided consent forus touse orwhere weused the information toperform acontract with you 6 **Withdraw consent atany time**where weare relying onconsent toprocess your personal data However, this will not affect the lawfulness ofany processing carried out before you withdraw your consent\",\n", + " \"Ifyou withdraw your consent, wemay not beable toprovide certain products orservices toyou Wewill advise you ifthis isthe case atthe time you withdraw your consent Ifyou wish toexercise any ofthe rights set out above, please contactus ### No fee usually required\\nYou will not have topay afee toaccess your personal data (ortoexercise any ofthe other rights) However, wemay charge areasonable fee ifyour request isclearly unfounded, repetitive orexcessive Alternatively, wecould refuse tocomply with your request inthese circumstances ### What we may need from you\\nWemay need torequest specific information from you tohelpus confirm your identity and ensure your right toaccess your personal data (ortoexercise any ofyour other rights) This isasecurity measure toensure that personal data isnot disclosed toany person who has noright toreceiveit Wemay also contact you toask you for further information inrelation toyour request tospeed upour response ### Time limit to respond\\nWetry torespond toall legitimate requests within one month Occasionally itcould takeus longer than amonth ifyour request isparticularly complex oryou have made anumber ofrequests Inthis case, wewill notify you and keep you updated ## 10 Glossary\\n**Legitimate Interest**means the interest ofour business inconducting and managing our business toenableus togive you the best service/product and the best and most secure experience Wemake sure weconsider and balance any potential impact onyou (both positive and negative) and your rights before weprocess your personal data for our legitimate interests\",\n", + " \"Wedonot use your personal data for activities where our interests are overridden bythe impact onyou (unless wehave your consent orare otherwise required orpermitted tobylaw) You can obtain further information about how weassess our legitimate interests against any potential impact onyou inrespect ofspecific activities bycontactingus **Performance ofContract**means processing your data where itisnecessary for the performance ofacontract towhich you are aparty ortotake steps atyour request before entering into such acontract **Comply with alegal obligation**means processing your personal data where itisnecessary for compliance with alegal obligation that weare subjectto **External Third Parties**\\n* Service providers acting asprocessors who provideIT and system administration services * Providers ofour cloud services including AWS and Google * Professional advisers acting asprocessors orjoint controllers including lawyers, bankers, auditors and insurers based inthe United Kingdom who provide consultancy, banking, legal, insurance and accounting services * Regulators and other authorities acting asprocessors orjoint controllers based inthe United Kingdom who require reporting ofprocessing activities incertain circumstances * Our third party partners and affiliates who may manage your customer relationship onour behalf * Stripe for payment management ## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved\",\n", + " \"* [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"costs\": {\n", + " \"ai_cost\": 0,\n", + " \"bytes_transferred_cost\": 0,\n", + " \"compute_cost\": 0.0001,\n", + " \"file_cost\": 0.0002,\n", + " \"total_cost\": 0.0004,\n", + " \"transform_cost\": 0.0001\n", + " },\n", + " \"error\": null,\n", + " \"status\": 200,\n", + " \"url\": \"https://quickblox.com/privacy-policy/\"\n", + " },\n", + " {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# HIPAA Compliant Hosting\\nOur healthcare communication solutions are designed with HIPAA compliance inmind Build and deliver powerful HIPAA chat apps inthe full confidence that sensitive ePHI remains secure and compliance requirements are satisfied ## What isHIPAA Compliance HIPAA (Health Insurance Portability and Accountability Act of1996) sets national standards for safeguarding protected health information (PHI) Any business that collects, stores, ortransmits PHI isrequired tocomply with HIPAA physical, technical, and administrative safeguards Failure todosocan result incompromised patient data and hefty penalties for the involved party ## Why QuickBlox ### Experienced inHealthcare\\nWeare experienced working with the Healthcare industry and HealthTech Weprovide HIPAA compliant hosting solutions configured for enhanced data privacy and inaccordance with HIPAA security rules ### Host Anywhere\\nWeunderstand your need for data security that’’s why wedeploy our software wherever you need, including inyour own cloud account with ahosting provider ofyour choice sothat sensitive PHI remains firmly inyour ownership and control ### Enterprise Ready\\nWebuild enterprise ready solutions Our skilled DevOps team can provide anarray ofsoftware tools, integrations, and configurations toensure enterprise grade security and support for your HIPAA compliant solution [Speak to us](https://quickblox.com/enterprise/#get-enterprise)\\n## QuickBlox HIPAA Compliant HostingSolutions\\nThe easiest way tosatisfy HIPAA requirements istopartner with aHIPAA compliant communication solutions provider, like QuickBlox Wehave asolid history providing enterprise solutions for healthcare ### Key Features\\n#### Your choice ofHIPAA Compliant Cloud\\nSoftware can bedeployed toyour preferred hosting environment including Amazon Web Services, Google Cloud Platform, and Microsoft Azure\",\n", + " \"Weconfigure your dedicated instance sothat itmeets HIPAA-compliant hosting requirements QuickBlox can also host for you inour own HIPAA compliant account #### Fully Encrypted Server Configuration\\nWith QuickBlox, data isencrypted intransit and atrest Weoffer full encryption ofuser databases, files/content, and connections which means ePHI, communication history, and user data issafe and secure #### Customization ofSoftware tosupport HIPAA Technical Safeguards\\nOur back-end platform can becustomized tosupport numerous security features,e.g * access control via unique usernames and passwords toprevent unauthorized access\\n* person orentity authentication tools such astwo-factor authentication\\n* anonymous sessions with automatic logoff procedures\\n#### AFully Managed Service\\nOur Enterprise Plan provides afully managed service with dedicated maintenance and real-time monitoring Weoffer aService Level Agreement (SLA) with uptime guarantee #### Provision ofBusiness Associate Agreement\\nWeprovide our healthcare customers with aBAA Bysigning this agreement wedemonstrate our knowledge ofHIPAA compliance rules and our experience with supporting compliant healthcare communication solutions ## Advanced Features\\nWeoffer anarray ofdata protection tools tosafeguard your instance without your data ever leaving your server\\n### High Availability and Disaster Recovery(HA/DR)\\n* HA/DR keeps your applications running inthe event ofany system issues, soyour users never lose messaging and calling functionalities * AHigh Availability solution replicates your communication infrastructure toensure constant availability This isideal for critical business solutions like healthcare * Our Disaster Recovery plan provides full backup management toensure that sensitive data can befully recovered inthe worst case scenario ofinterrupted orcompromised services ### Software integration for enhanced security standards\\n* Diligent monitoring ofyour cloud environment with Graylog, alog storage and management tool that allows your engineers toeasily manage logs and structured analytical data all inone place * Intrusion detection with OSSEC, ahost-based system that performs log analysis, integrity checking, registry monitoring, rootlet detection, time-based alerting, and active response\",\n", + " \"* Virus scanning software toautomatically scan, tag, and notify you ofinfected files and malware * Web Application Firewall (WAF) tosecurely control web traffic, blocking spam bots from consuming resources, skewing metrics, and causing downtime onyour healthcare communication application ## HIPAA Compliant Video Hosting\\nConnect patients and doctors together with HIPAA compliant audio &&video calling and video conferencing, built onWebRTC and available with the QuickBlox HIPAA Enterprise Plan\\n### Dedicated TURN Server\\nDedicated WebRTC video calling traffic relay server for video calling through firewalls, bypassing NAT, and connecting geographically dispersed users [Learn more](https://quickblox.com/products/voice-and-video-calling/)\\n### Dedicated Conference Server\\nWeoffer HIPAA video conference hosting with adedicated conference server Enjoy high quality conference calls for multiple simultaneous users onaservice server that you control [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Conference Call Recording\\nConference call recording functionality tosave your video conferences Enables you tostore, access, and share video healthcare communications securely onyour dedicated server [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Telehealth Ready Solution: Q‑Consultation\\nWeoffer aHIPAA compliant virtual waiting room with tele-consultation app Fully customizable, packed with features, and works onany device and the web [Learn more](https://quickblox.com/products/q-consultation/)\\n## HIPAA Compliant Hosting Plans\\nQuickBlox provides arange ofplans depending onthe size ofyour organization and budget All our HIPAA plans provide full data encryption and come with aBusiness Associates Agreement ### HIPAA (Shared) Cloud Plan (starts at**$399/mo**)\\nSuitable for smaller organizations for POCs (proof ofconcept) and MVP (minimal viable product) use-cases that require data encryption but have alimited budget * Software ishosted onour QuickBlox AWS multi-tenant sharedserver\\n* Total user limit:**5000**\\n* File size limit:**50MB**\\n* Support byticketing system\\n### HIPAA Enterprise Plan (startsat**$899/mo**)\\nSuitable for production services granting the customer complete control over their user data, customization, technicalsupport,andSLA * Can behosted onQuickBlox’’s own managed cloud account orincustomer’’s own cloud account with preferred cloud service provider including Amazon Web Services, Google Cloud Platform, Microsoft Azure and others * Personal Account Manager, SLA with uptimeguarantee\\n* Optional Add-ons:\\n* - High Availability and Disaster Recovery (HA/DR)solution\\n* - Security enhancements (e.g.Graylog,OSSEC)\\n* - Dedicated Turn server, Conference callserver\\n### HIPAA On-Premises\\nSuitable for organizations who desire optimal security, require communications toremain within their own private network, and who have their own DevOps and on-premises data center\",\n", + " \"* Hosted onyour own dedicated servers inyour privately owned datacenter\\n* Granting you total control ofyour ePHI and chathistory\\n[Find out more](https://quickblox.com/enterprise/#get-enterprise)\\n## HIPAA Compliant Cloud Hosting\\nThere are avariety ofcloud hosting providers that offer HIPAA compliant environments QuickBlox can deploy software with anyone ofthese and more:\\nHosting with one ofthese cloud providersdoes notguarantee HIPAA compliance Youalso need toensure your application and software meet the safeguards outlined inthe HIPAA securityrule **Work with apartner like QuickBlox tomake sure you’’re covered.**\\n## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[On-Premise hosting](https://quickblox.com/hosting/on-premise/)\\n## Frequently Asked Questions\\n### What isHIPAA compliant hosting Any digital healthcare application that contains ePHI needs tobehosted onacloud infrastructure that complies with the technical, administrative, and physical safeguards outlined byHIPAA These safeguards are designed toprotect the integrity ofthe data and tocontrol who has access tothis data HIPAA compliant hosting requirements include encrypted data intransit and storage, access controls, person orentity authentication tools, and more ### Who needs HIPAA compliance Healthcare providers\\u2014 referred toasthe \\u00abcovered entity\\u00bb\\u2014 must comply with HIPAA, but equally their \\u00abbusiness associates\\u00bb who come into contact with patient data when providing services toahealthcare organization are also covered bythis legislation This means any cloud service provider, CPaaS provider, ormedical app developer who are inany way involved instoring, processes, ortransmitting PHI, are considered a \\u2019business associate\\u2019 and must comply with HIPAA ### What isPHI and ePHI Any medical data that contains individually identifiable health information about apatient (e.g name, address, date ofbirth, social security number) isreferred toasprotected health information (PHI), orwhen stored electronically ePHI There isanabundance ofmedical records including bills from doctors, emails, MRI scans, blood test results etc that fall under the rubric ofPHI/ePHI ### How much does HIPAA compliant hosting cost\",\n", + " \"The need for additional security enhancements such asdatabase encryption and software customization for extra monitoring &&intrusion detection means ahigher cost for HIPAA compliant hosting Encrypted HIPAA hosting onour shared cloud starts at$399/mo ### Which cloud providers are HIPAA compliant There are several cloud hosting providers who provide aninfrastructure that can beHIPAA compliant (e.g AWS, GCP, Azure), however, you are still responsible for configuring your software tosatisfy the HIPAA security rule Check tosee ifthe cloud provider will sign aBAA agreement and choose aservice provider like QuickBlox who can ensure aHIPAA compliant solution ### What are the penalties for non-compliance Penalties depend onthe severity ofthe breach, whether itwas intentional ornot They range from $100 to$50,000 per breach ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [HIPAA Compliant Cloud Hosting: What does it mean?](https://quickblox.com/blog/hipaa-compliant-cloud-hosting-what-does-it-mean/)\\nAnna S 31 Dec 2021\\n[Azure](https://quickblox.com/blog/hosting/azure/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Microsoft Azure HIPAA Compliant?](https://quickblox.com/blog/is-microsoft-azure-hipaa-compliant/)\\nAnna S 12 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Google Cloud Platform (GCP)](https://quickblox.com/blog/hosting/google-cloud-platform-gcp/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Google Cloud Platform HIPAA Compliant?](https://quickblox.com/blog/is-google-cloud-platform-hipaa-compliant/)\\nAnna S 1 Oct 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd\",\n", + " \"trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"costs\": {\n", + " \"ai_cost\": 0,\n", + " \"bytes_transferred_cost\": 0,\n", + " \"compute_cost\": 0.0001,\n", + " \"file_cost\": 0.0002,\n", + " \"total_cost\": 0.0004,\n", + " \"transform_cost\": 0.0001\n", + " },\n", + " \"error\": null,\n", + " \"status\": 200,\n", + " \"url\": \"https://quickblox.com/hosting/hipaa-compliant-hosting/\"\n", + " },\n", + " {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# On‑Premises Solutions for Optimal Privacy\\nDoyou require your own private communication network with high security and/or noaccess tothe cloud oreven the Internet Doyou deal with highly sensitive data that needs tobestored locally Isyour industry tightly regulated and required tofollow compliance Not aproblem QuickBlox on‑‑premises solution can support your needs ## Key Benefits\\nOn‑‑premises installation enables you toenjoy the rich functionality ofQuickBlox software while ensuring the highest level ofsecurity ### Your choice for where data isstored and processed\\nYour data center can belocated wherever you need ### Full server and data control\\nWewill assist with server configuration and administration, but you will enjoy complete control over your system and maintain 100 percent privacy ### Enhanced Security\\nBydeploying our software into your own dedicated server and/or privately owned cloud you remove the need for any third party tohave physical orremote access toyour servers Asyou maintain total control ofyour infrastructure, only you and your recipients can access system data ### Regulatory compliance\\nOn‑‑premises hosting isideally suited tothose that are intightly regulated countries and industries such ashealthcare and finance that are required bylaw tohave their infrastructure hosted locally and/or in\\u0430specific country orgeographic location ## QuickBlox software secure onYour server\\n#### QuickBlox isthe preferred choice for tightly regulated industries and geographies that are required tostore data locally Anon‑‑premise instant messaging platform in**healthcare**ensures that internal communications remain secure and patient trust isenhanced Medical staff and their patients can discuss lab results, diagnosis, and treatment plans via chat orvideo‑‑calling inthe full confidence that the content oftheir private conversations remain secure and protected from interlopers With anon‑‑premise chat solution,**financial advisers**can share documents, send text messages, and provide remote consultations without having toworry about compromising their customer’’s privacy\",\n", + " \"On‑‑premise installation guarantees the bank’’s complete ownership and control ofdata and communication aswell astheir compliance with data processing requirements Ifyou operate ina**country with strong data protection laws**orgovernment oversight build anon‑‑premise messaging app toensure all data remains within your country’’s borders and out‑‑of‑‑reach ofthird parties Enable your users tosend text, voice messages, and media rich files with acommunication solution that stores data locally and complies with legal requirements ## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[HIPAA Compliant Hosting](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n## Frequently Asked Questions\\n### What ismeant byon\\u2011premises On-premises (also referred toasonpremise and onprem) iswhen software isdeployed and managed from within acompany, onthe company\\u2019s own hardware and physical server, data center, and/or virtual machine ### Why choose on\\u2011premises Ifthe need for data control and security isamajor concern for your company, and/or ifyour company already has their own private server infrastructure you may want tochoose anon\\u2011premises solution This deployment model removes the need for any third party service provider, enabling anorganization toenjoy sole ownership and control oftheir data ### Who chooses on\\u2011premises Government agencies and large corporations, like finance and healthcare, that deal with highly sensitive information, orcountries that have requirements tostore data locally often choose anon\\u2011premises installation See how wehave supportedglobal bankswith anon\\u2011premises solution ### What\\u2019s the difference between on\\u2011premises and private cloud With on\\u2011premises, anenterprise will run software and store data inaninfrastructure located within its own premises With aprivate cloud, anenterprise will run their application inadedicated cloud\\u2011based environment, supplied byathird party Itis \\u2018private\\u2019 because itisadedicated environment with resources provided and customized solely for the needs ofthe enterprise\",\n", + " \"## Additional Resources\\n[Banking](https://quickblox.com/blog/business/banking/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)[Regulations](https://quickblox.com/blog/hosting/regulations/)### [On-premises or cloud hosting for banking and finance?](https://quickblox.com/blog/on-premises-or-cloud-hosting-for-banking-and-finance/)\\nAnna S 3 Dec 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [On-Premise Vs Cloud Hosting: Frequently Asked Questions](https://quickblox.com/blog/on-premise-vs-cloud-hosting-frequently-asked-questions/)\\nGail M 22 Jul 2022\\n## Ready to get started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"costs\": {\n", + " \"ai_cost\": 0,\n", + " \"bytes_transferred_cost\": 0,\n", + " \"compute_cost\": 0.0001,\n", + " \"file_cost\": 0.0002,\n", + " \"total_cost\": 0.0004,\n", + " \"transform_cost\": 0.0001\n", + " },\n", + " \"error\": null,\n", + " \"status\": 200,\n", + " \"url\": \"https://quickblox.com/hosting/on-premise/\"\n", + " },\n", + " {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# White Label Video Consultation Solution for Your Business\\nYour virtual room application with private messaging, integrated with OpenAI Q-Consultation is an AI enhanced video calling solution that provides a secure means to hold private meetings via video and chat With file sharing, scheduling, and a host of user management features [Contact us](#contact-us)\\n## How does our customizable video software adapt to different use cases * #### Healthcare and HealthTech\\nManage patient appointments remotely, exchange secure messages, share photos & videos, and provide HIPAA compliant video visits [Learn more](https://quickblox.com/products/q-consultation/telehealth-app/)\\n* #### HR & Recruitment\\nInterview large numbers of candidates with queue management tools and private video consultation and hire people remotely [Learn more](https://quickblox.com/products/q-consultation/recruitment-app/)\\n* #### Banking & Finance\\nConsult with clients on a secure video consultation platform hosted within your own cloud infrastructure to ensure the highest level of data security [Learn more](https://quickblox.com/products/q-consultation/finance-app/)\\n* #### Customer Support\\nOffer customers a personal touch by providing technical support and customer care via private online consultation [Learn more](https://quickblox.com/products/q-consultation/customer-support-app/)\\n* #### Operator Driven Chat\\nEnable operators to seamlessly connect with multiple online participants in private chat rooms [Learn more](https://quickblox.com/products/q-consultation/social-app/)\\n* #### E-Commerce\\nEffortlessly guide customers through a purchase with in\\u2011person sales and product demonstrations via remote video consultation * #### Education & Coaching\\nUse a fully\\u2011featured virtual appointment room to consult with students any time you want ## Need white label video software for your business [Tell us about your use case](#contact-us)\\n## What our Customers Say\\n1 2 Using Q-Consultation we were able to set up a secure communication command center to monitor pediatric patients, in weeks not months, This software allows us to provide HIPAA compliant communication between doctors and patients regarding the health of their child\",\n", + " \"### Ross Sommers,MD Founder\\nI integrated Q-Consultation into a Hospital\\u2019s EHR system to provide real-time video communication for doctors working with patients in acute care We were able to deploy the software in our cloud and deliver new functionality to create a better user experience ### Manish Verma,Former Development Lead\\n## What sets our AI-enhanced white label video platform apart Q-Consultation takes your business consultations to the next level by integrating Open AI models including ChatGPT, the powerful AI assistant Unlock a range of advanced features that revolutionize the way you connect with your clients #### Contextual assistance\\nAI provides real-time contextual assistance during online video consultations It can help users find relevant information, answer frequently asked questions, or offer suggestions based on the ongoing conversation #### Local Knowledge Expert\\nUpload company documents and URLs into the[SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)and create an in-app knowledge bot that knows everything about your specific your case #### Call summary\\nSaving time & resources, AI can create an automatic summary from a video recording, highlighting a list of action points and serving as a valuable virtual assistant [Request a Demo](#contact-us)\\n## Why do businesses choose our online video platform #### Ready to Go Developing applications from scratch is costly & time consuming License our ready application now #### Embeddable\\nCan be integrated into your existing software platform, embedded into your website or app, and hosted in your preferred domain #### Compliant\\nCompatible by design with most compliance regulations including HIPAA, PIPEDA, and GDPR\",\n", + " \"#### Scalable\\nBuilt on the QuickBlox platform, our solution is fully scalable to adapt to your changing business needs #### Customizable\\nCustomize the app to suit your company brand and specific use case to create the user experience you want #### Secure\\nCustomer data and communication is encrypted and secure Our solution can be deployed in your own cloud infrastructure for added control #### Cross Platform\\nA web application that is adaptable to mobile web browsers so that it can work on iOS and Android #### AI Integrated\\nStay ahead of the competition with cutting-edge technology AI enhanced video consultation demonstrates your commitment to innovation #### Flexible Pricing & Support\\nWe offer several pricing models based on usage and business needs Q\\u2011Consultation is offered as a managed service and is bundled with QuickBlox support and services ## Looking for a free white label video solution We offer Q-Consultation Lite, open-source code that is freely available to implement and customize today at no cost [Try Q-Consultation Lite](https://quickblox.com/products/q-consultation/open-source/)\\n## Private Video Consultation for Multiple Use Cases\\n[\\n### Healthcare and HealthTech\\n](https://quickblox.com/products/q-consultation/telehealth-app/)[\\n### Customer Support\\n](https://quickblox.com/products/q-consultation/customer-support-app/)[\\n### HR & Recruitment\\n](https://quickblox.com/products/q-consultation/recruitment-app/)[\\n### Banking & Finance\\n](https://quickblox.com/products/q-consultation/finance-app/)[\\n### Operator Driven Chat\\n](https://quickblox.com/products/q-consultation/social-app/)\\n## Create a virtual meeting room experience that works on any mobile device and the web ### Communication features\\n* Real-time Chat & Messaging\\n* Video & audio calling\\n* File sharing\\n* Call recording\\n* Camera Input selection\\n* Customizable data capture forms\\n* Private chat rooms\\n### User management features\\n* User authentication\\n* Real-time customer queue\\n* Virtual waiting & meeting rooms\\n* Customer and provider profiles\\n* Invitation sharing by link & text\\n* Capture user data, add, share, send notes, and share files\\n* Message and call history\\n* Appointment scheduler\\n[Ask About our Chat-Only Version](#contact-us)\\n## Interested in an enterprise-ready white-label video consultation solution Supercharge your client consultations with these additional services for Enterprise\\n#### Professional Services\\nCustom functionality modifications are available by the Quickblox professional services team #### Service Management & DevOps\\nHybrid, on\\u2011premise and internal deployment can also be managed by the QuickBlox team, if needed\",\n", + " \"#### System Integration\\nBackend API & 3rd\\u2011party integrations can be developed for your use case to enable seamless interoperability ## Are you in need of a white-label video consultation solution withinstant messaging ## Ready to get started Book a free call to request a demo or to discuss how Q\\u2011Consultation can serve your business needs ## Frequently Asked Questions\\n### What is white label video conferencing White label video conferencing refers to a software solution that is developed by one company but is rebranded and offered by another company as if it were their own product While QuickBlox has built the underlying technology and infrastructure of Q-Consultation, we invite our customers to offer our video conferencing services to their own customers under their own brand name and logo ### What are the benefits of using a white label video conferencing solution with a Chat API A Chat API allows users to engage in[real-time text-based conversations](https://quickblox.com/blog/real-time-communication-and-the-rise-of-neobanks/)alongside video consultations This can be valuable for sending text messages, sharing links or documents, asking quick questions, or providing additional context during the consultation ### Do I need technical expertise to set up and manage a white label video conferencing platform QuickBlox\\u2019s white label video consultation solution is designed to accommodate different levels of technical expertise by offering a range of options, from open source code that allows for extensive customization to a more turnkey and fully managed system ### Is white label video conferencing secure Q-Consultation is built on QuickBlox\\u2019s robust communication platform and offers a secure white label video conferencing solution All customer data and communication is encrypted and secure, and the solution can be deployed in your own cloud infrastructure for added control\",\n", + " \"### Is white label video conferencing suitable for remote work White label video conferencing is well-suited for remote work Q-Consultation enables remote teams to conduct seamless virtual meetings, share screens and documents, and maintain secure communication, fostering collaboration regardless of physical location ### Can I customize the white label video conferencing solution to match my brand Q-Consultation offers extensive customization options to align the platform with your brand and your specific needs You can alter the name and logo, the UI colors and fonts, and customize the text throughout, ensuring that the platform carries your brand identity QuickBlox allows you to use a custom domain, reinforcing your brand\\u2019s presence by incorporating it into the platform\\u2019s web address #### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"costs\": {\n", + " \"ai_cost\": 0,\n", + " \"bytes_transferred_cost\": 0,\n", + " \"compute_cost\": 0.0001,\n", + " \"file_cost\": 0.0002,\n", + " \"total_cost\": 0.0004,\n", + " \"transform_cost\": 0.0001\n", + " },\n", + " \"error\": null,\n", + " \"status\": 200,\n", + " \"url\": \"https://quickblox.com/products/q-consultation/\"\n", + " }\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 182 Type: init\n", + "output: {\n", + " \"pages_limit\": 5,\n", + " \"url\": \"https://quickblox.com/\"\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n" + ] + } + ], + "source": [ + "import json\n", + "execution_transitions = client.executions.transitions.list(\n", + " execution_id=execution_homepage.id, limit=2000).items\n", + "\n", + "for index, transition in enumerate(execution_transitions):\n", + " print(\"Index: \", index, \"Type: \", transition.type)\n", + " print(\"output: \", json.dumps(transition.output, indent=2))\n", + " print(\"-\" * 100)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Crawled pages: \n" + ] + }, + { + "data": { + "text/plain": [ + "['https://quickblox.com/',\n", + " 'https://quickblox.com/privacy-policy/',\n", + " 'https://quickblox.com/hosting/hipaa-compliant-hosting/',\n", + " 'https://quickblox.com/hosting/on-premise/',\n", + " 'https://quickblox.com/products/q-consultation/']" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "crawled_pages = [r['url'] for r in execution_transitions[-2].output['result']]\n", + "\n", + "print(\"Crawled pages: \")\n", + "crawled_pages" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Running another Execution (starting from the Pricing Page)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": {}, + "outputs": [], + "source": [ + "execution_pricing = client.executions.create(\n", + " task_id=TASK_UUID,\n", + " input={\n", + " \"url\": \"https://quickblox.com/pricing/\",\n", + " \"pages_limit\": 5,\n", + " }\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Execution status: succeeded\n" + ] + } + ], + "source": [ + "status = client.executions.get(execution_id=execution_pricing.id).status\n", + "\n", + "print(\"Execution status: \", status)" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Index: 0 Type: finish\n", + "output: [\n", + " [\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:22.334162Z\",\n", + " \"id\": \"fc9c87d0-0361-4327-a677-7a93dd259286\",\n", + " \"jobs\": [\n", + " \"2ee72270-367e-4156-b769-f13494fd5b72\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:22.224113Z\",\n", + " \"id\": \"0c911e5c-88e6-40ca-bd71-b152dd157638\",\n", + " \"jobs\": [\n", + " \"0d9c58a6-2eeb-4b58-ab7e-8b04ccbed2f6\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:22.163004Z\",\n", + " \"id\": \"0821a429-f587-4a7d-a554-85922b504d8b\",\n", + " \"jobs\": [\n", + " \"f941c3ae-b948-494c-b0e6-15c134e1502a\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:23.907048Z\",\n", + " \"id\": \"ebde7f7a-d9eb-42d9-9d31-588bd38b833a\",\n", + " \"jobs\": [\n", + " \"60df1e15-6ab5-496f-9639-1abc31af7b1c\"\n", + " ]\n", + " }\n", + " ],\n", + " [\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:31.112575Z\",\n", + " \"id\": \"0c012c84-045d-4669-8a29-f705efb5fcb4\",\n", + " \"jobs\": [\n", + " \"768a66f6-d3de-4018-a121-5b4d2c5e4148\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:31.082408Z\",\n", + " \"id\": \"e4a75239-40cf-47ce-93d3-4c242a6d4df8\",\n", + " \"jobs\": [\n", + " \"ef885c86-8a40-4c9a-919f-35d547d1ec9d\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:31.051073Z\",\n", + " \"id\": \"d8f22c56-f736-476f-8fba-12c2468ef333\",\n", + " \"jobs\": [\n", + " \"2f28eb35-e76d-46e5-a0d8-769a76b9c8f3\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:32.327631Z\",\n", + " \"id\": \"e4bfa602-593b-477b-a179-11db1b33ed96\",\n", + " \"jobs\": [\n", + " \"a38d5a86-ee77-486a-9c2a-a1342a0ff88d\"\n", + " ]\n", + " }\n", + " ],\n", + " [\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:35.791008Z\",\n", + " \"id\": \"aad2c493-dc49-4f05-a61a-b992798b9175\",\n", + " \"jobs\": [\n", + " \"66195c1e-ae7f-46f5-a15c-947c5883263d\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:35.726354Z\",\n", + " \"id\": \"0b6084de-1fb0-481c-9625-f83a15d5c4cc\",\n", + " \"jobs\": [\n", + " \"3ec829a8-4b9a-402d-9efc-817546c19db3\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:35.775403Z\",\n", + " \"id\": \"4f38f1db-fcb0-48a5-b615-7cb9eecd83de\",\n", + " \"jobs\": [\n", + " \"e6e9fc8b-9e97-46a1-9cc9-b539d0db01d1\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:36.834408Z\",\n", + " \"id\": \"fad28e30-94e7-4a6c-8418-d374596792c8\",\n", + " \"jobs\": [\n", + " \"853c610f-a704-416d-a7d1-c8e117b72986\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:36.969029Z\",\n", + " \"id\": \"d849abf9-f0ae-4d77-b2fd-688fa21c0aba\",\n", + " \"jobs\": [\n", + " \"c22d1868-b8ee-4118-b280-95b055a96980\"\n", + " ]\n", + " }\n", + " ],\n", + " [\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:41.730667Z\",\n", + " \"id\": \"423019a7-edb6-46b7-8ceb-7c3119291a05\",\n", + " \"jobs\": [\n", + " \"a0f52ea4-22a7-450a-b1e4-9dd2d0298712\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:41.742711Z\",\n", + " \"id\": \"70216ebe-403f-4678-ab42-38f7683a210a\",\n", + " \"jobs\": [\n", + " \"a843f467-5bfd-499d-84c5-08897b0fddfe\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:41.701808Z\",\n", + " \"id\": \"088127ca-16d3-4205-b467-7ef287a0e6d3\",\n", + " \"jobs\": [\n", + " \"53cdd242-f739-433b-a1c6-b8588cd15e88\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:43.787821Z\",\n", + " \"id\": \"dc29c41e-b14f-49ec-9f3c-e6541236978f\",\n", + " \"jobs\": [\n", + " \"50397563-77cc-411e-890f-3d9edd3290fe\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:45.328274Z\",\n", + " \"id\": \"11e9ea64-aab2-4eab-9a21-eb6f220fae3a\",\n", + " \"jobs\": [\n", + " \"31abb467-4345-44e3-9f01-d6b45506fccc\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:43.837671Z\",\n", + " \"id\": \"0fd0d3fa-b348-4387-a349-236756cde307\",\n", + " \"jobs\": [\n", + " \"52c6a65d-ad8c-45dc-b982-6abf43e254d6\"\n", + " ]\n", + " }\n", + " ],\n", + " [\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:53.231112Z\",\n", + " \"id\": \"95589f14-53f7-4787-8d39-f7d5079ed28c\",\n", + " \"jobs\": [\n", + " \"4e62dcfd-978b-4870-ac8d-a6bcd39c531b\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:53.207675Z\",\n", + " \"id\": \"feb7edb3-ec0d-426e-9c54-4baf67612f14\",\n", + " \"jobs\": [\n", + " \"69b2fa10-ac4d-42f4-a863-d70b406f2346\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:53.194576Z\",\n", + " \"id\": \"84e5bdd6-63e0-4a2e-aabd-887f1e78cb5c\",\n", + " \"jobs\": [\n", + " \"764db429-5f18-45f1-984b-2c6060a1ec6b\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:55.088824Z\",\n", + " \"id\": \"0bb597a9-834d-415a-a327-bf11ab1be9d9\",\n", + " \"jobs\": [\n", + " \"b878871e-0d17-49bf-92e3-f7d8eee2d52f\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:55.080347Z\",\n", + " \"id\": \"faf58bf5-c979-44c7-8e1b-87f2c20ec556\",\n", + " \"jobs\": [\n", + " \"60a20ed9-4523-4cf5-8d46-011d37f38be7\"\n", + " ]\n", + " }\n", + " ]\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 1 Type: finish_branch\n", + "output: [\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:53.231112Z\",\n", + " \"id\": \"95589f14-53f7-4787-8d39-f7d5079ed28c\",\n", + " \"jobs\": [\n", + " \"4e62dcfd-978b-4870-ac8d-a6bcd39c531b\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:53.207675Z\",\n", + " \"id\": \"feb7edb3-ec0d-426e-9c54-4baf67612f14\",\n", + " \"jobs\": [\n", + " \"69b2fa10-ac4d-42f4-a863-d70b406f2346\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:53.194576Z\",\n", + " \"id\": \"84e5bdd6-63e0-4a2e-aabd-887f1e78cb5c\",\n", + " \"jobs\": [\n", + " \"764db429-5f18-45f1-984b-2c6060a1ec6b\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:55.088824Z\",\n", + " \"id\": \"0bb597a9-834d-415a-a327-bf11ab1be9d9\",\n", + " \"jobs\": [\n", + " \"b878871e-0d17-49bf-92e3-f7d8eee2d52f\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:55.080347Z\",\n", + " \"id\": \"faf58bf5-c979-44c7-8e1b-87f2c20ec556\",\n", + " \"jobs\": [\n", + " \"60a20ed9-4523-4cf5-8d46-011d37f38be7\"\n", + " ]\n", + " }\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 2 Type: finish_branch\n", + "output: [\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:53.231112Z\",\n", + " \"id\": \"95589f14-53f7-4787-8d39-f7d5079ed28c\",\n", + " \"jobs\": [\n", + " \"4e62dcfd-978b-4870-ac8d-a6bcd39c531b\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:53.207675Z\",\n", + " \"id\": \"feb7edb3-ec0d-426e-9c54-4baf67612f14\",\n", + " \"jobs\": [\n", + " \"69b2fa10-ac4d-42f4-a863-d70b406f2346\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:53.194576Z\",\n", + " \"id\": \"84e5bdd6-63e0-4a2e-aabd-887f1e78cb5c\",\n", + " \"jobs\": [\n", + " \"764db429-5f18-45f1-984b-2c6060a1ec6b\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:55.088824Z\",\n", + " \"id\": \"0bb597a9-834d-415a-a327-bf11ab1be9d9\",\n", + " \"jobs\": [\n", + " \"b878871e-0d17-49bf-92e3-f7d8eee2d52f\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:55.080347Z\",\n", + " \"id\": \"faf58bf5-c979-44c7-8e1b-87f2c20ec556\",\n", + " \"jobs\": [\n", + " \"60a20ed9-4523-4cf5-8d46-011d37f38be7\"\n", + " ]\n", + " }\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 3 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:55.080347Z\",\n", + " \"id\": \"faf58bf5-c979-44c7-8e1b-87f2c20ec556\",\n", + " \"jobs\": [\n", + " \"60a20ed9-4523-4cf5-8d46-011d37f38be7\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 4 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:55.088824Z\",\n", + " \"id\": \"0bb597a9-834d-415a-a327-bf11ab1be9d9\",\n", + " \"jobs\": [\n", + " \"b878871e-0d17-49bf-92e3-f7d8eee2d52f\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 5 Type: init_branch\n", + "output: \"### How long does ittake tobuild avideo conferencing App Our easy-to-integrate video conferencing SDKs and API and comprehensive documentation and code samples will save you months ofdevelopment time This ofcourse depends onthe skill set ofyour developers Ifyou are looking for aready-made conferencing solution immediately check-out our ready white-labelQ-Consultation app ## Additional resources\\n[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [Why Businesses benefit from Video Conferencing](https://quickblox.com/blog/why-businesses-benefit-from-video-conferencing/)\\nAnna S 17 Sep 2021\\n[Education](https://quickblox.com/blog/business/education/)[Video Calling](https://quickblox.com/blog/features/video-calling/)[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [Why remote work requires Video Communication](https://quickblox.com/blog/why-is-video-communication-important-for-your-business-today/)\\nAnton Dyachenko\\n24 Aug 2021\\n[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [HIPAA Compliant Video Conferencing](https://quickblox.com/blog/hipaa-compliant-video-conferencing/)\\nAnna S 3 Sep 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\\nThis chunk provides information about QuickBlox's video conferencing solutions, including the ease of integration with their SDKs and APIs, additional resources and documentation, and links to related products and services. It highlights the benefits of QuickBlox's video conferencing for businesses, particularly in terms of development time savings and compliance features. The chunk also includes links to a variety of QuickBlox's other offerings, such as AI tools, industry solutions, and developer resources, situating it within a broader context of communication solutions provided by QuickBlox.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 6 Type: init_branch\n", + "output: \"Furthermore, weprovide all our enterprise customers with several hours ofintegration support each month, depending onthe size ofyour plan Speak toone ofourenterprise consultantsnow tofind out more ### How much does itcost tohost avideo conference Our video conferencing solution comes asanadd ontoyour QuickBlox plan for which you pay amonthly subscription There isnoset limit tohow many minutes orhours you can host each month but your overall capacity ofthe number ofvideo conferencing rooms and users will depend onyour plan Please speak toone ofourenterprise consultantstofind out more ### Does QuickBlox support video recording Yes, wesupport video recording This functionality isprovided asanadd-on Toget access tovideo recording and the associated documentation,please contactus ### Isyour video conferencing solution HIPAA compliant QuickBlox is experienced working with healthcare organizations and understands the regulatory requirements around HIPAA Please check our blog,HIPAA Compliant Video Conferencing Our video conferencing solution is built on WebRTC which has in-built encryption Furthermore, we offer a variety ofHIPAA compliant hostingoptions so that you can store your customer\\u2019s data wherever you need including your own private cloud and on-premises\\nThis chunk provides information on QuickBlox's enterprise support offerings, pricing, video recording capabilities, and HIPAA compliance for their video conferencing solutions, emphasizing the additional services and features available to enhance user experience and meet regulatory requirements.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 7 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:53.231112Z\",\n", + " \"id\": \"95589f14-53f7-4787-8d39-f7d5079ed28c\",\n", + " \"jobs\": [\n", + " \"4e62dcfd-978b-4870-ac8d-a6bcd39c531b\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 8 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:53.207675Z\",\n", + " \"id\": \"feb7edb3-ec0d-426e-9c54-4baf67612f14\",\n", + " \"jobs\": [\n", + " \"69b2fa10-ac4d-42f4-a863-d70b406f2346\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 9 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:53.194576Z\",\n", + " \"id\": \"84e5bdd6-63e0-4a2e-aabd-887f1e78cb5c\",\n", + " \"jobs\": [\n", + " \"764db429-5f18-45f1-984b-2c6060a1ec6b\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 10 Type: init_branch\n", + "output: \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Video Conferencing\\n## Real\\u2011time video group interactions via video toenhance collaboration and productivity\\nEngage your customers, employees, and business partners with secure and easy\\u2011to\\u2011use QuickBlox video conferencing Our high\\u2011quality low latency conferencing solution ensures people stay connected even when they are apart Want tosee ademo [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Explore other communication features\\n### [Chat](https://quickblox.com/products/chat/)\\n### [Voice and Video calling](https://quickblox.com/products/voice-and-video-calling/)\\n### [Push notifications](https://quickblox.com/products/push-notifications/)\\n## Make on\\u2011screen interactions part ofyour business communication toimprove efficiency and deepen user engagement\\n### High quality multi\\u2011party calls\\nHosting avideo conference has never been easier with QuickBlox HDvideo conferencing software Groups ofparticipants can interact, share, and collaborate effortlessly inreal\\u2011time Use our video conferencing API toembed this feature into your e\\u2011learning app, internal company messaging app, and numerous other types ofmobile apps where there isaneed for groups tocommunicate in avisually engaging way ### Recordable\\nWith voice and video conferencing technology, it’’s possible torecord and archive your entire session Ifyou work inhealthcare orfinance orsome other industry where there isaneed tokeep apermanent record ofcommunications, your recorded session can besafely stored inthe cloud, oron\\u2011premise inyour own virtual machines and easily accessed when needed ### Feature\\u2011rich and versatile\\nOur video conferencing SDKs and chat SDKs support screen\\u2011sharing, file exchange, switching between video inputs, group chat, and video recording Furthermore, our video conferencing system can beintegrated into pre\\u2011existing software such asane\\u2011learning platform orElectronic Healthcare Record (EHR) system with minimum fuss ### Cross-Platform\\nOur solution isdesigned towork cross\\u2011platform, sothat you can enjoy online meetings with others whether you are using adesktop app, tablet, ormobile phone For ease and convenience real\\u2011time video chat ispossible on\\u2011the\\u2011go, wherever you are ### Video streaming\\nNeed topresent anacademic lecture, company presentation, orgaming event toalarge audience Noproblem Our conference calling technology supports video streaming for potentially 1000s ofviewers, depending onyour server configuration\\nThis chunk provides an overview of QuickBlox's communication tools and solutions, including SDKs and APIs for various platforms, AI features, and white-label solutions. It emphasizes the new Chat UI Kits, highlights QuickBlox AI capabilities, and details enterprise features such as custom development and hosting. Additionally, it outlines QuickBlox's offerings for different industries and showcases the integration of video conferencing technology, emphasizing features like multi-party calls, cross-platform compatibility, and compliance with security standards. This context is essential for understanding QuickBlox's comprehensive communication solutions and their application across various sectors.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 11 Type: init_branch\n", + "output: \"### WebRTC technology\\nYour communication isfully protected and secure when you use our video conference API built towork with the best technology WebRTC has inbuilt security which means that your private conversations remain just that ### PIPEDA and HIPAA compliant\\nWewill configure your instance inyour own secure cloud environment toensure PIPEDA and HIPAA compliance Wefollow encryption protocols, provide aBusiness Associate Agreement, and work with your info\\u2011security team toensure regulatory compliance ### GDPR compliant\\nBecause wedon’’t store any ofyour customer’’s data, itremains safely inyour control Furthermore, weprovide you with the tools toprotect, store, and remove this data toensure that your app isfully GDPR compliant Want tolearn more [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## ### ****\\n****\\n### ****\\n****\\n### ****\\n****\\n### ****\\n****\\n### ****\\n## Key features\\n* **Group calls:**Get agroup ofparticipants together in avirtual meeting sothat they can collaborate together regardless ofwhere they each are * **Call invitations:**Create and send links for users toconveniently join calls asand when they need * **Multiple video input:**Connect toexternal cameras\\n(e.g security camera, endoscope) and switch between camera input onacall * **High Security:**Enjoy private and protected real time communication with avideo conferencing tool built onhighly secure WebRTC * **Screen‑sharing:**Present inreal‑‑time bysharing your screen with others * **Mute/unmute audio**and**turn on/off video:**Calibrate your engagement byturning onand off your video camera and microphone asrequired * **Video recording:**Record and save the content ofyour conference toensure valuable communication isnever lost\\nThis chunk focuses on the security and compliance features of QuickBlox's video conferencing API, emphasizing WebRTC technology for secure communication. It highlights PIPEDA, HIPAA, and GDPR compliance, ensuring data protection and regulatory adherence. The section also outlines key features like group calls, call invitations, multiple video inputs, high security, screen sharing, audio/video controls, and video recording, positioning it within the broader context of QuickBlox's video conferencing solutions.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 12 Type: init_branch\n", + "output: \"* **Advanced features:**Integrate additional features and communication tools into your video conferencing platform such asfile sharing orreal‑‑time messaging for atruly versatile user experience Have more questions [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Video Conferencing vsPeer‑‑to‑‑Peer Calling\\n* * **Video Conferencing**\\n* **Peer‑to‑Peer (P2P)**\\n* **What is it?**\\n* Video conferencing isbuilt ontop ofWebRTC SFU technology All communication goes via acentralized conference media server * P2P WebRTC involves direct exchange ofmedia and data between peers without the presence ofacentralized server * **Main differences toconsider**\\n* * Possible tohave alarger number ofcallers atone time\\n* Advanced features including server‑side recording\\n* Involves higher costs\\n* * Lower cost ofoperation because you don’’t end uppaying for your user’’s bandwidth\\n* Cheaper toscale asthere is noneed topay for extra servers\\n* Supports upto4users atatime\\n* **Pricing and Set‑up**\\n* Available asanadd‑‑on Additional charges may apply\\n* * Available onour shared cloud and Enterprise plan\\n* Additional cost ifyou require your own TURN server toinitiate call\\nHave more questions [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Voice and Video Conferencing SDKs and API\\nQuickBlox software iscompatible with multiple devices and platforms including iOS, Android, and the web (Javascript) Wealso provide avideo conferencing Flutter SDK Check out our code samples and documentation toget started now [Link to code samples](https://docs.quickblox.com/docs/code-samples)\\n[Link to documentation](https://docs.quickblox.com/)\\n## []()\\n## FAQ: Video Conferencing\\n### What isavideo conferencing API AnAPI (application programming interface) isanintermediary set ofcode that enables different sorts ofsoftware tocommunicate with each other toexchange information Video conferencing API facilitates the necessary transmission ofdata between anapplication and communication backend that make video conferencing possible ### How doI integrate video conferencing into mywebsite Weprovide richdocumentationand guides toassist your implementation ofour video conferencing functionality into your application\\nThe chunk is part of a comprehensive overview of QuickBlox's video conferencing solutions, contrasting video conferencing with peer-to-peer calling, highlighting advanced features, pricing, setup, and integration details. It falls under the broader category of communication tools and solutions provided by QuickBlox, emphasizing their SDKs, APIs, and compliance with industry standards like HIPAA and GDPR.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 13 Type: step\n", + "output: {\n", + " \"final_chunks\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Video Conferencing\\n## Real\\u2011time video group interactions via video toenhance collaboration and productivity\\nEngage your customers, employees, and business partners with secure and easy\\u2011to\\u2011use QuickBlox video conferencing Our high\\u2011quality low latency conferencing solution ensures people stay connected even when they are apart Want tosee ademo [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Explore other communication features\\n### [Chat](https://quickblox.com/products/chat/)\\n### [Voice and Video calling](https://quickblox.com/products/voice-and-video-calling/)\\n### [Push notifications](https://quickblox.com/products/push-notifications/)\\n## Make on\\u2011screen interactions part ofyour business communication toimprove efficiency and deepen user engagement\\n### High quality multi\\u2011party calls\\nHosting avideo conference has never been easier with QuickBlox HDvideo conferencing software Groups ofparticipants can interact, share, and collaborate effortlessly inreal\\u2011time Use our video conferencing API toembed this feature into your e\\u2011learning app, internal company messaging app, and numerous other types ofmobile apps where there isaneed for groups tocommunicate in avisually engaging way ### Recordable\\nWith voice and video conferencing technology, it’’s possible torecord and archive your entire session Ifyou work inhealthcare orfinance orsome other industry where there isaneed tokeep apermanent record ofcommunications, your recorded session can besafely stored inthe cloud, oron\\u2011premise inyour own virtual machines and easily accessed when needed ### Feature\\u2011rich and versatile\\nOur video conferencing SDKs and chat SDKs support screen\\u2011sharing, file exchange, switching between video inputs, group chat, and video recording Furthermore, our video conferencing system can beintegrated into pre\\u2011existing software such asane\\u2011learning platform orElectronic Healthcare Record (EHR) system with minimum fuss ### Cross-Platform\\nOur solution isdesigned towork cross\\u2011platform, sothat you can enjoy online meetings with others whether you are using adesktop app, tablet, ormobile phone For ease and convenience real\\u2011time video chat ispossible on\\u2011the\\u2011go, wherever you are ### Video streaming\\nNeed topresent anacademic lecture, company presentation, orgaming event toalarge audience Noproblem Our conference calling technology supports video streaming for potentially 1000s ofviewers, depending onyour server configuration\\nThis chunk provides an overview of QuickBlox's communication tools and solutions, including SDKs and APIs for various platforms, AI features, and white-label solutions. It emphasizes the new Chat UI Kits, highlights QuickBlox AI capabilities, and details enterprise features such as custom development and hosting. Additionally, it outlines QuickBlox's offerings for different industries and showcases the integration of video conferencing technology, emphasizing features like multi-party calls, cross-platform compatibility, and compliance with security standards. This context is essential for understanding QuickBlox's comprehensive communication solutions and their application across various sectors.\",\n", + " \"### WebRTC technology\\nYour communication isfully protected and secure when you use our video conference API built towork with the best technology WebRTC has inbuilt security which means that your private conversations remain just that ### PIPEDA and HIPAA compliant\\nWewill configure your instance inyour own secure cloud environment toensure PIPEDA and HIPAA compliance Wefollow encryption protocols, provide aBusiness Associate Agreement, and work with your info\\u2011security team toensure regulatory compliance ### GDPR compliant\\nBecause wedon’’t store any ofyour customer’’s data, itremains safely inyour control Furthermore, weprovide you with the tools toprotect, store, and remove this data toensure that your app isfully GDPR compliant Want tolearn more [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## ### ****\\n****\\n### ****\\n****\\n### ****\\n****\\n### ****\\n****\\n### ****\\n## Key features\\n* **Group calls:**Get agroup ofparticipants together in avirtual meeting sothat they can collaborate together regardless ofwhere they each are * **Call invitations:**Create and send links for users toconveniently join calls asand when they need * **Multiple video input:**Connect toexternal cameras\\n(e.g security camera, endoscope) and switch between camera input onacall * **High Security:**Enjoy private and protected real time communication with avideo conferencing tool built onhighly secure WebRTC * **Screen‑sharing:**Present inreal‑‑time bysharing your screen with others * **Mute/unmute audio**and**turn on/off video:**Calibrate your engagement byturning onand off your video camera and microphone asrequired * **Video recording:**Record and save the content ofyour conference toensure valuable communication isnever lost\\nThis chunk focuses on the security and compliance features of QuickBlox's video conferencing API, emphasizing WebRTC technology for secure communication. It highlights PIPEDA, HIPAA, and GDPR compliance, ensuring data protection and regulatory adherence. The section also outlines key features like group calls, call invitations, multiple video inputs, high security, screen sharing, audio/video controls, and video recording, positioning it within the broader context of QuickBlox's video conferencing solutions.\",\n", + " \"* **Advanced features:**Integrate additional features and communication tools into your video conferencing platform such asfile sharing orreal‑‑time messaging for atruly versatile user experience Have more questions [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Video Conferencing vsPeer‑‑to‑‑Peer Calling\\n* * **Video Conferencing**\\n* **Peer‑to‑Peer (P2P)**\\n* **What is it?**\\n* Video conferencing isbuilt ontop ofWebRTC SFU technology All communication goes via acentralized conference media server * P2P WebRTC involves direct exchange ofmedia and data between peers without the presence ofacentralized server * **Main differences toconsider**\\n* * Possible tohave alarger number ofcallers atone time\\n* Advanced features including server‑side recording\\n* Involves higher costs\\n* * Lower cost ofoperation because you don’’t end uppaying for your user’’s bandwidth\\n* Cheaper toscale asthere is noneed topay for extra servers\\n* Supports upto4users atatime\\n* **Pricing and Set‑up**\\n* Available asanadd‑‑on Additional charges may apply\\n* * Available onour shared cloud and Enterprise plan\\n* Additional cost ifyou require your own TURN server toinitiate call\\nHave more questions [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Voice and Video Conferencing SDKs and API\\nQuickBlox software iscompatible with multiple devices and platforms including iOS, Android, and the web (Javascript) Wealso provide avideo conferencing Flutter SDK Check out our code samples and documentation toget started now [Link to code samples](https://docs.quickblox.com/docs/code-samples)\\n[Link to documentation](https://docs.quickblox.com/)\\n## []()\\n## FAQ: Video Conferencing\\n### What isavideo conferencing API AnAPI (application programming interface) isanintermediary set ofcode that enables different sorts ofsoftware tocommunicate with each other toexchange information Video conferencing API facilitates the necessary transmission ofdata between anapplication and communication backend that make video conferencing possible ### How doI integrate video conferencing into mywebsite Weprovide richdocumentationand guides toassist your implementation ofour video conferencing functionality into your application\\nThe chunk is part of a comprehensive overview of QuickBlox's video conferencing solutions, contrasting video conferencing with peer-to-peer calling, highlighting advanced features, pricing, setup, and integration details. It falls under the broader category of communication tools and solutions provided by QuickBlox, emphasizing their SDKs, APIs, and compliance with industry standards like HIPAA and GDPR.\",\n", + " \"Furthermore, weprovide all our enterprise customers with several hours ofintegration support each month, depending onthe size ofyour plan Speak toone ofourenterprise consultantsnow tofind out more ### How much does itcost tohost avideo conference Our video conferencing solution comes asanadd ontoyour QuickBlox plan for which you pay amonthly subscription There isnoset limit tohow many minutes orhours you can host each month but your overall capacity ofthe number ofvideo conferencing rooms and users will depend onyour plan Please speak toone ofourenterprise consultantstofind out more ### Does QuickBlox support video recording Yes, wesupport video recording This functionality isprovided asanadd-on Toget access tovideo recording and the associated documentation,please contactus ### Isyour video conferencing solution HIPAA compliant QuickBlox is experienced working with healthcare organizations and understands the regulatory requirements around HIPAA Please check our blog,HIPAA Compliant Video Conferencing Our video conferencing solution is built on WebRTC which has in-built encryption Furthermore, we offer a variety ofHIPAA compliant hostingoptions so that you can store your customer\\u2019s data wherever you need including your own private cloud and on-premises\\nThis chunk provides information on QuickBlox's enterprise support offerings, pricing, video recording capabilities, and HIPAA compliance for their video conferencing solutions, emphasizing the additional services and features available to enhance user experience and meet regulatory requirements.\",\n", + " \"### How long does ittake tobuild avideo conferencing App Our easy-to-integrate video conferencing SDKs and API and comprehensive documentation and code samples will save you months ofdevelopment time This ofcourse depends onthe skill set ofyour developers Ifyou are looking for aready-made conferencing solution immediately check-out our ready white-labelQ-Consultation app ## Additional resources\\n[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [Why Businesses benefit from Video Conferencing](https://quickblox.com/blog/why-businesses-benefit-from-video-conferencing/)\\nAnna S 17 Sep 2021\\n[Education](https://quickblox.com/blog/business/education/)[Video Calling](https://quickblox.com/blog/features/video-calling/)[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [Why remote work requires Video Communication](https://quickblox.com/blog/why-is-video-communication-important-for-your-business-today/)\\nAnton Dyachenko\\n24 Aug 2021\\n[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [HIPAA Compliant Video Conferencing](https://quickblox.com/blog/hipaa-compliant-video-conferencing/)\\nAnna S 3 Sep 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\\nThis chunk provides information about QuickBlox's video conferencing solutions, including the ease of integration with their SDKs and APIs, additional resources and documentation, and links to related products and services. It highlights the benefits of QuickBlox's video conferencing for businesses, particularly in terms of development time savings and compliance features. The chunk also includes links to a variety of QuickBlox's other offerings, such as AI tools, industry solutions, and developer resources, situating it within a broader context of communication solutions provided by QuickBlox.\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 14 Type: step\n", + "output: [\n", + " \"This chunk provides an overview of QuickBlox's communication tools and solutions, including SDKs and APIs for various platforms, AI features, and white-label solutions. It emphasizes the new Chat UI Kits, highlights QuickBlox AI capabilities, and details enterprise features such as custom development and hosting. Additionally, it outlines QuickBlox's offerings for different industries and showcases the integration of video conferencing technology, emphasizing features like multi-party calls, cross-platform compatibility, and compliance with security standards. This context is essential for understanding QuickBlox's comprehensive communication solutions and their application across various sectors.\",\n", + " \"This chunk focuses on the security and compliance features of QuickBlox's video conferencing API, emphasizing WebRTC technology for secure communication. It highlights PIPEDA, HIPAA, and GDPR compliance, ensuring data protection and regulatory adherence. The section also outlines key features like group calls, call invitations, multiple video inputs, high security, screen sharing, audio/video controls, and video recording, positioning it within the broader context of QuickBlox's video conferencing solutions.\",\n", + " \"The chunk is part of a comprehensive overview of QuickBlox's video conferencing solutions, contrasting video conferencing with peer-to-peer calling, highlighting advanced features, pricing, setup, and integration details. It falls under the broader category of communication tools and solutions provided by QuickBlox, emphasizing their SDKs, APIs, and compliance with industry standards like HIPAA and GDPR.\",\n", + " \"This chunk provides information on QuickBlox's enterprise support offerings, pricing, video recording capabilities, and HIPAA compliance for their video conferencing solutions, emphasizing the additional services and features available to enhance user experience and meet regulatory requirements.\",\n", + " \"This chunk provides information about QuickBlox's video conferencing solutions, including the ease of integration with their SDKs and APIs, additional resources and documentation, and links to related products and services. It highlights the benefits of QuickBlox's video conferencing for businesses, particularly in terms of development time savings and compliance features. The chunk also includes links to a variety of QuickBlox's other offerings, such as AI tools, industry solutions, and developer resources, situating it within a broader context of communication solutions provided by QuickBlox.\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 15 Type: finish_branch\n", + "output: \"This chunk provides information about QuickBlox's video conferencing solutions, including the ease of integration with their SDKs and APIs, additional resources and documentation, and links to related products and services. It highlights the benefits of QuickBlox's video conferencing for businesses, particularly in terms of development time savings and compliance features. The chunk also includes links to a variety of QuickBlox's other offerings, such as AI tools, industry solutions, and developer resources, situating it within a broader context of communication solutions provided by QuickBlox.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 16 Type: finish_branch\n", + "output: \"This chunk provides information on QuickBlox's enterprise support offerings, pricing, video recording capabilities, and HIPAA compliance for their video conferencing solutions, emphasizing the additional services and features available to enhance user experience and meet regulatory requirements.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 17 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Video Conferencing\\n## Real\\u2011time video group interactions via video toenhance collaboration and productivity\\nEngage your customers, employees, and business partners with secure and easy\\u2011to\\u2011use QuickBlox video conferencing Our high\\u2011quality low latency conferencing solution ensures people stay connected even when they are apart Want tosee ademo [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Explore other communication features\\n### [Chat](https://quickblox.com/products/chat/)\\n### [Voice and Video calling](https://quickblox.com/products/voice-and-video-calling/)\\n### [Push notifications](https://quickblox.com/products/push-notifications/)\\n## Make on\\u2011screen interactions part ofyour business communication toimprove efficiency and deepen user engagement\\n### High quality multi\\u2011party calls\\nHosting avideo conference has never been easier with QuickBlox HDvideo conferencing software Groups ofparticipants can interact, share, and collaborate effortlessly inreal\\u2011time Use our video conferencing API toembed this feature into your e\\u2011learning app, internal company messaging app, and numerous other types ofmobile apps where there isaneed for groups tocommunicate in avisually engaging way ### Recordable\\nWith voice and video conferencing technology, it’’s possible torecord and archive your entire session Ifyou work inhealthcare orfinance orsome other industry where there isaneed tokeep apermanent record ofcommunications, your recorded session can besafely stored inthe cloud, oron\\u2011premise inyour own virtual machines and easily accessed when needed ### Feature\\u2011rich and versatile\\nOur video conferencing SDKs and chat SDKs support screen\\u2011sharing, file exchange, switching between video inputs, group chat, and video recording Furthermore, our video conferencing system can beintegrated into pre\\u2011existing software such asane\\u2011learning platform orElectronic Healthcare Record (EHR) system with minimum fuss ### Cross-Platform\\nOur solution isdesigned towork cross\\u2011platform, sothat you can enjoy online meetings with others whether you are using adesktop app, tablet, ormobile phone For ease and convenience real\\u2011time video chat ispossible on\\u2011the\\u2011go, wherever you are ### Video streaming\\nNeed topresent anacademic lecture, company presentation, orgaming event toalarge audience Noproblem Our conference calling technology supports video streaming for potentially 1000s ofviewers, depending onyour server configuration\",\n", + " \"### WebRTC technology\\nYour communication isfully protected and secure when you use our video conference API built towork with the best technology WebRTC has inbuilt security which means that your private conversations remain just that ### PIPEDA and HIPAA compliant\\nWewill configure your instance inyour own secure cloud environment toensure PIPEDA and HIPAA compliance Wefollow encryption protocols, provide aBusiness Associate Agreement, and work with your info\\u2011security team toensure regulatory compliance ### GDPR compliant\\nBecause wedon’’t store any ofyour customer’’s data, itremains safely inyour control Furthermore, weprovide you with the tools toprotect, store, and remove this data toensure that your app isfully GDPR compliant Want tolearn more [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## ### ****\\n****\\n### ****\\n****\\n### ****\\n****\\n### ****\\n****\\n### ****\\n## Key features\\n* **Group calls:**Get agroup ofparticipants together in avirtual meeting sothat they can collaborate together regardless ofwhere they each are * **Call invitations:**Create and send links for users toconveniently join calls asand when they need * **Multiple video input:**Connect toexternal cameras\\n(e.g security camera, endoscope) and switch between camera input onacall * **High Security:**Enjoy private and protected real time communication with avideo conferencing tool built onhighly secure WebRTC * **Screen‑sharing:**Present inreal‑‑time bysharing your screen with others * **Mute/unmute audio**and**turn on/off video:**Calibrate your engagement byturning onand off your video camera and microphone asrequired * **Video recording:**Record and save the content ofyour conference toensure valuable communication isnever lost\",\n", + " \"* **Advanced features:**Integrate additional features and communication tools into your video conferencing platform such asfile sharing orreal‑‑time messaging for atruly versatile user experience Have more questions [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Video Conferencing vsPeer‑‑to‑‑Peer Calling\\n* * **Video Conferencing**\\n* **Peer‑to‑Peer (P2P)**\\n* **What is it?**\\n* Video conferencing isbuilt ontop ofWebRTC SFU technology All communication goes via acentralized conference media server * P2P WebRTC involves direct exchange ofmedia and data between peers without the presence ofacentralized server * **Main differences toconsider**\\n* * Possible tohave alarger number ofcallers atone time\\n* Advanced features including server‑side recording\\n* Involves higher costs\\n* * Lower cost ofoperation because you don’’t end uppaying for your user’’s bandwidth\\n* Cheaper toscale asthere is noneed topay for extra servers\\n* Supports upto4users atatime\\n* **Pricing and Set‑up**\\n* Available asanadd‑‑on Additional charges may apply\\n* * Available onour shared cloud and Enterprise plan\\n* Additional cost ifyou require your own TURN server toinitiate call\\nHave more questions [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Voice and Video Conferencing SDKs and API\\nQuickBlox software iscompatible with multiple devices and platforms including iOS, Android, and the web (Javascript) Wealso provide avideo conferencing Flutter SDK Check out our code samples and documentation toget started now [Link to code samples](https://docs.quickblox.com/docs/code-samples)\\n[Link to documentation](https://docs.quickblox.com/)\\n## []()\\n## FAQ: Video Conferencing\\n### What isavideo conferencing API AnAPI (application programming interface) isanintermediary set ofcode that enables different sorts ofsoftware tocommunicate with each other toexchange information Video conferencing API facilitates the necessary transmission ofdata between anapplication and communication backend that make video conferencing possible ### How doI integrate video conferencing into mywebsite Weprovide richdocumentationand guides toassist your implementation ofour video conferencing functionality into your application\",\n", + " \"Furthermore, weprovide all our enterprise customers with several hours ofintegration support each month, depending onthe size ofyour plan Speak toone ofourenterprise consultantsnow tofind out more ### How much does itcost tohost avideo conference Our video conferencing solution comes asanadd ontoyour QuickBlox plan for which you pay amonthly subscription There isnoset limit tohow many minutes orhours you can host each month but your overall capacity ofthe number ofvideo conferencing rooms and users will depend onyour plan Please speak toone ofourenterprise consultantstofind out more ### Does QuickBlox support video recording Yes, wesupport video recording This functionality isprovided asanadd-on Toget access tovideo recording and the associated documentation,please contactus ### Isyour video conferencing solution HIPAA compliant QuickBlox is experienced working with healthcare organizations and understands the regulatory requirements around HIPAA Please check our blog,HIPAA Compliant Video Conferencing Our video conferencing solution is built on WebRTC which has in-built encryption Furthermore, we offer a variety ofHIPAA compliant hostingoptions so that you can store your customer\\u2019s data wherever you need including your own private cloud and on-premises\",\n", + " \"### How long does ittake tobuild avideo conferencing App Our easy-to-integrate video conferencing SDKs and API and comprehensive documentation and code samples will save you months ofdevelopment time This ofcourse depends onthe skill set ofyour developers Ifyou are looking for aready-made conferencing solution immediately check-out our ready white-labelQ-Consultation app ## Additional resources\\n[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [Why Businesses benefit from Video Conferencing](https://quickblox.com/blog/why-businesses-benefit-from-video-conferencing/)\\nAnna S 17 Sep 2021\\n[Education](https://quickblox.com/blog/business/education/)[Video Calling](https://quickblox.com/blog/features/video-calling/)[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [Why remote work requires Video Communication](https://quickblox.com/blog/why-is-video-communication-important-for-your-business-today/)\\nAnton Dyachenko\\n24 Aug 2021\\n[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [HIPAA Compliant Video Conferencing](https://quickblox.com/blog/hipaa-compliant-video-conferencing/)\\nAnna S 3 Sep 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"Furthermore, weprovide all our enterprise customers with several hours ofintegration support each month, depending onthe size ofyour plan Speak toone ofourenterprise consultantsnow tofind out more ### How much does itcost tohost avideo conference Our video conferencing solution comes asanadd ontoyour QuickBlox plan for which you pay amonthly subscription There isnoset limit tohow many minutes orhours you can host each month but your overall capacity ofthe number ofvideo conferencing rooms and users will depend onyour plan Please speak toone ofourenterprise consultantstofind out more ### Does QuickBlox support video recording Yes, wesupport video recording This functionality isprovided asanadd-on Toget access tovideo recording and the associated documentation,please contactus ### Isyour video conferencing solution HIPAA compliant QuickBlox is experienced working with healthcare organizations and understands the regulatory requirements around HIPAA Please check our blog,HIPAA Compliant Video Conferencing Our video conferencing solution is built on WebRTC which has in-built encryption Furthermore, we offer a variety ofHIPAA compliant hostingoptions so that you can store your customer\\u2019s data wherever you need including your own private cloud and on-premises\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 18 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Video Conferencing\\n## Real\\u2011time video group interactions via video toenhance collaboration and productivity\\nEngage your customers, employees, and business partners with secure and easy\\u2011to\\u2011use QuickBlox video conferencing Our high\\u2011quality low latency conferencing solution ensures people stay connected even when they are apart Want tosee ademo [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Explore other communication features\\n### [Chat](https://quickblox.com/products/chat/)\\n### [Voice and Video calling](https://quickblox.com/products/voice-and-video-calling/)\\n### [Push notifications](https://quickblox.com/products/push-notifications/)\\n## Make on\\u2011screen interactions part ofyour business communication toimprove efficiency and deepen user engagement\\n### High quality multi\\u2011party calls\\nHosting avideo conference has never been easier with QuickBlox HDvideo conferencing software Groups ofparticipants can interact, share, and collaborate effortlessly inreal\\u2011time Use our video conferencing API toembed this feature into your e\\u2011learning app, internal company messaging app, and numerous other types ofmobile apps where there isaneed for groups tocommunicate in avisually engaging way ### Recordable\\nWith voice and video conferencing technology, it’’s possible torecord and archive your entire session Ifyou work inhealthcare orfinance orsome other industry where there isaneed tokeep apermanent record ofcommunications, your recorded session can besafely stored inthe cloud, oron\\u2011premise inyour own virtual machines and easily accessed when needed ### Feature\\u2011rich and versatile\\nOur video conferencing SDKs and chat SDKs support screen\\u2011sharing, file exchange, switching between video inputs, group chat, and video recording Furthermore, our video conferencing system can beintegrated into pre\\u2011existing software such asane\\u2011learning platform orElectronic Healthcare Record (EHR) system with minimum fuss ### Cross-Platform\\nOur solution isdesigned towork cross\\u2011platform, sothat you can enjoy online meetings with others whether you are using adesktop app, tablet, ormobile phone For ease and convenience real\\u2011time video chat ispossible on\\u2011the\\u2011go, wherever you are ### Video streaming\\nNeed topresent anacademic lecture, company presentation, orgaming event toalarge audience Noproblem Our conference calling technology supports video streaming for potentially 1000s ofviewers, depending onyour server configuration\",\n", + " \"### WebRTC technology\\nYour communication isfully protected and secure when you use our video conference API built towork with the best technology WebRTC has inbuilt security which means that your private conversations remain just that ### PIPEDA and HIPAA compliant\\nWewill configure your instance inyour own secure cloud environment toensure PIPEDA and HIPAA compliance Wefollow encryption protocols, provide aBusiness Associate Agreement, and work with your info\\u2011security team toensure regulatory compliance ### GDPR compliant\\nBecause wedon’’t store any ofyour customer’’s data, itremains safely inyour control Furthermore, weprovide you with the tools toprotect, store, and remove this data toensure that your app isfully GDPR compliant Want tolearn more [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## ### ****\\n****\\n### ****\\n****\\n### ****\\n****\\n### ****\\n****\\n### ****\\n## Key features\\n* **Group calls:**Get agroup ofparticipants together in avirtual meeting sothat they can collaborate together regardless ofwhere they each are * **Call invitations:**Create and send links for users toconveniently join calls asand when they need * **Multiple video input:**Connect toexternal cameras\\n(e.g security camera, endoscope) and switch between camera input onacall * **High Security:**Enjoy private and protected real time communication with avideo conferencing tool built onhighly secure WebRTC * **Screen‑sharing:**Present inreal‑‑time bysharing your screen with others * **Mute/unmute audio**and**turn on/off video:**Calibrate your engagement byturning onand off your video camera and microphone asrequired * **Video recording:**Record and save the content ofyour conference toensure valuable communication isnever lost\",\n", + " \"* **Advanced features:**Integrate additional features and communication tools into your video conferencing platform such asfile sharing orreal‑‑time messaging for atruly versatile user experience Have more questions [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Video Conferencing vsPeer‑‑to‑‑Peer Calling\\n* * **Video Conferencing**\\n* **Peer‑to‑Peer (P2P)**\\n* **What is it?**\\n* Video conferencing isbuilt ontop ofWebRTC SFU technology All communication goes via acentralized conference media server * P2P WebRTC involves direct exchange ofmedia and data between peers without the presence ofacentralized server * **Main differences toconsider**\\n* * Possible tohave alarger number ofcallers atone time\\n* Advanced features including server‑side recording\\n* Involves higher costs\\n* * Lower cost ofoperation because you don’’t end uppaying for your user’’s bandwidth\\n* Cheaper toscale asthere is noneed topay for extra servers\\n* Supports upto4users atatime\\n* **Pricing and Set‑up**\\n* Available asanadd‑‑on Additional charges may apply\\n* * Available onour shared cloud and Enterprise plan\\n* Additional cost ifyou require your own TURN server toinitiate call\\nHave more questions [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Voice and Video Conferencing SDKs and API\\nQuickBlox software iscompatible with multiple devices and platforms including iOS, Android, and the web (Javascript) Wealso provide avideo conferencing Flutter SDK Check out our code samples and documentation toget started now [Link to code samples](https://docs.quickblox.com/docs/code-samples)\\n[Link to documentation](https://docs.quickblox.com/)\\n## []()\\n## FAQ: Video Conferencing\\n### What isavideo conferencing API AnAPI (application programming interface) isanintermediary set ofcode that enables different sorts ofsoftware tocommunicate with each other toexchange information Video conferencing API facilitates the necessary transmission ofdata between anapplication and communication backend that make video conferencing possible ### How doI integrate video conferencing into mywebsite Weprovide richdocumentationand guides toassist your implementation ofour video conferencing functionality into your application\",\n", + " \"Furthermore, weprovide all our enterprise customers with several hours ofintegration support each month, depending onthe size ofyour plan Speak toone ofourenterprise consultantsnow tofind out more ### How much does itcost tohost avideo conference Our video conferencing solution comes asanadd ontoyour QuickBlox plan for which you pay amonthly subscription There isnoset limit tohow many minutes orhours you can host each month but your overall capacity ofthe number ofvideo conferencing rooms and users will depend onyour plan Please speak toone ofourenterprise consultantstofind out more ### Does QuickBlox support video recording Yes, wesupport video recording This functionality isprovided asanadd-on Toget access tovideo recording and the associated documentation,please contactus ### Isyour video conferencing solution HIPAA compliant QuickBlox is experienced working with healthcare organizations and understands the regulatory requirements around HIPAA Please check our blog,HIPAA Compliant Video Conferencing Our video conferencing solution is built on WebRTC which has in-built encryption Furthermore, we offer a variety ofHIPAA compliant hostingoptions so that you can store your customer\\u2019s data wherever you need including your own private cloud and on-premises\",\n", + " \"### How long does ittake tobuild avideo conferencing App Our easy-to-integrate video conferencing SDKs and API and comprehensive documentation and code samples will save you months ofdevelopment time This ofcourse depends onthe skill set ofyour developers Ifyou are looking for aready-made conferencing solution immediately check-out our ready white-labelQ-Consultation app ## Additional resources\\n[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [Why Businesses benefit from Video Conferencing](https://quickblox.com/blog/why-businesses-benefit-from-video-conferencing/)\\nAnna S 17 Sep 2021\\n[Education](https://quickblox.com/blog/business/education/)[Video Calling](https://quickblox.com/blog/features/video-calling/)[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [Why remote work requires Video Communication](https://quickblox.com/blog/why-is-video-communication-important-for-your-business-today/)\\nAnton Dyachenko\\n24 Aug 2021\\n[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [HIPAA Compliant Video Conferencing](https://quickblox.com/blog/hipaa-compliant-video-conferencing/)\\nAnna S 3 Sep 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"### How long does ittake tobuild avideo conferencing App Our easy-to-integrate video conferencing SDKs and API and comprehensive documentation and code samples will save you months ofdevelopment time This ofcourse depends onthe skill set ofyour developers Ifyou are looking for aready-made conferencing solution immediately check-out our ready white-labelQ-Consultation app ## Additional resources\\n[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [Why Businesses benefit from Video Conferencing](https://quickblox.com/blog/why-businesses-benefit-from-video-conferencing/)\\nAnna S 17 Sep 2021\\n[Education](https://quickblox.com/blog/business/education/)[Video Calling](https://quickblox.com/blog/features/video-calling/)[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [Why remote work requires Video Communication](https://quickblox.com/blog/why-is-video-communication-important-for-your-business-today/)\\nAnton Dyachenko\\n24 Aug 2021\\n[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [HIPAA Compliant Video Conferencing](https://quickblox.com/blog/hipaa-compliant-video-conferencing/)\\nAnna S 3 Sep 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 19 Type: finish_branch\n", + "output: \"This chunk provides an overview of QuickBlox's communication tools and solutions, including SDKs and APIs for various platforms, AI features, and white-label solutions. It emphasizes the new Chat UI Kits, highlights QuickBlox AI capabilities, and details enterprise features such as custom development and hosting. Additionally, it outlines QuickBlox's offerings for different industries and showcases the integration of video conferencing technology, emphasizing features like multi-party calls, cross-platform compatibility, and compliance with security standards. This context is essential for understanding QuickBlox's comprehensive communication solutions and their application across various sectors.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 20 Type: finish_branch\n", + "output: \"This chunk focuses on the security and compliance features of QuickBlox's video conferencing API, emphasizing WebRTC technology for secure communication. It highlights PIPEDA, HIPAA, and GDPR compliance, ensuring data protection and regulatory adherence. The section also outlines key features like group calls, call invitations, multiple video inputs, high security, screen sharing, audio/video controls, and video recording, positioning it within the broader context of QuickBlox's video conferencing solutions.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 21 Type: finish_branch\n", + "output: \"The chunk is part of a comprehensive overview of QuickBlox's video conferencing solutions, contrasting video conferencing with peer-to-peer calling, highlighting advanced features, pricing, setup, and integration details. It falls under the broader category of communication tools and solutions provided by QuickBlox, emphasizing their SDKs, APIs, and compliance with industry standards like HIPAA and GDPR.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 22 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Video Conferencing\\n## Real\\u2011time video group interactions via video toenhance collaboration and productivity\\nEngage your customers, employees, and business partners with secure and easy\\u2011to\\u2011use QuickBlox video conferencing Our high\\u2011quality low latency conferencing solution ensures people stay connected even when they are apart Want tosee ademo [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Explore other communication features\\n### [Chat](https://quickblox.com/products/chat/)\\n### [Voice and Video calling](https://quickblox.com/products/voice-and-video-calling/)\\n### [Push notifications](https://quickblox.com/products/push-notifications/)\\n## Make on\\u2011screen interactions part ofyour business communication toimprove efficiency and deepen user engagement\\n### High quality multi\\u2011party calls\\nHosting avideo conference has never been easier with QuickBlox HDvideo conferencing software Groups ofparticipants can interact, share, and collaborate effortlessly inreal\\u2011time Use our video conferencing API toembed this feature into your e\\u2011learning app, internal company messaging app, and numerous other types ofmobile apps where there isaneed for groups tocommunicate in avisually engaging way ### Recordable\\nWith voice and video conferencing technology, it’’s possible torecord and archive your entire session Ifyou work inhealthcare orfinance orsome other industry where there isaneed tokeep apermanent record ofcommunications, your recorded session can besafely stored inthe cloud, oron\\u2011premise inyour own virtual machines and easily accessed when needed ### Feature\\u2011rich and versatile\\nOur video conferencing SDKs and chat SDKs support screen\\u2011sharing, file exchange, switching between video inputs, group chat, and video recording Furthermore, our video conferencing system can beintegrated into pre\\u2011existing software such asane\\u2011learning platform orElectronic Healthcare Record (EHR) system with minimum fuss ### Cross-Platform\\nOur solution isdesigned towork cross\\u2011platform, sothat you can enjoy online meetings with others whether you are using adesktop app, tablet, ormobile phone For ease and convenience real\\u2011time video chat ispossible on\\u2011the\\u2011go, wherever you are ### Video streaming\\nNeed topresent anacademic lecture, company presentation, orgaming event toalarge audience Noproblem Our conference calling technology supports video streaming for potentially 1000s ofviewers, depending onyour server configuration\",\n", + " \"### WebRTC technology\\nYour communication isfully protected and secure when you use our video conference API built towork with the best technology WebRTC has inbuilt security which means that your private conversations remain just that ### PIPEDA and HIPAA compliant\\nWewill configure your instance inyour own secure cloud environment toensure PIPEDA and HIPAA compliance Wefollow encryption protocols, provide aBusiness Associate Agreement, and work with your info\\u2011security team toensure regulatory compliance ### GDPR compliant\\nBecause wedon’’t store any ofyour customer’’s data, itremains safely inyour control Furthermore, weprovide you with the tools toprotect, store, and remove this data toensure that your app isfully GDPR compliant Want tolearn more [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## ### ****\\n****\\n### ****\\n****\\n### ****\\n****\\n### ****\\n****\\n### ****\\n## Key features\\n* **Group calls:**Get agroup ofparticipants together in avirtual meeting sothat they can collaborate together regardless ofwhere they each are * **Call invitations:**Create and send links for users toconveniently join calls asand when they need * **Multiple video input:**Connect toexternal cameras\\n(e.g security camera, endoscope) and switch between camera input onacall * **High Security:**Enjoy private and protected real time communication with avideo conferencing tool built onhighly secure WebRTC * **Screen‑sharing:**Present inreal‑‑time bysharing your screen with others * **Mute/unmute audio**and**turn on/off video:**Calibrate your engagement byturning onand off your video camera and microphone asrequired * **Video recording:**Record and save the content ofyour conference toensure valuable communication isnever lost\",\n", + " \"* **Advanced features:**Integrate additional features and communication tools into your video conferencing platform such asfile sharing orreal‑‑time messaging for atruly versatile user experience Have more questions [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Video Conferencing vsPeer‑‑to‑‑Peer Calling\\n* * **Video Conferencing**\\n* **Peer‑to‑Peer (P2P)**\\n* **What is it?**\\n* Video conferencing isbuilt ontop ofWebRTC SFU technology All communication goes via acentralized conference media server * P2P WebRTC involves direct exchange ofmedia and data between peers without the presence ofacentralized server * **Main differences toconsider**\\n* * Possible tohave alarger number ofcallers atone time\\n* Advanced features including server‑side recording\\n* Involves higher costs\\n* * Lower cost ofoperation because you don’’t end uppaying for your user’’s bandwidth\\n* Cheaper toscale asthere is noneed topay for extra servers\\n* Supports upto4users atatime\\n* **Pricing and Set‑up**\\n* Available asanadd‑‑on Additional charges may apply\\n* * Available onour shared cloud and Enterprise plan\\n* Additional cost ifyou require your own TURN server toinitiate call\\nHave more questions [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Voice and Video Conferencing SDKs and API\\nQuickBlox software iscompatible with multiple devices and platforms including iOS, Android, and the web (Javascript) Wealso provide avideo conferencing Flutter SDK Check out our code samples and documentation toget started now [Link to code samples](https://docs.quickblox.com/docs/code-samples)\\n[Link to documentation](https://docs.quickblox.com/)\\n## []()\\n## FAQ: Video Conferencing\\n### What isavideo conferencing API AnAPI (application programming interface) isanintermediary set ofcode that enables different sorts ofsoftware tocommunicate with each other toexchange information Video conferencing API facilitates the necessary transmission ofdata between anapplication and communication backend that make video conferencing possible ### How doI integrate video conferencing into mywebsite Weprovide richdocumentationand guides toassist your implementation ofour video conferencing functionality into your application\",\n", + " \"Furthermore, weprovide all our enterprise customers with several hours ofintegration support each month, depending onthe size ofyour plan Speak toone ofourenterprise consultantsnow tofind out more ### How much does itcost tohost avideo conference Our video conferencing solution comes asanadd ontoyour QuickBlox plan for which you pay amonthly subscription There isnoset limit tohow many minutes orhours you can host each month but your overall capacity ofthe number ofvideo conferencing rooms and users will depend onyour plan Please speak toone ofourenterprise consultantstofind out more ### Does QuickBlox support video recording Yes, wesupport video recording This functionality isprovided asanadd-on Toget access tovideo recording and the associated documentation,please contactus ### Isyour video conferencing solution HIPAA compliant QuickBlox is experienced working with healthcare organizations and understands the regulatory requirements around HIPAA Please check our blog,HIPAA Compliant Video Conferencing Our video conferencing solution is built on WebRTC which has in-built encryption Furthermore, we offer a variety ofHIPAA compliant hostingoptions so that you can store your customer\\u2019s data wherever you need including your own private cloud and on-premises\",\n", + " \"### How long does ittake tobuild avideo conferencing App Our easy-to-integrate video conferencing SDKs and API and comprehensive documentation and code samples will save you months ofdevelopment time This ofcourse depends onthe skill set ofyour developers Ifyou are looking for aready-made conferencing solution immediately check-out our ready white-labelQ-Consultation app ## Additional resources\\n[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [Why Businesses benefit from Video Conferencing](https://quickblox.com/blog/why-businesses-benefit-from-video-conferencing/)\\nAnna S 17 Sep 2021\\n[Education](https://quickblox.com/blog/business/education/)[Video Calling](https://quickblox.com/blog/features/video-calling/)[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [Why remote work requires Video Communication](https://quickblox.com/blog/why-is-video-communication-important-for-your-business-today/)\\nAnton Dyachenko\\n24 Aug 2021\\n[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [HIPAA Compliant Video Conferencing](https://quickblox.com/blog/hipaa-compliant-video-conferencing/)\\nAnna S 3 Sep 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Video Conferencing\\n## Real\\u2011time video group interactions via video toenhance collaboration and productivity\\nEngage your customers, employees, and business partners with secure and easy\\u2011to\\u2011use QuickBlox video conferencing Our high\\u2011quality low latency conferencing solution ensures people stay connected even when they are apart Want tosee ademo [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Explore other communication features\\n### [Chat](https://quickblox.com/products/chat/)\\n### [Voice and Video calling](https://quickblox.com/products/voice-and-video-calling/)\\n### [Push notifications](https://quickblox.com/products/push-notifications/)\\n## Make on\\u2011screen interactions part ofyour business communication toimprove efficiency and deepen user engagement\\n### High quality multi\\u2011party calls\\nHosting avideo conference has never been easier with QuickBlox HDvideo conferencing software Groups ofparticipants can interact, share, and collaborate effortlessly inreal\\u2011time Use our video conferencing API toembed this feature into your e\\u2011learning app, internal company messaging app, and numerous other types ofmobile apps where there isaneed for groups tocommunicate in avisually engaging way ### Recordable\\nWith voice and video conferencing technology, it’’s possible torecord and archive your entire session Ifyou work inhealthcare orfinance orsome other industry where there isaneed tokeep apermanent record ofcommunications, your recorded session can besafely stored inthe cloud, oron\\u2011premise inyour own virtual machines and easily accessed when needed ### Feature\\u2011rich and versatile\\nOur video conferencing SDKs and chat SDKs support screen\\u2011sharing, file exchange, switching between video inputs, group chat, and video recording Furthermore, our video conferencing system can beintegrated into pre\\u2011existing software such asane\\u2011learning platform orElectronic Healthcare Record (EHR) system with minimum fuss ### Cross-Platform\\nOur solution isdesigned towork cross\\u2011platform, sothat you can enjoy online meetings with others whether you are using adesktop app, tablet, ormobile phone For ease and convenience real\\u2011time video chat ispossible on\\u2011the\\u2011go, wherever you are ### Video streaming\\nNeed topresent anacademic lecture, company presentation, orgaming event toalarge audience Noproblem Our conference calling technology supports video streaming for potentially 1000s ofviewers, depending onyour server configuration\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 23 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Video Conferencing\\n## Real\\u2011time video group interactions via video toenhance collaboration and productivity\\nEngage your customers, employees, and business partners with secure and easy\\u2011to\\u2011use QuickBlox video conferencing Our high\\u2011quality low latency conferencing solution ensures people stay connected even when they are apart Want tosee ademo [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Explore other communication features\\n### [Chat](https://quickblox.com/products/chat/)\\n### [Voice and Video calling](https://quickblox.com/products/voice-and-video-calling/)\\n### [Push notifications](https://quickblox.com/products/push-notifications/)\\n## Make on\\u2011screen interactions part ofyour business communication toimprove efficiency and deepen user engagement\\n### High quality multi\\u2011party calls\\nHosting avideo conference has never been easier with QuickBlox HDvideo conferencing software Groups ofparticipants can interact, share, and collaborate effortlessly inreal\\u2011time Use our video conferencing API toembed this feature into your e\\u2011learning app, internal company messaging app, and numerous other types ofmobile apps where there isaneed for groups tocommunicate in avisually engaging way ### Recordable\\nWith voice and video conferencing technology, it’’s possible torecord and archive your entire session Ifyou work inhealthcare orfinance orsome other industry where there isaneed tokeep apermanent record ofcommunications, your recorded session can besafely stored inthe cloud, oron\\u2011premise inyour own virtual machines and easily accessed when needed ### Feature\\u2011rich and versatile\\nOur video conferencing SDKs and chat SDKs support screen\\u2011sharing, file exchange, switching between video inputs, group chat, and video recording Furthermore, our video conferencing system can beintegrated into pre\\u2011existing software such asane\\u2011learning platform orElectronic Healthcare Record (EHR) system with minimum fuss ### Cross-Platform\\nOur solution isdesigned towork cross\\u2011platform, sothat you can enjoy online meetings with others whether you are using adesktop app, tablet, ormobile phone For ease and convenience real\\u2011time video chat ispossible on\\u2011the\\u2011go, wherever you are ### Video streaming\\nNeed topresent anacademic lecture, company presentation, orgaming event toalarge audience Noproblem Our conference calling technology supports video streaming for potentially 1000s ofviewers, depending onyour server configuration\",\n", + " \"### WebRTC technology\\nYour communication isfully protected and secure when you use our video conference API built towork with the best technology WebRTC has inbuilt security which means that your private conversations remain just that ### PIPEDA and HIPAA compliant\\nWewill configure your instance inyour own secure cloud environment toensure PIPEDA and HIPAA compliance Wefollow encryption protocols, provide aBusiness Associate Agreement, and work with your info\\u2011security team toensure regulatory compliance ### GDPR compliant\\nBecause wedon’’t store any ofyour customer’’s data, itremains safely inyour control Furthermore, weprovide you with the tools toprotect, store, and remove this data toensure that your app isfully GDPR compliant Want tolearn more [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## ### ****\\n****\\n### ****\\n****\\n### ****\\n****\\n### ****\\n****\\n### ****\\n## Key features\\n* **Group calls:**Get agroup ofparticipants together in avirtual meeting sothat they can collaborate together regardless ofwhere they each are * **Call invitations:**Create and send links for users toconveniently join calls asand when they need * **Multiple video input:**Connect toexternal cameras\\n(e.g security camera, endoscope) and switch between camera input onacall * **High Security:**Enjoy private and protected real time communication with avideo conferencing tool built onhighly secure WebRTC * **Screen‑sharing:**Present inreal‑‑time bysharing your screen with others * **Mute/unmute audio**and**turn on/off video:**Calibrate your engagement byturning onand off your video camera and microphone asrequired * **Video recording:**Record and save the content ofyour conference toensure valuable communication isnever lost\",\n", + " \"* **Advanced features:**Integrate additional features and communication tools into your video conferencing platform such asfile sharing orreal‑‑time messaging for atruly versatile user experience Have more questions [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Video Conferencing vsPeer‑‑to‑‑Peer Calling\\n* * **Video Conferencing**\\n* **Peer‑to‑Peer (P2P)**\\n* **What is it?**\\n* Video conferencing isbuilt ontop ofWebRTC SFU technology All communication goes via acentralized conference media server * P2P WebRTC involves direct exchange ofmedia and data between peers without the presence ofacentralized server * **Main differences toconsider**\\n* * Possible tohave alarger number ofcallers atone time\\n* Advanced features including server‑side recording\\n* Involves higher costs\\n* * Lower cost ofoperation because you don’’t end uppaying for your user’’s bandwidth\\n* Cheaper toscale asthere is noneed topay for extra servers\\n* Supports upto4users atatime\\n* **Pricing and Set‑up**\\n* Available asanadd‑‑on Additional charges may apply\\n* * Available onour shared cloud and Enterprise plan\\n* Additional cost ifyou require your own TURN server toinitiate call\\nHave more questions [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Voice and Video Conferencing SDKs and API\\nQuickBlox software iscompatible with multiple devices and platforms including iOS, Android, and the web (Javascript) Wealso provide avideo conferencing Flutter SDK Check out our code samples and documentation toget started now [Link to code samples](https://docs.quickblox.com/docs/code-samples)\\n[Link to documentation](https://docs.quickblox.com/)\\n## []()\\n## FAQ: Video Conferencing\\n### What isavideo conferencing API AnAPI (application programming interface) isanintermediary set ofcode that enables different sorts ofsoftware tocommunicate with each other toexchange information Video conferencing API facilitates the necessary transmission ofdata between anapplication and communication backend that make video conferencing possible ### How doI integrate video conferencing into mywebsite Weprovide richdocumentationand guides toassist your implementation ofour video conferencing functionality into your application\",\n", + " \"Furthermore, weprovide all our enterprise customers with several hours ofintegration support each month, depending onthe size ofyour plan Speak toone ofourenterprise consultantsnow tofind out more ### How much does itcost tohost avideo conference Our video conferencing solution comes asanadd ontoyour QuickBlox plan for which you pay amonthly subscription There isnoset limit tohow many minutes orhours you can host each month but your overall capacity ofthe number ofvideo conferencing rooms and users will depend onyour plan Please speak toone ofourenterprise consultantstofind out more ### Does QuickBlox support video recording Yes, wesupport video recording This functionality isprovided asanadd-on Toget access tovideo recording and the associated documentation,please contactus ### Isyour video conferencing solution HIPAA compliant QuickBlox is experienced working with healthcare organizations and understands the regulatory requirements around HIPAA Please check our blog,HIPAA Compliant Video Conferencing Our video conferencing solution is built on WebRTC which has in-built encryption Furthermore, we offer a variety ofHIPAA compliant hostingoptions so that you can store your customer\\u2019s data wherever you need including your own private cloud and on-premises\",\n", + " \"### How long does ittake tobuild avideo conferencing App Our easy-to-integrate video conferencing SDKs and API and comprehensive documentation and code samples will save you months ofdevelopment time This ofcourse depends onthe skill set ofyour developers Ifyou are looking for aready-made conferencing solution immediately check-out our ready white-labelQ-Consultation app ## Additional resources\\n[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [Why Businesses benefit from Video Conferencing](https://quickblox.com/blog/why-businesses-benefit-from-video-conferencing/)\\nAnna S 17 Sep 2021\\n[Education](https://quickblox.com/blog/business/education/)[Video Calling](https://quickblox.com/blog/features/video-calling/)[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [Why remote work requires Video Communication](https://quickblox.com/blog/why-is-video-communication-important-for-your-business-today/)\\nAnton Dyachenko\\n24 Aug 2021\\n[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [HIPAA Compliant Video Conferencing](https://quickblox.com/blog/hipaa-compliant-video-conferencing/)\\nAnna S 3 Sep 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"### WebRTC technology\\nYour communication isfully protected and secure when you use our video conference API built towork with the best technology WebRTC has inbuilt security which means that your private conversations remain just that ### PIPEDA and HIPAA compliant\\nWewill configure your instance inyour own secure cloud environment toensure PIPEDA and HIPAA compliance Wefollow encryption protocols, provide aBusiness Associate Agreement, and work with your info\\u2011security team toensure regulatory compliance ### GDPR compliant\\nBecause wedon’’t store any ofyour customer’’s data, itremains safely inyour control Furthermore, weprovide you with the tools toprotect, store, and remove this data toensure that your app isfully GDPR compliant Want tolearn more [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## ### ****\\n****\\n### ****\\n****\\n### ****\\n****\\n### ****\\n****\\n### ****\\n## Key features\\n* **Group calls:**Get agroup ofparticipants together in avirtual meeting sothat they can collaborate together regardless ofwhere they each are * **Call invitations:**Create and send links for users toconveniently join calls asand when they need * **Multiple video input:**Connect toexternal cameras\\n(e.g security camera, endoscope) and switch between camera input onacall * **High Security:**Enjoy private and protected real time communication with avideo conferencing tool built onhighly secure WebRTC * **Screen‑sharing:**Present inreal‑‑time bysharing your screen with others * **Mute/unmute audio**and**turn on/off video:**Calibrate your engagement byturning onand off your video camera and microphone asrequired * **Video recording:**Record and save the content ofyour conference toensure valuable communication isnever lost\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 24 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Video Conferencing\\n## Real\\u2011time video group interactions via video toenhance collaboration and productivity\\nEngage your customers, employees, and business partners with secure and easy\\u2011to\\u2011use QuickBlox video conferencing Our high\\u2011quality low latency conferencing solution ensures people stay connected even when they are apart Want tosee ademo [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Explore other communication features\\n### [Chat](https://quickblox.com/products/chat/)\\n### [Voice and Video calling](https://quickblox.com/products/voice-and-video-calling/)\\n### [Push notifications](https://quickblox.com/products/push-notifications/)\\n## Make on\\u2011screen interactions part ofyour business communication toimprove efficiency and deepen user engagement\\n### High quality multi\\u2011party calls\\nHosting avideo conference has never been easier with QuickBlox HDvideo conferencing software Groups ofparticipants can interact, share, and collaborate effortlessly inreal\\u2011time Use our video conferencing API toembed this feature into your e\\u2011learning app, internal company messaging app, and numerous other types ofmobile apps where there isaneed for groups tocommunicate in avisually engaging way ### Recordable\\nWith voice and video conferencing technology, it’’s possible torecord and archive your entire session Ifyou work inhealthcare orfinance orsome other industry where there isaneed tokeep apermanent record ofcommunications, your recorded session can besafely stored inthe cloud, oron\\u2011premise inyour own virtual machines and easily accessed when needed ### Feature\\u2011rich and versatile\\nOur video conferencing SDKs and chat SDKs support screen\\u2011sharing, file exchange, switching between video inputs, group chat, and video recording Furthermore, our video conferencing system can beintegrated into pre\\u2011existing software such asane\\u2011learning platform orElectronic Healthcare Record (EHR) system with minimum fuss ### Cross-Platform\\nOur solution isdesigned towork cross\\u2011platform, sothat you can enjoy online meetings with others whether you are using adesktop app, tablet, ormobile phone For ease and convenience real\\u2011time video chat ispossible on\\u2011the\\u2011go, wherever you are ### Video streaming\\nNeed topresent anacademic lecture, company presentation, orgaming event toalarge audience Noproblem Our conference calling technology supports video streaming for potentially 1000s ofviewers, depending onyour server configuration\",\n", + " \"### WebRTC technology\\nYour communication isfully protected and secure when you use our video conference API built towork with the best technology WebRTC has inbuilt security which means that your private conversations remain just that ### PIPEDA and HIPAA compliant\\nWewill configure your instance inyour own secure cloud environment toensure PIPEDA and HIPAA compliance Wefollow encryption protocols, provide aBusiness Associate Agreement, and work with your info\\u2011security team toensure regulatory compliance ### GDPR compliant\\nBecause wedon’’t store any ofyour customer’’s data, itremains safely inyour control Furthermore, weprovide you with the tools toprotect, store, and remove this data toensure that your app isfully GDPR compliant Want tolearn more [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## ### ****\\n****\\n### ****\\n****\\n### ****\\n****\\n### ****\\n****\\n### ****\\n## Key features\\n* **Group calls:**Get agroup ofparticipants together in avirtual meeting sothat they can collaborate together regardless ofwhere they each are * **Call invitations:**Create and send links for users toconveniently join calls asand when they need * **Multiple video input:**Connect toexternal cameras\\n(e.g security camera, endoscope) and switch between camera input onacall * **High Security:**Enjoy private and protected real time communication with avideo conferencing tool built onhighly secure WebRTC * **Screen‑sharing:**Present inreal‑‑time bysharing your screen with others * **Mute/unmute audio**and**turn on/off video:**Calibrate your engagement byturning onand off your video camera and microphone asrequired * **Video recording:**Record and save the content ofyour conference toensure valuable communication isnever lost\",\n", + " \"* **Advanced features:**Integrate additional features and communication tools into your video conferencing platform such asfile sharing orreal‑‑time messaging for atruly versatile user experience Have more questions [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Video Conferencing vsPeer‑‑to‑‑Peer Calling\\n* * **Video Conferencing**\\n* **Peer‑to‑Peer (P2P)**\\n* **What is it?**\\n* Video conferencing isbuilt ontop ofWebRTC SFU technology All communication goes via acentralized conference media server * P2P WebRTC involves direct exchange ofmedia and data between peers without the presence ofacentralized server * **Main differences toconsider**\\n* * Possible tohave alarger number ofcallers atone time\\n* Advanced features including server‑side recording\\n* Involves higher costs\\n* * Lower cost ofoperation because you don’’t end uppaying for your user’’s bandwidth\\n* Cheaper toscale asthere is noneed topay for extra servers\\n* Supports upto4users atatime\\n* **Pricing and Set‑up**\\n* Available asanadd‑‑on Additional charges may apply\\n* * Available onour shared cloud and Enterprise plan\\n* Additional cost ifyou require your own TURN server toinitiate call\\nHave more questions [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Voice and Video Conferencing SDKs and API\\nQuickBlox software iscompatible with multiple devices and platforms including iOS, Android, and the web (Javascript) Wealso provide avideo conferencing Flutter SDK Check out our code samples and documentation toget started now [Link to code samples](https://docs.quickblox.com/docs/code-samples)\\n[Link to documentation](https://docs.quickblox.com/)\\n## []()\\n## FAQ: Video Conferencing\\n### What isavideo conferencing API AnAPI (application programming interface) isanintermediary set ofcode that enables different sorts ofsoftware tocommunicate with each other toexchange information Video conferencing API facilitates the necessary transmission ofdata between anapplication and communication backend that make video conferencing possible ### How doI integrate video conferencing into mywebsite Weprovide richdocumentationand guides toassist your implementation ofour video conferencing functionality into your application\",\n", + " \"Furthermore, weprovide all our enterprise customers with several hours ofintegration support each month, depending onthe size ofyour plan Speak toone ofourenterprise consultantsnow tofind out more ### How much does itcost tohost avideo conference Our video conferencing solution comes asanadd ontoyour QuickBlox plan for which you pay amonthly subscription There isnoset limit tohow many minutes orhours you can host each month but your overall capacity ofthe number ofvideo conferencing rooms and users will depend onyour plan Please speak toone ofourenterprise consultantstofind out more ### Does QuickBlox support video recording Yes, wesupport video recording This functionality isprovided asanadd-on Toget access tovideo recording and the associated documentation,please contactus ### Isyour video conferencing solution HIPAA compliant QuickBlox is experienced working with healthcare organizations and understands the regulatory requirements around HIPAA Please check our blog,HIPAA Compliant Video Conferencing Our video conferencing solution is built on WebRTC which has in-built encryption Furthermore, we offer a variety ofHIPAA compliant hostingoptions so that you can store your customer\\u2019s data wherever you need including your own private cloud and on-premises\",\n", + " \"### How long does ittake tobuild avideo conferencing App Our easy-to-integrate video conferencing SDKs and API and comprehensive documentation and code samples will save you months ofdevelopment time This ofcourse depends onthe skill set ofyour developers Ifyou are looking for aready-made conferencing solution immediately check-out our ready white-labelQ-Consultation app ## Additional resources\\n[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [Why Businesses benefit from Video Conferencing](https://quickblox.com/blog/why-businesses-benefit-from-video-conferencing/)\\nAnna S 17 Sep 2021\\n[Education](https://quickblox.com/blog/business/education/)[Video Calling](https://quickblox.com/blog/features/video-calling/)[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [Why remote work requires Video Communication](https://quickblox.com/blog/why-is-video-communication-important-for-your-business-today/)\\nAnton Dyachenko\\n24 Aug 2021\\n[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [HIPAA Compliant Video Conferencing](https://quickblox.com/blog/hipaa-compliant-video-conferencing/)\\nAnna S 3 Sep 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"* **Advanced features:**Integrate additional features and communication tools into your video conferencing platform such asfile sharing orreal‑‑time messaging for atruly versatile user experience Have more questions [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Video Conferencing vsPeer‑‑to‑‑Peer Calling\\n* * **Video Conferencing**\\n* **Peer‑to‑Peer (P2P)**\\n* **What is it?**\\n* Video conferencing isbuilt ontop ofWebRTC SFU technology All communication goes via acentralized conference media server * P2P WebRTC involves direct exchange ofmedia and data between peers without the presence ofacentralized server * **Main differences toconsider**\\n* * Possible tohave alarger number ofcallers atone time\\n* Advanced features including server‑side recording\\n* Involves higher costs\\n* * Lower cost ofoperation because you don’’t end uppaying for your user’’s bandwidth\\n* Cheaper toscale asthere is noneed topay for extra servers\\n* Supports upto4users atatime\\n* **Pricing and Set‑up**\\n* Available asanadd‑‑on Additional charges may apply\\n* * Available onour shared cloud and Enterprise plan\\n* Additional cost ifyou require your own TURN server toinitiate call\\nHave more questions [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Voice and Video Conferencing SDKs and API\\nQuickBlox software iscompatible with multiple devices and platforms including iOS, Android, and the web (Javascript) Wealso provide avideo conferencing Flutter SDK Check out our code samples and documentation toget started now [Link to code samples](https://docs.quickblox.com/docs/code-samples)\\n[Link to documentation](https://docs.quickblox.com/)\\n## []()\\n## FAQ: Video Conferencing\\n### What isavideo conferencing API AnAPI (application programming interface) isanintermediary set ofcode that enables different sorts ofsoftware tocommunicate with each other toexchange information Video conferencing API facilitates the necessary transmission ofdata between anapplication and communication backend that make video conferencing possible ### How doI integrate video conferencing into mywebsite Weprovide richdocumentationand guides toassist your implementation ofour video conferencing functionality into your application\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 25 Type: step\n", + "output: {\n", + " \"documents\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Video Conferencing\\n## Real\\u2011time video group interactions via video toenhance collaboration and productivity\\nEngage your customers, employees, and business partners with secure and easy\\u2011to\\u2011use QuickBlox video conferencing Our high\\u2011quality low latency conferencing solution ensures people stay connected even when they are apart Want tosee ademo [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Explore other communication features\\n### [Chat](https://quickblox.com/products/chat/)\\n### [Voice and Video calling](https://quickblox.com/products/voice-and-video-calling/)\\n### [Push notifications](https://quickblox.com/products/push-notifications/)\\n## Make on\\u2011screen interactions part ofyour business communication toimprove efficiency and deepen user engagement\\n### High quality multi\\u2011party calls\\nHosting avideo conference has never been easier with QuickBlox HDvideo conferencing software Groups ofparticipants can interact, share, and collaborate effortlessly inreal\\u2011time Use our video conferencing API toembed this feature into your e\\u2011learning app, internal company messaging app, and numerous other types ofmobile apps where there isaneed for groups tocommunicate in avisually engaging way ### Recordable\\nWith voice and video conferencing technology, it’’s possible torecord and archive your entire session Ifyou work inhealthcare orfinance orsome other industry where there isaneed tokeep apermanent record ofcommunications, your recorded session can besafely stored inthe cloud, oron\\u2011premise inyour own virtual machines and easily accessed when needed ### Feature\\u2011rich and versatile\\nOur video conferencing SDKs and chat SDKs support screen\\u2011sharing, file exchange, switching between video inputs, group chat, and video recording Furthermore, our video conferencing system can beintegrated into pre\\u2011existing software such asane\\u2011learning platform orElectronic Healthcare Record (EHR) system with minimum fuss ### Cross-Platform\\nOur solution isdesigned towork cross\\u2011platform, sothat you can enjoy online meetings with others whether you are using adesktop app, tablet, ormobile phone For ease and convenience real\\u2011time video chat ispossible on\\u2011the\\u2011go, wherever you are ### Video streaming\\nNeed topresent anacademic lecture, company presentation, orgaming event toalarge audience Noproblem Our conference calling technology supports video streaming for potentially 1000s ofviewers, depending onyour server configuration\",\n", + " \"### WebRTC technology\\nYour communication isfully protected and secure when you use our video conference API built towork with the best technology WebRTC has inbuilt security which means that your private conversations remain just that ### PIPEDA and HIPAA compliant\\nWewill configure your instance inyour own secure cloud environment toensure PIPEDA and HIPAA compliance Wefollow encryption protocols, provide aBusiness Associate Agreement, and work with your info\\u2011security team toensure regulatory compliance ### GDPR compliant\\nBecause wedon’’t store any ofyour customer’’s data, itremains safely inyour control Furthermore, weprovide you with the tools toprotect, store, and remove this data toensure that your app isfully GDPR compliant Want tolearn more [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## ### ****\\n****\\n### ****\\n****\\n### ****\\n****\\n### ****\\n****\\n### ****\\n## Key features\\n* **Group calls:**Get agroup ofparticipants together in avirtual meeting sothat they can collaborate together regardless ofwhere they each are * **Call invitations:**Create and send links for users toconveniently join calls asand when they need * **Multiple video input:**Connect toexternal cameras\\n(e.g security camera, endoscope) and switch between camera input onacall * **High Security:**Enjoy private and protected real time communication with avideo conferencing tool built onhighly secure WebRTC * **Screen‑sharing:**Present inreal‑‑time bysharing your screen with others * **Mute/unmute audio**and**turn on/off video:**Calibrate your engagement byturning onand off your video camera and microphone asrequired * **Video recording:**Record and save the content ofyour conference toensure valuable communication isnever lost\",\n", + " \"* **Advanced features:**Integrate additional features and communication tools into your video conferencing platform such asfile sharing orreal‑‑time messaging for atruly versatile user experience Have more questions [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Video Conferencing vsPeer‑‑to‑‑Peer Calling\\n* * **Video Conferencing**\\n* **Peer‑to‑Peer (P2P)**\\n* **What is it?**\\n* Video conferencing isbuilt ontop ofWebRTC SFU technology All communication goes via acentralized conference media server * P2P WebRTC involves direct exchange ofmedia and data between peers without the presence ofacentralized server * **Main differences toconsider**\\n* * Possible tohave alarger number ofcallers atone time\\n* Advanced features including server‑side recording\\n* Involves higher costs\\n* * Lower cost ofoperation because you don’’t end uppaying for your user’’s bandwidth\\n* Cheaper toscale asthere is noneed topay for extra servers\\n* Supports upto4users atatime\\n* **Pricing and Set‑up**\\n* Available asanadd‑‑on Additional charges may apply\\n* * Available onour shared cloud and Enterprise plan\\n* Additional cost ifyou require your own TURN server toinitiate call\\nHave more questions [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Voice and Video Conferencing SDKs and API\\nQuickBlox software iscompatible with multiple devices and platforms including iOS, Android, and the web (Javascript) Wealso provide avideo conferencing Flutter SDK Check out our code samples and documentation toget started now [Link to code samples](https://docs.quickblox.com/docs/code-samples)\\n[Link to documentation](https://docs.quickblox.com/)\\n## []()\\n## FAQ: Video Conferencing\\n### What isavideo conferencing API AnAPI (application programming interface) isanintermediary set ofcode that enables different sorts ofsoftware tocommunicate with each other toexchange information Video conferencing API facilitates the necessary transmission ofdata between anapplication and communication backend that make video conferencing possible ### How doI integrate video conferencing into mywebsite Weprovide richdocumentationand guides toassist your implementation ofour video conferencing functionality into your application\",\n", + " \"Furthermore, weprovide all our enterprise customers with several hours ofintegration support each month, depending onthe size ofyour plan Speak toone ofourenterprise consultantsnow tofind out more ### How much does itcost tohost avideo conference Our video conferencing solution comes asanadd ontoyour QuickBlox plan for which you pay amonthly subscription There isnoset limit tohow many minutes orhours you can host each month but your overall capacity ofthe number ofvideo conferencing rooms and users will depend onyour plan Please speak toone ofourenterprise consultantstofind out more ### Does QuickBlox support video recording Yes, wesupport video recording This functionality isprovided asanadd-on Toget access tovideo recording and the associated documentation,please contactus ### Isyour video conferencing solution HIPAA compliant QuickBlox is experienced working with healthcare organizations and understands the regulatory requirements around HIPAA Please check our blog,HIPAA Compliant Video Conferencing Our video conferencing solution is built on WebRTC which has in-built encryption Furthermore, we offer a variety ofHIPAA compliant hostingoptions so that you can store your customer\\u2019s data wherever you need including your own private cloud and on-premises\",\n", + " \"### How long does ittake tobuild avideo conferencing App Our easy-to-integrate video conferencing SDKs and API and comprehensive documentation and code samples will save you months ofdevelopment time This ofcourse depends onthe skill set ofyour developers Ifyou are looking for aready-made conferencing solution immediately check-out our ready white-labelQ-Consultation app ## Additional resources\\n[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [Why Businesses benefit from Video Conferencing](https://quickblox.com/blog/why-businesses-benefit-from-video-conferencing/)\\nAnna S 17 Sep 2021\\n[Education](https://quickblox.com/blog/business/education/)[Video Calling](https://quickblox.com/blog/features/video-calling/)[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [Why remote work requires Video Communication](https://quickblox.com/blog/why-is-video-communication-important-for-your-business-today/)\\nAnton Dyachenko\\n24 Aug 2021\\n[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [HIPAA Compliant Video Conferencing](https://quickblox.com/blog/hipaa-compliant-video-conferencing/)\\nAnna S 3 Sep 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 26 Type: init_branch\n", + "output: {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Video Conferencing\\n## Real\\u2011time video group interactions via video toenhance collaboration and productivity\\nEngage your customers, employees, and business partners with secure and easy\\u2011to\\u2011use QuickBlox video conferencing Our high\\u2011quality low latency conferencing solution ensures people stay connected even when they are apart Want tosee ademo [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Explore other communication features\\n### [Chat](https://quickblox.com/products/chat/)\\n### [Voice and Video calling](https://quickblox.com/products/voice-and-video-calling/)\\n### [Push notifications](https://quickblox.com/products/push-notifications/)\\n## Make on\\u2011screen interactions part ofyour business communication toimprove efficiency and deepen user engagement\\n### High quality multi\\u2011party calls\\nHosting avideo conference has never been easier with QuickBlox HDvideo conferencing software Groups ofparticipants can interact, share, and collaborate effortlessly inreal\\u2011time Use our video conferencing API toembed this feature into your e\\u2011learning app, internal company messaging app, and numerous other types ofmobile apps where there isaneed for groups tocommunicate in avisually engaging way ### Recordable\\nWith voice and video conferencing technology, it’’s possible torecord and archive your entire session Ifyou work inhealthcare orfinance orsome other industry where there isaneed tokeep apermanent record ofcommunications, your recorded session can besafely stored inthe cloud, oron\\u2011premise inyour own virtual machines and easily accessed when needed ### Feature\\u2011rich and versatile\\nOur video conferencing SDKs and chat SDKs support screen\\u2011sharing, file exchange, switching between video inputs, group chat, and video recording Furthermore, our video conferencing system can beintegrated into pre\\u2011existing software such asane\\u2011learning platform orElectronic Healthcare Record (EHR) system with minimum fuss ### Cross-Platform\\nOur solution isdesigned towork cross\\u2011platform, sothat you can enjoy online meetings with others whether you are using adesktop app, tablet, ormobile phone For ease and convenience real\\u2011time video chat ispossible on\\u2011the\\u2011go, wherever you are ### Video streaming\\nNeed topresent anacademic lecture, company presentation, orgaming event toalarge audience Noproblem Our conference calling technology supports video streaming for potentially 1000s ofviewers, depending onyour server configuration\",\n", + " \"### WebRTC technology\\nYour communication isfully protected and secure when you use our video conference API built towork with the best technology WebRTC has inbuilt security which means that your private conversations remain just that ### PIPEDA and HIPAA compliant\\nWewill configure your instance inyour own secure cloud environment toensure PIPEDA and HIPAA compliance Wefollow encryption protocols, provide aBusiness Associate Agreement, and work with your info\\u2011security team toensure regulatory compliance ### GDPR compliant\\nBecause wedon’’t store any ofyour customer’’s data, itremains safely inyour control Furthermore, weprovide you with the tools toprotect, store, and remove this data toensure that your app isfully GDPR compliant Want tolearn more [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## ### ****\\n****\\n### ****\\n****\\n### ****\\n****\\n### ****\\n****\\n### ****\\n## Key features\\n* **Group calls:**Get agroup ofparticipants together in avirtual meeting sothat they can collaborate together regardless ofwhere they each are * **Call invitations:**Create and send links for users toconveniently join calls asand when they need * **Multiple video input:**Connect toexternal cameras\\n(e.g security camera, endoscope) and switch between camera input onacall * **High Security:**Enjoy private and protected real time communication with avideo conferencing tool built onhighly secure WebRTC * **Screen‑sharing:**Present inreal‑‑time bysharing your screen with others * **Mute/unmute audio**and**turn on/off video:**Calibrate your engagement byturning onand off your video camera and microphone asrequired * **Video recording:**Record and save the content ofyour conference toensure valuable communication isnever lost\",\n", + " \"* **Advanced features:**Integrate additional features and communication tools into your video conferencing platform such asfile sharing orreal‑‑time messaging for atruly versatile user experience Have more questions [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Video Conferencing vsPeer‑‑to‑‑Peer Calling\\n* * **Video Conferencing**\\n* **Peer‑to‑Peer (P2P)**\\n* **What is it?**\\n* Video conferencing isbuilt ontop ofWebRTC SFU technology All communication goes via acentralized conference media server * P2P WebRTC involves direct exchange ofmedia and data between peers without the presence ofacentralized server * **Main differences toconsider**\\n* * Possible tohave alarger number ofcallers atone time\\n* Advanced features including server‑side recording\\n* Involves higher costs\\n* * Lower cost ofoperation because you don’’t end uppaying for your user’’s bandwidth\\n* Cheaper toscale asthere is noneed topay for extra servers\\n* Supports upto4users atatime\\n* **Pricing and Set‑up**\\n* Available asanadd‑‑on Additional charges may apply\\n* * Available onour shared cloud and Enterprise plan\\n* Additional cost ifyou require your own TURN server toinitiate call\\nHave more questions [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Voice and Video Conferencing SDKs and API\\nQuickBlox software iscompatible with multiple devices and platforms including iOS, Android, and the web (Javascript) Wealso provide avideo conferencing Flutter SDK Check out our code samples and documentation toget started now [Link to code samples](https://docs.quickblox.com/docs/code-samples)\\n[Link to documentation](https://docs.quickblox.com/)\\n## []()\\n## FAQ: Video Conferencing\\n### What isavideo conferencing API AnAPI (application programming interface) isanintermediary set ofcode that enables different sorts ofsoftware tocommunicate with each other toexchange information Video conferencing API facilitates the necessary transmission ofdata between anapplication and communication backend that make video conferencing possible ### How doI integrate video conferencing into mywebsite Weprovide richdocumentationand guides toassist your implementation ofour video conferencing functionality into your application\",\n", + " \"Furthermore, weprovide all our enterprise customers with several hours ofintegration support each month, depending onthe size ofyour plan Speak toone ofourenterprise consultantsnow tofind out more ### How much does itcost tohost avideo conference Our video conferencing solution comes asanadd ontoyour QuickBlox plan for which you pay amonthly subscription There isnoset limit tohow many minutes orhours you can host each month but your overall capacity ofthe number ofvideo conferencing rooms and users will depend onyour plan Please speak toone ofourenterprise consultantstofind out more ### Does QuickBlox support video recording Yes, wesupport video recording This functionality isprovided asanadd-on Toget access tovideo recording and the associated documentation,please contactus ### Isyour video conferencing solution HIPAA compliant QuickBlox is experienced working with healthcare organizations and understands the regulatory requirements around HIPAA Please check our blog,HIPAA Compliant Video Conferencing Our video conferencing solution is built on WebRTC which has in-built encryption Furthermore, we offer a variety ofHIPAA compliant hostingoptions so that you can store your customer\\u2019s data wherever you need including your own private cloud and on-premises\",\n", + " \"### How long does ittake tobuild avideo conferencing App Our easy-to-integrate video conferencing SDKs and API and comprehensive documentation and code samples will save you months ofdevelopment time This ofcourse depends onthe skill set ofyour developers Ifyou are looking for aready-made conferencing solution immediately check-out our ready white-labelQ-Consultation app ## Additional resources\\n[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [Why Businesses benefit from Video Conferencing](https://quickblox.com/blog/why-businesses-benefit-from-video-conferencing/)\\nAnna S 17 Sep 2021\\n[Education](https://quickblox.com/blog/business/education/)[Video Calling](https://quickblox.com/blog/features/video-calling/)[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [Why remote work requires Video Communication](https://quickblox.com/blog/why-is-video-communication-important-for-your-business-today/)\\nAnton Dyachenko\\n24 Aug 2021\\n[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [HIPAA Compliant Video Conferencing](https://quickblox.com/blog/hipaa-compliant-video-conferencing/)\\nAnna S 3 Sep 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 27 Type: step\n", + "output: {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Video Conferencing\\n## Real\\u2011time video group interactions via video toenhance collaboration and productivity\\nEngage your customers, employees, and business partners with secure and easy\\u2011to\\u2011use QuickBlox video conferencing Our high\\u2011quality low latency conferencing solution ensures people stay connected even when they are apart Want tosee ademo [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Explore other communication features\\n### [Chat](https://quickblox.com/products/chat/)\\n### [Voice and Video calling](https://quickblox.com/products/voice-and-video-calling/)\\n### [Push notifications](https://quickblox.com/products/push-notifications/)\\n## Make on\\u2011screen interactions part ofyour business communication toimprove efficiency and deepen user engagement\\n### High quality multi\\u2011party calls\\nHosting avideo conference has never been easier with QuickBlox HDvideo conferencing software Groups ofparticipants can interact, share, and collaborate effortlessly inreal\\u2011time Use our video conferencing API toembed this feature into your e\\u2011learning app, internal company messaging app, and numerous other types ofmobile apps where there isaneed for groups tocommunicate in avisually engaging way ### Recordable\\nWith voice and video conferencing technology, it’’s possible torecord and archive your entire session Ifyou work inhealthcare orfinance orsome other industry where there isaneed tokeep apermanent record ofcommunications, your recorded session can besafely stored inthe cloud, oron\\u2011premise inyour own virtual machines and easily accessed when needed ### Feature\\u2011rich and versatile\\nOur video conferencing SDKs and chat SDKs support screen\\u2011sharing, file exchange, switching between video inputs, group chat, and video recording Furthermore, our video conferencing system can beintegrated into pre\\u2011existing software such asane\\u2011learning platform orElectronic Healthcare Record (EHR) system with minimum fuss ### Cross-Platform\\nOur solution isdesigned towork cross\\u2011platform, sothat you can enjoy online meetings with others whether you are using adesktop app, tablet, ormobile phone For ease and convenience real\\u2011time video chat ispossible on\\u2011the\\u2011go, wherever you are ### Video streaming\\nNeed topresent anacademic lecture, company presentation, orgaming event toalarge audience Noproblem Our conference calling technology supports video streaming for potentially 1000s ofviewers, depending onyour server configuration\",\n", + " \"### WebRTC technology\\nYour communication isfully protected and secure when you use our video conference API built towork with the best technology WebRTC has inbuilt security which means that your private conversations remain just that ### PIPEDA and HIPAA compliant\\nWewill configure your instance inyour own secure cloud environment toensure PIPEDA and HIPAA compliance Wefollow encryption protocols, provide aBusiness Associate Agreement, and work with your info\\u2011security team toensure regulatory compliance ### GDPR compliant\\nBecause wedon’’t store any ofyour customer’’s data, itremains safely inyour control Furthermore, weprovide you with the tools toprotect, store, and remove this data toensure that your app isfully GDPR compliant Want tolearn more [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## ### ****\\n****\\n### ****\\n****\\n### ****\\n****\\n### ****\\n****\\n### ****\\n## Key features\\n* **Group calls:**Get agroup ofparticipants together in avirtual meeting sothat they can collaborate together regardless ofwhere they each are * **Call invitations:**Create and send links for users toconveniently join calls asand when they need * **Multiple video input:**Connect toexternal cameras\\n(e.g security camera, endoscope) and switch between camera input onacall * **High Security:**Enjoy private and protected real time communication with avideo conferencing tool built onhighly secure WebRTC * **Screen‑sharing:**Present inreal‑‑time bysharing your screen with others * **Mute/unmute audio**and**turn on/off video:**Calibrate your engagement byturning onand off your video camera and microphone asrequired * **Video recording:**Record and save the content ofyour conference toensure valuable communication isnever lost\",\n", + " \"* **Advanced features:**Integrate additional features and communication tools into your video conferencing platform such asfile sharing orreal‑‑time messaging for atruly versatile user experience Have more questions [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Video Conferencing vsPeer‑‑to‑‑Peer Calling\\n* * **Video Conferencing**\\n* **Peer‑to‑Peer (P2P)**\\n* **What is it?**\\n* Video conferencing isbuilt ontop ofWebRTC SFU technology All communication goes via acentralized conference media server * P2P WebRTC involves direct exchange ofmedia and data between peers without the presence ofacentralized server * **Main differences toconsider**\\n* * Possible tohave alarger number ofcallers atone time\\n* Advanced features including server‑side recording\\n* Involves higher costs\\n* * Lower cost ofoperation because you don’’t end uppaying for your user’’s bandwidth\\n* Cheaper toscale asthere is noneed topay for extra servers\\n* Supports upto4users atatime\\n* **Pricing and Set‑up**\\n* Available asanadd‑‑on Additional charges may apply\\n* * Available onour shared cloud and Enterprise plan\\n* Additional cost ifyou require your own TURN server toinitiate call\\nHave more questions [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Voice and Video Conferencing SDKs and API\\nQuickBlox software iscompatible with multiple devices and platforms including iOS, Android, and the web (Javascript) Wealso provide avideo conferencing Flutter SDK Check out our code samples and documentation toget started now [Link to code samples](https://docs.quickblox.com/docs/code-samples)\\n[Link to documentation](https://docs.quickblox.com/)\\n## []()\\n## FAQ: Video Conferencing\\n### What isavideo conferencing API AnAPI (application programming interface) isanintermediary set ofcode that enables different sorts ofsoftware tocommunicate with each other toexchange information Video conferencing API facilitates the necessary transmission ofdata between anapplication and communication backend that make video conferencing possible ### How doI integrate video conferencing into mywebsite Weprovide richdocumentationand guides toassist your implementation ofour video conferencing functionality into your application\",\n", + " \"Furthermore, weprovide all our enterprise customers with several hours ofintegration support each month, depending onthe size ofyour plan Speak toone ofourenterprise consultantsnow tofind out more ### How much does itcost tohost avideo conference Our video conferencing solution comes asanadd ontoyour QuickBlox plan for which you pay amonthly subscription There isnoset limit tohow many minutes orhours you can host each month but your overall capacity ofthe number ofvideo conferencing rooms and users will depend onyour plan Please speak toone ofourenterprise consultantstofind out more ### Does QuickBlox support video recording Yes, wesupport video recording This functionality isprovided asanadd-on Toget access tovideo recording and the associated documentation,please contactus ### Isyour video conferencing solution HIPAA compliant QuickBlox is experienced working with healthcare organizations and understands the regulatory requirements around HIPAA Please check our blog,HIPAA Compliant Video Conferencing Our video conferencing solution is built on WebRTC which has in-built encryption Furthermore, we offer a variety ofHIPAA compliant hostingoptions so that you can store your customer\\u2019s data wherever you need including your own private cloud and on-premises\",\n", + " \"### How long does ittake tobuild avideo conferencing App Our easy-to-integrate video conferencing SDKs and API and comprehensive documentation and code samples will save you months ofdevelopment time This ofcourse depends onthe skill set ofyour developers Ifyou are looking for aready-made conferencing solution immediately check-out our ready white-labelQ-Consultation app ## Additional resources\\n[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [Why Businesses benefit from Video Conferencing](https://quickblox.com/blog/why-businesses-benefit-from-video-conferencing/)\\nAnna S 17 Sep 2021\\n[Education](https://quickblox.com/blog/business/education/)[Video Calling](https://quickblox.com/blog/features/video-calling/)[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [Why remote work requires Video Communication](https://quickblox.com/blog/why-is-video-communication-important-for-your-business-today/)\\nAnton Dyachenko\\n24 Aug 2021\\n[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [HIPAA Compliant Video Conferencing](https://quickblox.com/blog/hipaa-compliant-video-conferencing/)\\nAnna S 3 Sep 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 28 Type: init_branch\n", + "output: {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Video Conferencing\\n## Real\\u2011time video group interactions via video toenhance collaboration and productivity\\nEngage your customers, employees, and business partners with secure and easy\\u2011to\\u2011use QuickBlox video conferencing Our high\\u2011quality low latency conferencing solution ensures people stay connected even when they are apart Want tosee ademo [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Explore other communication features\\n### [Chat](https://quickblox.com/products/chat/)\\n### [Voice and Video calling](https://quickblox.com/products/voice-and-video-calling/)\\n### [Push notifications](https://quickblox.com/products/push-notifications/)\\n## Make on\\u2011screen interactions part ofyour business communication toimprove efficiency and deepen user engagement\\n### High quality multi\\u2011party calls\\nHosting avideo conference has never been easier with QuickBlox HDvideo conferencing software Groups ofparticipants can interact, share, and collaborate effortlessly inreal\\u2011time Use our video conferencing API toembed this feature into your e\\u2011learning app, internal company messaging app, and numerous other types ofmobile apps where there isaneed for groups tocommunicate in avisually engaging way ### Recordable\\nWith voice and video conferencing technology, it’’s possible torecord and archive your entire session Ifyou work inhealthcare orfinance orsome other industry where there isaneed tokeep apermanent record ofcommunications, your recorded session can besafely stored inthe cloud, oron\\u2011premise inyour own virtual machines and easily accessed when needed ### Feature\\u2011rich and versatile\\nOur video conferencing SDKs and chat SDKs support screen\\u2011sharing, file exchange, switching between video inputs, group chat, and video recording Furthermore, our video conferencing system can beintegrated into pre\\u2011existing software such asane\\u2011learning platform orElectronic Healthcare Record (EHR) system with minimum fuss ### Cross-Platform\\nOur solution isdesigned towork cross\\u2011platform, sothat you can enjoy online meetings with others whether you are using adesktop app, tablet, ormobile phone For ease and convenience real\\u2011time video chat ispossible on\\u2011the\\u2011go, wherever you are ### Video streaming\\nNeed topresent anacademic lecture, company presentation, orgaming event toalarge audience Noproblem Our conference calling technology supports video streaming for potentially 1000s ofviewers, depending onyour server configuration\",\n", + " \"### WebRTC technology\\nYour communication isfully protected and secure when you use our video conference API built towork with the best technology WebRTC has inbuilt security which means that your private conversations remain just that ### PIPEDA and HIPAA compliant\\nWewill configure your instance inyour own secure cloud environment toensure PIPEDA and HIPAA compliance Wefollow encryption protocols, provide aBusiness Associate Agreement, and work with your info\\u2011security team toensure regulatory compliance ### GDPR compliant\\nBecause wedon’’t store any ofyour customer’’s data, itremains safely inyour control Furthermore, weprovide you with the tools toprotect, store, and remove this data toensure that your app isfully GDPR compliant Want tolearn more [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## ### ****\\n****\\n### ****\\n****\\n### ****\\n****\\n### ****\\n****\\n### ****\\n## Key features\\n* **Group calls:**Get agroup ofparticipants together in avirtual meeting sothat they can collaborate together regardless ofwhere they each are * **Call invitations:**Create and send links for users toconveniently join calls asand when they need * **Multiple video input:**Connect toexternal cameras\\n(e.g security camera, endoscope) and switch between camera input onacall * **High Security:**Enjoy private and protected real time communication with avideo conferencing tool built onhighly secure WebRTC * **Screen‑sharing:**Present inreal‑‑time bysharing your screen with others * **Mute/unmute audio**and**turn on/off video:**Calibrate your engagement byturning onand off your video camera and microphone asrequired * **Video recording:**Record and save the content ofyour conference toensure valuable communication isnever lost\",\n", + " \"* **Advanced features:**Integrate additional features and communication tools into your video conferencing platform such asfile sharing orreal‑‑time messaging for atruly versatile user experience Have more questions [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Video Conferencing vsPeer‑‑to‑‑Peer Calling\\n* * **Video Conferencing**\\n* **Peer‑to‑Peer (P2P)**\\n* **What is it?**\\n* Video conferencing isbuilt ontop ofWebRTC SFU technology All communication goes via acentralized conference media server * P2P WebRTC involves direct exchange ofmedia and data between peers without the presence ofacentralized server * **Main differences toconsider**\\n* * Possible tohave alarger number ofcallers atone time\\n* Advanced features including server‑side recording\\n* Involves higher costs\\n* * Lower cost ofoperation because you don’’t end uppaying for your user’’s bandwidth\\n* Cheaper toscale asthere is noneed topay for extra servers\\n* Supports upto4users atatime\\n* **Pricing and Set‑up**\\n* Available asanadd‑‑on Additional charges may apply\\n* * Available onour shared cloud and Enterprise plan\\n* Additional cost ifyou require your own TURN server toinitiate call\\nHave more questions [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Voice and Video Conferencing SDKs and API\\nQuickBlox software iscompatible with multiple devices and platforms including iOS, Android, and the web (Javascript) Wealso provide avideo conferencing Flutter SDK Check out our code samples and documentation toget started now [Link to code samples](https://docs.quickblox.com/docs/code-samples)\\n[Link to documentation](https://docs.quickblox.com/)\\n## []()\\n## FAQ: Video Conferencing\\n### What isavideo conferencing API AnAPI (application programming interface) isanintermediary set ofcode that enables different sorts ofsoftware tocommunicate with each other toexchange information Video conferencing API facilitates the necessary transmission ofdata between anapplication and communication backend that make video conferencing possible ### How doI integrate video conferencing into mywebsite Weprovide richdocumentationand guides toassist your implementation ofour video conferencing functionality into your application\",\n", + " \"Furthermore, weprovide all our enterprise customers with several hours ofintegration support each month, depending onthe size ofyour plan Speak toone ofourenterprise consultantsnow tofind out more ### How much does itcost tohost avideo conference Our video conferencing solution comes asanadd ontoyour QuickBlox plan for which you pay amonthly subscription There isnoset limit tohow many minutes orhours you can host each month but your overall capacity ofthe number ofvideo conferencing rooms and users will depend onyour plan Please speak toone ofourenterprise consultantstofind out more ### Does QuickBlox support video recording Yes, wesupport video recording This functionality isprovided asanadd-on Toget access tovideo recording and the associated documentation,please contactus ### Isyour video conferencing solution HIPAA compliant QuickBlox is experienced working with healthcare organizations and understands the regulatory requirements around HIPAA Please check our blog,HIPAA Compliant Video Conferencing Our video conferencing solution is built on WebRTC which has in-built encryption Furthermore, we offer a variety ofHIPAA compliant hostingoptions so that you can store your customer\\u2019s data wherever you need including your own private cloud and on-premises\",\n", + " \"### How long does ittake tobuild avideo conferencing App Our easy-to-integrate video conferencing SDKs and API and comprehensive documentation and code samples will save you months ofdevelopment time This ofcourse depends onthe skill set ofyour developers Ifyou are looking for aready-made conferencing solution immediately check-out our ready white-labelQ-Consultation app ## Additional resources\\n[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [Why Businesses benefit from Video Conferencing](https://quickblox.com/blog/why-businesses-benefit-from-video-conferencing/)\\nAnna S 17 Sep 2021\\n[Education](https://quickblox.com/blog/business/education/)[Video Calling](https://quickblox.com/blog/features/video-calling/)[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [Why remote work requires Video Communication](https://quickblox.com/blog/why-is-video-communication-important-for-your-business-today/)\\nAnton Dyachenko\\n24 Aug 2021\\n[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [HIPAA Compliant Video Conferencing](https://quickblox.com/blog/hipaa-compliant-video-conferencing/)\\nAnna S 3 Sep 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"costs\": {\n", + " \"ai_cost\": 0,\n", + " \"bytes_transferred_cost\": 0,\n", + " \"compute_cost\": 0.0001,\n", + " \"file_cost\": 0.0002,\n", + " \"total_cost\": 0.0004,\n", + " \"transform_cost\": 0.0001\n", + " },\n", + " \"error\": null,\n", + " \"status\": 200,\n", + " \"url\": \"https://quickblox.com/products/video-conferencing/\"\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 29 Type: finish_branch\n", + "output: [\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:41.730667Z\",\n", + " \"id\": \"423019a7-edb6-46b7-8ceb-7c3119291a05\",\n", + " \"jobs\": [\n", + " \"a0f52ea4-22a7-450a-b1e4-9dd2d0298712\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:41.742711Z\",\n", + " \"id\": \"70216ebe-403f-4678-ab42-38f7683a210a\",\n", + " \"jobs\": [\n", + " \"a843f467-5bfd-499d-84c5-08897b0fddfe\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:41.701808Z\",\n", + " \"id\": \"088127ca-16d3-4205-b467-7ef287a0e6d3\",\n", + " \"jobs\": [\n", + " \"53cdd242-f739-433b-a1c6-b8588cd15e88\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:43.787821Z\",\n", + " \"id\": \"dc29c41e-b14f-49ec-9f3c-e6541236978f\",\n", + " \"jobs\": [\n", + " \"50397563-77cc-411e-890f-3d9edd3290fe\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:45.328274Z\",\n", + " \"id\": \"11e9ea64-aab2-4eab-9a21-eb6f220fae3a\",\n", + " \"jobs\": [\n", + " \"31abb467-4345-44e3-9f01-d6b45506fccc\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:43.837671Z\",\n", + " \"id\": \"0fd0d3fa-b348-4387-a349-236756cde307\",\n", + " \"jobs\": [\n", + " \"52c6a65d-ad8c-45dc-b982-6abf43e254d6\"\n", + " ]\n", + " }\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 30 Type: finish_branch\n", + "output: [\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:41.730667Z\",\n", + " \"id\": \"423019a7-edb6-46b7-8ceb-7c3119291a05\",\n", + " \"jobs\": [\n", + " \"a0f52ea4-22a7-450a-b1e4-9dd2d0298712\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:41.742711Z\",\n", + " \"id\": \"70216ebe-403f-4678-ab42-38f7683a210a\",\n", + " \"jobs\": [\n", + " \"a843f467-5bfd-499d-84c5-08897b0fddfe\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:41.701808Z\",\n", + " \"id\": \"088127ca-16d3-4205-b467-7ef287a0e6d3\",\n", + " \"jobs\": [\n", + " \"53cdd242-f739-433b-a1c6-b8588cd15e88\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:43.787821Z\",\n", + " \"id\": \"dc29c41e-b14f-49ec-9f3c-e6541236978f\",\n", + " \"jobs\": [\n", + " \"50397563-77cc-411e-890f-3d9edd3290fe\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:45.328274Z\",\n", + " \"id\": \"11e9ea64-aab2-4eab-9a21-eb6f220fae3a\",\n", + " \"jobs\": [\n", + " \"31abb467-4345-44e3-9f01-d6b45506fccc\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:43.837671Z\",\n", + " \"id\": \"0fd0d3fa-b348-4387-a349-236756cde307\",\n", + " \"jobs\": [\n", + " \"52c6a65d-ad8c-45dc-b982-6abf43e254d6\"\n", + " ]\n", + " }\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 31 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:43.837671Z\",\n", + " \"id\": \"0fd0d3fa-b348-4387-a349-236756cde307\",\n", + " \"jobs\": [\n", + " \"52c6a65d-ad8c-45dc-b982-6abf43e254d6\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 32 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:45.328274Z\",\n", + " \"id\": \"11e9ea64-aab2-4eab-9a21-eb6f220fae3a\",\n", + " \"jobs\": [\n", + " \"31abb467-4345-44e3-9f01-d6b45506fccc\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 33 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:43.787821Z\",\n", + " \"id\": \"dc29c41e-b14f-49ec-9f3c-e6541236978f\",\n", + " \"jobs\": [\n", + " \"50397563-77cc-411e-890f-3d9edd3290fe\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 34 Type: init_branch\n", + "output: \"* Hosted onyour own dedicated servers inyour privately owned datacenter\\n* Granting you total control ofyour ePHI and chathistory\\n[Find out more](https://quickblox.com/enterprise/#get-enterprise)\\n## HIPAA Compliant Cloud Hosting\\nThere are avariety ofcloud hosting providers that offer HIPAA compliant environments QuickBlox can deploy software with anyone ofthese and more:\\nHosting with one ofthese cloud providersdoes notguarantee HIPAA compliance Youalso need toensure your application and software meet the safeguards outlined inthe HIPAA securityrule **Work with apartner like QuickBlox tomake sure you’’re covered.**\\n## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[On-Premise hosting](https://quickblox.com/hosting/on-premise/)\\n## Frequently Asked Questions\\n### What isHIPAA compliant hosting Any digital healthcare application that contains ePHI needs tobehosted onacloud infrastructure that complies with the technical, administrative, and physical safeguards outlined byHIPAA These safeguards are designed toprotect the integrity ofthe data and tocontrol who has access tothis data HIPAA compliant hosting requirements include encrypted data intransit and storage, access controls, person orentity authentication tools, and more ### Who needs HIPAA compliance Healthcare providers\\u2014 referred toasthe \\u00abcovered entity\\u00bb\\u2014 must comply with HIPAA, but equally their \\u00abbusiness associates\\u00bb who come into contact with patient data when providing services toahealthcare organization are also covered bythis legislation This means any cloud service provider, CPaaS provider, ormedical app developer who are inany way involved instoring, processes, ortransmitting PHI, are considered a \\u2019business associate\\u2019 and must comply with HIPAA ### What isPHI and ePHI Any medical data that contains individually identifiable health information about apatient (e.g name, address, date ofbirth, social security number) isreferred toasprotected health information (PHI), orwhen stored electronically ePHI There isanabundance ofmedical records including bills from doctors, emails, MRI scans, blood test results etc that fall under the rubric ofPHI/ePHI ### How much does HIPAA compliant hosting cost\\nThe chunk is part of a section detailing QuickBlox's HIPAA-compliant hosting solutions, emphasizing the importance of selecting a compliant cloud infrastructure for healthcare applications. It highlights the need for secure data management, outlines the responsibilities of healthcare providers and their associates, and provides links to explore different hosting options and address frequently asked questions about HIPAA compliance.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 35 Type: init_branch\n", + "output: \"The need for additional security enhancements such asdatabase encryption and software customization for extra monitoring &&intrusion detection means ahigher cost for HIPAA compliant hosting Encrypted HIPAA hosting onour shared cloud starts at$399/mo ### Which cloud providers are HIPAA compliant There are several cloud hosting providers who provide aninfrastructure that can beHIPAA compliant (e.g AWS, GCP, Azure), however, you are still responsible for configuring your software tosatisfy the HIPAA security rule Check tosee ifthe cloud provider will sign aBAA agreement and choose aservice provider like QuickBlox who can ensure aHIPAA compliant solution ### What are the penalties for non-compliance Penalties depend onthe severity ofthe breach, whether itwas intentional ornot They range from $100 to$50,000 per breach ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [HIPAA Compliant Cloud Hosting: What does it mean?](https://quickblox.com/blog/hipaa-compliant-cloud-hosting-what-does-it-mean/)\\nAnna S 31 Dec 2021\\n[Azure](https://quickblox.com/blog/hosting/azure/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Microsoft Azure HIPAA Compliant?](https://quickblox.com/blog/is-microsoft-azure-hipaa-compliant/)\\nAnna S 12 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Google Cloud Platform (GCP)](https://quickblox.com/blog/hosting/google-cloud-platform-gcp/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Google Cloud Platform HIPAA Compliant?](https://quickblox.com/blog/is-google-cloud-platform-hipaa-compliant/)\\nAnna S 1 Oct 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd\\nThe chunk provides detailed information on HIPAA compliant hosting services offered by QuickBlox, including security enhancements, compliant cloud providers, penalties for non-compliance, and additional resources for understanding HIPAA requirements. It also links to various QuickBlox products and solutions, emphasizing the company's capability to provide secure, HIPAA-compliant communication solutions for healthcare applications.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 36 Type: init_branch\n", + "output: \"trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\\nThe chunk provides legal and privacy information related to QuickBlox, including links to terms of use, privacy policy, and cookie policy. It also lists social media links and describes the use of cookies on the website. This section is part of the footer, providing essential policy details and ways to stay updated with QuickBlox through social media subscriptions.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 37 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:41.742711Z\",\n", + " \"id\": \"70216ebe-403f-4678-ab42-38f7683a210a\",\n", + " \"jobs\": [\n", + " \"a843f467-5bfd-499d-84c5-08897b0fddfe\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 38 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:41.730667Z\",\n", + " \"id\": \"423019a7-edb6-46b7-8ceb-7c3119291a05\",\n", + " \"jobs\": [\n", + " \"a0f52ea4-22a7-450a-b1e4-9dd2d0298712\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 39 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:41.701808Z\",\n", + " \"id\": \"088127ca-16d3-4205-b467-7ef287a0e6d3\",\n", + " \"jobs\": [\n", + " \"53cdd242-f739-433b-a1c6-b8588cd15e88\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 40 Type: init_branch\n", + "output: \"* Virus scanning software toautomatically scan, tag, and notify you ofinfected files and malware * Web Application Firewall (WAF) tosecurely control web traffic, blocking spam bots from consuming resources, skewing metrics, and causing downtime onyour healthcare communication application ## HIPAA Compliant Video Hosting\\nConnect patients and doctors together with HIPAA compliant audio &&video calling and video conferencing, built onWebRTC and available with the QuickBlox HIPAA Enterprise Plan\\n### Dedicated TURN Server\\nDedicated WebRTC video calling traffic relay server for video calling through firewalls, bypassing NAT, and connecting geographically dispersed users [Learn more](https://quickblox.com/products/voice-and-video-calling/)\\n### Dedicated Conference Server\\nWeoffer HIPAA video conference hosting with adedicated conference server Enjoy high quality conference calls for multiple simultaneous users onaservice server that you control [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Conference Call Recording\\nConference call recording functionality tosave your video conferences Enables you tostore, access, and share video healthcare communications securely onyour dedicated server [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Telehealth Ready Solution: Q‑Consultation\\nWeoffer aHIPAA compliant virtual waiting room with tele-consultation app Fully customizable, packed with features, and works onany device and the web [Learn more](https://quickblox.com/products/q-consultation/)\\n## HIPAA Compliant Hosting Plans\\nQuickBlox provides arange ofplans depending onthe size ofyour organization and budget All our HIPAA plans provide full data encryption and come with aBusiness Associates Agreement ### HIPAA (Shared) Cloud Plan (starts at**$399/mo**)\\nSuitable for smaller organizations for POCs (proof ofconcept) and MVP (minimal viable product) use-cases that require data encryption but have alimited budget * Software ishosted onour QuickBlox AWS multi-tenant sharedserver\\n* Total user limit:**5000**\\n* File size limit:**50MB**\\n* Support byticketing system\\n### HIPAA Enterprise Plan (startsat**$899/mo**)\\nSuitable for production services granting the customer complete control over their user data, customization, technicalsupport,andSLA * Can behosted onQuickBlox’’s own managed cloud account orincustomer’’s own cloud account with preferred cloud service provider including Amazon Web Services, Google Cloud Platform, Microsoft Azure and others * Personal Account Manager, SLA with uptimeguarantee\\n* Optional Add-ons:\\n* - High Availability and Disaster Recovery (HA/DR)solution\\n* - Security enhancements (e.g.Graylog,OSSEC)\\n* - Dedicated Turn server, Conference callserver\\n### HIPAA On-Premises\\nSuitable for organizations who desire optimal security, require communications toremain within their own private network, and who have their own DevOps and on-premises data center\\nThe chunk is part of a section detailing QuickBlox's HIPAA-compliant solutions, specifically focusing on video hosting and various hosting plans tailored for healthcare communication applications. It discusses features like virus scanning, web application firewall, and dedicated servers for video calls, as well as different hosting plans (Shared Cloud, Enterprise, and On-Premises) with features like data encryption, user limits, and support options, emphasizing secure telehealth and video conferencing solutions.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 41 Type: init_branch\n", + "output: \"Weconfigure your dedicated instance sothat itmeets HIPAA-compliant hosting requirements QuickBlox can also host for you inour own HIPAA compliant account #### Fully Encrypted Server Configuration\\nWith QuickBlox, data isencrypted intransit and atrest Weoffer full encryption ofuser databases, files/content, and connections which means ePHI, communication history, and user data issafe and secure #### Customization ofSoftware tosupport HIPAA Technical Safeguards\\nOur back-end platform can becustomized tosupport numerous security features,e.g * access control via unique usernames and passwords toprevent unauthorized access\\n* person orentity authentication tools such astwo-factor authentication\\n* anonymous sessions with automatic logoff procedures\\n#### AFully Managed Service\\nOur Enterprise Plan provides afully managed service with dedicated maintenance and real-time monitoring Weoffer aService Level Agreement (SLA) with uptime guarantee #### Provision ofBusiness Associate Agreement\\nWeprovide our healthcare customers with aBAA Bysigning this agreement wedemonstrate our knowledge ofHIPAA compliance rules and our experience with supporting compliant healthcare communication solutions ## Advanced Features\\nWeoffer anarray ofdata protection tools tosafeguard your instance without your data ever leaving your server\\n### High Availability and Disaster Recovery(HA/DR)\\n* HA/DR keeps your applications running inthe event ofany system issues, soyour users never lose messaging and calling functionalities * AHigh Availability solution replicates your communication infrastructure toensure constant availability This isideal for critical business solutions like healthcare * Our Disaster Recovery plan provides full backup management toensure that sensitive data can befully recovered inthe worst case scenario ofinterrupted orcompromised services ### Software integration for enhanced security standards\\n* Diligent monitoring ofyour cloud environment with Graylog, alog storage and management tool that allows your engineers toeasily manage logs and structured analytical data all inone place * Intrusion detection with OSSEC, ahost-based system that performs log analysis, integrity checking, registry monitoring, rootlet detection, time-based alerting, and active response\\nThis chunk discusses QuickBlox's HIPAA-compliant hosting solutions, focusing on fully encrypted server configurations, customizable software for HIPAA technical safeguards, and a fully managed service with a Business Associate Agreement (BAA). It highlights advanced features like High Availability and Disaster Recovery (HA/DR) and enhanced security standards, including monitoring tools and intrusion detection, to ensure data protection and compliance with HIPAA rules in healthcare communication solutions.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 42 Type: init_branch\n", + "output: \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# HIPAA Compliant Hosting\\nOur healthcare communication solutions are designed with HIPAA compliance inmind Build and deliver powerful HIPAA chat apps inthe full confidence that sensitive ePHI remains secure and compliance requirements are satisfied ## What isHIPAA Compliance HIPAA (Health Insurance Portability and Accountability Act of1996) sets national standards for safeguarding protected health information (PHI) Any business that collects, stores, ortransmits PHI isrequired tocomply with HIPAA physical, technical, and administrative safeguards Failure todosocan result incompromised patient data and hefty penalties for the involved party ## Why QuickBlox ### Experienced inHealthcare\\nWeare experienced working with the Healthcare industry and HealthTech Weprovide HIPAA compliant hosting solutions configured for enhanced data privacy and inaccordance with HIPAA security rules ### Host Anywhere\\nWeunderstand your need for data security that’’s why wedeploy our software wherever you need, including inyour own cloud account with ahosting provider ofyour choice sothat sensitive PHI remains firmly inyour ownership and control ### Enterprise Ready\\nWebuild enterprise ready solutions Our skilled DevOps team can provide anarray ofsoftware tools, integrations, and configurations toensure enterprise grade security and support for your HIPAA compliant solution [Speak to us](https://quickblox.com/enterprise/#get-enterprise)\\n## QuickBlox HIPAA Compliant HostingSolutions\\nThe easiest way tosatisfy HIPAA requirements istopartner with aHIPAA compliant communication solutions provider, like QuickBlox Wehave asolid history providing enterprise solutions for healthcare ### Key Features\\n#### Your choice ofHIPAA Compliant Cloud\\nSoftware can bedeployed toyour preferred hosting environment including Amazon Web Services, Google Cloud Platform, and Microsoft Azure\\nThis chunk provides an overview of QuickBlox's communication tools and solutions, highlighting SDKs, APIs, AI features, white-label solutions, industry-specific applications, enterprise services, and developer resources. It also emphasizes QuickBlox's capabilities in building communication features for apps, offering HIPAA-compliant hosting, and providing customizable solutions for industries like healthcare, finance, and education.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 43 Type: step\n", + "output: {\n", + " \"final_chunks\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# HIPAA Compliant Hosting\\nOur healthcare communication solutions are designed with HIPAA compliance inmind Build and deliver powerful HIPAA chat apps inthe full confidence that sensitive ePHI remains secure and compliance requirements are satisfied ## What isHIPAA Compliance HIPAA (Health Insurance Portability and Accountability Act of1996) sets national standards for safeguarding protected health information (PHI) Any business that collects, stores, ortransmits PHI isrequired tocomply with HIPAA physical, technical, and administrative safeguards Failure todosocan result incompromised patient data and hefty penalties for the involved party ## Why QuickBlox ### Experienced inHealthcare\\nWeare experienced working with the Healthcare industry and HealthTech Weprovide HIPAA compliant hosting solutions configured for enhanced data privacy and inaccordance with HIPAA security rules ### Host Anywhere\\nWeunderstand your need for data security that’’s why wedeploy our software wherever you need, including inyour own cloud account with ahosting provider ofyour choice sothat sensitive PHI remains firmly inyour ownership and control ### Enterprise Ready\\nWebuild enterprise ready solutions Our skilled DevOps team can provide anarray ofsoftware tools, integrations, and configurations toensure enterprise grade security and support for your HIPAA compliant solution [Speak to us](https://quickblox.com/enterprise/#get-enterprise)\\n## QuickBlox HIPAA Compliant HostingSolutions\\nThe easiest way tosatisfy HIPAA requirements istopartner with aHIPAA compliant communication solutions provider, like QuickBlox Wehave asolid history providing enterprise solutions for healthcare ### Key Features\\n#### Your choice ofHIPAA Compliant Cloud\\nSoftware can bedeployed toyour preferred hosting environment including Amazon Web Services, Google Cloud Platform, and Microsoft Azure\\nThis chunk provides an overview of QuickBlox's communication tools and solutions, highlighting SDKs, APIs, AI features, white-label solutions, industry-specific applications, enterprise services, and developer resources. It also emphasizes QuickBlox's capabilities in building communication features for apps, offering HIPAA-compliant hosting, and providing customizable solutions for industries like healthcare, finance, and education.\",\n", + " \"Weconfigure your dedicated instance sothat itmeets HIPAA-compliant hosting requirements QuickBlox can also host for you inour own HIPAA compliant account #### Fully Encrypted Server Configuration\\nWith QuickBlox, data isencrypted intransit and atrest Weoffer full encryption ofuser databases, files/content, and connections which means ePHI, communication history, and user data issafe and secure #### Customization ofSoftware tosupport HIPAA Technical Safeguards\\nOur back-end platform can becustomized tosupport numerous security features,e.g * access control via unique usernames and passwords toprevent unauthorized access\\n* person orentity authentication tools such astwo-factor authentication\\n* anonymous sessions with automatic logoff procedures\\n#### AFully Managed Service\\nOur Enterprise Plan provides afully managed service with dedicated maintenance and real-time monitoring Weoffer aService Level Agreement (SLA) with uptime guarantee #### Provision ofBusiness Associate Agreement\\nWeprovide our healthcare customers with aBAA Bysigning this agreement wedemonstrate our knowledge ofHIPAA compliance rules and our experience with supporting compliant healthcare communication solutions ## Advanced Features\\nWeoffer anarray ofdata protection tools tosafeguard your instance without your data ever leaving your server\\n### High Availability and Disaster Recovery(HA/DR)\\n* HA/DR keeps your applications running inthe event ofany system issues, soyour users never lose messaging and calling functionalities * AHigh Availability solution replicates your communication infrastructure toensure constant availability This isideal for critical business solutions like healthcare * Our Disaster Recovery plan provides full backup management toensure that sensitive data can befully recovered inthe worst case scenario ofinterrupted orcompromised services ### Software integration for enhanced security standards\\n* Diligent monitoring ofyour cloud environment with Graylog, alog storage and management tool that allows your engineers toeasily manage logs and structured analytical data all inone place * Intrusion detection with OSSEC, ahost-based system that performs log analysis, integrity checking, registry monitoring, rootlet detection, time-based alerting, and active response\\nThis chunk discusses QuickBlox's HIPAA-compliant hosting solutions, focusing on fully encrypted server configurations, customizable software for HIPAA technical safeguards, and a fully managed service with a Business Associate Agreement (BAA). It highlights advanced features like High Availability and Disaster Recovery (HA/DR) and enhanced security standards, including monitoring tools and intrusion detection, to ensure data protection and compliance with HIPAA rules in healthcare communication solutions.\",\n", + " \"* Virus scanning software toautomatically scan, tag, and notify you ofinfected files and malware * Web Application Firewall (WAF) tosecurely control web traffic, blocking spam bots from consuming resources, skewing metrics, and causing downtime onyour healthcare communication application ## HIPAA Compliant Video Hosting\\nConnect patients and doctors together with HIPAA compliant audio &&video calling and video conferencing, built onWebRTC and available with the QuickBlox HIPAA Enterprise Plan\\n### Dedicated TURN Server\\nDedicated WebRTC video calling traffic relay server for video calling through firewalls, bypassing NAT, and connecting geographically dispersed users [Learn more](https://quickblox.com/products/voice-and-video-calling/)\\n### Dedicated Conference Server\\nWeoffer HIPAA video conference hosting with adedicated conference server Enjoy high quality conference calls for multiple simultaneous users onaservice server that you control [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Conference Call Recording\\nConference call recording functionality tosave your video conferences Enables you tostore, access, and share video healthcare communications securely onyour dedicated server [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Telehealth Ready Solution: Q‑Consultation\\nWeoffer aHIPAA compliant virtual waiting room with tele-consultation app Fully customizable, packed with features, and works onany device and the web [Learn more](https://quickblox.com/products/q-consultation/)\\n## HIPAA Compliant Hosting Plans\\nQuickBlox provides arange ofplans depending onthe size ofyour organization and budget All our HIPAA plans provide full data encryption and come with aBusiness Associates Agreement ### HIPAA (Shared) Cloud Plan (starts at**$399/mo**)\\nSuitable for smaller organizations for POCs (proof ofconcept) and MVP (minimal viable product) use-cases that require data encryption but have alimited budget * Software ishosted onour QuickBlox AWS multi-tenant sharedserver\\n* Total user limit:**5000**\\n* File size limit:**50MB**\\n* Support byticketing system\\n### HIPAA Enterprise Plan (startsat**$899/mo**)\\nSuitable for production services granting the customer complete control over their user data, customization, technicalsupport,andSLA * Can behosted onQuickBlox’’s own managed cloud account orincustomer’’s own cloud account with preferred cloud service provider including Amazon Web Services, Google Cloud Platform, Microsoft Azure and others * Personal Account Manager, SLA with uptimeguarantee\\n* Optional Add-ons:\\n* - High Availability and Disaster Recovery (HA/DR)solution\\n* - Security enhancements (e.g.Graylog,OSSEC)\\n* - Dedicated Turn server, Conference callserver\\n### HIPAA On-Premises\\nSuitable for organizations who desire optimal security, require communications toremain within their own private network, and who have their own DevOps and on-premises data center\\nThe chunk is part of a section detailing QuickBlox's HIPAA-compliant solutions, specifically focusing on video hosting and various hosting plans tailored for healthcare communication applications. It discusses features like virus scanning, web application firewall, and dedicated servers for video calls, as well as different hosting plans (Shared Cloud, Enterprise, and On-Premises) with features like data encryption, user limits, and support options, emphasizing secure telehealth and video conferencing solutions.\",\n", + " \"* Hosted onyour own dedicated servers inyour privately owned datacenter\\n* Granting you total control ofyour ePHI and chathistory\\n[Find out more](https://quickblox.com/enterprise/#get-enterprise)\\n## HIPAA Compliant Cloud Hosting\\nThere are avariety ofcloud hosting providers that offer HIPAA compliant environments QuickBlox can deploy software with anyone ofthese and more:\\nHosting with one ofthese cloud providersdoes notguarantee HIPAA compliance Youalso need toensure your application and software meet the safeguards outlined inthe HIPAA securityrule **Work with apartner like QuickBlox tomake sure you’’re covered.**\\n## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[On-Premise hosting](https://quickblox.com/hosting/on-premise/)\\n## Frequently Asked Questions\\n### What isHIPAA compliant hosting Any digital healthcare application that contains ePHI needs tobehosted onacloud infrastructure that complies with the technical, administrative, and physical safeguards outlined byHIPAA These safeguards are designed toprotect the integrity ofthe data and tocontrol who has access tothis data HIPAA compliant hosting requirements include encrypted data intransit and storage, access controls, person orentity authentication tools, and more ### Who needs HIPAA compliance Healthcare providers\\u2014 referred toasthe \\u00abcovered entity\\u00bb\\u2014 must comply with HIPAA, but equally their \\u00abbusiness associates\\u00bb who come into contact with patient data when providing services toahealthcare organization are also covered bythis legislation This means any cloud service provider, CPaaS provider, ormedical app developer who are inany way involved instoring, processes, ortransmitting PHI, are considered a \\u2019business associate\\u2019 and must comply with HIPAA ### What isPHI and ePHI Any medical data that contains individually identifiable health information about apatient (e.g name, address, date ofbirth, social security number) isreferred toasprotected health information (PHI), orwhen stored electronically ePHI There isanabundance ofmedical records including bills from doctors, emails, MRI scans, blood test results etc that fall under the rubric ofPHI/ePHI ### How much does HIPAA compliant hosting cost\\nThe chunk is part of a section detailing QuickBlox's HIPAA-compliant hosting solutions, emphasizing the importance of selecting a compliant cloud infrastructure for healthcare applications. It highlights the need for secure data management, outlines the responsibilities of healthcare providers and their associates, and provides links to explore different hosting options and address frequently asked questions about HIPAA compliance.\",\n", + " \"The need for additional security enhancements such asdatabase encryption and software customization for extra monitoring &&intrusion detection means ahigher cost for HIPAA compliant hosting Encrypted HIPAA hosting onour shared cloud starts at$399/mo ### Which cloud providers are HIPAA compliant There are several cloud hosting providers who provide aninfrastructure that can beHIPAA compliant (e.g AWS, GCP, Azure), however, you are still responsible for configuring your software tosatisfy the HIPAA security rule Check tosee ifthe cloud provider will sign aBAA agreement and choose aservice provider like QuickBlox who can ensure aHIPAA compliant solution ### What are the penalties for non-compliance Penalties depend onthe severity ofthe breach, whether itwas intentional ornot They range from $100 to$50,000 per breach ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [HIPAA Compliant Cloud Hosting: What does it mean?](https://quickblox.com/blog/hipaa-compliant-cloud-hosting-what-does-it-mean/)\\nAnna S 31 Dec 2021\\n[Azure](https://quickblox.com/blog/hosting/azure/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Microsoft Azure HIPAA Compliant?](https://quickblox.com/blog/is-microsoft-azure-hipaa-compliant/)\\nAnna S 12 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Google Cloud Platform (GCP)](https://quickblox.com/blog/hosting/google-cloud-platform-gcp/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Google Cloud Platform HIPAA Compliant?](https://quickblox.com/blog/is-google-cloud-platform-hipaa-compliant/)\\nAnna S 1 Oct 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd\\nThe chunk provides detailed information on HIPAA compliant hosting services offered by QuickBlox, including security enhancements, compliant cloud providers, penalties for non-compliance, and additional resources for understanding HIPAA requirements. It also links to various QuickBlox products and solutions, emphasizing the company's capability to provide secure, HIPAA-compliant communication solutions for healthcare applications.\",\n", + " \"trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\\nThe chunk provides legal and privacy information related to QuickBlox, including links to terms of use, privacy policy, and cookie policy. It also lists social media links and describes the use of cookies on the website. This section is part of the footer, providing essential policy details and ways to stay updated with QuickBlox through social media subscriptions.\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 44 Type: step\n", + "output: [\n", + " \"This chunk provides an overview of QuickBlox's communication tools and solutions, highlighting SDKs, APIs, AI features, white-label solutions, industry-specific applications, enterprise services, and developer resources. It also emphasizes QuickBlox's capabilities in building communication features for apps, offering HIPAA-compliant hosting, and providing customizable solutions for industries like healthcare, finance, and education.\",\n", + " \"This chunk discusses QuickBlox's HIPAA-compliant hosting solutions, focusing on fully encrypted server configurations, customizable software for HIPAA technical safeguards, and a fully managed service with a Business Associate Agreement (BAA). It highlights advanced features like High Availability and Disaster Recovery (HA/DR) and enhanced security standards, including monitoring tools and intrusion detection, to ensure data protection and compliance with HIPAA rules in healthcare communication solutions.\",\n", + " \"The chunk is part of a section detailing QuickBlox's HIPAA-compliant solutions, specifically focusing on video hosting and various hosting plans tailored for healthcare communication applications. It discusses features like virus scanning, web application firewall, and dedicated servers for video calls, as well as different hosting plans (Shared Cloud, Enterprise, and On-Premises) with features like data encryption, user limits, and support options, emphasizing secure telehealth and video conferencing solutions.\",\n", + " \"The chunk is part of a section detailing QuickBlox's HIPAA-compliant hosting solutions, emphasizing the importance of selecting a compliant cloud infrastructure for healthcare applications. It highlights the need for secure data management, outlines the responsibilities of healthcare providers and their associates, and provides links to explore different hosting options and address frequently asked questions about HIPAA compliance.\",\n", + " \"The chunk provides detailed information on HIPAA compliant hosting services offered by QuickBlox, including security enhancements, compliant cloud providers, penalties for non-compliance, and additional resources for understanding HIPAA requirements. It also links to various QuickBlox products and solutions, emphasizing the company's capability to provide secure, HIPAA-compliant communication solutions for healthcare applications.\",\n", + " \"The chunk provides legal and privacy information related to QuickBlox, including links to terms of use, privacy policy, and cookie policy. It also lists social media links and describes the use of cookies on the website. This section is part of the footer, providing essential policy details and ways to stay updated with QuickBlox through social media subscriptions.\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 45 Type: finish_branch\n", + "output: \"The chunk provides legal and privacy information related to QuickBlox, including links to terms of use, privacy policy, and cookie policy. It also lists social media links and describes the use of cookies on the website. This section is part of the footer, providing essential policy details and ways to stay updated with QuickBlox through social media subscriptions.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 46 Type: finish_branch\n", + "output: \"The chunk is part of a section detailing QuickBlox's HIPAA-compliant hosting solutions, emphasizing the importance of selecting a compliant cloud infrastructure for healthcare applications. It highlights the need for secure data management, outlines the responsibilities of healthcare providers and their associates, and provides links to explore different hosting options and address frequently asked questions about HIPAA compliance.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 47 Type: finish_branch\n", + "output: \"The chunk provides detailed information on HIPAA compliant hosting services offered by QuickBlox, including security enhancements, compliant cloud providers, penalties for non-compliance, and additional resources for understanding HIPAA requirements. It also links to various QuickBlox products and solutions, emphasizing the company's capability to provide secure, HIPAA-compliant communication solutions for healthcare applications.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 48 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# HIPAA Compliant Hosting\\nOur healthcare communication solutions are designed with HIPAA compliance inmind Build and deliver powerful HIPAA chat apps inthe full confidence that sensitive ePHI remains secure and compliance requirements are satisfied ## What isHIPAA Compliance HIPAA (Health Insurance Portability and Accountability Act of1996) sets national standards for safeguarding protected health information (PHI) Any business that collects, stores, ortransmits PHI isrequired tocomply with HIPAA physical, technical, and administrative safeguards Failure todosocan result incompromised patient data and hefty penalties for the involved party ## Why QuickBlox ### Experienced inHealthcare\\nWeare experienced working with the Healthcare industry and HealthTech Weprovide HIPAA compliant hosting solutions configured for enhanced data privacy and inaccordance with HIPAA security rules ### Host Anywhere\\nWeunderstand your need for data security that’’s why wedeploy our software wherever you need, including inyour own cloud account with ahosting provider ofyour choice sothat sensitive PHI remains firmly inyour ownership and control ### Enterprise Ready\\nWebuild enterprise ready solutions Our skilled DevOps team can provide anarray ofsoftware tools, integrations, and configurations toensure enterprise grade security and support for your HIPAA compliant solution [Speak to us](https://quickblox.com/enterprise/#get-enterprise)\\n## QuickBlox HIPAA Compliant HostingSolutions\\nThe easiest way tosatisfy HIPAA requirements istopartner with aHIPAA compliant communication solutions provider, like QuickBlox Wehave asolid history providing enterprise solutions for healthcare ### Key Features\\n#### Your choice ofHIPAA Compliant Cloud\\nSoftware can bedeployed toyour preferred hosting environment including Amazon Web Services, Google Cloud Platform, and Microsoft Azure\",\n", + " \"Weconfigure your dedicated instance sothat itmeets HIPAA-compliant hosting requirements QuickBlox can also host for you inour own HIPAA compliant account #### Fully Encrypted Server Configuration\\nWith QuickBlox, data isencrypted intransit and atrest Weoffer full encryption ofuser databases, files/content, and connections which means ePHI, communication history, and user data issafe and secure #### Customization ofSoftware tosupport HIPAA Technical Safeguards\\nOur back-end platform can becustomized tosupport numerous security features,e.g * access control via unique usernames and passwords toprevent unauthorized access\\n* person orentity authentication tools such astwo-factor authentication\\n* anonymous sessions with automatic logoff procedures\\n#### AFully Managed Service\\nOur Enterprise Plan provides afully managed service with dedicated maintenance and real-time monitoring Weoffer aService Level Agreement (SLA) with uptime guarantee #### Provision ofBusiness Associate Agreement\\nWeprovide our healthcare customers with aBAA Bysigning this agreement wedemonstrate our knowledge ofHIPAA compliance rules and our experience with supporting compliant healthcare communication solutions ## Advanced Features\\nWeoffer anarray ofdata protection tools tosafeguard your instance without your data ever leaving your server\\n### High Availability and Disaster Recovery(HA/DR)\\n* HA/DR keeps your applications running inthe event ofany system issues, soyour users never lose messaging and calling functionalities * AHigh Availability solution replicates your communication infrastructure toensure constant availability This isideal for critical business solutions like healthcare * Our Disaster Recovery plan provides full backup management toensure that sensitive data can befully recovered inthe worst case scenario ofinterrupted orcompromised services ### Software integration for enhanced security standards\\n* Diligent monitoring ofyour cloud environment with Graylog, alog storage and management tool that allows your engineers toeasily manage logs and structured analytical data all inone place * Intrusion detection with OSSEC, ahost-based system that performs log analysis, integrity checking, registry monitoring, rootlet detection, time-based alerting, and active response\",\n", + " \"* Virus scanning software toautomatically scan, tag, and notify you ofinfected files and malware * Web Application Firewall (WAF) tosecurely control web traffic, blocking spam bots from consuming resources, skewing metrics, and causing downtime onyour healthcare communication application ## HIPAA Compliant Video Hosting\\nConnect patients and doctors together with HIPAA compliant audio &&video calling and video conferencing, built onWebRTC and available with the QuickBlox HIPAA Enterprise Plan\\n### Dedicated TURN Server\\nDedicated WebRTC video calling traffic relay server for video calling through firewalls, bypassing NAT, and connecting geographically dispersed users [Learn more](https://quickblox.com/products/voice-and-video-calling/)\\n### Dedicated Conference Server\\nWeoffer HIPAA video conference hosting with adedicated conference server Enjoy high quality conference calls for multiple simultaneous users onaservice server that you control [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Conference Call Recording\\nConference call recording functionality tosave your video conferences Enables you tostore, access, and share video healthcare communications securely onyour dedicated server [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Telehealth Ready Solution: Q‑Consultation\\nWeoffer aHIPAA compliant virtual waiting room with tele-consultation app Fully customizable, packed with features, and works onany device and the web [Learn more](https://quickblox.com/products/q-consultation/)\\n## HIPAA Compliant Hosting Plans\\nQuickBlox provides arange ofplans depending onthe size ofyour organization and budget All our HIPAA plans provide full data encryption and come with aBusiness Associates Agreement ### HIPAA (Shared) Cloud Plan (starts at**$399/mo**)\\nSuitable for smaller organizations for POCs (proof ofconcept) and MVP (minimal viable product) use-cases that require data encryption but have alimited budget * Software ishosted onour QuickBlox AWS multi-tenant sharedserver\\n* Total user limit:**5000**\\n* File size limit:**50MB**\\n* Support byticketing system\\n### HIPAA Enterprise Plan (startsat**$899/mo**)\\nSuitable for production services granting the customer complete control over their user data, customization, technicalsupport,andSLA * Can behosted onQuickBlox’’s own managed cloud account orincustomer’’s own cloud account with preferred cloud service provider including Amazon Web Services, Google Cloud Platform, Microsoft Azure and others * Personal Account Manager, SLA with uptimeguarantee\\n* Optional Add-ons:\\n* - High Availability and Disaster Recovery (HA/DR)solution\\n* - Security enhancements (e.g.Graylog,OSSEC)\\n* - Dedicated Turn server, Conference callserver\\n### HIPAA On-Premises\\nSuitable for organizations who desire optimal security, require communications toremain within their own private network, and who have their own DevOps and on-premises data center\",\n", + " \"* Hosted onyour own dedicated servers inyour privately owned datacenter\\n* Granting you total control ofyour ePHI and chathistory\\n[Find out more](https://quickblox.com/enterprise/#get-enterprise)\\n## HIPAA Compliant Cloud Hosting\\nThere are avariety ofcloud hosting providers that offer HIPAA compliant environments QuickBlox can deploy software with anyone ofthese and more:\\nHosting with one ofthese cloud providersdoes notguarantee HIPAA compliance Youalso need toensure your application and software meet the safeguards outlined inthe HIPAA securityrule **Work with apartner like QuickBlox tomake sure you’’re covered.**\\n## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[On-Premise hosting](https://quickblox.com/hosting/on-premise/)\\n## Frequently Asked Questions\\n### What isHIPAA compliant hosting Any digital healthcare application that contains ePHI needs tobehosted onacloud infrastructure that complies with the technical, administrative, and physical safeguards outlined byHIPAA These safeguards are designed toprotect the integrity ofthe data and tocontrol who has access tothis data HIPAA compliant hosting requirements include encrypted data intransit and storage, access controls, person orentity authentication tools, and more ### Who needs HIPAA compliance Healthcare providers\\u2014 referred toasthe \\u00abcovered entity\\u00bb\\u2014 must comply with HIPAA, but equally their \\u00abbusiness associates\\u00bb who come into contact with patient data when providing services toahealthcare organization are also covered bythis legislation This means any cloud service provider, CPaaS provider, ormedical app developer who are inany way involved instoring, processes, ortransmitting PHI, are considered a \\u2019business associate\\u2019 and must comply with HIPAA ### What isPHI and ePHI Any medical data that contains individually identifiable health information about apatient (e.g name, address, date ofbirth, social security number) isreferred toasprotected health information (PHI), orwhen stored electronically ePHI There isanabundance ofmedical records including bills from doctors, emails, MRI scans, blood test results etc that fall under the rubric ofPHI/ePHI ### How much does HIPAA compliant hosting cost\",\n", + " \"The need for additional security enhancements such asdatabase encryption and software customization for extra monitoring &&intrusion detection means ahigher cost for HIPAA compliant hosting Encrypted HIPAA hosting onour shared cloud starts at$399/mo ### Which cloud providers are HIPAA compliant There are several cloud hosting providers who provide aninfrastructure that can beHIPAA compliant (e.g AWS, GCP, Azure), however, you are still responsible for configuring your software tosatisfy the HIPAA security rule Check tosee ifthe cloud provider will sign aBAA agreement and choose aservice provider like QuickBlox who can ensure aHIPAA compliant solution ### What are the penalties for non-compliance Penalties depend onthe severity ofthe breach, whether itwas intentional ornot They range from $100 to$50,000 per breach ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [HIPAA Compliant Cloud Hosting: What does it mean?](https://quickblox.com/blog/hipaa-compliant-cloud-hosting-what-does-it-mean/)\\nAnna S 31 Dec 2021\\n[Azure](https://quickblox.com/blog/hosting/azure/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Microsoft Azure HIPAA Compliant?](https://quickblox.com/blog/is-microsoft-azure-hipaa-compliant/)\\nAnna S 12 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Google Cloud Platform (GCP)](https://quickblox.com/blog/hosting/google-cloud-platform-gcp/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Google Cloud Platform HIPAA Compliant?](https://quickblox.com/blog/is-google-cloud-platform-hipaa-compliant/)\\nAnna S 1 Oct 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd\",\n", + " \"trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 49 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# HIPAA Compliant Hosting\\nOur healthcare communication solutions are designed with HIPAA compliance inmind Build and deliver powerful HIPAA chat apps inthe full confidence that sensitive ePHI remains secure and compliance requirements are satisfied ## What isHIPAA Compliance HIPAA (Health Insurance Portability and Accountability Act of1996) sets national standards for safeguarding protected health information (PHI) Any business that collects, stores, ortransmits PHI isrequired tocomply with HIPAA physical, technical, and administrative safeguards Failure todosocan result incompromised patient data and hefty penalties for the involved party ## Why QuickBlox ### Experienced inHealthcare\\nWeare experienced working with the Healthcare industry and HealthTech Weprovide HIPAA compliant hosting solutions configured for enhanced data privacy and inaccordance with HIPAA security rules ### Host Anywhere\\nWeunderstand your need for data security that’’s why wedeploy our software wherever you need, including inyour own cloud account with ahosting provider ofyour choice sothat sensitive PHI remains firmly inyour ownership and control ### Enterprise Ready\\nWebuild enterprise ready solutions Our skilled DevOps team can provide anarray ofsoftware tools, integrations, and configurations toensure enterprise grade security and support for your HIPAA compliant solution [Speak to us](https://quickblox.com/enterprise/#get-enterprise)\\n## QuickBlox HIPAA Compliant HostingSolutions\\nThe easiest way tosatisfy HIPAA requirements istopartner with aHIPAA compliant communication solutions provider, like QuickBlox Wehave asolid history providing enterprise solutions for healthcare ### Key Features\\n#### Your choice ofHIPAA Compliant Cloud\\nSoftware can bedeployed toyour preferred hosting environment including Amazon Web Services, Google Cloud Platform, and Microsoft Azure\",\n", + " \"Weconfigure your dedicated instance sothat itmeets HIPAA-compliant hosting requirements QuickBlox can also host for you inour own HIPAA compliant account #### Fully Encrypted Server Configuration\\nWith QuickBlox, data isencrypted intransit and atrest Weoffer full encryption ofuser databases, files/content, and connections which means ePHI, communication history, and user data issafe and secure #### Customization ofSoftware tosupport HIPAA Technical Safeguards\\nOur back-end platform can becustomized tosupport numerous security features,e.g * access control via unique usernames and passwords toprevent unauthorized access\\n* person orentity authentication tools such astwo-factor authentication\\n* anonymous sessions with automatic logoff procedures\\n#### AFully Managed Service\\nOur Enterprise Plan provides afully managed service with dedicated maintenance and real-time monitoring Weoffer aService Level Agreement (SLA) with uptime guarantee #### Provision ofBusiness Associate Agreement\\nWeprovide our healthcare customers with aBAA Bysigning this agreement wedemonstrate our knowledge ofHIPAA compliance rules and our experience with supporting compliant healthcare communication solutions ## Advanced Features\\nWeoffer anarray ofdata protection tools tosafeguard your instance without your data ever leaving your server\\n### High Availability and Disaster Recovery(HA/DR)\\n* HA/DR keeps your applications running inthe event ofany system issues, soyour users never lose messaging and calling functionalities * AHigh Availability solution replicates your communication infrastructure toensure constant availability This isideal for critical business solutions like healthcare * Our Disaster Recovery plan provides full backup management toensure that sensitive data can befully recovered inthe worst case scenario ofinterrupted orcompromised services ### Software integration for enhanced security standards\\n* Diligent monitoring ofyour cloud environment with Graylog, alog storage and management tool that allows your engineers toeasily manage logs and structured analytical data all inone place * Intrusion detection with OSSEC, ahost-based system that performs log analysis, integrity checking, registry monitoring, rootlet detection, time-based alerting, and active response\",\n", + " \"* Virus scanning software toautomatically scan, tag, and notify you ofinfected files and malware * Web Application Firewall (WAF) tosecurely control web traffic, blocking spam bots from consuming resources, skewing metrics, and causing downtime onyour healthcare communication application ## HIPAA Compliant Video Hosting\\nConnect patients and doctors together with HIPAA compliant audio &&video calling and video conferencing, built onWebRTC and available with the QuickBlox HIPAA Enterprise Plan\\n### Dedicated TURN Server\\nDedicated WebRTC video calling traffic relay server for video calling through firewalls, bypassing NAT, and connecting geographically dispersed users [Learn more](https://quickblox.com/products/voice-and-video-calling/)\\n### Dedicated Conference Server\\nWeoffer HIPAA video conference hosting with adedicated conference server Enjoy high quality conference calls for multiple simultaneous users onaservice server that you control [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Conference Call Recording\\nConference call recording functionality tosave your video conferences Enables you tostore, access, and share video healthcare communications securely onyour dedicated server [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Telehealth Ready Solution: Q‑Consultation\\nWeoffer aHIPAA compliant virtual waiting room with tele-consultation app Fully customizable, packed with features, and works onany device and the web [Learn more](https://quickblox.com/products/q-consultation/)\\n## HIPAA Compliant Hosting Plans\\nQuickBlox provides arange ofplans depending onthe size ofyour organization and budget All our HIPAA plans provide full data encryption and come with aBusiness Associates Agreement ### HIPAA (Shared) Cloud Plan (starts at**$399/mo**)\\nSuitable for smaller organizations for POCs (proof ofconcept) and MVP (minimal viable product) use-cases that require data encryption but have alimited budget * Software ishosted onour QuickBlox AWS multi-tenant sharedserver\\n* Total user limit:**5000**\\n* File size limit:**50MB**\\n* Support byticketing system\\n### HIPAA Enterprise Plan (startsat**$899/mo**)\\nSuitable for production services granting the customer complete control over their user data, customization, technicalsupport,andSLA * Can behosted onQuickBlox’’s own managed cloud account orincustomer’’s own cloud account with preferred cloud service provider including Amazon Web Services, Google Cloud Platform, Microsoft Azure and others * Personal Account Manager, SLA with uptimeguarantee\\n* Optional Add-ons:\\n* - High Availability and Disaster Recovery (HA/DR)solution\\n* - Security enhancements (e.g.Graylog,OSSEC)\\n* - Dedicated Turn server, Conference callserver\\n### HIPAA On-Premises\\nSuitable for organizations who desire optimal security, require communications toremain within their own private network, and who have their own DevOps and on-premises data center\",\n", + " \"* Hosted onyour own dedicated servers inyour privately owned datacenter\\n* Granting you total control ofyour ePHI and chathistory\\n[Find out more](https://quickblox.com/enterprise/#get-enterprise)\\n## HIPAA Compliant Cloud Hosting\\nThere are avariety ofcloud hosting providers that offer HIPAA compliant environments QuickBlox can deploy software with anyone ofthese and more:\\nHosting with one ofthese cloud providersdoes notguarantee HIPAA compliance Youalso need toensure your application and software meet the safeguards outlined inthe HIPAA securityrule **Work with apartner like QuickBlox tomake sure you’’re covered.**\\n## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[On-Premise hosting](https://quickblox.com/hosting/on-premise/)\\n## Frequently Asked Questions\\n### What isHIPAA compliant hosting Any digital healthcare application that contains ePHI needs tobehosted onacloud infrastructure that complies with the technical, administrative, and physical safeguards outlined byHIPAA These safeguards are designed toprotect the integrity ofthe data and tocontrol who has access tothis data HIPAA compliant hosting requirements include encrypted data intransit and storage, access controls, person orentity authentication tools, and more ### Who needs HIPAA compliance Healthcare providers\\u2014 referred toasthe \\u00abcovered entity\\u00bb\\u2014 must comply with HIPAA, but equally their \\u00abbusiness associates\\u00bb who come into contact with patient data when providing services toahealthcare organization are also covered bythis legislation This means any cloud service provider, CPaaS provider, ormedical app developer who are inany way involved instoring, processes, ortransmitting PHI, are considered a \\u2019business associate\\u2019 and must comply with HIPAA ### What isPHI and ePHI Any medical data that contains individually identifiable health information about apatient (e.g name, address, date ofbirth, social security number) isreferred toasprotected health information (PHI), orwhen stored electronically ePHI There isanabundance ofmedical records including bills from doctors, emails, MRI scans, blood test results etc that fall under the rubric ofPHI/ePHI ### How much does HIPAA compliant hosting cost\",\n", + " \"The need for additional security enhancements such asdatabase encryption and software customization for extra monitoring &&intrusion detection means ahigher cost for HIPAA compliant hosting Encrypted HIPAA hosting onour shared cloud starts at$399/mo ### Which cloud providers are HIPAA compliant There are several cloud hosting providers who provide aninfrastructure that can beHIPAA compliant (e.g AWS, GCP, Azure), however, you are still responsible for configuring your software tosatisfy the HIPAA security rule Check tosee ifthe cloud provider will sign aBAA agreement and choose aservice provider like QuickBlox who can ensure aHIPAA compliant solution ### What are the penalties for non-compliance Penalties depend onthe severity ofthe breach, whether itwas intentional ornot They range from $100 to$50,000 per breach ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [HIPAA Compliant Cloud Hosting: What does it mean?](https://quickblox.com/blog/hipaa-compliant-cloud-hosting-what-does-it-mean/)\\nAnna S 31 Dec 2021\\n[Azure](https://quickblox.com/blog/hosting/azure/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Microsoft Azure HIPAA Compliant?](https://quickblox.com/blog/is-microsoft-azure-hipaa-compliant/)\\nAnna S 12 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Google Cloud Platform (GCP)](https://quickblox.com/blog/hosting/google-cloud-platform-gcp/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Google Cloud Platform HIPAA Compliant?](https://quickblox.com/blog/is-google-cloud-platform-hipaa-compliant/)\\nAnna S 1 Oct 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd\",\n", + " \"trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"* Hosted onyour own dedicated servers inyour privately owned datacenter\\n* Granting you total control ofyour ePHI and chathistory\\n[Find out more](https://quickblox.com/enterprise/#get-enterprise)\\n## HIPAA Compliant Cloud Hosting\\nThere are avariety ofcloud hosting providers that offer HIPAA compliant environments QuickBlox can deploy software with anyone ofthese and more:\\nHosting with one ofthese cloud providersdoes notguarantee HIPAA compliance Youalso need toensure your application and software meet the safeguards outlined inthe HIPAA securityrule **Work with apartner like QuickBlox tomake sure you’’re covered.**\\n## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[On-Premise hosting](https://quickblox.com/hosting/on-premise/)\\n## Frequently Asked Questions\\n### What isHIPAA compliant hosting Any digital healthcare application that contains ePHI needs tobehosted onacloud infrastructure that complies with the technical, administrative, and physical safeguards outlined byHIPAA These safeguards are designed toprotect the integrity ofthe data and tocontrol who has access tothis data HIPAA compliant hosting requirements include encrypted data intransit and storage, access controls, person orentity authentication tools, and more ### Who needs HIPAA compliance Healthcare providers\\u2014 referred toasthe \\u00abcovered entity\\u00bb\\u2014 must comply with HIPAA, but equally their \\u00abbusiness associates\\u00bb who come into contact with patient data when providing services toahealthcare organization are also covered bythis legislation This means any cloud service provider, CPaaS provider, ormedical app developer who are inany way involved instoring, processes, ortransmitting PHI, are considered a \\u2019business associate\\u2019 and must comply with HIPAA ### What isPHI and ePHI Any medical data that contains individually identifiable health information about apatient (e.g name, address, date ofbirth, social security number) isreferred toasprotected health information (PHI), orwhen stored electronically ePHI There isanabundance ofmedical records including bills from doctors, emails, MRI scans, blood test results etc that fall under the rubric ofPHI/ePHI ### How much does HIPAA compliant hosting cost\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 50 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# HIPAA Compliant Hosting\\nOur healthcare communication solutions are designed with HIPAA compliance inmind Build and deliver powerful HIPAA chat apps inthe full confidence that sensitive ePHI remains secure and compliance requirements are satisfied ## What isHIPAA Compliance HIPAA (Health Insurance Portability and Accountability Act of1996) sets national standards for safeguarding protected health information (PHI) Any business that collects, stores, ortransmits PHI isrequired tocomply with HIPAA physical, technical, and administrative safeguards Failure todosocan result incompromised patient data and hefty penalties for the involved party ## Why QuickBlox ### Experienced inHealthcare\\nWeare experienced working with the Healthcare industry and HealthTech Weprovide HIPAA compliant hosting solutions configured for enhanced data privacy and inaccordance with HIPAA security rules ### Host Anywhere\\nWeunderstand your need for data security that’’s why wedeploy our software wherever you need, including inyour own cloud account with ahosting provider ofyour choice sothat sensitive PHI remains firmly inyour ownership and control ### Enterprise Ready\\nWebuild enterprise ready solutions Our skilled DevOps team can provide anarray ofsoftware tools, integrations, and configurations toensure enterprise grade security and support for your HIPAA compliant solution [Speak to us](https://quickblox.com/enterprise/#get-enterprise)\\n## QuickBlox HIPAA Compliant HostingSolutions\\nThe easiest way tosatisfy HIPAA requirements istopartner with aHIPAA compliant communication solutions provider, like QuickBlox Wehave asolid history providing enterprise solutions for healthcare ### Key Features\\n#### Your choice ofHIPAA Compliant Cloud\\nSoftware can bedeployed toyour preferred hosting environment including Amazon Web Services, Google Cloud Platform, and Microsoft Azure\",\n", + " \"Weconfigure your dedicated instance sothat itmeets HIPAA-compliant hosting requirements QuickBlox can also host for you inour own HIPAA compliant account #### Fully Encrypted Server Configuration\\nWith QuickBlox, data isencrypted intransit and atrest Weoffer full encryption ofuser databases, files/content, and connections which means ePHI, communication history, and user data issafe and secure #### Customization ofSoftware tosupport HIPAA Technical Safeguards\\nOur back-end platform can becustomized tosupport numerous security features,e.g * access control via unique usernames and passwords toprevent unauthorized access\\n* person orentity authentication tools such astwo-factor authentication\\n* anonymous sessions with automatic logoff procedures\\n#### AFully Managed Service\\nOur Enterprise Plan provides afully managed service with dedicated maintenance and real-time monitoring Weoffer aService Level Agreement (SLA) with uptime guarantee #### Provision ofBusiness Associate Agreement\\nWeprovide our healthcare customers with aBAA Bysigning this agreement wedemonstrate our knowledge ofHIPAA compliance rules and our experience with supporting compliant healthcare communication solutions ## Advanced Features\\nWeoffer anarray ofdata protection tools tosafeguard your instance without your data ever leaving your server\\n### High Availability and Disaster Recovery(HA/DR)\\n* HA/DR keeps your applications running inthe event ofany system issues, soyour users never lose messaging and calling functionalities * AHigh Availability solution replicates your communication infrastructure toensure constant availability This isideal for critical business solutions like healthcare * Our Disaster Recovery plan provides full backup management toensure that sensitive data can befully recovered inthe worst case scenario ofinterrupted orcompromised services ### Software integration for enhanced security standards\\n* Diligent monitoring ofyour cloud environment with Graylog, alog storage and management tool that allows your engineers toeasily manage logs and structured analytical data all inone place * Intrusion detection with OSSEC, ahost-based system that performs log analysis, integrity checking, registry monitoring, rootlet detection, time-based alerting, and active response\",\n", + " \"* Virus scanning software toautomatically scan, tag, and notify you ofinfected files and malware * Web Application Firewall (WAF) tosecurely control web traffic, blocking spam bots from consuming resources, skewing metrics, and causing downtime onyour healthcare communication application ## HIPAA Compliant Video Hosting\\nConnect patients and doctors together with HIPAA compliant audio &&video calling and video conferencing, built onWebRTC and available with the QuickBlox HIPAA Enterprise Plan\\n### Dedicated TURN Server\\nDedicated WebRTC video calling traffic relay server for video calling through firewalls, bypassing NAT, and connecting geographically dispersed users [Learn more](https://quickblox.com/products/voice-and-video-calling/)\\n### Dedicated Conference Server\\nWeoffer HIPAA video conference hosting with adedicated conference server Enjoy high quality conference calls for multiple simultaneous users onaservice server that you control [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Conference Call Recording\\nConference call recording functionality tosave your video conferences Enables you tostore, access, and share video healthcare communications securely onyour dedicated server [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Telehealth Ready Solution: Q‑Consultation\\nWeoffer aHIPAA compliant virtual waiting room with tele-consultation app Fully customizable, packed with features, and works onany device and the web [Learn more](https://quickblox.com/products/q-consultation/)\\n## HIPAA Compliant Hosting Plans\\nQuickBlox provides arange ofplans depending onthe size ofyour organization and budget All our HIPAA plans provide full data encryption and come with aBusiness Associates Agreement ### HIPAA (Shared) Cloud Plan (starts at**$399/mo**)\\nSuitable for smaller organizations for POCs (proof ofconcept) and MVP (minimal viable product) use-cases that require data encryption but have alimited budget * Software ishosted onour QuickBlox AWS multi-tenant sharedserver\\n* Total user limit:**5000**\\n* File size limit:**50MB**\\n* Support byticketing system\\n### HIPAA Enterprise Plan (startsat**$899/mo**)\\nSuitable for production services granting the customer complete control over their user data, customization, technicalsupport,andSLA * Can behosted onQuickBlox’’s own managed cloud account orincustomer’’s own cloud account with preferred cloud service provider including Amazon Web Services, Google Cloud Platform, Microsoft Azure and others * Personal Account Manager, SLA with uptimeguarantee\\n* Optional Add-ons:\\n* - High Availability and Disaster Recovery (HA/DR)solution\\n* - Security enhancements (e.g.Graylog,OSSEC)\\n* - Dedicated Turn server, Conference callserver\\n### HIPAA On-Premises\\nSuitable for organizations who desire optimal security, require communications toremain within their own private network, and who have their own DevOps and on-premises data center\",\n", + " \"* Hosted onyour own dedicated servers inyour privately owned datacenter\\n* Granting you total control ofyour ePHI and chathistory\\n[Find out more](https://quickblox.com/enterprise/#get-enterprise)\\n## HIPAA Compliant Cloud Hosting\\nThere are avariety ofcloud hosting providers that offer HIPAA compliant environments QuickBlox can deploy software with anyone ofthese and more:\\nHosting with one ofthese cloud providersdoes notguarantee HIPAA compliance Youalso need toensure your application and software meet the safeguards outlined inthe HIPAA securityrule **Work with apartner like QuickBlox tomake sure you’’re covered.**\\n## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[On-Premise hosting](https://quickblox.com/hosting/on-premise/)\\n## Frequently Asked Questions\\n### What isHIPAA compliant hosting Any digital healthcare application that contains ePHI needs tobehosted onacloud infrastructure that complies with the technical, administrative, and physical safeguards outlined byHIPAA These safeguards are designed toprotect the integrity ofthe data and tocontrol who has access tothis data HIPAA compliant hosting requirements include encrypted data intransit and storage, access controls, person orentity authentication tools, and more ### Who needs HIPAA compliance Healthcare providers\\u2014 referred toasthe \\u00abcovered entity\\u00bb\\u2014 must comply with HIPAA, but equally their \\u00abbusiness associates\\u00bb who come into contact with patient data when providing services toahealthcare organization are also covered bythis legislation This means any cloud service provider, CPaaS provider, ormedical app developer who are inany way involved instoring, processes, ortransmitting PHI, are considered a \\u2019business associate\\u2019 and must comply with HIPAA ### What isPHI and ePHI Any medical data that contains individually identifiable health information about apatient (e.g name, address, date ofbirth, social security number) isreferred toasprotected health information (PHI), orwhen stored electronically ePHI There isanabundance ofmedical records including bills from doctors, emails, MRI scans, blood test results etc that fall under the rubric ofPHI/ePHI ### How much does HIPAA compliant hosting cost\",\n", + " \"The need for additional security enhancements such asdatabase encryption and software customization for extra monitoring &&intrusion detection means ahigher cost for HIPAA compliant hosting Encrypted HIPAA hosting onour shared cloud starts at$399/mo ### Which cloud providers are HIPAA compliant There are several cloud hosting providers who provide aninfrastructure that can beHIPAA compliant (e.g AWS, GCP, Azure), however, you are still responsible for configuring your software tosatisfy the HIPAA security rule Check tosee ifthe cloud provider will sign aBAA agreement and choose aservice provider like QuickBlox who can ensure aHIPAA compliant solution ### What are the penalties for non-compliance Penalties depend onthe severity ofthe breach, whether itwas intentional ornot They range from $100 to$50,000 per breach ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [HIPAA Compliant Cloud Hosting: What does it mean?](https://quickblox.com/blog/hipaa-compliant-cloud-hosting-what-does-it-mean/)\\nAnna S 31 Dec 2021\\n[Azure](https://quickblox.com/blog/hosting/azure/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Microsoft Azure HIPAA Compliant?](https://quickblox.com/blog/is-microsoft-azure-hipaa-compliant/)\\nAnna S 12 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Google Cloud Platform (GCP)](https://quickblox.com/blog/hosting/google-cloud-platform-gcp/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Google Cloud Platform HIPAA Compliant?](https://quickblox.com/blog/is-google-cloud-platform-hipaa-compliant/)\\nAnna S 1 Oct 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd\",\n", + " \"trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"The need for additional security enhancements such asdatabase encryption and software customization for extra monitoring &&intrusion detection means ahigher cost for HIPAA compliant hosting Encrypted HIPAA hosting onour shared cloud starts at$399/mo ### Which cloud providers are HIPAA compliant There are several cloud hosting providers who provide aninfrastructure that can beHIPAA compliant (e.g AWS, GCP, Azure), however, you are still responsible for configuring your software tosatisfy the HIPAA security rule Check tosee ifthe cloud provider will sign aBAA agreement and choose aservice provider like QuickBlox who can ensure aHIPAA compliant solution ### What are the penalties for non-compliance Penalties depend onthe severity ofthe breach, whether itwas intentional ornot They range from $100 to$50,000 per breach ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [HIPAA Compliant Cloud Hosting: What does it mean?](https://quickblox.com/blog/hipaa-compliant-cloud-hosting-what-does-it-mean/)\\nAnna S 31 Dec 2021\\n[Azure](https://quickblox.com/blog/hosting/azure/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Microsoft Azure HIPAA Compliant?](https://quickblox.com/blog/is-microsoft-azure-hipaa-compliant/)\\nAnna S 12 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Google Cloud Platform (GCP)](https://quickblox.com/blog/hosting/google-cloud-platform-gcp/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Google Cloud Platform HIPAA Compliant?](https://quickblox.com/blog/is-google-cloud-platform-hipaa-compliant/)\\nAnna S 1 Oct 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 51 Type: finish_branch\n", + "output: \"This chunk discusses QuickBlox's HIPAA-compliant hosting solutions, focusing on fully encrypted server configurations, customizable software for HIPAA technical safeguards, and a fully managed service with a Business Associate Agreement (BAA). It highlights advanced features like High Availability and Disaster Recovery (HA/DR) and enhanced security standards, including monitoring tools and intrusion detection, to ensure data protection and compliance with HIPAA rules in healthcare communication solutions.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 52 Type: finish_branch\n", + "output: \"This chunk provides an overview of QuickBlox's communication tools and solutions, highlighting SDKs, APIs, AI features, white-label solutions, industry-specific applications, enterprise services, and developer resources. It also emphasizes QuickBlox's capabilities in building communication features for apps, offering HIPAA-compliant hosting, and providing customizable solutions for industries like healthcare, finance, and education.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 53 Type: finish_branch\n", + "output: \"The chunk is part of a section detailing QuickBlox's HIPAA-compliant solutions, specifically focusing on video hosting and various hosting plans tailored for healthcare communication applications. It discusses features like virus scanning, web application firewall, and dedicated servers for video calls, as well as different hosting plans (Shared Cloud, Enterprise, and On-Premises) with features like data encryption, user limits, and support options, emphasizing secure telehealth and video conferencing solutions.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 54 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# HIPAA Compliant Hosting\\nOur healthcare communication solutions are designed with HIPAA compliance inmind Build and deliver powerful HIPAA chat apps inthe full confidence that sensitive ePHI remains secure and compliance requirements are satisfied ## What isHIPAA Compliance HIPAA (Health Insurance Portability and Accountability Act of1996) sets national standards for safeguarding protected health information (PHI) Any business that collects, stores, ortransmits PHI isrequired tocomply with HIPAA physical, technical, and administrative safeguards Failure todosocan result incompromised patient data and hefty penalties for the involved party ## Why QuickBlox ### Experienced inHealthcare\\nWeare experienced working with the Healthcare industry and HealthTech Weprovide HIPAA compliant hosting solutions configured for enhanced data privacy and inaccordance with HIPAA security rules ### Host Anywhere\\nWeunderstand your need for data security that’’s why wedeploy our software wherever you need, including inyour own cloud account with ahosting provider ofyour choice sothat sensitive PHI remains firmly inyour ownership and control ### Enterprise Ready\\nWebuild enterprise ready solutions Our skilled DevOps team can provide anarray ofsoftware tools, integrations, and configurations toensure enterprise grade security and support for your HIPAA compliant solution [Speak to us](https://quickblox.com/enterprise/#get-enterprise)\\n## QuickBlox HIPAA Compliant HostingSolutions\\nThe easiest way tosatisfy HIPAA requirements istopartner with aHIPAA compliant communication solutions provider, like QuickBlox Wehave asolid history providing enterprise solutions for healthcare ### Key Features\\n#### Your choice ofHIPAA Compliant Cloud\\nSoftware can bedeployed toyour preferred hosting environment including Amazon Web Services, Google Cloud Platform, and Microsoft Azure\",\n", + " \"Weconfigure your dedicated instance sothat itmeets HIPAA-compliant hosting requirements QuickBlox can also host for you inour own HIPAA compliant account #### Fully Encrypted Server Configuration\\nWith QuickBlox, data isencrypted intransit and atrest Weoffer full encryption ofuser databases, files/content, and connections which means ePHI, communication history, and user data issafe and secure #### Customization ofSoftware tosupport HIPAA Technical Safeguards\\nOur back-end platform can becustomized tosupport numerous security features,e.g * access control via unique usernames and passwords toprevent unauthorized access\\n* person orentity authentication tools such astwo-factor authentication\\n* anonymous sessions with automatic logoff procedures\\n#### AFully Managed Service\\nOur Enterprise Plan provides afully managed service with dedicated maintenance and real-time monitoring Weoffer aService Level Agreement (SLA) with uptime guarantee #### Provision ofBusiness Associate Agreement\\nWeprovide our healthcare customers with aBAA Bysigning this agreement wedemonstrate our knowledge ofHIPAA compliance rules and our experience with supporting compliant healthcare communication solutions ## Advanced Features\\nWeoffer anarray ofdata protection tools tosafeguard your instance without your data ever leaving your server\\n### High Availability and Disaster Recovery(HA/DR)\\n* HA/DR keeps your applications running inthe event ofany system issues, soyour users never lose messaging and calling functionalities * AHigh Availability solution replicates your communication infrastructure toensure constant availability This isideal for critical business solutions like healthcare * Our Disaster Recovery plan provides full backup management toensure that sensitive data can befully recovered inthe worst case scenario ofinterrupted orcompromised services ### Software integration for enhanced security standards\\n* Diligent monitoring ofyour cloud environment with Graylog, alog storage and management tool that allows your engineers toeasily manage logs and structured analytical data all inone place * Intrusion detection with OSSEC, ahost-based system that performs log analysis, integrity checking, registry monitoring, rootlet detection, time-based alerting, and active response\",\n", + " \"* Virus scanning software toautomatically scan, tag, and notify you ofinfected files and malware * Web Application Firewall (WAF) tosecurely control web traffic, blocking spam bots from consuming resources, skewing metrics, and causing downtime onyour healthcare communication application ## HIPAA Compliant Video Hosting\\nConnect patients and doctors together with HIPAA compliant audio &&video calling and video conferencing, built onWebRTC and available with the QuickBlox HIPAA Enterprise Plan\\n### Dedicated TURN Server\\nDedicated WebRTC video calling traffic relay server for video calling through firewalls, bypassing NAT, and connecting geographically dispersed users [Learn more](https://quickblox.com/products/voice-and-video-calling/)\\n### Dedicated Conference Server\\nWeoffer HIPAA video conference hosting with adedicated conference server Enjoy high quality conference calls for multiple simultaneous users onaservice server that you control [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Conference Call Recording\\nConference call recording functionality tosave your video conferences Enables you tostore, access, and share video healthcare communications securely onyour dedicated server [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Telehealth Ready Solution: Q‑Consultation\\nWeoffer aHIPAA compliant virtual waiting room with tele-consultation app Fully customizable, packed with features, and works onany device and the web [Learn more](https://quickblox.com/products/q-consultation/)\\n## HIPAA Compliant Hosting Plans\\nQuickBlox provides arange ofplans depending onthe size ofyour organization and budget All our HIPAA plans provide full data encryption and come with aBusiness Associates Agreement ### HIPAA (Shared) Cloud Plan (starts at**$399/mo**)\\nSuitable for smaller organizations for POCs (proof ofconcept) and MVP (minimal viable product) use-cases that require data encryption but have alimited budget * Software ishosted onour QuickBlox AWS multi-tenant sharedserver\\n* Total user limit:**5000**\\n* File size limit:**50MB**\\n* Support byticketing system\\n### HIPAA Enterprise Plan (startsat**$899/mo**)\\nSuitable for production services granting the customer complete control over their user data, customization, technicalsupport,andSLA * Can behosted onQuickBlox’’s own managed cloud account orincustomer’’s own cloud account with preferred cloud service provider including Amazon Web Services, Google Cloud Platform, Microsoft Azure and others * Personal Account Manager, SLA with uptimeguarantee\\n* Optional Add-ons:\\n* - High Availability and Disaster Recovery (HA/DR)solution\\n* - Security enhancements (e.g.Graylog,OSSEC)\\n* - Dedicated Turn server, Conference callserver\\n### HIPAA On-Premises\\nSuitable for organizations who desire optimal security, require communications toremain within their own private network, and who have their own DevOps and on-premises data center\",\n", + " \"* Hosted onyour own dedicated servers inyour privately owned datacenter\\n* Granting you total control ofyour ePHI and chathistory\\n[Find out more](https://quickblox.com/enterprise/#get-enterprise)\\n## HIPAA Compliant Cloud Hosting\\nThere are avariety ofcloud hosting providers that offer HIPAA compliant environments QuickBlox can deploy software with anyone ofthese and more:\\nHosting with one ofthese cloud providersdoes notguarantee HIPAA compliance Youalso need toensure your application and software meet the safeguards outlined inthe HIPAA securityrule **Work with apartner like QuickBlox tomake sure you’’re covered.**\\n## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[On-Premise hosting](https://quickblox.com/hosting/on-premise/)\\n## Frequently Asked Questions\\n### What isHIPAA compliant hosting Any digital healthcare application that contains ePHI needs tobehosted onacloud infrastructure that complies with the technical, administrative, and physical safeguards outlined byHIPAA These safeguards are designed toprotect the integrity ofthe data and tocontrol who has access tothis data HIPAA compliant hosting requirements include encrypted data intransit and storage, access controls, person orentity authentication tools, and more ### Who needs HIPAA compliance Healthcare providers\\u2014 referred toasthe \\u00abcovered entity\\u00bb\\u2014 must comply with HIPAA, but equally their \\u00abbusiness associates\\u00bb who come into contact with patient data when providing services toahealthcare organization are also covered bythis legislation This means any cloud service provider, CPaaS provider, ormedical app developer who are inany way involved instoring, processes, ortransmitting PHI, are considered a \\u2019business associate\\u2019 and must comply with HIPAA ### What isPHI and ePHI Any medical data that contains individually identifiable health information about apatient (e.g name, address, date ofbirth, social security number) isreferred toasprotected health information (PHI), orwhen stored electronically ePHI There isanabundance ofmedical records including bills from doctors, emails, MRI scans, blood test results etc that fall under the rubric ofPHI/ePHI ### How much does HIPAA compliant hosting cost\",\n", + " \"The need for additional security enhancements such asdatabase encryption and software customization for extra monitoring &&intrusion detection means ahigher cost for HIPAA compliant hosting Encrypted HIPAA hosting onour shared cloud starts at$399/mo ### Which cloud providers are HIPAA compliant There are several cloud hosting providers who provide aninfrastructure that can beHIPAA compliant (e.g AWS, GCP, Azure), however, you are still responsible for configuring your software tosatisfy the HIPAA security rule Check tosee ifthe cloud provider will sign aBAA agreement and choose aservice provider like QuickBlox who can ensure aHIPAA compliant solution ### What are the penalties for non-compliance Penalties depend onthe severity ofthe breach, whether itwas intentional ornot They range from $100 to$50,000 per breach ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [HIPAA Compliant Cloud Hosting: What does it mean?](https://quickblox.com/blog/hipaa-compliant-cloud-hosting-what-does-it-mean/)\\nAnna S 31 Dec 2021\\n[Azure](https://quickblox.com/blog/hosting/azure/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Microsoft Azure HIPAA Compliant?](https://quickblox.com/blog/is-microsoft-azure-hipaa-compliant/)\\nAnna S 12 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Google Cloud Platform (GCP)](https://quickblox.com/blog/hosting/google-cloud-platform-gcp/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Google Cloud Platform HIPAA Compliant?](https://quickblox.com/blog/is-google-cloud-platform-hipaa-compliant/)\\nAnna S 1 Oct 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd\",\n", + " \"trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# HIPAA Compliant Hosting\\nOur healthcare communication solutions are designed with HIPAA compliance inmind Build and deliver powerful HIPAA chat apps inthe full confidence that sensitive ePHI remains secure and compliance requirements are satisfied ## What isHIPAA Compliance HIPAA (Health Insurance Portability and Accountability Act of1996) sets national standards for safeguarding protected health information (PHI) Any business that collects, stores, ortransmits PHI isrequired tocomply with HIPAA physical, technical, and administrative safeguards Failure todosocan result incompromised patient data and hefty penalties for the involved party ## Why QuickBlox ### Experienced inHealthcare\\nWeare experienced working with the Healthcare industry and HealthTech Weprovide HIPAA compliant hosting solutions configured for enhanced data privacy and inaccordance with HIPAA security rules ### Host Anywhere\\nWeunderstand your need for data security that’’s why wedeploy our software wherever you need, including inyour own cloud account with ahosting provider ofyour choice sothat sensitive PHI remains firmly inyour ownership and control ### Enterprise Ready\\nWebuild enterprise ready solutions Our skilled DevOps team can provide anarray ofsoftware tools, integrations, and configurations toensure enterprise grade security and support for your HIPAA compliant solution [Speak to us](https://quickblox.com/enterprise/#get-enterprise)\\n## QuickBlox HIPAA Compliant HostingSolutions\\nThe easiest way tosatisfy HIPAA requirements istopartner with aHIPAA compliant communication solutions provider, like QuickBlox Wehave asolid history providing enterprise solutions for healthcare ### Key Features\\n#### Your choice ofHIPAA Compliant Cloud\\nSoftware can bedeployed toyour preferred hosting environment including Amazon Web Services, Google Cloud Platform, and Microsoft Azure\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 55 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# HIPAA Compliant Hosting\\nOur healthcare communication solutions are designed with HIPAA compliance inmind Build and deliver powerful HIPAA chat apps inthe full confidence that sensitive ePHI remains secure and compliance requirements are satisfied ## What isHIPAA Compliance HIPAA (Health Insurance Portability and Accountability Act of1996) sets national standards for safeguarding protected health information (PHI) Any business that collects, stores, ortransmits PHI isrequired tocomply with HIPAA physical, technical, and administrative safeguards Failure todosocan result incompromised patient data and hefty penalties for the involved party ## Why QuickBlox ### Experienced inHealthcare\\nWeare experienced working with the Healthcare industry and HealthTech Weprovide HIPAA compliant hosting solutions configured for enhanced data privacy and inaccordance with HIPAA security rules ### Host Anywhere\\nWeunderstand your need for data security that’’s why wedeploy our software wherever you need, including inyour own cloud account with ahosting provider ofyour choice sothat sensitive PHI remains firmly inyour ownership and control ### Enterprise Ready\\nWebuild enterprise ready solutions Our skilled DevOps team can provide anarray ofsoftware tools, integrations, and configurations toensure enterprise grade security and support for your HIPAA compliant solution [Speak to us](https://quickblox.com/enterprise/#get-enterprise)\\n## QuickBlox HIPAA Compliant HostingSolutions\\nThe easiest way tosatisfy HIPAA requirements istopartner with aHIPAA compliant communication solutions provider, like QuickBlox Wehave asolid history providing enterprise solutions for healthcare ### Key Features\\n#### Your choice ofHIPAA Compliant Cloud\\nSoftware can bedeployed toyour preferred hosting environment including Amazon Web Services, Google Cloud Platform, and Microsoft Azure\",\n", + " \"Weconfigure your dedicated instance sothat itmeets HIPAA-compliant hosting requirements QuickBlox can also host for you inour own HIPAA compliant account #### Fully Encrypted Server Configuration\\nWith QuickBlox, data isencrypted intransit and atrest Weoffer full encryption ofuser databases, files/content, and connections which means ePHI, communication history, and user data issafe and secure #### Customization ofSoftware tosupport HIPAA Technical Safeguards\\nOur back-end platform can becustomized tosupport numerous security features,e.g * access control via unique usernames and passwords toprevent unauthorized access\\n* person orentity authentication tools such astwo-factor authentication\\n* anonymous sessions with automatic logoff procedures\\n#### AFully Managed Service\\nOur Enterprise Plan provides afully managed service with dedicated maintenance and real-time monitoring Weoffer aService Level Agreement (SLA) with uptime guarantee #### Provision ofBusiness Associate Agreement\\nWeprovide our healthcare customers with aBAA Bysigning this agreement wedemonstrate our knowledge ofHIPAA compliance rules and our experience with supporting compliant healthcare communication solutions ## Advanced Features\\nWeoffer anarray ofdata protection tools tosafeguard your instance without your data ever leaving your server\\n### High Availability and Disaster Recovery(HA/DR)\\n* HA/DR keeps your applications running inthe event ofany system issues, soyour users never lose messaging and calling functionalities * AHigh Availability solution replicates your communication infrastructure toensure constant availability This isideal for critical business solutions like healthcare * Our Disaster Recovery plan provides full backup management toensure that sensitive data can befully recovered inthe worst case scenario ofinterrupted orcompromised services ### Software integration for enhanced security standards\\n* Diligent monitoring ofyour cloud environment with Graylog, alog storage and management tool that allows your engineers toeasily manage logs and structured analytical data all inone place * Intrusion detection with OSSEC, ahost-based system that performs log analysis, integrity checking, registry monitoring, rootlet detection, time-based alerting, and active response\",\n", + " \"* Virus scanning software toautomatically scan, tag, and notify you ofinfected files and malware * Web Application Firewall (WAF) tosecurely control web traffic, blocking spam bots from consuming resources, skewing metrics, and causing downtime onyour healthcare communication application ## HIPAA Compliant Video Hosting\\nConnect patients and doctors together with HIPAA compliant audio &&video calling and video conferencing, built onWebRTC and available with the QuickBlox HIPAA Enterprise Plan\\n### Dedicated TURN Server\\nDedicated WebRTC video calling traffic relay server for video calling through firewalls, bypassing NAT, and connecting geographically dispersed users [Learn more](https://quickblox.com/products/voice-and-video-calling/)\\n### Dedicated Conference Server\\nWeoffer HIPAA video conference hosting with adedicated conference server Enjoy high quality conference calls for multiple simultaneous users onaservice server that you control [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Conference Call Recording\\nConference call recording functionality tosave your video conferences Enables you tostore, access, and share video healthcare communications securely onyour dedicated server [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Telehealth Ready Solution: Q‑Consultation\\nWeoffer aHIPAA compliant virtual waiting room with tele-consultation app Fully customizable, packed with features, and works onany device and the web [Learn more](https://quickblox.com/products/q-consultation/)\\n## HIPAA Compliant Hosting Plans\\nQuickBlox provides arange ofplans depending onthe size ofyour organization and budget All our HIPAA plans provide full data encryption and come with aBusiness Associates Agreement ### HIPAA (Shared) Cloud Plan (starts at**$399/mo**)\\nSuitable for smaller organizations for POCs (proof ofconcept) and MVP (minimal viable product) use-cases that require data encryption but have alimited budget * Software ishosted onour QuickBlox AWS multi-tenant sharedserver\\n* Total user limit:**5000**\\n* File size limit:**50MB**\\n* Support byticketing system\\n### HIPAA Enterprise Plan (startsat**$899/mo**)\\nSuitable for production services granting the customer complete control over their user data, customization, technicalsupport,andSLA * Can behosted onQuickBlox’’s own managed cloud account orincustomer’’s own cloud account with preferred cloud service provider including Amazon Web Services, Google Cloud Platform, Microsoft Azure and others * Personal Account Manager, SLA with uptimeguarantee\\n* Optional Add-ons:\\n* - High Availability and Disaster Recovery (HA/DR)solution\\n* - Security enhancements (e.g.Graylog,OSSEC)\\n* - Dedicated Turn server, Conference callserver\\n### HIPAA On-Premises\\nSuitable for organizations who desire optimal security, require communications toremain within their own private network, and who have their own DevOps and on-premises data center\",\n", + " \"* Hosted onyour own dedicated servers inyour privately owned datacenter\\n* Granting you total control ofyour ePHI and chathistory\\n[Find out more](https://quickblox.com/enterprise/#get-enterprise)\\n## HIPAA Compliant Cloud Hosting\\nThere are avariety ofcloud hosting providers that offer HIPAA compliant environments QuickBlox can deploy software with anyone ofthese and more:\\nHosting with one ofthese cloud providersdoes notguarantee HIPAA compliance Youalso need toensure your application and software meet the safeguards outlined inthe HIPAA securityrule **Work with apartner like QuickBlox tomake sure you’’re covered.**\\n## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[On-Premise hosting](https://quickblox.com/hosting/on-premise/)\\n## Frequently Asked Questions\\n### What isHIPAA compliant hosting Any digital healthcare application that contains ePHI needs tobehosted onacloud infrastructure that complies with the technical, administrative, and physical safeguards outlined byHIPAA These safeguards are designed toprotect the integrity ofthe data and tocontrol who has access tothis data HIPAA compliant hosting requirements include encrypted data intransit and storage, access controls, person orentity authentication tools, and more ### Who needs HIPAA compliance Healthcare providers\\u2014 referred toasthe \\u00abcovered entity\\u00bb\\u2014 must comply with HIPAA, but equally their \\u00abbusiness associates\\u00bb who come into contact with patient data when providing services toahealthcare organization are also covered bythis legislation This means any cloud service provider, CPaaS provider, ormedical app developer who are inany way involved instoring, processes, ortransmitting PHI, are considered a \\u2019business associate\\u2019 and must comply with HIPAA ### What isPHI and ePHI Any medical data that contains individually identifiable health information about apatient (e.g name, address, date ofbirth, social security number) isreferred toasprotected health information (PHI), orwhen stored electronically ePHI There isanabundance ofmedical records including bills from doctors, emails, MRI scans, blood test results etc that fall under the rubric ofPHI/ePHI ### How much does HIPAA compliant hosting cost\",\n", + " \"The need for additional security enhancements such asdatabase encryption and software customization for extra monitoring &&intrusion detection means ahigher cost for HIPAA compliant hosting Encrypted HIPAA hosting onour shared cloud starts at$399/mo ### Which cloud providers are HIPAA compliant There are several cloud hosting providers who provide aninfrastructure that can beHIPAA compliant (e.g AWS, GCP, Azure), however, you are still responsible for configuring your software tosatisfy the HIPAA security rule Check tosee ifthe cloud provider will sign aBAA agreement and choose aservice provider like QuickBlox who can ensure aHIPAA compliant solution ### What are the penalties for non-compliance Penalties depend onthe severity ofthe breach, whether itwas intentional ornot They range from $100 to$50,000 per breach ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [HIPAA Compliant Cloud Hosting: What does it mean?](https://quickblox.com/blog/hipaa-compliant-cloud-hosting-what-does-it-mean/)\\nAnna S 31 Dec 2021\\n[Azure](https://quickblox.com/blog/hosting/azure/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Microsoft Azure HIPAA Compliant?](https://quickblox.com/blog/is-microsoft-azure-hipaa-compliant/)\\nAnna S 12 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Google Cloud Platform (GCP)](https://quickblox.com/blog/hosting/google-cloud-platform-gcp/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Google Cloud Platform HIPAA Compliant?](https://quickblox.com/blog/is-google-cloud-platform-hipaa-compliant/)\\nAnna S 1 Oct 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd\",\n", + " \"trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"Weconfigure your dedicated instance sothat itmeets HIPAA-compliant hosting requirements QuickBlox can also host for you inour own HIPAA compliant account #### Fully Encrypted Server Configuration\\nWith QuickBlox, data isencrypted intransit and atrest Weoffer full encryption ofuser databases, files/content, and connections which means ePHI, communication history, and user data issafe and secure #### Customization ofSoftware tosupport HIPAA Technical Safeguards\\nOur back-end platform can becustomized tosupport numerous security features,e.g * access control via unique usernames and passwords toprevent unauthorized access\\n* person orentity authentication tools such astwo-factor authentication\\n* anonymous sessions with automatic logoff procedures\\n#### AFully Managed Service\\nOur Enterprise Plan provides afully managed service with dedicated maintenance and real-time monitoring Weoffer aService Level Agreement (SLA) with uptime guarantee #### Provision ofBusiness Associate Agreement\\nWeprovide our healthcare customers with aBAA Bysigning this agreement wedemonstrate our knowledge ofHIPAA compliance rules and our experience with supporting compliant healthcare communication solutions ## Advanced Features\\nWeoffer anarray ofdata protection tools tosafeguard your instance without your data ever leaving your server\\n### High Availability and Disaster Recovery(HA/DR)\\n* HA/DR keeps your applications running inthe event ofany system issues, soyour users never lose messaging and calling functionalities * AHigh Availability solution replicates your communication infrastructure toensure constant availability This isideal for critical business solutions like healthcare * Our Disaster Recovery plan provides full backup management toensure that sensitive data can befully recovered inthe worst case scenario ofinterrupted orcompromised services ### Software integration for enhanced security standards\\n* Diligent monitoring ofyour cloud environment with Graylog, alog storage and management tool that allows your engineers toeasily manage logs and structured analytical data all inone place * Intrusion detection with OSSEC, ahost-based system that performs log analysis, integrity checking, registry monitoring, rootlet detection, time-based alerting, and active response\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 56 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# HIPAA Compliant Hosting\\nOur healthcare communication solutions are designed with HIPAA compliance inmind Build and deliver powerful HIPAA chat apps inthe full confidence that sensitive ePHI remains secure and compliance requirements are satisfied ## What isHIPAA Compliance HIPAA (Health Insurance Portability and Accountability Act of1996) sets national standards for safeguarding protected health information (PHI) Any business that collects, stores, ortransmits PHI isrequired tocomply with HIPAA physical, technical, and administrative safeguards Failure todosocan result incompromised patient data and hefty penalties for the involved party ## Why QuickBlox ### Experienced inHealthcare\\nWeare experienced working with the Healthcare industry and HealthTech Weprovide HIPAA compliant hosting solutions configured for enhanced data privacy and inaccordance with HIPAA security rules ### Host Anywhere\\nWeunderstand your need for data security that’’s why wedeploy our software wherever you need, including inyour own cloud account with ahosting provider ofyour choice sothat sensitive PHI remains firmly inyour ownership and control ### Enterprise Ready\\nWebuild enterprise ready solutions Our skilled DevOps team can provide anarray ofsoftware tools, integrations, and configurations toensure enterprise grade security and support for your HIPAA compliant solution [Speak to us](https://quickblox.com/enterprise/#get-enterprise)\\n## QuickBlox HIPAA Compliant HostingSolutions\\nThe easiest way tosatisfy HIPAA requirements istopartner with aHIPAA compliant communication solutions provider, like QuickBlox Wehave asolid history providing enterprise solutions for healthcare ### Key Features\\n#### Your choice ofHIPAA Compliant Cloud\\nSoftware can bedeployed toyour preferred hosting environment including Amazon Web Services, Google Cloud Platform, and Microsoft Azure\",\n", + " \"Weconfigure your dedicated instance sothat itmeets HIPAA-compliant hosting requirements QuickBlox can also host for you inour own HIPAA compliant account #### Fully Encrypted Server Configuration\\nWith QuickBlox, data isencrypted intransit and atrest Weoffer full encryption ofuser databases, files/content, and connections which means ePHI, communication history, and user data issafe and secure #### Customization ofSoftware tosupport HIPAA Technical Safeguards\\nOur back-end platform can becustomized tosupport numerous security features,e.g * access control via unique usernames and passwords toprevent unauthorized access\\n* person orentity authentication tools such astwo-factor authentication\\n* anonymous sessions with automatic logoff procedures\\n#### AFully Managed Service\\nOur Enterprise Plan provides afully managed service with dedicated maintenance and real-time monitoring Weoffer aService Level Agreement (SLA) with uptime guarantee #### Provision ofBusiness Associate Agreement\\nWeprovide our healthcare customers with aBAA Bysigning this agreement wedemonstrate our knowledge ofHIPAA compliance rules and our experience with supporting compliant healthcare communication solutions ## Advanced Features\\nWeoffer anarray ofdata protection tools tosafeguard your instance without your data ever leaving your server\\n### High Availability and Disaster Recovery(HA/DR)\\n* HA/DR keeps your applications running inthe event ofany system issues, soyour users never lose messaging and calling functionalities * AHigh Availability solution replicates your communication infrastructure toensure constant availability This isideal for critical business solutions like healthcare * Our Disaster Recovery plan provides full backup management toensure that sensitive data can befully recovered inthe worst case scenario ofinterrupted orcompromised services ### Software integration for enhanced security standards\\n* Diligent monitoring ofyour cloud environment with Graylog, alog storage and management tool that allows your engineers toeasily manage logs and structured analytical data all inone place * Intrusion detection with OSSEC, ahost-based system that performs log analysis, integrity checking, registry monitoring, rootlet detection, time-based alerting, and active response\",\n", + " \"* Virus scanning software toautomatically scan, tag, and notify you ofinfected files and malware * Web Application Firewall (WAF) tosecurely control web traffic, blocking spam bots from consuming resources, skewing metrics, and causing downtime onyour healthcare communication application ## HIPAA Compliant Video Hosting\\nConnect patients and doctors together with HIPAA compliant audio &&video calling and video conferencing, built onWebRTC and available with the QuickBlox HIPAA Enterprise Plan\\n### Dedicated TURN Server\\nDedicated WebRTC video calling traffic relay server for video calling through firewalls, bypassing NAT, and connecting geographically dispersed users [Learn more](https://quickblox.com/products/voice-and-video-calling/)\\n### Dedicated Conference Server\\nWeoffer HIPAA video conference hosting with adedicated conference server Enjoy high quality conference calls for multiple simultaneous users onaservice server that you control [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Conference Call Recording\\nConference call recording functionality tosave your video conferences Enables you tostore, access, and share video healthcare communications securely onyour dedicated server [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Telehealth Ready Solution: Q‑Consultation\\nWeoffer aHIPAA compliant virtual waiting room with tele-consultation app Fully customizable, packed with features, and works onany device and the web [Learn more](https://quickblox.com/products/q-consultation/)\\n## HIPAA Compliant Hosting Plans\\nQuickBlox provides arange ofplans depending onthe size ofyour organization and budget All our HIPAA plans provide full data encryption and come with aBusiness Associates Agreement ### HIPAA (Shared) Cloud Plan (starts at**$399/mo**)\\nSuitable for smaller organizations for POCs (proof ofconcept) and MVP (minimal viable product) use-cases that require data encryption but have alimited budget * Software ishosted onour QuickBlox AWS multi-tenant sharedserver\\n* Total user limit:**5000**\\n* File size limit:**50MB**\\n* Support byticketing system\\n### HIPAA Enterprise Plan (startsat**$899/mo**)\\nSuitable for production services granting the customer complete control over their user data, customization, technicalsupport,andSLA * Can behosted onQuickBlox’’s own managed cloud account orincustomer’’s own cloud account with preferred cloud service provider including Amazon Web Services, Google Cloud Platform, Microsoft Azure and others * Personal Account Manager, SLA with uptimeguarantee\\n* Optional Add-ons:\\n* - High Availability and Disaster Recovery (HA/DR)solution\\n* - Security enhancements (e.g.Graylog,OSSEC)\\n* - Dedicated Turn server, Conference callserver\\n### HIPAA On-Premises\\nSuitable for organizations who desire optimal security, require communications toremain within their own private network, and who have their own DevOps and on-premises data center\",\n", + " \"* Hosted onyour own dedicated servers inyour privately owned datacenter\\n* Granting you total control ofyour ePHI and chathistory\\n[Find out more](https://quickblox.com/enterprise/#get-enterprise)\\n## HIPAA Compliant Cloud Hosting\\nThere are avariety ofcloud hosting providers that offer HIPAA compliant environments QuickBlox can deploy software with anyone ofthese and more:\\nHosting with one ofthese cloud providersdoes notguarantee HIPAA compliance Youalso need toensure your application and software meet the safeguards outlined inthe HIPAA securityrule **Work with apartner like QuickBlox tomake sure you’’re covered.**\\n## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[On-Premise hosting](https://quickblox.com/hosting/on-premise/)\\n## Frequently Asked Questions\\n### What isHIPAA compliant hosting Any digital healthcare application that contains ePHI needs tobehosted onacloud infrastructure that complies with the technical, administrative, and physical safeguards outlined byHIPAA These safeguards are designed toprotect the integrity ofthe data and tocontrol who has access tothis data HIPAA compliant hosting requirements include encrypted data intransit and storage, access controls, person orentity authentication tools, and more ### Who needs HIPAA compliance Healthcare providers\\u2014 referred toasthe \\u00abcovered entity\\u00bb\\u2014 must comply with HIPAA, but equally their \\u00abbusiness associates\\u00bb who come into contact with patient data when providing services toahealthcare organization are also covered bythis legislation This means any cloud service provider, CPaaS provider, ormedical app developer who are inany way involved instoring, processes, ortransmitting PHI, are considered a \\u2019business associate\\u2019 and must comply with HIPAA ### What isPHI and ePHI Any medical data that contains individually identifiable health information about apatient (e.g name, address, date ofbirth, social security number) isreferred toasprotected health information (PHI), orwhen stored electronically ePHI There isanabundance ofmedical records including bills from doctors, emails, MRI scans, blood test results etc that fall under the rubric ofPHI/ePHI ### How much does HIPAA compliant hosting cost\",\n", + " \"The need for additional security enhancements such asdatabase encryption and software customization for extra monitoring &&intrusion detection means ahigher cost for HIPAA compliant hosting Encrypted HIPAA hosting onour shared cloud starts at$399/mo ### Which cloud providers are HIPAA compliant There are several cloud hosting providers who provide aninfrastructure that can beHIPAA compliant (e.g AWS, GCP, Azure), however, you are still responsible for configuring your software tosatisfy the HIPAA security rule Check tosee ifthe cloud provider will sign aBAA agreement and choose aservice provider like QuickBlox who can ensure aHIPAA compliant solution ### What are the penalties for non-compliance Penalties depend onthe severity ofthe breach, whether itwas intentional ornot They range from $100 to$50,000 per breach ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [HIPAA Compliant Cloud Hosting: What does it mean?](https://quickblox.com/blog/hipaa-compliant-cloud-hosting-what-does-it-mean/)\\nAnna S 31 Dec 2021\\n[Azure](https://quickblox.com/blog/hosting/azure/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Microsoft Azure HIPAA Compliant?](https://quickblox.com/blog/is-microsoft-azure-hipaa-compliant/)\\nAnna S 12 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Google Cloud Platform (GCP)](https://quickblox.com/blog/hosting/google-cloud-platform-gcp/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Google Cloud Platform HIPAA Compliant?](https://quickblox.com/blog/is-google-cloud-platform-hipaa-compliant/)\\nAnna S 1 Oct 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd\",\n", + " \"trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"* Virus scanning software toautomatically scan, tag, and notify you ofinfected files and malware * Web Application Firewall (WAF) tosecurely control web traffic, blocking spam bots from consuming resources, skewing metrics, and causing downtime onyour healthcare communication application ## HIPAA Compliant Video Hosting\\nConnect patients and doctors together with HIPAA compliant audio &&video calling and video conferencing, built onWebRTC and available with the QuickBlox HIPAA Enterprise Plan\\n### Dedicated TURN Server\\nDedicated WebRTC video calling traffic relay server for video calling through firewalls, bypassing NAT, and connecting geographically dispersed users [Learn more](https://quickblox.com/products/voice-and-video-calling/)\\n### Dedicated Conference Server\\nWeoffer HIPAA video conference hosting with adedicated conference server Enjoy high quality conference calls for multiple simultaneous users onaservice server that you control [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Conference Call Recording\\nConference call recording functionality tosave your video conferences Enables you tostore, access, and share video healthcare communications securely onyour dedicated server [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Telehealth Ready Solution: Q‑Consultation\\nWeoffer aHIPAA compliant virtual waiting room with tele-consultation app Fully customizable, packed with features, and works onany device and the web [Learn more](https://quickblox.com/products/q-consultation/)\\n## HIPAA Compliant Hosting Plans\\nQuickBlox provides arange ofplans depending onthe size ofyour organization and budget All our HIPAA plans provide full data encryption and come with aBusiness Associates Agreement ### HIPAA (Shared) Cloud Plan (starts at**$399/mo**)\\nSuitable for smaller organizations for POCs (proof ofconcept) and MVP (minimal viable product) use-cases that require data encryption but have alimited budget * Software ishosted onour QuickBlox AWS multi-tenant sharedserver\\n* Total user limit:**5000**\\n* File size limit:**50MB**\\n* Support byticketing system\\n### HIPAA Enterprise Plan (startsat**$899/mo**)\\nSuitable for production services granting the customer complete control over their user data, customization, technicalsupport,andSLA * Can behosted onQuickBlox’’s own managed cloud account orincustomer’’s own cloud account with preferred cloud service provider including Amazon Web Services, Google Cloud Platform, Microsoft Azure and others * Personal Account Manager, SLA with uptimeguarantee\\n* Optional Add-ons:\\n* - High Availability and Disaster Recovery (HA/DR)solution\\n* - Security enhancements (e.g.Graylog,OSSEC)\\n* - Dedicated Turn server, Conference callserver\\n### HIPAA On-Premises\\nSuitable for organizations who desire optimal security, require communications toremain within their own private network, and who have their own DevOps and on-premises data center\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 57 Type: step\n", + "output: {\n", + " \"documents\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# HIPAA Compliant Hosting\\nOur healthcare communication solutions are designed with HIPAA compliance inmind Build and deliver powerful HIPAA chat apps inthe full confidence that sensitive ePHI remains secure and compliance requirements are satisfied ## What isHIPAA Compliance HIPAA (Health Insurance Portability and Accountability Act of1996) sets national standards for safeguarding protected health information (PHI) Any business that collects, stores, ortransmits PHI isrequired tocomply with HIPAA physical, technical, and administrative safeguards Failure todosocan result incompromised patient data and hefty penalties for the involved party ## Why QuickBlox ### Experienced inHealthcare\\nWeare experienced working with the Healthcare industry and HealthTech Weprovide HIPAA compliant hosting solutions configured for enhanced data privacy and inaccordance with HIPAA security rules ### Host Anywhere\\nWeunderstand your need for data security that’’s why wedeploy our software wherever you need, including inyour own cloud account with ahosting provider ofyour choice sothat sensitive PHI remains firmly inyour ownership and control ### Enterprise Ready\\nWebuild enterprise ready solutions Our skilled DevOps team can provide anarray ofsoftware tools, integrations, and configurations toensure enterprise grade security and support for your HIPAA compliant solution [Speak to us](https://quickblox.com/enterprise/#get-enterprise)\\n## QuickBlox HIPAA Compliant HostingSolutions\\nThe easiest way tosatisfy HIPAA requirements istopartner with aHIPAA compliant communication solutions provider, like QuickBlox Wehave asolid history providing enterprise solutions for healthcare ### Key Features\\n#### Your choice ofHIPAA Compliant Cloud\\nSoftware can bedeployed toyour preferred hosting environment including Amazon Web Services, Google Cloud Platform, and Microsoft Azure\",\n", + " \"Weconfigure your dedicated instance sothat itmeets HIPAA-compliant hosting requirements QuickBlox can also host for you inour own HIPAA compliant account #### Fully Encrypted Server Configuration\\nWith QuickBlox, data isencrypted intransit and atrest Weoffer full encryption ofuser databases, files/content, and connections which means ePHI, communication history, and user data issafe and secure #### Customization ofSoftware tosupport HIPAA Technical Safeguards\\nOur back-end platform can becustomized tosupport numerous security features,e.g * access control via unique usernames and passwords toprevent unauthorized access\\n* person orentity authentication tools such astwo-factor authentication\\n* anonymous sessions with automatic logoff procedures\\n#### AFully Managed Service\\nOur Enterprise Plan provides afully managed service with dedicated maintenance and real-time monitoring Weoffer aService Level Agreement (SLA) with uptime guarantee #### Provision ofBusiness Associate Agreement\\nWeprovide our healthcare customers with aBAA Bysigning this agreement wedemonstrate our knowledge ofHIPAA compliance rules and our experience with supporting compliant healthcare communication solutions ## Advanced Features\\nWeoffer anarray ofdata protection tools tosafeguard your instance without your data ever leaving your server\\n### High Availability and Disaster Recovery(HA/DR)\\n* HA/DR keeps your applications running inthe event ofany system issues, soyour users never lose messaging and calling functionalities * AHigh Availability solution replicates your communication infrastructure toensure constant availability This isideal for critical business solutions like healthcare * Our Disaster Recovery plan provides full backup management toensure that sensitive data can befully recovered inthe worst case scenario ofinterrupted orcompromised services ### Software integration for enhanced security standards\\n* Diligent monitoring ofyour cloud environment with Graylog, alog storage and management tool that allows your engineers toeasily manage logs and structured analytical data all inone place * Intrusion detection with OSSEC, ahost-based system that performs log analysis, integrity checking, registry monitoring, rootlet detection, time-based alerting, and active response\",\n", + " \"* Virus scanning software toautomatically scan, tag, and notify you ofinfected files and malware * Web Application Firewall (WAF) tosecurely control web traffic, blocking spam bots from consuming resources, skewing metrics, and causing downtime onyour healthcare communication application ## HIPAA Compliant Video Hosting\\nConnect patients and doctors together with HIPAA compliant audio &&video calling and video conferencing, built onWebRTC and available with the QuickBlox HIPAA Enterprise Plan\\n### Dedicated TURN Server\\nDedicated WebRTC video calling traffic relay server for video calling through firewalls, bypassing NAT, and connecting geographically dispersed users [Learn more](https://quickblox.com/products/voice-and-video-calling/)\\n### Dedicated Conference Server\\nWeoffer HIPAA video conference hosting with adedicated conference server Enjoy high quality conference calls for multiple simultaneous users onaservice server that you control [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Conference Call Recording\\nConference call recording functionality tosave your video conferences Enables you tostore, access, and share video healthcare communications securely onyour dedicated server [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Telehealth Ready Solution: Q‑Consultation\\nWeoffer aHIPAA compliant virtual waiting room with tele-consultation app Fully customizable, packed with features, and works onany device and the web [Learn more](https://quickblox.com/products/q-consultation/)\\n## HIPAA Compliant Hosting Plans\\nQuickBlox provides arange ofplans depending onthe size ofyour organization and budget All our HIPAA plans provide full data encryption and come with aBusiness Associates Agreement ### HIPAA (Shared) Cloud Plan (starts at**$399/mo**)\\nSuitable for smaller organizations for POCs (proof ofconcept) and MVP (minimal viable product) use-cases that require data encryption but have alimited budget * Software ishosted onour QuickBlox AWS multi-tenant sharedserver\\n* Total user limit:**5000**\\n* File size limit:**50MB**\\n* Support byticketing system\\n### HIPAA Enterprise Plan (startsat**$899/mo**)\\nSuitable for production services granting the customer complete control over their user data, customization, technicalsupport,andSLA * Can behosted onQuickBlox’’s own managed cloud account orincustomer’’s own cloud account with preferred cloud service provider including Amazon Web Services, Google Cloud Platform, Microsoft Azure and others * Personal Account Manager, SLA with uptimeguarantee\\n* Optional Add-ons:\\n* - High Availability and Disaster Recovery (HA/DR)solution\\n* - Security enhancements (e.g.Graylog,OSSEC)\\n* - Dedicated Turn server, Conference callserver\\n### HIPAA On-Premises\\nSuitable for organizations who desire optimal security, require communications toremain within their own private network, and who have their own DevOps and on-premises data center\",\n", + " \"* Hosted onyour own dedicated servers inyour privately owned datacenter\\n* Granting you total control ofyour ePHI and chathistory\\n[Find out more](https://quickblox.com/enterprise/#get-enterprise)\\n## HIPAA Compliant Cloud Hosting\\nThere are avariety ofcloud hosting providers that offer HIPAA compliant environments QuickBlox can deploy software with anyone ofthese and more:\\nHosting with one ofthese cloud providersdoes notguarantee HIPAA compliance Youalso need toensure your application and software meet the safeguards outlined inthe HIPAA securityrule **Work with apartner like QuickBlox tomake sure you’’re covered.**\\n## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[On-Premise hosting](https://quickblox.com/hosting/on-premise/)\\n## Frequently Asked Questions\\n### What isHIPAA compliant hosting Any digital healthcare application that contains ePHI needs tobehosted onacloud infrastructure that complies with the technical, administrative, and physical safeguards outlined byHIPAA These safeguards are designed toprotect the integrity ofthe data and tocontrol who has access tothis data HIPAA compliant hosting requirements include encrypted data intransit and storage, access controls, person orentity authentication tools, and more ### Who needs HIPAA compliance Healthcare providers\\u2014 referred toasthe \\u00abcovered entity\\u00bb\\u2014 must comply with HIPAA, but equally their \\u00abbusiness associates\\u00bb who come into contact with patient data when providing services toahealthcare organization are also covered bythis legislation This means any cloud service provider, CPaaS provider, ormedical app developer who are inany way involved instoring, processes, ortransmitting PHI, are considered a \\u2019business associate\\u2019 and must comply with HIPAA ### What isPHI and ePHI Any medical data that contains individually identifiable health information about apatient (e.g name, address, date ofbirth, social security number) isreferred toasprotected health information (PHI), orwhen stored electronically ePHI There isanabundance ofmedical records including bills from doctors, emails, MRI scans, blood test results etc that fall under the rubric ofPHI/ePHI ### How much does HIPAA compliant hosting cost\",\n", + " \"The need for additional security enhancements such asdatabase encryption and software customization for extra monitoring &&intrusion detection means ahigher cost for HIPAA compliant hosting Encrypted HIPAA hosting onour shared cloud starts at$399/mo ### Which cloud providers are HIPAA compliant There are several cloud hosting providers who provide aninfrastructure that can beHIPAA compliant (e.g AWS, GCP, Azure), however, you are still responsible for configuring your software tosatisfy the HIPAA security rule Check tosee ifthe cloud provider will sign aBAA agreement and choose aservice provider like QuickBlox who can ensure aHIPAA compliant solution ### What are the penalties for non-compliance Penalties depend onthe severity ofthe breach, whether itwas intentional ornot They range from $100 to$50,000 per breach ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [HIPAA Compliant Cloud Hosting: What does it mean?](https://quickblox.com/blog/hipaa-compliant-cloud-hosting-what-does-it-mean/)\\nAnna S 31 Dec 2021\\n[Azure](https://quickblox.com/blog/hosting/azure/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Microsoft Azure HIPAA Compliant?](https://quickblox.com/blog/is-microsoft-azure-hipaa-compliant/)\\nAnna S 12 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Google Cloud Platform (GCP)](https://quickblox.com/blog/hosting/google-cloud-platform-gcp/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Google Cloud Platform HIPAA Compliant?](https://quickblox.com/blog/is-google-cloud-platform-hipaa-compliant/)\\nAnna S 1 Oct 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd\",\n", + " \"trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 58 Type: init_branch\n", + "output: {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# HIPAA Compliant Hosting\\nOur healthcare communication solutions are designed with HIPAA compliance inmind Build and deliver powerful HIPAA chat apps inthe full confidence that sensitive ePHI remains secure and compliance requirements are satisfied ## What isHIPAA Compliance HIPAA (Health Insurance Portability and Accountability Act of1996) sets national standards for safeguarding protected health information (PHI) Any business that collects, stores, ortransmits PHI isrequired tocomply with HIPAA physical, technical, and administrative safeguards Failure todosocan result incompromised patient data and hefty penalties for the involved party ## Why QuickBlox ### Experienced inHealthcare\\nWeare experienced working with the Healthcare industry and HealthTech Weprovide HIPAA compliant hosting solutions configured for enhanced data privacy and inaccordance with HIPAA security rules ### Host Anywhere\\nWeunderstand your need for data security that’’s why wedeploy our software wherever you need, including inyour own cloud account with ahosting provider ofyour choice sothat sensitive PHI remains firmly inyour ownership and control ### Enterprise Ready\\nWebuild enterprise ready solutions Our skilled DevOps team can provide anarray ofsoftware tools, integrations, and configurations toensure enterprise grade security and support for your HIPAA compliant solution [Speak to us](https://quickblox.com/enterprise/#get-enterprise)\\n## QuickBlox HIPAA Compliant HostingSolutions\\nThe easiest way tosatisfy HIPAA requirements istopartner with aHIPAA compliant communication solutions provider, like QuickBlox Wehave asolid history providing enterprise solutions for healthcare ### Key Features\\n#### Your choice ofHIPAA Compliant Cloud\\nSoftware can bedeployed toyour preferred hosting environment including Amazon Web Services, Google Cloud Platform, and Microsoft Azure\",\n", + " \"Weconfigure your dedicated instance sothat itmeets HIPAA-compliant hosting requirements QuickBlox can also host for you inour own HIPAA compliant account #### Fully Encrypted Server Configuration\\nWith QuickBlox, data isencrypted intransit and atrest Weoffer full encryption ofuser databases, files/content, and connections which means ePHI, communication history, and user data issafe and secure #### Customization ofSoftware tosupport HIPAA Technical Safeguards\\nOur back-end platform can becustomized tosupport numerous security features,e.g * access control via unique usernames and passwords toprevent unauthorized access\\n* person orentity authentication tools such astwo-factor authentication\\n* anonymous sessions with automatic logoff procedures\\n#### AFully Managed Service\\nOur Enterprise Plan provides afully managed service with dedicated maintenance and real-time monitoring Weoffer aService Level Agreement (SLA) with uptime guarantee #### Provision ofBusiness Associate Agreement\\nWeprovide our healthcare customers with aBAA Bysigning this agreement wedemonstrate our knowledge ofHIPAA compliance rules and our experience with supporting compliant healthcare communication solutions ## Advanced Features\\nWeoffer anarray ofdata protection tools tosafeguard your instance without your data ever leaving your server\\n### High Availability and Disaster Recovery(HA/DR)\\n* HA/DR keeps your applications running inthe event ofany system issues, soyour users never lose messaging and calling functionalities * AHigh Availability solution replicates your communication infrastructure toensure constant availability This isideal for critical business solutions like healthcare * Our Disaster Recovery plan provides full backup management toensure that sensitive data can befully recovered inthe worst case scenario ofinterrupted orcompromised services ### Software integration for enhanced security standards\\n* Diligent monitoring ofyour cloud environment with Graylog, alog storage and management tool that allows your engineers toeasily manage logs and structured analytical data all inone place * Intrusion detection with OSSEC, ahost-based system that performs log analysis, integrity checking, registry monitoring, rootlet detection, time-based alerting, and active response\",\n", + " \"* Virus scanning software toautomatically scan, tag, and notify you ofinfected files and malware * Web Application Firewall (WAF) tosecurely control web traffic, blocking spam bots from consuming resources, skewing metrics, and causing downtime onyour healthcare communication application ## HIPAA Compliant Video Hosting\\nConnect patients and doctors together with HIPAA compliant audio &&video calling and video conferencing, built onWebRTC and available with the QuickBlox HIPAA Enterprise Plan\\n### Dedicated TURN Server\\nDedicated WebRTC video calling traffic relay server for video calling through firewalls, bypassing NAT, and connecting geographically dispersed users [Learn more](https://quickblox.com/products/voice-and-video-calling/)\\n### Dedicated Conference Server\\nWeoffer HIPAA video conference hosting with adedicated conference server Enjoy high quality conference calls for multiple simultaneous users onaservice server that you control [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Conference Call Recording\\nConference call recording functionality tosave your video conferences Enables you tostore, access, and share video healthcare communications securely onyour dedicated server [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Telehealth Ready Solution: Q‑Consultation\\nWeoffer aHIPAA compliant virtual waiting room with tele-consultation app Fully customizable, packed with features, and works onany device and the web [Learn more](https://quickblox.com/products/q-consultation/)\\n## HIPAA Compliant Hosting Plans\\nQuickBlox provides arange ofplans depending onthe size ofyour organization and budget All our HIPAA plans provide full data encryption and come with aBusiness Associates Agreement ### HIPAA (Shared) Cloud Plan (starts at**$399/mo**)\\nSuitable for smaller organizations for POCs (proof ofconcept) and MVP (minimal viable product) use-cases that require data encryption but have alimited budget * Software ishosted onour QuickBlox AWS multi-tenant sharedserver\\n* Total user limit:**5000**\\n* File size limit:**50MB**\\n* Support byticketing system\\n### HIPAA Enterprise Plan (startsat**$899/mo**)\\nSuitable for production services granting the customer complete control over their user data, customization, technicalsupport,andSLA * Can behosted onQuickBlox’’s own managed cloud account orincustomer’’s own cloud account with preferred cloud service provider including Amazon Web Services, Google Cloud Platform, Microsoft Azure and others * Personal Account Manager, SLA with uptimeguarantee\\n* Optional Add-ons:\\n* - High Availability and Disaster Recovery (HA/DR)solution\\n* - Security enhancements (e.g.Graylog,OSSEC)\\n* - Dedicated Turn server, Conference callserver\\n### HIPAA On-Premises\\nSuitable for organizations who desire optimal security, require communications toremain within their own private network, and who have their own DevOps and on-premises data center\",\n", + " \"* Hosted onyour own dedicated servers inyour privately owned datacenter\\n* Granting you total control ofyour ePHI and chathistory\\n[Find out more](https://quickblox.com/enterprise/#get-enterprise)\\n## HIPAA Compliant Cloud Hosting\\nThere are avariety ofcloud hosting providers that offer HIPAA compliant environments QuickBlox can deploy software with anyone ofthese and more:\\nHosting with one ofthese cloud providersdoes notguarantee HIPAA compliance Youalso need toensure your application and software meet the safeguards outlined inthe HIPAA securityrule **Work with apartner like QuickBlox tomake sure you’’re covered.**\\n## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[On-Premise hosting](https://quickblox.com/hosting/on-premise/)\\n## Frequently Asked Questions\\n### What isHIPAA compliant hosting Any digital healthcare application that contains ePHI needs tobehosted onacloud infrastructure that complies with the technical, administrative, and physical safeguards outlined byHIPAA These safeguards are designed toprotect the integrity ofthe data and tocontrol who has access tothis data HIPAA compliant hosting requirements include encrypted data intransit and storage, access controls, person orentity authentication tools, and more ### Who needs HIPAA compliance Healthcare providers\\u2014 referred toasthe \\u00abcovered entity\\u00bb\\u2014 must comply with HIPAA, but equally their \\u00abbusiness associates\\u00bb who come into contact with patient data when providing services toahealthcare organization are also covered bythis legislation This means any cloud service provider, CPaaS provider, ormedical app developer who are inany way involved instoring, processes, ortransmitting PHI, are considered a \\u2019business associate\\u2019 and must comply with HIPAA ### What isPHI and ePHI Any medical data that contains individually identifiable health information about apatient (e.g name, address, date ofbirth, social security number) isreferred toasprotected health information (PHI), orwhen stored electronically ePHI There isanabundance ofmedical records including bills from doctors, emails, MRI scans, blood test results etc that fall under the rubric ofPHI/ePHI ### How much does HIPAA compliant hosting cost\",\n", + " \"The need for additional security enhancements such asdatabase encryption and software customization for extra monitoring &&intrusion detection means ahigher cost for HIPAA compliant hosting Encrypted HIPAA hosting onour shared cloud starts at$399/mo ### Which cloud providers are HIPAA compliant There are several cloud hosting providers who provide aninfrastructure that can beHIPAA compliant (e.g AWS, GCP, Azure), however, you are still responsible for configuring your software tosatisfy the HIPAA security rule Check tosee ifthe cloud provider will sign aBAA agreement and choose aservice provider like QuickBlox who can ensure aHIPAA compliant solution ### What are the penalties for non-compliance Penalties depend onthe severity ofthe breach, whether itwas intentional ornot They range from $100 to$50,000 per breach ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [HIPAA Compliant Cloud Hosting: What does it mean?](https://quickblox.com/blog/hipaa-compliant-cloud-hosting-what-does-it-mean/)\\nAnna S 31 Dec 2021\\n[Azure](https://quickblox.com/blog/hosting/azure/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Microsoft Azure HIPAA Compliant?](https://quickblox.com/blog/is-microsoft-azure-hipaa-compliant/)\\nAnna S 12 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Google Cloud Platform (GCP)](https://quickblox.com/blog/hosting/google-cloud-platform-gcp/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Google Cloud Platform HIPAA Compliant?](https://quickblox.com/blog/is-google-cloud-platform-hipaa-compliant/)\\nAnna S 1 Oct 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd\",\n", + " \"trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 59 Type: step\n", + "output: {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# HIPAA Compliant Hosting\\nOur healthcare communication solutions are designed with HIPAA compliance inmind Build and deliver powerful HIPAA chat apps inthe full confidence that sensitive ePHI remains secure and compliance requirements are satisfied ## What isHIPAA Compliance HIPAA (Health Insurance Portability and Accountability Act of1996) sets national standards for safeguarding protected health information (PHI) Any business that collects, stores, ortransmits PHI isrequired tocomply with HIPAA physical, technical, and administrative safeguards Failure todosocan result incompromised patient data and hefty penalties for the involved party ## Why QuickBlox ### Experienced inHealthcare\\nWeare experienced working with the Healthcare industry and HealthTech Weprovide HIPAA compliant hosting solutions configured for enhanced data privacy and inaccordance with HIPAA security rules ### Host Anywhere\\nWeunderstand your need for data security that’’s why wedeploy our software wherever you need, including inyour own cloud account with ahosting provider ofyour choice sothat sensitive PHI remains firmly inyour ownership and control ### Enterprise Ready\\nWebuild enterprise ready solutions Our skilled DevOps team can provide anarray ofsoftware tools, integrations, and configurations toensure enterprise grade security and support for your HIPAA compliant solution [Speak to us](https://quickblox.com/enterprise/#get-enterprise)\\n## QuickBlox HIPAA Compliant HostingSolutions\\nThe easiest way tosatisfy HIPAA requirements istopartner with aHIPAA compliant communication solutions provider, like QuickBlox Wehave asolid history providing enterprise solutions for healthcare ### Key Features\\n#### Your choice ofHIPAA Compliant Cloud\\nSoftware can bedeployed toyour preferred hosting environment including Amazon Web Services, Google Cloud Platform, and Microsoft Azure\",\n", + " \"Weconfigure your dedicated instance sothat itmeets HIPAA-compliant hosting requirements QuickBlox can also host for you inour own HIPAA compliant account #### Fully Encrypted Server Configuration\\nWith QuickBlox, data isencrypted intransit and atrest Weoffer full encryption ofuser databases, files/content, and connections which means ePHI, communication history, and user data issafe and secure #### Customization ofSoftware tosupport HIPAA Technical Safeguards\\nOur back-end platform can becustomized tosupport numerous security features,e.g * access control via unique usernames and passwords toprevent unauthorized access\\n* person orentity authentication tools such astwo-factor authentication\\n* anonymous sessions with automatic logoff procedures\\n#### AFully Managed Service\\nOur Enterprise Plan provides afully managed service with dedicated maintenance and real-time monitoring Weoffer aService Level Agreement (SLA) with uptime guarantee #### Provision ofBusiness Associate Agreement\\nWeprovide our healthcare customers with aBAA Bysigning this agreement wedemonstrate our knowledge ofHIPAA compliance rules and our experience with supporting compliant healthcare communication solutions ## Advanced Features\\nWeoffer anarray ofdata protection tools tosafeguard your instance without your data ever leaving your server\\n### High Availability and Disaster Recovery(HA/DR)\\n* HA/DR keeps your applications running inthe event ofany system issues, soyour users never lose messaging and calling functionalities * AHigh Availability solution replicates your communication infrastructure toensure constant availability This isideal for critical business solutions like healthcare * Our Disaster Recovery plan provides full backup management toensure that sensitive data can befully recovered inthe worst case scenario ofinterrupted orcompromised services ### Software integration for enhanced security standards\\n* Diligent monitoring ofyour cloud environment with Graylog, alog storage and management tool that allows your engineers toeasily manage logs and structured analytical data all inone place * Intrusion detection with OSSEC, ahost-based system that performs log analysis, integrity checking, registry monitoring, rootlet detection, time-based alerting, and active response\",\n", + " \"* Virus scanning software toautomatically scan, tag, and notify you ofinfected files and malware * Web Application Firewall (WAF) tosecurely control web traffic, blocking spam bots from consuming resources, skewing metrics, and causing downtime onyour healthcare communication application ## HIPAA Compliant Video Hosting\\nConnect patients and doctors together with HIPAA compliant audio &&video calling and video conferencing, built onWebRTC and available with the QuickBlox HIPAA Enterprise Plan\\n### Dedicated TURN Server\\nDedicated WebRTC video calling traffic relay server for video calling through firewalls, bypassing NAT, and connecting geographically dispersed users [Learn more](https://quickblox.com/products/voice-and-video-calling/)\\n### Dedicated Conference Server\\nWeoffer HIPAA video conference hosting with adedicated conference server Enjoy high quality conference calls for multiple simultaneous users onaservice server that you control [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Conference Call Recording\\nConference call recording functionality tosave your video conferences Enables you tostore, access, and share video healthcare communications securely onyour dedicated server [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Telehealth Ready Solution: Q‑Consultation\\nWeoffer aHIPAA compliant virtual waiting room with tele-consultation app Fully customizable, packed with features, and works onany device and the web [Learn more](https://quickblox.com/products/q-consultation/)\\n## HIPAA Compliant Hosting Plans\\nQuickBlox provides arange ofplans depending onthe size ofyour organization and budget All our HIPAA plans provide full data encryption and come with aBusiness Associates Agreement ### HIPAA (Shared) Cloud Plan (starts at**$399/mo**)\\nSuitable for smaller organizations for POCs (proof ofconcept) and MVP (minimal viable product) use-cases that require data encryption but have alimited budget * Software ishosted onour QuickBlox AWS multi-tenant sharedserver\\n* Total user limit:**5000**\\n* File size limit:**50MB**\\n* Support byticketing system\\n### HIPAA Enterprise Plan (startsat**$899/mo**)\\nSuitable for production services granting the customer complete control over their user data, customization, technicalsupport,andSLA * Can behosted onQuickBlox’’s own managed cloud account orincustomer’’s own cloud account with preferred cloud service provider including Amazon Web Services, Google Cloud Platform, Microsoft Azure and others * Personal Account Manager, SLA with uptimeguarantee\\n* Optional Add-ons:\\n* - High Availability and Disaster Recovery (HA/DR)solution\\n* - Security enhancements (e.g.Graylog,OSSEC)\\n* - Dedicated Turn server, Conference callserver\\n### HIPAA On-Premises\\nSuitable for organizations who desire optimal security, require communications toremain within their own private network, and who have their own DevOps and on-premises data center\",\n", + " \"* Hosted onyour own dedicated servers inyour privately owned datacenter\\n* Granting you total control ofyour ePHI and chathistory\\n[Find out more](https://quickblox.com/enterprise/#get-enterprise)\\n## HIPAA Compliant Cloud Hosting\\nThere are avariety ofcloud hosting providers that offer HIPAA compliant environments QuickBlox can deploy software with anyone ofthese and more:\\nHosting with one ofthese cloud providersdoes notguarantee HIPAA compliance Youalso need toensure your application and software meet the safeguards outlined inthe HIPAA securityrule **Work with apartner like QuickBlox tomake sure you’’re covered.**\\n## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[On-Premise hosting](https://quickblox.com/hosting/on-premise/)\\n## Frequently Asked Questions\\n### What isHIPAA compliant hosting Any digital healthcare application that contains ePHI needs tobehosted onacloud infrastructure that complies with the technical, administrative, and physical safeguards outlined byHIPAA These safeguards are designed toprotect the integrity ofthe data and tocontrol who has access tothis data HIPAA compliant hosting requirements include encrypted data intransit and storage, access controls, person orentity authentication tools, and more ### Who needs HIPAA compliance Healthcare providers\\u2014 referred toasthe \\u00abcovered entity\\u00bb\\u2014 must comply with HIPAA, but equally their \\u00abbusiness associates\\u00bb who come into contact with patient data when providing services toahealthcare organization are also covered bythis legislation This means any cloud service provider, CPaaS provider, ormedical app developer who are inany way involved instoring, processes, ortransmitting PHI, are considered a \\u2019business associate\\u2019 and must comply with HIPAA ### What isPHI and ePHI Any medical data that contains individually identifiable health information about apatient (e.g name, address, date ofbirth, social security number) isreferred toasprotected health information (PHI), orwhen stored electronically ePHI There isanabundance ofmedical records including bills from doctors, emails, MRI scans, blood test results etc that fall under the rubric ofPHI/ePHI ### How much does HIPAA compliant hosting cost\",\n", + " \"The need for additional security enhancements such asdatabase encryption and software customization for extra monitoring &&intrusion detection means ahigher cost for HIPAA compliant hosting Encrypted HIPAA hosting onour shared cloud starts at$399/mo ### Which cloud providers are HIPAA compliant There are several cloud hosting providers who provide aninfrastructure that can beHIPAA compliant (e.g AWS, GCP, Azure), however, you are still responsible for configuring your software tosatisfy the HIPAA security rule Check tosee ifthe cloud provider will sign aBAA agreement and choose aservice provider like QuickBlox who can ensure aHIPAA compliant solution ### What are the penalties for non-compliance Penalties depend onthe severity ofthe breach, whether itwas intentional ornot They range from $100 to$50,000 per breach ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [HIPAA Compliant Cloud Hosting: What does it mean?](https://quickblox.com/blog/hipaa-compliant-cloud-hosting-what-does-it-mean/)\\nAnna S 31 Dec 2021\\n[Azure](https://quickblox.com/blog/hosting/azure/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Microsoft Azure HIPAA Compliant?](https://quickblox.com/blog/is-microsoft-azure-hipaa-compliant/)\\nAnna S 12 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Google Cloud Platform (GCP)](https://quickblox.com/blog/hosting/google-cloud-platform-gcp/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Google Cloud Platform HIPAA Compliant?](https://quickblox.com/blog/is-google-cloud-platform-hipaa-compliant/)\\nAnna S 1 Oct 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd\",\n", + " \"trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 60 Type: init_branch\n", + "output: {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# HIPAA Compliant Hosting\\nOur healthcare communication solutions are designed with HIPAA compliance inmind Build and deliver powerful HIPAA chat apps inthe full confidence that sensitive ePHI remains secure and compliance requirements are satisfied ## What isHIPAA Compliance HIPAA (Health Insurance Portability and Accountability Act of1996) sets national standards for safeguarding protected health information (PHI) Any business that collects, stores, ortransmits PHI isrequired tocomply with HIPAA physical, technical, and administrative safeguards Failure todosocan result incompromised patient data and hefty penalties for the involved party ## Why QuickBlox ### Experienced inHealthcare\\nWeare experienced working with the Healthcare industry and HealthTech Weprovide HIPAA compliant hosting solutions configured for enhanced data privacy and inaccordance with HIPAA security rules ### Host Anywhere\\nWeunderstand your need for data security that’’s why wedeploy our software wherever you need, including inyour own cloud account with ahosting provider ofyour choice sothat sensitive PHI remains firmly inyour ownership and control ### Enterprise Ready\\nWebuild enterprise ready solutions Our skilled DevOps team can provide anarray ofsoftware tools, integrations, and configurations toensure enterprise grade security and support for your HIPAA compliant solution [Speak to us](https://quickblox.com/enterprise/#get-enterprise)\\n## QuickBlox HIPAA Compliant HostingSolutions\\nThe easiest way tosatisfy HIPAA requirements istopartner with aHIPAA compliant communication solutions provider, like QuickBlox Wehave asolid history providing enterprise solutions for healthcare ### Key Features\\n#### Your choice ofHIPAA Compliant Cloud\\nSoftware can bedeployed toyour preferred hosting environment including Amazon Web Services, Google Cloud Platform, and Microsoft Azure\",\n", + " \"Weconfigure your dedicated instance sothat itmeets HIPAA-compliant hosting requirements QuickBlox can also host for you inour own HIPAA compliant account #### Fully Encrypted Server Configuration\\nWith QuickBlox, data isencrypted intransit and atrest Weoffer full encryption ofuser databases, files/content, and connections which means ePHI, communication history, and user data issafe and secure #### Customization ofSoftware tosupport HIPAA Technical Safeguards\\nOur back-end platform can becustomized tosupport numerous security features,e.g * access control via unique usernames and passwords toprevent unauthorized access\\n* person orentity authentication tools such astwo-factor authentication\\n* anonymous sessions with automatic logoff procedures\\n#### AFully Managed Service\\nOur Enterprise Plan provides afully managed service with dedicated maintenance and real-time monitoring Weoffer aService Level Agreement (SLA) with uptime guarantee #### Provision ofBusiness Associate Agreement\\nWeprovide our healthcare customers with aBAA Bysigning this agreement wedemonstrate our knowledge ofHIPAA compliance rules and our experience with supporting compliant healthcare communication solutions ## Advanced Features\\nWeoffer anarray ofdata protection tools tosafeguard your instance without your data ever leaving your server\\n### High Availability and Disaster Recovery(HA/DR)\\n* HA/DR keeps your applications running inthe event ofany system issues, soyour users never lose messaging and calling functionalities * AHigh Availability solution replicates your communication infrastructure toensure constant availability This isideal for critical business solutions like healthcare * Our Disaster Recovery plan provides full backup management toensure that sensitive data can befully recovered inthe worst case scenario ofinterrupted orcompromised services ### Software integration for enhanced security standards\\n* Diligent monitoring ofyour cloud environment with Graylog, alog storage and management tool that allows your engineers toeasily manage logs and structured analytical data all inone place * Intrusion detection with OSSEC, ahost-based system that performs log analysis, integrity checking, registry monitoring, rootlet detection, time-based alerting, and active response\",\n", + " \"* Virus scanning software toautomatically scan, tag, and notify you ofinfected files and malware * Web Application Firewall (WAF) tosecurely control web traffic, blocking spam bots from consuming resources, skewing metrics, and causing downtime onyour healthcare communication application ## HIPAA Compliant Video Hosting\\nConnect patients and doctors together with HIPAA compliant audio &&video calling and video conferencing, built onWebRTC and available with the QuickBlox HIPAA Enterprise Plan\\n### Dedicated TURN Server\\nDedicated WebRTC video calling traffic relay server for video calling through firewalls, bypassing NAT, and connecting geographically dispersed users [Learn more](https://quickblox.com/products/voice-and-video-calling/)\\n### Dedicated Conference Server\\nWeoffer HIPAA video conference hosting with adedicated conference server Enjoy high quality conference calls for multiple simultaneous users onaservice server that you control [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Conference Call Recording\\nConference call recording functionality tosave your video conferences Enables you tostore, access, and share video healthcare communications securely onyour dedicated server [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Telehealth Ready Solution: Q‑Consultation\\nWeoffer aHIPAA compliant virtual waiting room with tele-consultation app Fully customizable, packed with features, and works onany device and the web [Learn more](https://quickblox.com/products/q-consultation/)\\n## HIPAA Compliant Hosting Plans\\nQuickBlox provides arange ofplans depending onthe size ofyour organization and budget All our HIPAA plans provide full data encryption and come with aBusiness Associates Agreement ### HIPAA (Shared) Cloud Plan (starts at**$399/mo**)\\nSuitable for smaller organizations for POCs (proof ofconcept) and MVP (minimal viable product) use-cases that require data encryption but have alimited budget * Software ishosted onour QuickBlox AWS multi-tenant sharedserver\\n* Total user limit:**5000**\\n* File size limit:**50MB**\\n* Support byticketing system\\n### HIPAA Enterprise Plan (startsat**$899/mo**)\\nSuitable for production services granting the customer complete control over their user data, customization, technicalsupport,andSLA * Can behosted onQuickBlox’’s own managed cloud account orincustomer’’s own cloud account with preferred cloud service provider including Amazon Web Services, Google Cloud Platform, Microsoft Azure and others * Personal Account Manager, SLA with uptimeguarantee\\n* Optional Add-ons:\\n* - High Availability and Disaster Recovery (HA/DR)solution\\n* - Security enhancements (e.g.Graylog,OSSEC)\\n* - Dedicated Turn server, Conference callserver\\n### HIPAA On-Premises\\nSuitable for organizations who desire optimal security, require communications toremain within their own private network, and who have their own DevOps and on-premises data center\",\n", + " \"* Hosted onyour own dedicated servers inyour privately owned datacenter\\n* Granting you total control ofyour ePHI and chathistory\\n[Find out more](https://quickblox.com/enterprise/#get-enterprise)\\n## HIPAA Compliant Cloud Hosting\\nThere are avariety ofcloud hosting providers that offer HIPAA compliant environments QuickBlox can deploy software with anyone ofthese and more:\\nHosting with one ofthese cloud providersdoes notguarantee HIPAA compliance Youalso need toensure your application and software meet the safeguards outlined inthe HIPAA securityrule **Work with apartner like QuickBlox tomake sure you’’re covered.**\\n## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[On-Premise hosting](https://quickblox.com/hosting/on-premise/)\\n## Frequently Asked Questions\\n### What isHIPAA compliant hosting Any digital healthcare application that contains ePHI needs tobehosted onacloud infrastructure that complies with the technical, administrative, and physical safeguards outlined byHIPAA These safeguards are designed toprotect the integrity ofthe data and tocontrol who has access tothis data HIPAA compliant hosting requirements include encrypted data intransit and storage, access controls, person orentity authentication tools, and more ### Who needs HIPAA compliance Healthcare providers\\u2014 referred toasthe \\u00abcovered entity\\u00bb\\u2014 must comply with HIPAA, but equally their \\u00abbusiness associates\\u00bb who come into contact with patient data when providing services toahealthcare organization are also covered bythis legislation This means any cloud service provider, CPaaS provider, ormedical app developer who are inany way involved instoring, processes, ortransmitting PHI, are considered a \\u2019business associate\\u2019 and must comply with HIPAA ### What isPHI and ePHI Any medical data that contains individually identifiable health information about apatient (e.g name, address, date ofbirth, social security number) isreferred toasprotected health information (PHI), orwhen stored electronically ePHI There isanabundance ofmedical records including bills from doctors, emails, MRI scans, blood test results etc that fall under the rubric ofPHI/ePHI ### How much does HIPAA compliant hosting cost\",\n", + " \"The need for additional security enhancements such asdatabase encryption and software customization for extra monitoring &&intrusion detection means ahigher cost for HIPAA compliant hosting Encrypted HIPAA hosting onour shared cloud starts at$399/mo ### Which cloud providers are HIPAA compliant There are several cloud hosting providers who provide aninfrastructure that can beHIPAA compliant (e.g AWS, GCP, Azure), however, you are still responsible for configuring your software tosatisfy the HIPAA security rule Check tosee ifthe cloud provider will sign aBAA agreement and choose aservice provider like QuickBlox who can ensure aHIPAA compliant solution ### What are the penalties for non-compliance Penalties depend onthe severity ofthe breach, whether itwas intentional ornot They range from $100 to$50,000 per breach ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [HIPAA Compliant Cloud Hosting: What does it mean?](https://quickblox.com/blog/hipaa-compliant-cloud-hosting-what-does-it-mean/)\\nAnna S 31 Dec 2021\\n[Azure](https://quickblox.com/blog/hosting/azure/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Microsoft Azure HIPAA Compliant?](https://quickblox.com/blog/is-microsoft-azure-hipaa-compliant/)\\nAnna S 12 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Google Cloud Platform (GCP)](https://quickblox.com/blog/hosting/google-cloud-platform-gcp/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Google Cloud Platform HIPAA Compliant?](https://quickblox.com/blog/is-google-cloud-platform-hipaa-compliant/)\\nAnna S 1 Oct 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd\",\n", + " \"trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"costs\": {\n", + " \"ai_cost\": 0,\n", + " \"bytes_transferred_cost\": 0,\n", + " \"compute_cost\": 0.0001,\n", + " \"file_cost\": 0.0002,\n", + " \"total_cost\": 0.0004,\n", + " \"transform_cost\": 0.0001\n", + " },\n", + " \"error\": null,\n", + " \"status\": 200,\n", + " \"url\": \"https://quickblox.com/hosting/hipaa-compliant-hosting/\"\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 61 Type: finish_branch\n", + "output: [\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:35.791008Z\",\n", + " \"id\": \"aad2c493-dc49-4f05-a61a-b992798b9175\",\n", + " \"jobs\": [\n", + " \"66195c1e-ae7f-46f5-a15c-947c5883263d\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:35.726354Z\",\n", + " \"id\": \"0b6084de-1fb0-481c-9625-f83a15d5c4cc\",\n", + " \"jobs\": [\n", + " \"3ec829a8-4b9a-402d-9efc-817546c19db3\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:35.775403Z\",\n", + " \"id\": \"4f38f1db-fcb0-48a5-b615-7cb9eecd83de\",\n", + " \"jobs\": [\n", + " \"e6e9fc8b-9e97-46a1-9cc9-b539d0db01d1\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:36.834408Z\",\n", + " \"id\": \"fad28e30-94e7-4a6c-8418-d374596792c8\",\n", + " \"jobs\": [\n", + " \"853c610f-a704-416d-a7d1-c8e117b72986\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:36.969029Z\",\n", + " \"id\": \"d849abf9-f0ae-4d77-b2fd-688fa21c0aba\",\n", + " \"jobs\": [\n", + " \"c22d1868-b8ee-4118-b280-95b055a96980\"\n", + " ]\n", + " }\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 62 Type: finish_branch\n", + "output: [\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:35.791008Z\",\n", + " \"id\": \"aad2c493-dc49-4f05-a61a-b992798b9175\",\n", + " \"jobs\": [\n", + " \"66195c1e-ae7f-46f5-a15c-947c5883263d\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:35.726354Z\",\n", + " \"id\": \"0b6084de-1fb0-481c-9625-f83a15d5c4cc\",\n", + " \"jobs\": [\n", + " \"3ec829a8-4b9a-402d-9efc-817546c19db3\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:35.775403Z\",\n", + " \"id\": \"4f38f1db-fcb0-48a5-b615-7cb9eecd83de\",\n", + " \"jobs\": [\n", + " \"e6e9fc8b-9e97-46a1-9cc9-b539d0db01d1\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:36.834408Z\",\n", + " \"id\": \"fad28e30-94e7-4a6c-8418-d374596792c8\",\n", + " \"jobs\": [\n", + " \"853c610f-a704-416d-a7d1-c8e117b72986\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:36.969029Z\",\n", + " \"id\": \"d849abf9-f0ae-4d77-b2fd-688fa21c0aba\",\n", + " \"jobs\": [\n", + " \"c22d1868-b8ee-4118-b280-95b055a96980\"\n", + " ]\n", + " }\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 63 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:36.969029Z\",\n", + " \"id\": \"d849abf9-f0ae-4d77-b2fd-688fa21c0aba\",\n", + " \"jobs\": [\n", + " \"c22d1868-b8ee-4118-b280-95b055a96980\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 64 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:36.834408Z\",\n", + " \"id\": \"fad28e30-94e7-4a6c-8418-d374596792c8\",\n", + " \"jobs\": [\n", + " \"853c610f-a704-416d-a7d1-c8e117b72986\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 65 Type: init_branch\n", + "output: \"### Itay Shechter,Co-founder, Vanywhere\\nQuickBlox chat has enhanced our platform and allowed us to facilitate better communication between caregivers and care coordinators\\n### Robin Jerome,Principal Architect, BayShore HealthCare\\nI have worked with QuickBlox for several years using their Flutter SDK to add chat features to several client apps Their SDKs are easy to work with, saving us much time and money not having to build chat from scratch ### Samyak Jain,CEO & Founder, Pixel apps\\n[Previous](#carousel)[Next](#carousel)\\n## Explore Documentation\\nFamiliarize yourself with our chat and calling APIs Use our platform SDKs and code samples to learn more about the software and integration process [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n[Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n[JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n[React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n[Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n[Server API](https://quickblox.com/sdk/chat-api/)\\n## Start For FREE Customize Everything Build Your Dream Online Platform Our real-time chat and messaging solutions scale as your business grows, and can be customized to create 100% custom in-app messaging [Contact Sales](https://quickblox.com/enterprise/#get-enterprise)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere\\nThe chunk is a section from a document detailing the features, products, and testimonials of QuickBlox, a company offering communication solutions through APIs and SDKs. It includes testimonials from users highlighting the benefits of QuickBlox's chat features, followed by a detailed list of products, solutions, and resources available for different industries and developers. The chunk emphasizes the ease of integrating QuickBlox's services and provides links to documentation, support, and company information.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 66 Type: init_branch\n", + "output: \"Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\\nThe chunk lists QuickBlox's social media profiles, encouraging visitors to engage with the company on various platforms. It fits within the broader context of the document, which provides comprehensive information about QuickBlox's products, services, and resources, aiming to enhance communication tools in apps and websites.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 67 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:35.791008Z\",\n", + " \"id\": \"aad2c493-dc49-4f05-a61a-b992798b9175\",\n", + " \"jobs\": [\n", + " \"66195c1e-ae7f-46f5-a15c-947c5883263d\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 68 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:35.726354Z\",\n", + " \"id\": \"0b6084de-1fb0-481c-9625-f83a15d5c4cc\",\n", + " \"jobs\": [\n", + " \"3ec829a8-4b9a-402d-9efc-817546c19db3\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 69 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:35.775403Z\",\n", + " \"id\": \"4f38f1db-fcb0-48a5-b615-7cb9eecd83de\",\n", + " \"jobs\": [\n", + " \"e6e9fc8b-9e97-46a1-9cc9-b539d0db01d1\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 70 Type: init_branch\n", + "output: \"#### Docs:\\nIntegrating QuickBlox across multiple platforms #### Support:\\nQuickblox support is a click away ## Trust QuickBlox for secure communication\\n### SOC2\\n### HIPAA\\n### GDPR\\n## Do you need additional security, compliance, and support for the long-term We have a more scalable and flexible solution for you, customized to your unique business/app requirements [Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Insanely powerful in-app chat solutions- for every industry\\n* #### Healthcare\\nProvide better care for your patients and teams using feature-rich HIPAA\\u2011compliant chat solutions Integrate powerful telemedicine communication tools into your existing platform * #### Finance & Banking\\nSecure communication solutions for the financial and banking industry to support your clients Easily integrated with your banking APIs with full customization available * #### Marketplaces & E-commerce\\nIntegrate chat and calling into your e\\u2011commerce marketplace platform to connect with customers using chat, audio, and video calling features * #### Social Networking\\nGive your users the option to connect one-on-one or with a group, usinghigh quality voice, video, and chatbox app features - build a well connected community * #### Education & Coaching\\nAdd communication functions to connect teachers with students, coaches with players, and trainers with clients Appropriate for any remote learning application ## Trusted by Developers & Product Owners\\nCommunication with the QuickBlox team has been great The QuickBlox team is a vital partner and I appreciate their support, their platform, and its capabilities ### Justin Harr,Founder, Eden\\nWhat I like best about QuickBlox is their reliability and performance - I've rarely experienced any issues with their solutions, whether I'm using their video or voice SDK, or their chat API\\nThe chunk provides an overview of QuickBlox's secure communication solutions, emphasizing integration across multiple platforms and industries such as healthcare, finance, e-commerce, social networking, and education. It highlights the company's compliance with SOC2, HIPAA, and GDPR standards, and mentions the scalability and customization of its in-app chat solutions. Additionally, it includes testimonials from developers and product owners praising QuickBlox's reliability and performance.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 71 Type: init_branch\n", + "output: \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n### New ProductOpen source video consultation software with OpenAI Integration\\nElevate Your Video Communication with Q‑Consultation\\n[Learn more](https://quickblox.com/products/q-consultation/open-source/)\\n### New ProductBuild Exceptional Chat Experiences with AI‑Enhanced UI Kits\\n[Learn more](https://quickblox.com/ui-kit/)\\n[Previous](#carouselMainTopSlider)[Next](#carouselMainTopSlider)\\n# Build Your Own Messenger With Real-Time Chat & Video APIs\\nAdd instant messaging and online video chat to any Android, iOS, or Web application, with ease and flexibility In-app chat and calling APIs and SDKs, trusted globally by developers, startups, and enterprises [Start FREE Trial](https://admin.quickblox.com/signup?_ga=2.166318714.519349007.1585816300-1447393030.1568645682)[Talk to an Expert](https://quickblox.com/enterprise/#get-enterprise)\\n## Launch quickly and convert more prospects withreal‑‑timeChat, Audio, and Video communication\\nIf you own a product, you know exactly how drawn-out and exorbitant it can be to build real-time communication features from scratch Quickblox can help you design, create, and enter the market at a much faster rate with APIs and SDKs that shortcut product and engineering delivery Convert your ideas into a successful product with us and watch the engagement rate rise, while you build a loyal user base [\\n#### Chat\\nEmbedded chat features- you can customize and build a fully-functioning chat product for mobile and web in a matter of hours ](https://quickblox.com/products/chat/)[\\n#### Voice and Video calling\\nStreamline customer usability with high\\u2011quality peer\\u2011to\\u2011peer voice and video calls Drive more engagement and build meaningful connections ](https://quickblox.com/products/voice-and-video-calling/)[\\n#### Video Conferencing\\nCreate real-time video group interactions to enhance collaboration and productivity Designed to meet your user experience goals and increase conversations ](https://quickblox.com/products/video-conferencing/)[\\n#### Push Notifications\\nGive your customers/users reasons to keep coming back - send in-app reminders, offers, updates and watch retention rates climb ](https://quickblox.com/products/push-notifications/)\\n#### Data Storage\\nProtect your data from hackers and unwanted modification attempts using flexible data storage options Choose between dedicated, on-premise, or your own virtual cloud #### Secure File Sharing\\nAllow sharing and linking of all types of files (images, audio, video, docs, and other file formats) and enable your users to interact and engage more ## Over30,000 software developers and organizations worldwide are using QuickBlox messagingAPI\\nThis chunk provides an overview of QuickBlox's product offerings and solutions, highlighting their communication tools, AI-enhanced features, white label solutions, and industry-specific applications. It serves as a comprehensive guide to QuickBlox's SDKs, APIs, and UI Kits for building customizable chat and video applications.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 72 Type: init_branch\n", + "output: \"enterpriseinstances\\napplications\\nchatsperday\\nrequestspermonth\\n## Wherever you are in your product journey, we have chat, voice, and video APIs ready to build new features into your app\\n[Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Why QuickBlox Quickblox APIs are equipped to support mobile applications and websites at different stages, be it a fresh product idea, an MVP, early stage startup or a scaling enterprise Our documentation and developer support are highly efficient to make your dream product a reality ### Chat API and Feature-Rich SDKs\\nOur versatile software is designed for multi\\u2011platform use including iOS, Android, and the Web #### SDKs and Code Samples:\\nCross-platform kits and sample apps for easy and quick integration of chat #### Restful API:\\nEnable real-time communication via the server ### Fully Customizable White Label Solutions\\nCustomizable UI Kits to speed up your design workflow and build a product of your vision as well as a ready white\\u2011label solution for virtual rooms and video calling use cases #### UI Kits:\\nCustomize everything as you want with our ready UI Kits #### Q-Consultation:\\nWhite\\u2011label solution for teleconsultation and similar use cases ### Cloud & Dedicated Infrastructure\\nHost your apps wherever you want - opt for a dedicated fully managed server or on\\u2011premises infrastructure Pick a cloud provider that\\u2019s best as per your business goals #### Cloud:\\nA dedicated QuickBlox cloud or your own virtual cloud #### On-Premise:\\nDeployed and managed on your own physical server ### Rich Documentation & Constant Support\\nGet easy step by step guidance to build a powerful chat/messaging/communication app Easily integrate new features using our documentation and developer support\\nThe chunk is part of a section highlighting QuickBlox's comprehensive offerings for building communication features in apps, emphasizing their chat, voice, and video APIs, SDKs, customizable UI Kits, and infrastructure options. It underscores QuickBlox's support for various stages of product development, from startups to scaling enterprises, and their robust documentation and customer support.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 73 Type: step\n", + "output: {\n", + " \"final_chunks\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n### New ProductOpen source video consultation software with OpenAI Integration\\nElevate Your Video Communication with Q‑Consultation\\n[Learn more](https://quickblox.com/products/q-consultation/open-source/)\\n### New ProductBuild Exceptional Chat Experiences with AI‑Enhanced UI Kits\\n[Learn more](https://quickblox.com/ui-kit/)\\n[Previous](#carouselMainTopSlider)[Next](#carouselMainTopSlider)\\n# Build Your Own Messenger With Real-Time Chat & Video APIs\\nAdd instant messaging and online video chat to any Android, iOS, or Web application, with ease and flexibility In-app chat and calling APIs and SDKs, trusted globally by developers, startups, and enterprises [Start FREE Trial](https://admin.quickblox.com/signup?_ga=2.166318714.519349007.1585816300-1447393030.1568645682)[Talk to an Expert](https://quickblox.com/enterprise/#get-enterprise)\\n## Launch quickly and convert more prospects withreal‑‑timeChat, Audio, and Video communication\\nIf you own a product, you know exactly how drawn-out and exorbitant it can be to build real-time communication features from scratch Quickblox can help you design, create, and enter the market at a much faster rate with APIs and SDKs that shortcut product and engineering delivery Convert your ideas into a successful product with us and watch the engagement rate rise, while you build a loyal user base [\\n#### Chat\\nEmbedded chat features- you can customize and build a fully-functioning chat product for mobile and web in a matter of hours ](https://quickblox.com/products/chat/)[\\n#### Voice and Video calling\\nStreamline customer usability with high\\u2011quality peer\\u2011to\\u2011peer voice and video calls Drive more engagement and build meaningful connections ](https://quickblox.com/products/voice-and-video-calling/)[\\n#### Video Conferencing\\nCreate real-time video group interactions to enhance collaboration and productivity Designed to meet your user experience goals and increase conversations ](https://quickblox.com/products/video-conferencing/)[\\n#### Push Notifications\\nGive your customers/users reasons to keep coming back - send in-app reminders, offers, updates and watch retention rates climb ](https://quickblox.com/products/push-notifications/)\\n#### Data Storage\\nProtect your data from hackers and unwanted modification attempts using flexible data storage options Choose between dedicated, on-premise, or your own virtual cloud #### Secure File Sharing\\nAllow sharing and linking of all types of files (images, audio, video, docs, and other file formats) and enable your users to interact and engage more ## Over30,000 software developers and organizations worldwide are using QuickBlox messagingAPI\\nThis chunk provides an overview of QuickBlox's product offerings and solutions, highlighting their communication tools, AI-enhanced features, white label solutions, and industry-specific applications. It serves as a comprehensive guide to QuickBlox's SDKs, APIs, and UI Kits for building customizable chat and video applications.\",\n", + " \"enterpriseinstances\\napplications\\nchatsperday\\nrequestspermonth\\n## Wherever you are in your product journey, we have chat, voice, and video APIs ready to build new features into your app\\n[Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Why QuickBlox Quickblox APIs are equipped to support mobile applications and websites at different stages, be it a fresh product idea, an MVP, early stage startup or a scaling enterprise Our documentation and developer support are highly efficient to make your dream product a reality ### Chat API and Feature-Rich SDKs\\nOur versatile software is designed for multi\\u2011platform use including iOS, Android, and the Web #### SDKs and Code Samples:\\nCross-platform kits and sample apps for easy and quick integration of chat #### Restful API:\\nEnable real-time communication via the server ### Fully Customizable White Label Solutions\\nCustomizable UI Kits to speed up your design workflow and build a product of your vision as well as a ready white\\u2011label solution for virtual rooms and video calling use cases #### UI Kits:\\nCustomize everything as you want with our ready UI Kits #### Q-Consultation:\\nWhite\\u2011label solution for teleconsultation and similar use cases ### Cloud & Dedicated Infrastructure\\nHost your apps wherever you want - opt for a dedicated fully managed server or on\\u2011premises infrastructure Pick a cloud provider that\\u2019s best as per your business goals #### Cloud:\\nA dedicated QuickBlox cloud or your own virtual cloud #### On-Premise:\\nDeployed and managed on your own physical server ### Rich Documentation & Constant Support\\nGet easy step by step guidance to build a powerful chat/messaging/communication app Easily integrate new features using our documentation and developer support\\nThe chunk is part of a section highlighting QuickBlox's comprehensive offerings for building communication features in apps, emphasizing their chat, voice, and video APIs, SDKs, customizable UI Kits, and infrastructure options. It underscores QuickBlox's support for various stages of product development, from startups to scaling enterprises, and their robust documentation and customer support.\",\n", + " \"#### Docs:\\nIntegrating QuickBlox across multiple platforms #### Support:\\nQuickblox support is a click away ## Trust QuickBlox for secure communication\\n### SOC2\\n### HIPAA\\n### GDPR\\n## Do you need additional security, compliance, and support for the long-term We have a more scalable and flexible solution for you, customized to your unique business/app requirements [Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Insanely powerful in-app chat solutions- for every industry\\n* #### Healthcare\\nProvide better care for your patients and teams using feature-rich HIPAA\\u2011compliant chat solutions Integrate powerful telemedicine communication tools into your existing platform * #### Finance & Banking\\nSecure communication solutions for the financial and banking industry to support your clients Easily integrated with your banking APIs with full customization available * #### Marketplaces & E-commerce\\nIntegrate chat and calling into your e\\u2011commerce marketplace platform to connect with customers using chat, audio, and video calling features * #### Social Networking\\nGive your users the option to connect one-on-one or with a group, usinghigh quality voice, video, and chatbox app features - build a well connected community * #### Education & Coaching\\nAdd communication functions to connect teachers with students, coaches with players, and trainers with clients Appropriate for any remote learning application ## Trusted by Developers & Product Owners\\nCommunication with the QuickBlox team has been great The QuickBlox team is a vital partner and I appreciate their support, their platform, and its capabilities ### Justin Harr,Founder, Eden\\nWhat I like best about QuickBlox is their reliability and performance - I've rarely experienced any issues with their solutions, whether I'm using their video or voice SDK, or their chat API\\nThe chunk provides an overview of QuickBlox's secure communication solutions, emphasizing integration across multiple platforms and industries such as healthcare, finance, e-commerce, social networking, and education. It highlights the company's compliance with SOC2, HIPAA, and GDPR standards, and mentions the scalability and customization of its in-app chat solutions. Additionally, it includes testimonials from developers and product owners praising QuickBlox's reliability and performance.\",\n", + " \"### Itay Shechter,Co-founder, Vanywhere\\nQuickBlox chat has enhanced our platform and allowed us to facilitate better communication between caregivers and care coordinators\\n### Robin Jerome,Principal Architect, BayShore HealthCare\\nI have worked with QuickBlox for several years using their Flutter SDK to add chat features to several client apps Their SDKs are easy to work with, saving us much time and money not having to build chat from scratch ### Samyak Jain,CEO & Founder, Pixel apps\\n[Previous](#carousel)[Next](#carousel)\\n## Explore Documentation\\nFamiliarize yourself with our chat and calling APIs Use our platform SDKs and code samples to learn more about the software and integration process [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n[Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n[JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n[React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n[Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n[Server API](https://quickblox.com/sdk/chat-api/)\\n## Start For FREE Customize Everything Build Your Dream Online Platform Our real-time chat and messaging solutions scale as your business grows, and can be customized to create 100% custom in-app messaging [Contact Sales](https://quickblox.com/enterprise/#get-enterprise)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere\\nThe chunk is a section from a document detailing the features, products, and testimonials of QuickBlox, a company offering communication solutions through APIs and SDKs. It includes testimonials from users highlighting the benefits of QuickBlox's chat features, followed by a detailed list of products, solutions, and resources available for different industries and developers. The chunk emphasizes the ease of integrating QuickBlox's services and provides links to documentation, support, and company information.\",\n", + " \"Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\\nThe chunk lists QuickBlox's social media profiles, encouraging visitors to engage with the company on various platforms. It fits within the broader context of the document, which provides comprehensive information about QuickBlox's products, services, and resources, aiming to enhance communication tools in apps and websites.\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 74 Type: step\n", + "output: [\n", + " \"This chunk provides an overview of QuickBlox's product offerings and solutions, highlighting their communication tools, AI-enhanced features, white label solutions, and industry-specific applications. It serves as a comprehensive guide to QuickBlox's SDKs, APIs, and UI Kits for building customizable chat and video applications.\",\n", + " \"The chunk is part of a section highlighting QuickBlox's comprehensive offerings for building communication features in apps, emphasizing their chat, voice, and video APIs, SDKs, customizable UI Kits, and infrastructure options. It underscores QuickBlox's support for various stages of product development, from startups to scaling enterprises, and their robust documentation and customer support.\",\n", + " \"The chunk provides an overview of QuickBlox's secure communication solutions, emphasizing integration across multiple platforms and industries such as healthcare, finance, e-commerce, social networking, and education. It highlights the company's compliance with SOC2, HIPAA, and GDPR standards, and mentions the scalability and customization of its in-app chat solutions. Additionally, it includes testimonials from developers and product owners praising QuickBlox's reliability and performance.\",\n", + " \"The chunk is a section from a document detailing the features, products, and testimonials of QuickBlox, a company offering communication solutions through APIs and SDKs. It includes testimonials from users highlighting the benefits of QuickBlox's chat features, followed by a detailed list of products, solutions, and resources available for different industries and developers. The chunk emphasizes the ease of integrating QuickBlox's services and provides links to documentation, support, and company information.\",\n", + " \"The chunk lists QuickBlox's social media profiles, encouraging visitors to engage with the company on various platforms. It fits within the broader context of the document, which provides comprehensive information about QuickBlox's products, services, and resources, aiming to enhance communication tools in apps and websites.\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 75 Type: finish_branch\n", + "output: \"The chunk is a section from a document detailing the features, products, and testimonials of QuickBlox, a company offering communication solutions through APIs and SDKs. It includes testimonials from users highlighting the benefits of QuickBlox's chat features, followed by a detailed list of products, solutions, and resources available for different industries and developers. The chunk emphasizes the ease of integrating QuickBlox's services and provides links to documentation, support, and company information.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 76 Type: finish_branch\n", + "output: \"The chunk lists QuickBlox's social media profiles, encouraging visitors to engage with the company on various platforms. It fits within the broader context of the document, which provides comprehensive information about QuickBlox's products, services, and resources, aiming to enhance communication tools in apps and websites.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 77 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n### New ProductOpen source video consultation software with OpenAI Integration\\nElevate Your Video Communication with Q‑Consultation\\n[Learn more](https://quickblox.com/products/q-consultation/open-source/)\\n### New ProductBuild Exceptional Chat Experiences with AI‑Enhanced UI Kits\\n[Learn more](https://quickblox.com/ui-kit/)\\n[Previous](#carouselMainTopSlider)[Next](#carouselMainTopSlider)\\n# Build Your Own Messenger With Real-Time Chat & Video APIs\\nAdd instant messaging and online video chat to any Android, iOS, or Web application, with ease and flexibility In-app chat and calling APIs and SDKs, trusted globally by developers, startups, and enterprises [Start FREE Trial](https://admin.quickblox.com/signup?_ga=2.166318714.519349007.1585816300-1447393030.1568645682)[Talk to an Expert](https://quickblox.com/enterprise/#get-enterprise)\\n## Launch quickly and convert more prospects withreal‑‑timeChat, Audio, and Video communication\\nIf you own a product, you know exactly how drawn-out and exorbitant it can be to build real-time communication features from scratch Quickblox can help you design, create, and enter the market at a much faster rate with APIs and SDKs that shortcut product and engineering delivery Convert your ideas into a successful product with us and watch the engagement rate rise, while you build a loyal user base [\\n#### Chat\\nEmbedded chat features- you can customize and build a fully-functioning chat product for mobile and web in a matter of hours ](https://quickblox.com/products/chat/)[\\n#### Voice and Video calling\\nStreamline customer usability with high\\u2011quality peer\\u2011to\\u2011peer voice and video calls Drive more engagement and build meaningful connections ](https://quickblox.com/products/voice-and-video-calling/)[\\n#### Video Conferencing\\nCreate real-time video group interactions to enhance collaboration and productivity Designed to meet your user experience goals and increase conversations ](https://quickblox.com/products/video-conferencing/)[\\n#### Push Notifications\\nGive your customers/users reasons to keep coming back - send in-app reminders, offers, updates and watch retention rates climb ](https://quickblox.com/products/push-notifications/)\\n#### Data Storage\\nProtect your data from hackers and unwanted modification attempts using flexible data storage options Choose between dedicated, on-premise, or your own virtual cloud #### Secure File Sharing\\nAllow sharing and linking of all types of files (images, audio, video, docs, and other file formats) and enable your users to interact and engage more ## Over30,000 software developers and organizations worldwide are using QuickBlox messagingAPI\",\n", + " \"enterpriseinstances\\napplications\\nchatsperday\\nrequestspermonth\\n## Wherever you are in your product journey, we have chat, voice, and video APIs ready to build new features into your app\\n[Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Why QuickBlox Quickblox APIs are equipped to support mobile applications and websites at different stages, be it a fresh product idea, an MVP, early stage startup or a scaling enterprise Our documentation and developer support are highly efficient to make your dream product a reality ### Chat API and Feature-Rich SDKs\\nOur versatile software is designed for multi\\u2011platform use including iOS, Android, and the Web #### SDKs and Code Samples:\\nCross-platform kits and sample apps for easy and quick integration of chat #### Restful API:\\nEnable real-time communication via the server ### Fully Customizable White Label Solutions\\nCustomizable UI Kits to speed up your design workflow and build a product of your vision as well as a ready white\\u2011label solution for virtual rooms and video calling use cases #### UI Kits:\\nCustomize everything as you want with our ready UI Kits #### Q-Consultation:\\nWhite\\u2011label solution for teleconsultation and similar use cases ### Cloud & Dedicated Infrastructure\\nHost your apps wherever you want - opt for a dedicated fully managed server or on\\u2011premises infrastructure Pick a cloud provider that\\u2019s best as per your business goals #### Cloud:\\nA dedicated QuickBlox cloud or your own virtual cloud #### On-Premise:\\nDeployed and managed on your own physical server ### Rich Documentation & Constant Support\\nGet easy step by step guidance to build a powerful chat/messaging/communication app Easily integrate new features using our documentation and developer support\",\n", + " \"#### Docs:\\nIntegrating QuickBlox across multiple platforms #### Support:\\nQuickblox support is a click away ## Trust QuickBlox for secure communication\\n### SOC2\\n### HIPAA\\n### GDPR\\n## Do you need additional security, compliance, and support for the long-term We have a more scalable and flexible solution for you, customized to your unique business/app requirements [Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Insanely powerful in-app chat solutions- for every industry\\n* #### Healthcare\\nProvide better care for your patients and teams using feature-rich HIPAA\\u2011compliant chat solutions Integrate powerful telemedicine communication tools into your existing platform * #### Finance & Banking\\nSecure communication solutions for the financial and banking industry to support your clients Easily integrated with your banking APIs with full customization available * #### Marketplaces & E-commerce\\nIntegrate chat and calling into your e\\u2011commerce marketplace platform to connect with customers using chat, audio, and video calling features * #### Social Networking\\nGive your users the option to connect one-on-one or with a group, usinghigh quality voice, video, and chatbox app features - build a well connected community * #### Education & Coaching\\nAdd communication functions to connect teachers with students, coaches with players, and trainers with clients Appropriate for any remote learning application ## Trusted by Developers & Product Owners\\nCommunication with the QuickBlox team has been great The QuickBlox team is a vital partner and I appreciate their support, their platform, and its capabilities ### Justin Harr,Founder, Eden\\nWhat I like best about QuickBlox is their reliability and performance - I've rarely experienced any issues with their solutions, whether I'm using their video or voice SDK, or their chat API\",\n", + " \"### Itay Shechter,Co-founder, Vanywhere\\nQuickBlox chat has enhanced our platform and allowed us to facilitate better communication between caregivers and care coordinators\\n### Robin Jerome,Principal Architect, BayShore HealthCare\\nI have worked with QuickBlox for several years using their Flutter SDK to add chat features to several client apps Their SDKs are easy to work with, saving us much time and money not having to build chat from scratch ### Samyak Jain,CEO & Founder, Pixel apps\\n[Previous](#carousel)[Next](#carousel)\\n## Explore Documentation\\nFamiliarize yourself with our chat and calling APIs Use our platform SDKs and code samples to learn more about the software and integration process [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n[Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n[JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n[React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n[Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n[Server API](https://quickblox.com/sdk/chat-api/)\\n## Start For FREE Customize Everything Build Your Dream Online Platform Our real-time chat and messaging solutions scale as your business grows, and can be customized to create 100% custom in-app messaging [Contact Sales](https://quickblox.com/enterprise/#get-enterprise)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere\",\n", + " \"Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"### Itay Shechter,Co-founder, Vanywhere\\nQuickBlox chat has enhanced our platform and allowed us to facilitate better communication between caregivers and care coordinators\\n### Robin Jerome,Principal Architect, BayShore HealthCare\\nI have worked with QuickBlox for several years using their Flutter SDK to add chat features to several client apps Their SDKs are easy to work with, saving us much time and money not having to build chat from scratch ### Samyak Jain,CEO & Founder, Pixel apps\\n[Previous](#carousel)[Next](#carousel)\\n## Explore Documentation\\nFamiliarize yourself with our chat and calling APIs Use our platform SDKs and code samples to learn more about the software and integration process [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n[Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n[JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n[React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n[Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n[Server API](https://quickblox.com/sdk/chat-api/)\\n## Start For FREE Customize Everything Build Your Dream Online Platform Our real-time chat and messaging solutions scale as your business grows, and can be customized to create 100% custom in-app messaging [Contact Sales](https://quickblox.com/enterprise/#get-enterprise)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 78 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n### New ProductOpen source video consultation software with OpenAI Integration\\nElevate Your Video Communication with Q‑Consultation\\n[Learn more](https://quickblox.com/products/q-consultation/open-source/)\\n### New ProductBuild Exceptional Chat Experiences with AI‑Enhanced UI Kits\\n[Learn more](https://quickblox.com/ui-kit/)\\n[Previous](#carouselMainTopSlider)[Next](#carouselMainTopSlider)\\n# Build Your Own Messenger With Real-Time Chat & Video APIs\\nAdd instant messaging and online video chat to any Android, iOS, or Web application, with ease and flexibility In-app chat and calling APIs and SDKs, trusted globally by developers, startups, and enterprises [Start FREE Trial](https://admin.quickblox.com/signup?_ga=2.166318714.519349007.1585816300-1447393030.1568645682)[Talk to an Expert](https://quickblox.com/enterprise/#get-enterprise)\\n## Launch quickly and convert more prospects withreal‑‑timeChat, Audio, and Video communication\\nIf you own a product, you know exactly how drawn-out and exorbitant it can be to build real-time communication features from scratch Quickblox can help you design, create, and enter the market at a much faster rate with APIs and SDKs that shortcut product and engineering delivery Convert your ideas into a successful product with us and watch the engagement rate rise, while you build a loyal user base [\\n#### Chat\\nEmbedded chat features- you can customize and build a fully-functioning chat product for mobile and web in a matter of hours ](https://quickblox.com/products/chat/)[\\n#### Voice and Video calling\\nStreamline customer usability with high\\u2011quality peer\\u2011to\\u2011peer voice and video calls Drive more engagement and build meaningful connections ](https://quickblox.com/products/voice-and-video-calling/)[\\n#### Video Conferencing\\nCreate real-time video group interactions to enhance collaboration and productivity Designed to meet your user experience goals and increase conversations ](https://quickblox.com/products/video-conferencing/)[\\n#### Push Notifications\\nGive your customers/users reasons to keep coming back - send in-app reminders, offers, updates and watch retention rates climb ](https://quickblox.com/products/push-notifications/)\\n#### Data Storage\\nProtect your data from hackers and unwanted modification attempts using flexible data storage options Choose between dedicated, on-premise, or your own virtual cloud #### Secure File Sharing\\nAllow sharing and linking of all types of files (images, audio, video, docs, and other file formats) and enable your users to interact and engage more ## Over30,000 software developers and organizations worldwide are using QuickBlox messagingAPI\",\n", + " \"enterpriseinstances\\napplications\\nchatsperday\\nrequestspermonth\\n## Wherever you are in your product journey, we have chat, voice, and video APIs ready to build new features into your app\\n[Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Why QuickBlox Quickblox APIs are equipped to support mobile applications and websites at different stages, be it a fresh product idea, an MVP, early stage startup or a scaling enterprise Our documentation and developer support are highly efficient to make your dream product a reality ### Chat API and Feature-Rich SDKs\\nOur versatile software is designed for multi\\u2011platform use including iOS, Android, and the Web #### SDKs and Code Samples:\\nCross-platform kits and sample apps for easy and quick integration of chat #### Restful API:\\nEnable real-time communication via the server ### Fully Customizable White Label Solutions\\nCustomizable UI Kits to speed up your design workflow and build a product of your vision as well as a ready white\\u2011label solution for virtual rooms and video calling use cases #### UI Kits:\\nCustomize everything as you want with our ready UI Kits #### Q-Consultation:\\nWhite\\u2011label solution for teleconsultation and similar use cases ### Cloud & Dedicated Infrastructure\\nHost your apps wherever you want - opt for a dedicated fully managed server or on\\u2011premises infrastructure Pick a cloud provider that\\u2019s best as per your business goals #### Cloud:\\nA dedicated QuickBlox cloud or your own virtual cloud #### On-Premise:\\nDeployed and managed on your own physical server ### Rich Documentation & Constant Support\\nGet easy step by step guidance to build a powerful chat/messaging/communication app Easily integrate new features using our documentation and developer support\",\n", + " \"#### Docs:\\nIntegrating QuickBlox across multiple platforms #### Support:\\nQuickblox support is a click away ## Trust QuickBlox for secure communication\\n### SOC2\\n### HIPAA\\n### GDPR\\n## Do you need additional security, compliance, and support for the long-term We have a more scalable and flexible solution for you, customized to your unique business/app requirements [Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Insanely powerful in-app chat solutions- for every industry\\n* #### Healthcare\\nProvide better care for your patients and teams using feature-rich HIPAA\\u2011compliant chat solutions Integrate powerful telemedicine communication tools into your existing platform * #### Finance & Banking\\nSecure communication solutions for the financial and banking industry to support your clients Easily integrated with your banking APIs with full customization available * #### Marketplaces & E-commerce\\nIntegrate chat and calling into your e\\u2011commerce marketplace platform to connect with customers using chat, audio, and video calling features * #### Social Networking\\nGive your users the option to connect one-on-one or with a group, usinghigh quality voice, video, and chatbox app features - build a well connected community * #### Education & Coaching\\nAdd communication functions to connect teachers with students, coaches with players, and trainers with clients Appropriate for any remote learning application ## Trusted by Developers & Product Owners\\nCommunication with the QuickBlox team has been great The QuickBlox team is a vital partner and I appreciate their support, their platform, and its capabilities ### Justin Harr,Founder, Eden\\nWhat I like best about QuickBlox is their reliability and performance - I've rarely experienced any issues with their solutions, whether I'm using their video or voice SDK, or their chat API\",\n", + " \"### Itay Shechter,Co-founder, Vanywhere\\nQuickBlox chat has enhanced our platform and allowed us to facilitate better communication between caregivers and care coordinators\\n### Robin Jerome,Principal Architect, BayShore HealthCare\\nI have worked with QuickBlox for several years using their Flutter SDK to add chat features to several client apps Their SDKs are easy to work with, saving us much time and money not having to build chat from scratch ### Samyak Jain,CEO & Founder, Pixel apps\\n[Previous](#carousel)[Next](#carousel)\\n## Explore Documentation\\nFamiliarize yourself with our chat and calling APIs Use our platform SDKs and code samples to learn more about the software and integration process [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n[Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n[JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n[React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n[Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n[Server API](https://quickblox.com/sdk/chat-api/)\\n## Start For FREE Customize Everything Build Your Dream Online Platform Our real-time chat and messaging solutions scale as your business grows, and can be customized to create 100% custom in-app messaging [Contact Sales](https://quickblox.com/enterprise/#get-enterprise)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere\",\n", + " \"Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 79 Type: finish_branch\n", + "output: \"The chunk provides an overview of QuickBlox's secure communication solutions, emphasizing integration across multiple platforms and industries such as healthcare, finance, e-commerce, social networking, and education. It highlights the company's compliance with SOC2, HIPAA, and GDPR standards, and mentions the scalability and customization of its in-app chat solutions. Additionally, it includes testimonials from developers and product owners praising QuickBlox's reliability and performance.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 80 Type: finish_branch\n", + "output: \"This chunk provides an overview of QuickBlox's product offerings and solutions, highlighting their communication tools, AI-enhanced features, white label solutions, and industry-specific applications. It serves as a comprehensive guide to QuickBlox's SDKs, APIs, and UI Kits for building customizable chat and video applications.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 81 Type: finish_branch\n", + "output: \"The chunk is part of a section highlighting QuickBlox's comprehensive offerings for building communication features in apps, emphasizing their chat, voice, and video APIs, SDKs, customizable UI Kits, and infrastructure options. It underscores QuickBlox's support for various stages of product development, from startups to scaling enterprises, and their robust documentation and customer support.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 82 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n### New ProductOpen source video consultation software with OpenAI Integration\\nElevate Your Video Communication with Q‑Consultation\\n[Learn more](https://quickblox.com/products/q-consultation/open-source/)\\n### New ProductBuild Exceptional Chat Experiences with AI‑Enhanced UI Kits\\n[Learn more](https://quickblox.com/ui-kit/)\\n[Previous](#carouselMainTopSlider)[Next](#carouselMainTopSlider)\\n# Build Your Own Messenger With Real-Time Chat & Video APIs\\nAdd instant messaging and online video chat to any Android, iOS, or Web application, with ease and flexibility In-app chat and calling APIs and SDKs, trusted globally by developers, startups, and enterprises [Start FREE Trial](https://admin.quickblox.com/signup?_ga=2.166318714.519349007.1585816300-1447393030.1568645682)[Talk to an Expert](https://quickblox.com/enterprise/#get-enterprise)\\n## Launch quickly and convert more prospects withreal‑‑timeChat, Audio, and Video communication\\nIf you own a product, you know exactly how drawn-out and exorbitant it can be to build real-time communication features from scratch Quickblox can help you design, create, and enter the market at a much faster rate with APIs and SDKs that shortcut product and engineering delivery Convert your ideas into a successful product with us and watch the engagement rate rise, while you build a loyal user base [\\n#### Chat\\nEmbedded chat features- you can customize and build a fully-functioning chat product for mobile and web in a matter of hours ](https://quickblox.com/products/chat/)[\\n#### Voice and Video calling\\nStreamline customer usability with high\\u2011quality peer\\u2011to\\u2011peer voice and video calls Drive more engagement and build meaningful connections ](https://quickblox.com/products/voice-and-video-calling/)[\\n#### Video Conferencing\\nCreate real-time video group interactions to enhance collaboration and productivity Designed to meet your user experience goals and increase conversations ](https://quickblox.com/products/video-conferencing/)[\\n#### Push Notifications\\nGive your customers/users reasons to keep coming back - send in-app reminders, offers, updates and watch retention rates climb ](https://quickblox.com/products/push-notifications/)\\n#### Data Storage\\nProtect your data from hackers and unwanted modification attempts using flexible data storage options Choose between dedicated, on-premise, or your own virtual cloud #### Secure File Sharing\\nAllow sharing and linking of all types of files (images, audio, video, docs, and other file formats) and enable your users to interact and engage more ## Over30,000 software developers and organizations worldwide are using QuickBlox messagingAPI\",\n", + " \"enterpriseinstances\\napplications\\nchatsperday\\nrequestspermonth\\n## Wherever you are in your product journey, we have chat, voice, and video APIs ready to build new features into your app\\n[Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Why QuickBlox Quickblox APIs are equipped to support mobile applications and websites at different stages, be it a fresh product idea, an MVP, early stage startup or a scaling enterprise Our documentation and developer support are highly efficient to make your dream product a reality ### Chat API and Feature-Rich SDKs\\nOur versatile software is designed for multi\\u2011platform use including iOS, Android, and the Web #### SDKs and Code Samples:\\nCross-platform kits and sample apps for easy and quick integration of chat #### Restful API:\\nEnable real-time communication via the server ### Fully Customizable White Label Solutions\\nCustomizable UI Kits to speed up your design workflow and build a product of your vision as well as a ready white\\u2011label solution for virtual rooms and video calling use cases #### UI Kits:\\nCustomize everything as you want with our ready UI Kits #### Q-Consultation:\\nWhite\\u2011label solution for teleconsultation and similar use cases ### Cloud & Dedicated Infrastructure\\nHost your apps wherever you want - opt for a dedicated fully managed server or on\\u2011premises infrastructure Pick a cloud provider that\\u2019s best as per your business goals #### Cloud:\\nA dedicated QuickBlox cloud or your own virtual cloud #### On-Premise:\\nDeployed and managed on your own physical server ### Rich Documentation & Constant Support\\nGet easy step by step guidance to build a powerful chat/messaging/communication app Easily integrate new features using our documentation and developer support\",\n", + " \"#### Docs:\\nIntegrating QuickBlox across multiple platforms #### Support:\\nQuickblox support is a click away ## Trust QuickBlox for secure communication\\n### SOC2\\n### HIPAA\\n### GDPR\\n## Do you need additional security, compliance, and support for the long-term We have a more scalable and flexible solution for you, customized to your unique business/app requirements [Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Insanely powerful in-app chat solutions- for every industry\\n* #### Healthcare\\nProvide better care for your patients and teams using feature-rich HIPAA\\u2011compliant chat solutions Integrate powerful telemedicine communication tools into your existing platform * #### Finance & Banking\\nSecure communication solutions for the financial and banking industry to support your clients Easily integrated with your banking APIs with full customization available * #### Marketplaces & E-commerce\\nIntegrate chat and calling into your e\\u2011commerce marketplace platform to connect with customers using chat, audio, and video calling features * #### Social Networking\\nGive your users the option to connect one-on-one or with a group, usinghigh quality voice, video, and chatbox app features - build a well connected community * #### Education & Coaching\\nAdd communication functions to connect teachers with students, coaches with players, and trainers with clients Appropriate for any remote learning application ## Trusted by Developers & Product Owners\\nCommunication with the QuickBlox team has been great The QuickBlox team is a vital partner and I appreciate their support, their platform, and its capabilities ### Justin Harr,Founder, Eden\\nWhat I like best about QuickBlox is their reliability and performance - I've rarely experienced any issues with their solutions, whether I'm using their video or voice SDK, or their chat API\",\n", + " \"### Itay Shechter,Co-founder, Vanywhere\\nQuickBlox chat has enhanced our platform and allowed us to facilitate better communication between caregivers and care coordinators\\n### Robin Jerome,Principal Architect, BayShore HealthCare\\nI have worked with QuickBlox for several years using their Flutter SDK to add chat features to several client apps Their SDKs are easy to work with, saving us much time and money not having to build chat from scratch ### Samyak Jain,CEO & Founder, Pixel apps\\n[Previous](#carousel)[Next](#carousel)\\n## Explore Documentation\\nFamiliarize yourself with our chat and calling APIs Use our platform SDKs and code samples to learn more about the software and integration process [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n[Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n[JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n[React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n[Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n[Server API](https://quickblox.com/sdk/chat-api/)\\n## Start For FREE Customize Everything Build Your Dream Online Platform Our real-time chat and messaging solutions scale as your business grows, and can be customized to create 100% custom in-app messaging [Contact Sales](https://quickblox.com/enterprise/#get-enterprise)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere\",\n", + " \"Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"#### Docs:\\nIntegrating QuickBlox across multiple platforms #### Support:\\nQuickblox support is a click away ## Trust QuickBlox for secure communication\\n### SOC2\\n### HIPAA\\n### GDPR\\n## Do you need additional security, compliance, and support for the long-term We have a more scalable and flexible solution for you, customized to your unique business/app requirements [Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Insanely powerful in-app chat solutions- for every industry\\n* #### Healthcare\\nProvide better care for your patients and teams using feature-rich HIPAA\\u2011compliant chat solutions Integrate powerful telemedicine communication tools into your existing platform * #### Finance & Banking\\nSecure communication solutions for the financial and banking industry to support your clients Easily integrated with your banking APIs with full customization available * #### Marketplaces & E-commerce\\nIntegrate chat and calling into your e\\u2011commerce marketplace platform to connect with customers using chat, audio, and video calling features * #### Social Networking\\nGive your users the option to connect one-on-one or with a group, usinghigh quality voice, video, and chatbox app features - build a well connected community * #### Education & Coaching\\nAdd communication functions to connect teachers with students, coaches with players, and trainers with clients Appropriate for any remote learning application ## Trusted by Developers & Product Owners\\nCommunication with the QuickBlox team has been great The QuickBlox team is a vital partner and I appreciate their support, their platform, and its capabilities ### Justin Harr,Founder, Eden\\nWhat I like best about QuickBlox is their reliability and performance - I've rarely experienced any issues with their solutions, whether I'm using their video or voice SDK, or their chat API\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 83 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n### New ProductOpen source video consultation software with OpenAI Integration\\nElevate Your Video Communication with Q‑Consultation\\n[Learn more](https://quickblox.com/products/q-consultation/open-source/)\\n### New ProductBuild Exceptional Chat Experiences with AI‑Enhanced UI Kits\\n[Learn more](https://quickblox.com/ui-kit/)\\n[Previous](#carouselMainTopSlider)[Next](#carouselMainTopSlider)\\n# Build Your Own Messenger With Real-Time Chat & Video APIs\\nAdd instant messaging and online video chat to any Android, iOS, or Web application, with ease and flexibility In-app chat and calling APIs and SDKs, trusted globally by developers, startups, and enterprises [Start FREE Trial](https://admin.quickblox.com/signup?_ga=2.166318714.519349007.1585816300-1447393030.1568645682)[Talk to an Expert](https://quickblox.com/enterprise/#get-enterprise)\\n## Launch quickly and convert more prospects withreal‑‑timeChat, Audio, and Video communication\\nIf you own a product, you know exactly how drawn-out and exorbitant it can be to build real-time communication features from scratch Quickblox can help you design, create, and enter the market at a much faster rate with APIs and SDKs that shortcut product and engineering delivery Convert your ideas into a successful product with us and watch the engagement rate rise, while you build a loyal user base [\\n#### Chat\\nEmbedded chat features- you can customize and build a fully-functioning chat product for mobile and web in a matter of hours ](https://quickblox.com/products/chat/)[\\n#### Voice and Video calling\\nStreamline customer usability with high\\u2011quality peer\\u2011to\\u2011peer voice and video calls Drive more engagement and build meaningful connections ](https://quickblox.com/products/voice-and-video-calling/)[\\n#### Video Conferencing\\nCreate real-time video group interactions to enhance collaboration and productivity Designed to meet your user experience goals and increase conversations ](https://quickblox.com/products/video-conferencing/)[\\n#### Push Notifications\\nGive your customers/users reasons to keep coming back - send in-app reminders, offers, updates and watch retention rates climb ](https://quickblox.com/products/push-notifications/)\\n#### Data Storage\\nProtect your data from hackers and unwanted modification attempts using flexible data storage options Choose between dedicated, on-premise, or your own virtual cloud #### Secure File Sharing\\nAllow sharing and linking of all types of files (images, audio, video, docs, and other file formats) and enable your users to interact and engage more ## Over30,000 software developers and organizations worldwide are using QuickBlox messagingAPI\",\n", + " \"enterpriseinstances\\napplications\\nchatsperday\\nrequestspermonth\\n## Wherever you are in your product journey, we have chat, voice, and video APIs ready to build new features into your app\\n[Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Why QuickBlox Quickblox APIs are equipped to support mobile applications and websites at different stages, be it a fresh product idea, an MVP, early stage startup or a scaling enterprise Our documentation and developer support are highly efficient to make your dream product a reality ### Chat API and Feature-Rich SDKs\\nOur versatile software is designed for multi\\u2011platform use including iOS, Android, and the Web #### SDKs and Code Samples:\\nCross-platform kits and sample apps for easy and quick integration of chat #### Restful API:\\nEnable real-time communication via the server ### Fully Customizable White Label Solutions\\nCustomizable UI Kits to speed up your design workflow and build a product of your vision as well as a ready white\\u2011label solution for virtual rooms and video calling use cases #### UI Kits:\\nCustomize everything as you want with our ready UI Kits #### Q-Consultation:\\nWhite\\u2011label solution for teleconsultation and similar use cases ### Cloud & Dedicated Infrastructure\\nHost your apps wherever you want - opt for a dedicated fully managed server or on\\u2011premises infrastructure Pick a cloud provider that\\u2019s best as per your business goals #### Cloud:\\nA dedicated QuickBlox cloud or your own virtual cloud #### On-Premise:\\nDeployed and managed on your own physical server ### Rich Documentation & Constant Support\\nGet easy step by step guidance to build a powerful chat/messaging/communication app Easily integrate new features using our documentation and developer support\",\n", + " \"#### Docs:\\nIntegrating QuickBlox across multiple platforms #### Support:\\nQuickblox support is a click away ## Trust QuickBlox for secure communication\\n### SOC2\\n### HIPAA\\n### GDPR\\n## Do you need additional security, compliance, and support for the long-term We have a more scalable and flexible solution for you, customized to your unique business/app requirements [Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Insanely powerful in-app chat solutions- for every industry\\n* #### Healthcare\\nProvide better care for your patients and teams using feature-rich HIPAA\\u2011compliant chat solutions Integrate powerful telemedicine communication tools into your existing platform * #### Finance & Banking\\nSecure communication solutions for the financial and banking industry to support your clients Easily integrated with your banking APIs with full customization available * #### Marketplaces & E-commerce\\nIntegrate chat and calling into your e\\u2011commerce marketplace platform to connect with customers using chat, audio, and video calling features * #### Social Networking\\nGive your users the option to connect one-on-one or with a group, usinghigh quality voice, video, and chatbox app features - build a well connected community * #### Education & Coaching\\nAdd communication functions to connect teachers with students, coaches with players, and trainers with clients Appropriate for any remote learning application ## Trusted by Developers & Product Owners\\nCommunication with the QuickBlox team has been great The QuickBlox team is a vital partner and I appreciate their support, their platform, and its capabilities ### Justin Harr,Founder, Eden\\nWhat I like best about QuickBlox is their reliability and performance - I've rarely experienced any issues with their solutions, whether I'm using their video or voice SDK, or their chat API\",\n", + " \"### Itay Shechter,Co-founder, Vanywhere\\nQuickBlox chat has enhanced our platform and allowed us to facilitate better communication between caregivers and care coordinators\\n### Robin Jerome,Principal Architect, BayShore HealthCare\\nI have worked with QuickBlox for several years using their Flutter SDK to add chat features to several client apps Their SDKs are easy to work with, saving us much time and money not having to build chat from scratch ### Samyak Jain,CEO & Founder, Pixel apps\\n[Previous](#carousel)[Next](#carousel)\\n## Explore Documentation\\nFamiliarize yourself with our chat and calling APIs Use our platform SDKs and code samples to learn more about the software and integration process [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n[Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n[JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n[React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n[Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n[Server API](https://quickblox.com/sdk/chat-api/)\\n## Start For FREE Customize Everything Build Your Dream Online Platform Our real-time chat and messaging solutions scale as your business grows, and can be customized to create 100% custom in-app messaging [Contact Sales](https://quickblox.com/enterprise/#get-enterprise)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere\",\n", + " \"Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"enterpriseinstances\\napplications\\nchatsperday\\nrequestspermonth\\n## Wherever you are in your product journey, we have chat, voice, and video APIs ready to build new features into your app\\n[Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Why QuickBlox Quickblox APIs are equipped to support mobile applications and websites at different stages, be it a fresh product idea, an MVP, early stage startup or a scaling enterprise Our documentation and developer support are highly efficient to make your dream product a reality ### Chat API and Feature-Rich SDKs\\nOur versatile software is designed for multi\\u2011platform use including iOS, Android, and the Web #### SDKs and Code Samples:\\nCross-platform kits and sample apps for easy and quick integration of chat #### Restful API:\\nEnable real-time communication via the server ### Fully Customizable White Label Solutions\\nCustomizable UI Kits to speed up your design workflow and build a product of your vision as well as a ready white\\u2011label solution for virtual rooms and video calling use cases #### UI Kits:\\nCustomize everything as you want with our ready UI Kits #### Q-Consultation:\\nWhite\\u2011label solution for teleconsultation and similar use cases ### Cloud & Dedicated Infrastructure\\nHost your apps wherever you want - opt for a dedicated fully managed server or on\\u2011premises infrastructure Pick a cloud provider that\\u2019s best as per your business goals #### Cloud:\\nA dedicated QuickBlox cloud or your own virtual cloud #### On-Premise:\\nDeployed and managed on your own physical server ### Rich Documentation & Constant Support\\nGet easy step by step guidance to build a powerful chat/messaging/communication app Easily integrate new features using our documentation and developer support\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 84 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n### New ProductOpen source video consultation software with OpenAI Integration\\nElevate Your Video Communication with Q‑Consultation\\n[Learn more](https://quickblox.com/products/q-consultation/open-source/)\\n### New ProductBuild Exceptional Chat Experiences with AI‑Enhanced UI Kits\\n[Learn more](https://quickblox.com/ui-kit/)\\n[Previous](#carouselMainTopSlider)[Next](#carouselMainTopSlider)\\n# Build Your Own Messenger With Real-Time Chat & Video APIs\\nAdd instant messaging and online video chat to any Android, iOS, or Web application, with ease and flexibility In-app chat and calling APIs and SDKs, trusted globally by developers, startups, and enterprises [Start FREE Trial](https://admin.quickblox.com/signup?_ga=2.166318714.519349007.1585816300-1447393030.1568645682)[Talk to an Expert](https://quickblox.com/enterprise/#get-enterprise)\\n## Launch quickly and convert more prospects withreal‑‑timeChat, Audio, and Video communication\\nIf you own a product, you know exactly how drawn-out and exorbitant it can be to build real-time communication features from scratch Quickblox can help you design, create, and enter the market at a much faster rate with APIs and SDKs that shortcut product and engineering delivery Convert your ideas into a successful product with us and watch the engagement rate rise, while you build a loyal user base [\\n#### Chat\\nEmbedded chat features- you can customize and build a fully-functioning chat product for mobile and web in a matter of hours ](https://quickblox.com/products/chat/)[\\n#### Voice and Video calling\\nStreamline customer usability with high\\u2011quality peer\\u2011to\\u2011peer voice and video calls Drive more engagement and build meaningful connections ](https://quickblox.com/products/voice-and-video-calling/)[\\n#### Video Conferencing\\nCreate real-time video group interactions to enhance collaboration and productivity Designed to meet your user experience goals and increase conversations ](https://quickblox.com/products/video-conferencing/)[\\n#### Push Notifications\\nGive your customers/users reasons to keep coming back - send in-app reminders, offers, updates and watch retention rates climb ](https://quickblox.com/products/push-notifications/)\\n#### Data Storage\\nProtect your data from hackers and unwanted modification attempts using flexible data storage options Choose between dedicated, on-premise, or your own virtual cloud #### Secure File Sharing\\nAllow sharing and linking of all types of files (images, audio, video, docs, and other file formats) and enable your users to interact and engage more ## Over30,000 software developers and organizations worldwide are using QuickBlox messagingAPI\",\n", + " \"enterpriseinstances\\napplications\\nchatsperday\\nrequestspermonth\\n## Wherever you are in your product journey, we have chat, voice, and video APIs ready to build new features into your app\\n[Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Why QuickBlox Quickblox APIs are equipped to support mobile applications and websites at different stages, be it a fresh product idea, an MVP, early stage startup or a scaling enterprise Our documentation and developer support are highly efficient to make your dream product a reality ### Chat API and Feature-Rich SDKs\\nOur versatile software is designed for multi\\u2011platform use including iOS, Android, and the Web #### SDKs and Code Samples:\\nCross-platform kits and sample apps for easy and quick integration of chat #### Restful API:\\nEnable real-time communication via the server ### Fully Customizable White Label Solutions\\nCustomizable UI Kits to speed up your design workflow and build a product of your vision as well as a ready white\\u2011label solution for virtual rooms and video calling use cases #### UI Kits:\\nCustomize everything as you want with our ready UI Kits #### Q-Consultation:\\nWhite\\u2011label solution for teleconsultation and similar use cases ### Cloud & Dedicated Infrastructure\\nHost your apps wherever you want - opt for a dedicated fully managed server or on\\u2011premises infrastructure Pick a cloud provider that\\u2019s best as per your business goals #### Cloud:\\nA dedicated QuickBlox cloud or your own virtual cloud #### On-Premise:\\nDeployed and managed on your own physical server ### Rich Documentation & Constant Support\\nGet easy step by step guidance to build a powerful chat/messaging/communication app Easily integrate new features using our documentation and developer support\",\n", + " \"#### Docs:\\nIntegrating QuickBlox across multiple platforms #### Support:\\nQuickblox support is a click away ## Trust QuickBlox for secure communication\\n### SOC2\\n### HIPAA\\n### GDPR\\n## Do you need additional security, compliance, and support for the long-term We have a more scalable and flexible solution for you, customized to your unique business/app requirements [Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Insanely powerful in-app chat solutions- for every industry\\n* #### Healthcare\\nProvide better care for your patients and teams using feature-rich HIPAA\\u2011compliant chat solutions Integrate powerful telemedicine communication tools into your existing platform * #### Finance & Banking\\nSecure communication solutions for the financial and banking industry to support your clients Easily integrated with your banking APIs with full customization available * #### Marketplaces & E-commerce\\nIntegrate chat and calling into your e\\u2011commerce marketplace platform to connect with customers using chat, audio, and video calling features * #### Social Networking\\nGive your users the option to connect one-on-one or with a group, usinghigh quality voice, video, and chatbox app features - build a well connected community * #### Education & Coaching\\nAdd communication functions to connect teachers with students, coaches with players, and trainers with clients Appropriate for any remote learning application ## Trusted by Developers & Product Owners\\nCommunication with the QuickBlox team has been great The QuickBlox team is a vital partner and I appreciate their support, their platform, and its capabilities ### Justin Harr,Founder, Eden\\nWhat I like best about QuickBlox is their reliability and performance - I've rarely experienced any issues with their solutions, whether I'm using their video or voice SDK, or their chat API\",\n", + " \"### Itay Shechter,Co-founder, Vanywhere\\nQuickBlox chat has enhanced our platform and allowed us to facilitate better communication between caregivers and care coordinators\\n### Robin Jerome,Principal Architect, BayShore HealthCare\\nI have worked with QuickBlox for several years using their Flutter SDK to add chat features to several client apps Their SDKs are easy to work with, saving us much time and money not having to build chat from scratch ### Samyak Jain,CEO & Founder, Pixel apps\\n[Previous](#carousel)[Next](#carousel)\\n## Explore Documentation\\nFamiliarize yourself with our chat and calling APIs Use our platform SDKs and code samples to learn more about the software and integration process [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n[Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n[JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n[React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n[Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n[Server API](https://quickblox.com/sdk/chat-api/)\\n## Start For FREE Customize Everything Build Your Dream Online Platform Our real-time chat and messaging solutions scale as your business grows, and can be customized to create 100% custom in-app messaging [Contact Sales](https://quickblox.com/enterprise/#get-enterprise)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere\",\n", + " \"Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n### New ProductOpen source video consultation software with OpenAI Integration\\nElevate Your Video Communication with Q‑Consultation\\n[Learn more](https://quickblox.com/products/q-consultation/open-source/)\\n### New ProductBuild Exceptional Chat Experiences with AI‑Enhanced UI Kits\\n[Learn more](https://quickblox.com/ui-kit/)\\n[Previous](#carouselMainTopSlider)[Next](#carouselMainTopSlider)\\n# Build Your Own Messenger With Real-Time Chat & Video APIs\\nAdd instant messaging and online video chat to any Android, iOS, or Web application, with ease and flexibility In-app chat and calling APIs and SDKs, trusted globally by developers, startups, and enterprises [Start FREE Trial](https://admin.quickblox.com/signup?_ga=2.166318714.519349007.1585816300-1447393030.1568645682)[Talk to an Expert](https://quickblox.com/enterprise/#get-enterprise)\\n## Launch quickly and convert more prospects withreal‑‑timeChat, Audio, and Video communication\\nIf you own a product, you know exactly how drawn-out and exorbitant it can be to build real-time communication features from scratch Quickblox can help you design, create, and enter the market at a much faster rate with APIs and SDKs that shortcut product and engineering delivery Convert your ideas into a successful product with us and watch the engagement rate rise, while you build a loyal user base [\\n#### Chat\\nEmbedded chat features- you can customize and build a fully-functioning chat product for mobile and web in a matter of hours ](https://quickblox.com/products/chat/)[\\n#### Voice and Video calling\\nStreamline customer usability with high\\u2011quality peer\\u2011to\\u2011peer voice and video calls Drive more engagement and build meaningful connections ](https://quickblox.com/products/voice-and-video-calling/)[\\n#### Video Conferencing\\nCreate real-time video group interactions to enhance collaboration and productivity Designed to meet your user experience goals and increase conversations ](https://quickblox.com/products/video-conferencing/)[\\n#### Push Notifications\\nGive your customers/users reasons to keep coming back - send in-app reminders, offers, updates and watch retention rates climb ](https://quickblox.com/products/push-notifications/)\\n#### Data Storage\\nProtect your data from hackers and unwanted modification attempts using flexible data storage options Choose between dedicated, on-premise, or your own virtual cloud #### Secure File Sharing\\nAllow sharing and linking of all types of files (images, audio, video, docs, and other file formats) and enable your users to interact and engage more ## Over30,000 software developers and organizations worldwide are using QuickBlox messagingAPI\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 85 Type: step\n", + "output: {\n", + " \"documents\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n### New ProductOpen source video consultation software with OpenAI Integration\\nElevate Your Video Communication with Q‑Consultation\\n[Learn more](https://quickblox.com/products/q-consultation/open-source/)\\n### New ProductBuild Exceptional Chat Experiences with AI‑Enhanced UI Kits\\n[Learn more](https://quickblox.com/ui-kit/)\\n[Previous](#carouselMainTopSlider)[Next](#carouselMainTopSlider)\\n# Build Your Own Messenger With Real-Time Chat & Video APIs\\nAdd instant messaging and online video chat to any Android, iOS, or Web application, with ease and flexibility In-app chat and calling APIs and SDKs, trusted globally by developers, startups, and enterprises [Start FREE Trial](https://admin.quickblox.com/signup?_ga=2.166318714.519349007.1585816300-1447393030.1568645682)[Talk to an Expert](https://quickblox.com/enterprise/#get-enterprise)\\n## Launch quickly and convert more prospects withreal‑‑timeChat, Audio, and Video communication\\nIf you own a product, you know exactly how drawn-out and exorbitant it can be to build real-time communication features from scratch Quickblox can help you design, create, and enter the market at a much faster rate with APIs and SDKs that shortcut product and engineering delivery Convert your ideas into a successful product with us and watch the engagement rate rise, while you build a loyal user base [\\n#### Chat\\nEmbedded chat features- you can customize and build a fully-functioning chat product for mobile and web in a matter of hours ](https://quickblox.com/products/chat/)[\\n#### Voice and Video calling\\nStreamline customer usability with high\\u2011quality peer\\u2011to\\u2011peer voice and video calls Drive more engagement and build meaningful connections ](https://quickblox.com/products/voice-and-video-calling/)[\\n#### Video Conferencing\\nCreate real-time video group interactions to enhance collaboration and productivity Designed to meet your user experience goals and increase conversations ](https://quickblox.com/products/video-conferencing/)[\\n#### Push Notifications\\nGive your customers/users reasons to keep coming back - send in-app reminders, offers, updates and watch retention rates climb ](https://quickblox.com/products/push-notifications/)\\n#### Data Storage\\nProtect your data from hackers and unwanted modification attempts using flexible data storage options Choose between dedicated, on-premise, or your own virtual cloud #### Secure File Sharing\\nAllow sharing and linking of all types of files (images, audio, video, docs, and other file formats) and enable your users to interact and engage more ## Over30,000 software developers and organizations worldwide are using QuickBlox messagingAPI\",\n", + " \"enterpriseinstances\\napplications\\nchatsperday\\nrequestspermonth\\n## Wherever you are in your product journey, we have chat, voice, and video APIs ready to build new features into your app\\n[Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Why QuickBlox Quickblox APIs are equipped to support mobile applications and websites at different stages, be it a fresh product idea, an MVP, early stage startup or a scaling enterprise Our documentation and developer support are highly efficient to make your dream product a reality ### Chat API and Feature-Rich SDKs\\nOur versatile software is designed for multi\\u2011platform use including iOS, Android, and the Web #### SDKs and Code Samples:\\nCross-platform kits and sample apps for easy and quick integration of chat #### Restful API:\\nEnable real-time communication via the server ### Fully Customizable White Label Solutions\\nCustomizable UI Kits to speed up your design workflow and build a product of your vision as well as a ready white\\u2011label solution for virtual rooms and video calling use cases #### UI Kits:\\nCustomize everything as you want with our ready UI Kits #### Q-Consultation:\\nWhite\\u2011label solution for teleconsultation and similar use cases ### Cloud & Dedicated Infrastructure\\nHost your apps wherever you want - opt for a dedicated fully managed server or on\\u2011premises infrastructure Pick a cloud provider that\\u2019s best as per your business goals #### Cloud:\\nA dedicated QuickBlox cloud or your own virtual cloud #### On-Premise:\\nDeployed and managed on your own physical server ### Rich Documentation & Constant Support\\nGet easy step by step guidance to build a powerful chat/messaging/communication app Easily integrate new features using our documentation and developer support\",\n", + " \"#### Docs:\\nIntegrating QuickBlox across multiple platforms #### Support:\\nQuickblox support is a click away ## Trust QuickBlox for secure communication\\n### SOC2\\n### HIPAA\\n### GDPR\\n## Do you need additional security, compliance, and support for the long-term We have a more scalable and flexible solution for you, customized to your unique business/app requirements [Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Insanely powerful in-app chat solutions- for every industry\\n* #### Healthcare\\nProvide better care for your patients and teams using feature-rich HIPAA\\u2011compliant chat solutions Integrate powerful telemedicine communication tools into your existing platform * #### Finance & Banking\\nSecure communication solutions for the financial and banking industry to support your clients Easily integrated with your banking APIs with full customization available * #### Marketplaces & E-commerce\\nIntegrate chat and calling into your e\\u2011commerce marketplace platform to connect with customers using chat, audio, and video calling features * #### Social Networking\\nGive your users the option to connect one-on-one or with a group, usinghigh quality voice, video, and chatbox app features - build a well connected community * #### Education & Coaching\\nAdd communication functions to connect teachers with students, coaches with players, and trainers with clients Appropriate for any remote learning application ## Trusted by Developers & Product Owners\\nCommunication with the QuickBlox team has been great The QuickBlox team is a vital partner and I appreciate their support, their platform, and its capabilities ### Justin Harr,Founder, Eden\\nWhat I like best about QuickBlox is their reliability and performance - I've rarely experienced any issues with their solutions, whether I'm using their video or voice SDK, or their chat API\",\n", + " \"### Itay Shechter,Co-founder, Vanywhere\\nQuickBlox chat has enhanced our platform and allowed us to facilitate better communication between caregivers and care coordinators\\n### Robin Jerome,Principal Architect, BayShore HealthCare\\nI have worked with QuickBlox for several years using their Flutter SDK to add chat features to several client apps Their SDKs are easy to work with, saving us much time and money not having to build chat from scratch ### Samyak Jain,CEO & Founder, Pixel apps\\n[Previous](#carousel)[Next](#carousel)\\n## Explore Documentation\\nFamiliarize yourself with our chat and calling APIs Use our platform SDKs and code samples to learn more about the software and integration process [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n[Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n[JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n[React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n[Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n[Server API](https://quickblox.com/sdk/chat-api/)\\n## Start For FREE Customize Everything Build Your Dream Online Platform Our real-time chat and messaging solutions scale as your business grows, and can be customized to create 100% custom in-app messaging [Contact Sales](https://quickblox.com/enterprise/#get-enterprise)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere\",\n", + " \"Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 86 Type: init_branch\n", + "output: {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n### New ProductOpen source video consultation software with OpenAI Integration\\nElevate Your Video Communication with Q‑Consultation\\n[Learn more](https://quickblox.com/products/q-consultation/open-source/)\\n### New ProductBuild Exceptional Chat Experiences with AI‑Enhanced UI Kits\\n[Learn more](https://quickblox.com/ui-kit/)\\n[Previous](#carouselMainTopSlider)[Next](#carouselMainTopSlider)\\n# Build Your Own Messenger With Real-Time Chat & Video APIs\\nAdd instant messaging and online video chat to any Android, iOS, or Web application, with ease and flexibility In-app chat and calling APIs and SDKs, trusted globally by developers, startups, and enterprises [Start FREE Trial](https://admin.quickblox.com/signup?_ga=2.166318714.519349007.1585816300-1447393030.1568645682)[Talk to an Expert](https://quickblox.com/enterprise/#get-enterprise)\\n## Launch quickly and convert more prospects withreal‑‑timeChat, Audio, and Video communication\\nIf you own a product, you know exactly how drawn-out and exorbitant it can be to build real-time communication features from scratch Quickblox can help you design, create, and enter the market at a much faster rate with APIs and SDKs that shortcut product and engineering delivery Convert your ideas into a successful product with us and watch the engagement rate rise, while you build a loyal user base [\\n#### Chat\\nEmbedded chat features- you can customize and build a fully-functioning chat product for mobile and web in a matter of hours ](https://quickblox.com/products/chat/)[\\n#### Voice and Video calling\\nStreamline customer usability with high\\u2011quality peer\\u2011to\\u2011peer voice and video calls Drive more engagement and build meaningful connections ](https://quickblox.com/products/voice-and-video-calling/)[\\n#### Video Conferencing\\nCreate real-time video group interactions to enhance collaboration and productivity Designed to meet your user experience goals and increase conversations ](https://quickblox.com/products/video-conferencing/)[\\n#### Push Notifications\\nGive your customers/users reasons to keep coming back - send in-app reminders, offers, updates and watch retention rates climb ](https://quickblox.com/products/push-notifications/)\\n#### Data Storage\\nProtect your data from hackers and unwanted modification attempts using flexible data storage options Choose between dedicated, on-premise, or your own virtual cloud #### Secure File Sharing\\nAllow sharing and linking of all types of files (images, audio, video, docs, and other file formats) and enable your users to interact and engage more ## Over30,000 software developers and organizations worldwide are using QuickBlox messagingAPI\",\n", + " \"enterpriseinstances\\napplications\\nchatsperday\\nrequestspermonth\\n## Wherever you are in your product journey, we have chat, voice, and video APIs ready to build new features into your app\\n[Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Why QuickBlox Quickblox APIs are equipped to support mobile applications and websites at different stages, be it a fresh product idea, an MVP, early stage startup or a scaling enterprise Our documentation and developer support are highly efficient to make your dream product a reality ### Chat API and Feature-Rich SDKs\\nOur versatile software is designed for multi\\u2011platform use including iOS, Android, and the Web #### SDKs and Code Samples:\\nCross-platform kits and sample apps for easy and quick integration of chat #### Restful API:\\nEnable real-time communication via the server ### Fully Customizable White Label Solutions\\nCustomizable UI Kits to speed up your design workflow and build a product of your vision as well as a ready white\\u2011label solution for virtual rooms and video calling use cases #### UI Kits:\\nCustomize everything as you want with our ready UI Kits #### Q-Consultation:\\nWhite\\u2011label solution for teleconsultation and similar use cases ### Cloud & Dedicated Infrastructure\\nHost your apps wherever you want - opt for a dedicated fully managed server or on\\u2011premises infrastructure Pick a cloud provider that\\u2019s best as per your business goals #### Cloud:\\nA dedicated QuickBlox cloud or your own virtual cloud #### On-Premise:\\nDeployed and managed on your own physical server ### Rich Documentation & Constant Support\\nGet easy step by step guidance to build a powerful chat/messaging/communication app Easily integrate new features using our documentation and developer support\",\n", + " \"#### Docs:\\nIntegrating QuickBlox across multiple platforms #### Support:\\nQuickblox support is a click away ## Trust QuickBlox for secure communication\\n### SOC2\\n### HIPAA\\n### GDPR\\n## Do you need additional security, compliance, and support for the long-term We have a more scalable and flexible solution for you, customized to your unique business/app requirements [Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Insanely powerful in-app chat solutions- for every industry\\n* #### Healthcare\\nProvide better care for your patients and teams using feature-rich HIPAA\\u2011compliant chat solutions Integrate powerful telemedicine communication tools into your existing platform * #### Finance & Banking\\nSecure communication solutions for the financial and banking industry to support your clients Easily integrated with your banking APIs with full customization available * #### Marketplaces & E-commerce\\nIntegrate chat and calling into your e\\u2011commerce marketplace platform to connect with customers using chat, audio, and video calling features * #### Social Networking\\nGive your users the option to connect one-on-one or with a group, usinghigh quality voice, video, and chatbox app features - build a well connected community * #### Education & Coaching\\nAdd communication functions to connect teachers with students, coaches with players, and trainers with clients Appropriate for any remote learning application ## Trusted by Developers & Product Owners\\nCommunication with the QuickBlox team has been great The QuickBlox team is a vital partner and I appreciate their support, their platform, and its capabilities ### Justin Harr,Founder, Eden\\nWhat I like best about QuickBlox is their reliability and performance - I've rarely experienced any issues with their solutions, whether I'm using their video or voice SDK, or their chat API\",\n", + " \"### Itay Shechter,Co-founder, Vanywhere\\nQuickBlox chat has enhanced our platform and allowed us to facilitate better communication between caregivers and care coordinators\\n### Robin Jerome,Principal Architect, BayShore HealthCare\\nI have worked with QuickBlox for several years using their Flutter SDK to add chat features to several client apps Their SDKs are easy to work with, saving us much time and money not having to build chat from scratch ### Samyak Jain,CEO & Founder, Pixel apps\\n[Previous](#carousel)[Next](#carousel)\\n## Explore Documentation\\nFamiliarize yourself with our chat and calling APIs Use our platform SDKs and code samples to learn more about the software and integration process [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n[Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n[JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n[React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n[Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n[Server API](https://quickblox.com/sdk/chat-api/)\\n## Start For FREE Customize Everything Build Your Dream Online Platform Our real-time chat and messaging solutions scale as your business grows, and can be customized to create 100% custom in-app messaging [Contact Sales](https://quickblox.com/enterprise/#get-enterprise)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere\",\n", + " \"Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 87 Type: step\n", + "output: {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n### New ProductOpen source video consultation software with OpenAI Integration\\nElevate Your Video Communication with Q‑Consultation\\n[Learn more](https://quickblox.com/products/q-consultation/open-source/)\\n### New ProductBuild Exceptional Chat Experiences with AI‑Enhanced UI Kits\\n[Learn more](https://quickblox.com/ui-kit/)\\n[Previous](#carouselMainTopSlider)[Next](#carouselMainTopSlider)\\n# Build Your Own Messenger With Real-Time Chat & Video APIs\\nAdd instant messaging and online video chat to any Android, iOS, or Web application, with ease and flexibility In-app chat and calling APIs and SDKs, trusted globally by developers, startups, and enterprises [Start FREE Trial](https://admin.quickblox.com/signup?_ga=2.166318714.519349007.1585816300-1447393030.1568645682)[Talk to an Expert](https://quickblox.com/enterprise/#get-enterprise)\\n## Launch quickly and convert more prospects withreal‑‑timeChat, Audio, and Video communication\\nIf you own a product, you know exactly how drawn-out and exorbitant it can be to build real-time communication features from scratch Quickblox can help you design, create, and enter the market at a much faster rate with APIs and SDKs that shortcut product and engineering delivery Convert your ideas into a successful product with us and watch the engagement rate rise, while you build a loyal user base [\\n#### Chat\\nEmbedded chat features- you can customize and build a fully-functioning chat product for mobile and web in a matter of hours ](https://quickblox.com/products/chat/)[\\n#### Voice and Video calling\\nStreamline customer usability with high\\u2011quality peer\\u2011to\\u2011peer voice and video calls Drive more engagement and build meaningful connections ](https://quickblox.com/products/voice-and-video-calling/)[\\n#### Video Conferencing\\nCreate real-time video group interactions to enhance collaboration and productivity Designed to meet your user experience goals and increase conversations ](https://quickblox.com/products/video-conferencing/)[\\n#### Push Notifications\\nGive your customers/users reasons to keep coming back - send in-app reminders, offers, updates and watch retention rates climb ](https://quickblox.com/products/push-notifications/)\\n#### Data Storage\\nProtect your data from hackers and unwanted modification attempts using flexible data storage options Choose between dedicated, on-premise, or your own virtual cloud #### Secure File Sharing\\nAllow sharing and linking of all types of files (images, audio, video, docs, and other file formats) and enable your users to interact and engage more ## Over30,000 software developers and organizations worldwide are using QuickBlox messagingAPI\",\n", + " \"enterpriseinstances\\napplications\\nchatsperday\\nrequestspermonth\\n## Wherever you are in your product journey, we have chat, voice, and video APIs ready to build new features into your app\\n[Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Why QuickBlox Quickblox APIs are equipped to support mobile applications and websites at different stages, be it a fresh product idea, an MVP, early stage startup or a scaling enterprise Our documentation and developer support are highly efficient to make your dream product a reality ### Chat API and Feature-Rich SDKs\\nOur versatile software is designed for multi\\u2011platform use including iOS, Android, and the Web #### SDKs and Code Samples:\\nCross-platform kits and sample apps for easy and quick integration of chat #### Restful API:\\nEnable real-time communication via the server ### Fully Customizable White Label Solutions\\nCustomizable UI Kits to speed up your design workflow and build a product of your vision as well as a ready white\\u2011label solution for virtual rooms and video calling use cases #### UI Kits:\\nCustomize everything as you want with our ready UI Kits #### Q-Consultation:\\nWhite\\u2011label solution for teleconsultation and similar use cases ### Cloud & Dedicated Infrastructure\\nHost your apps wherever you want - opt for a dedicated fully managed server or on\\u2011premises infrastructure Pick a cloud provider that\\u2019s best as per your business goals #### Cloud:\\nA dedicated QuickBlox cloud or your own virtual cloud #### On-Premise:\\nDeployed and managed on your own physical server ### Rich Documentation & Constant Support\\nGet easy step by step guidance to build a powerful chat/messaging/communication app Easily integrate new features using our documentation and developer support\",\n", + " \"#### Docs:\\nIntegrating QuickBlox across multiple platforms #### Support:\\nQuickblox support is a click away ## Trust QuickBlox for secure communication\\n### SOC2\\n### HIPAA\\n### GDPR\\n## Do you need additional security, compliance, and support for the long-term We have a more scalable and flexible solution for you, customized to your unique business/app requirements [Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Insanely powerful in-app chat solutions- for every industry\\n* #### Healthcare\\nProvide better care for your patients and teams using feature-rich HIPAA\\u2011compliant chat solutions Integrate powerful telemedicine communication tools into your existing platform * #### Finance & Banking\\nSecure communication solutions for the financial and banking industry to support your clients Easily integrated with your banking APIs with full customization available * #### Marketplaces & E-commerce\\nIntegrate chat and calling into your e\\u2011commerce marketplace platform to connect with customers using chat, audio, and video calling features * #### Social Networking\\nGive your users the option to connect one-on-one or with a group, usinghigh quality voice, video, and chatbox app features - build a well connected community * #### Education & Coaching\\nAdd communication functions to connect teachers with students, coaches with players, and trainers with clients Appropriate for any remote learning application ## Trusted by Developers & Product Owners\\nCommunication with the QuickBlox team has been great The QuickBlox team is a vital partner and I appreciate their support, their platform, and its capabilities ### Justin Harr,Founder, Eden\\nWhat I like best about QuickBlox is their reliability and performance - I've rarely experienced any issues with their solutions, whether I'm using their video or voice SDK, or their chat API\",\n", + " \"### Itay Shechter,Co-founder, Vanywhere\\nQuickBlox chat has enhanced our platform and allowed us to facilitate better communication between caregivers and care coordinators\\n### Robin Jerome,Principal Architect, BayShore HealthCare\\nI have worked with QuickBlox for several years using their Flutter SDK to add chat features to several client apps Their SDKs are easy to work with, saving us much time and money not having to build chat from scratch ### Samyak Jain,CEO & Founder, Pixel apps\\n[Previous](#carousel)[Next](#carousel)\\n## Explore Documentation\\nFamiliarize yourself with our chat and calling APIs Use our platform SDKs and code samples to learn more about the software and integration process [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n[Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n[JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n[React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n[Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n[Server API](https://quickblox.com/sdk/chat-api/)\\n## Start For FREE Customize Everything Build Your Dream Online Platform Our real-time chat and messaging solutions scale as your business grows, and can be customized to create 100% custom in-app messaging [Contact Sales](https://quickblox.com/enterprise/#get-enterprise)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere\",\n", + " \"Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 88 Type: init_branch\n", + "output: {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n### New ProductOpen source video consultation software with OpenAI Integration\\nElevate Your Video Communication with Q‑Consultation\\n[Learn more](https://quickblox.com/products/q-consultation/open-source/)\\n### New ProductBuild Exceptional Chat Experiences with AI‑Enhanced UI Kits\\n[Learn more](https://quickblox.com/ui-kit/)\\n[Previous](#carouselMainTopSlider)[Next](#carouselMainTopSlider)\\n# Build Your Own Messenger With Real-Time Chat & Video APIs\\nAdd instant messaging and online video chat to any Android, iOS, or Web application, with ease and flexibility In-app chat and calling APIs and SDKs, trusted globally by developers, startups, and enterprises [Start FREE Trial](https://admin.quickblox.com/signup?_ga=2.166318714.519349007.1585816300-1447393030.1568645682)[Talk to an Expert](https://quickblox.com/enterprise/#get-enterprise)\\n## Launch quickly and convert more prospects withreal‑‑timeChat, Audio, and Video communication\\nIf you own a product, you know exactly how drawn-out and exorbitant it can be to build real-time communication features from scratch Quickblox can help you design, create, and enter the market at a much faster rate with APIs and SDKs that shortcut product and engineering delivery Convert your ideas into a successful product with us and watch the engagement rate rise, while you build a loyal user base [\\n#### Chat\\nEmbedded chat features- you can customize and build a fully-functioning chat product for mobile and web in a matter of hours ](https://quickblox.com/products/chat/)[\\n#### Voice and Video calling\\nStreamline customer usability with high\\u2011quality peer\\u2011to\\u2011peer voice and video calls Drive more engagement and build meaningful connections ](https://quickblox.com/products/voice-and-video-calling/)[\\n#### Video Conferencing\\nCreate real-time video group interactions to enhance collaboration and productivity Designed to meet your user experience goals and increase conversations ](https://quickblox.com/products/video-conferencing/)[\\n#### Push Notifications\\nGive your customers/users reasons to keep coming back - send in-app reminders, offers, updates and watch retention rates climb ](https://quickblox.com/products/push-notifications/)\\n#### Data Storage\\nProtect your data from hackers and unwanted modification attempts using flexible data storage options Choose between dedicated, on-premise, or your own virtual cloud #### Secure File Sharing\\nAllow sharing and linking of all types of files (images, audio, video, docs, and other file formats) and enable your users to interact and engage more ## Over30,000 software developers and organizations worldwide are using QuickBlox messagingAPI\",\n", + " \"enterpriseinstances\\napplications\\nchatsperday\\nrequestspermonth\\n## Wherever you are in your product journey, we have chat, voice, and video APIs ready to build new features into your app\\n[Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Why QuickBlox Quickblox APIs are equipped to support mobile applications and websites at different stages, be it a fresh product idea, an MVP, early stage startup or a scaling enterprise Our documentation and developer support are highly efficient to make your dream product a reality ### Chat API and Feature-Rich SDKs\\nOur versatile software is designed for multi\\u2011platform use including iOS, Android, and the Web #### SDKs and Code Samples:\\nCross-platform kits and sample apps for easy and quick integration of chat #### Restful API:\\nEnable real-time communication via the server ### Fully Customizable White Label Solutions\\nCustomizable UI Kits to speed up your design workflow and build a product of your vision as well as a ready white\\u2011label solution for virtual rooms and video calling use cases #### UI Kits:\\nCustomize everything as you want with our ready UI Kits #### Q-Consultation:\\nWhite\\u2011label solution for teleconsultation and similar use cases ### Cloud & Dedicated Infrastructure\\nHost your apps wherever you want - opt for a dedicated fully managed server or on\\u2011premises infrastructure Pick a cloud provider that\\u2019s best as per your business goals #### Cloud:\\nA dedicated QuickBlox cloud or your own virtual cloud #### On-Premise:\\nDeployed and managed on your own physical server ### Rich Documentation & Constant Support\\nGet easy step by step guidance to build a powerful chat/messaging/communication app Easily integrate new features using our documentation and developer support\",\n", + " \"#### Docs:\\nIntegrating QuickBlox across multiple platforms #### Support:\\nQuickblox support is a click away ## Trust QuickBlox for secure communication\\n### SOC2\\n### HIPAA\\n### GDPR\\n## Do you need additional security, compliance, and support for the long-term We have a more scalable and flexible solution for you, customized to your unique business/app requirements [Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Insanely powerful in-app chat solutions- for every industry\\n* #### Healthcare\\nProvide better care for your patients and teams using feature-rich HIPAA\\u2011compliant chat solutions Integrate powerful telemedicine communication tools into your existing platform * #### Finance & Banking\\nSecure communication solutions for the financial and banking industry to support your clients Easily integrated with your banking APIs with full customization available * #### Marketplaces & E-commerce\\nIntegrate chat and calling into your e\\u2011commerce marketplace platform to connect with customers using chat, audio, and video calling features * #### Social Networking\\nGive your users the option to connect one-on-one or with a group, usinghigh quality voice, video, and chatbox app features - build a well connected community * #### Education & Coaching\\nAdd communication functions to connect teachers with students, coaches with players, and trainers with clients Appropriate for any remote learning application ## Trusted by Developers & Product Owners\\nCommunication with the QuickBlox team has been great The QuickBlox team is a vital partner and I appreciate their support, their platform, and its capabilities ### Justin Harr,Founder, Eden\\nWhat I like best about QuickBlox is their reliability and performance - I've rarely experienced any issues with their solutions, whether I'm using their video or voice SDK, or their chat API\",\n", + " \"### Itay Shechter,Co-founder, Vanywhere\\nQuickBlox chat has enhanced our platform and allowed us to facilitate better communication between caregivers and care coordinators\\n### Robin Jerome,Principal Architect, BayShore HealthCare\\nI have worked with QuickBlox for several years using their Flutter SDK to add chat features to several client apps Their SDKs are easy to work with, saving us much time and money not having to build chat from scratch ### Samyak Jain,CEO & Founder, Pixel apps\\n[Previous](#carousel)[Next](#carousel)\\n## Explore Documentation\\nFamiliarize yourself with our chat and calling APIs Use our platform SDKs and code samples to learn more about the software and integration process [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n[Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n[JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n[React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n[Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n[Server API](https://quickblox.com/sdk/chat-api/)\\n## Start For FREE Customize Everything Build Your Dream Online Platform Our real-time chat and messaging solutions scale as your business grows, and can be customized to create 100% custom in-app messaging [Contact Sales](https://quickblox.com/enterprise/#get-enterprise)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere\",\n", + " \"Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"costs\": {\n", + " \"ai_cost\": 0,\n", + " \"bytes_transferred_cost\": 0,\n", + " \"compute_cost\": 0.0001,\n", + " \"file_cost\": 0.0002,\n", + " \"total_cost\": 0.0004,\n", + " \"transform_cost\": 0.0001\n", + " },\n", + " \"error\": null,\n", + " \"status\": 200,\n", + " \"url\": \"https://quickblox.com/\"\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 89 Type: finish_branch\n", + "output: [\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:31.112575Z\",\n", + " \"id\": \"0c012c84-045d-4669-8a29-f705efb5fcb4\",\n", + " \"jobs\": [\n", + " \"768a66f6-d3de-4018-a121-5b4d2c5e4148\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:31.082408Z\",\n", + " \"id\": \"e4a75239-40cf-47ce-93d3-4c242a6d4df8\",\n", + " \"jobs\": [\n", + " \"ef885c86-8a40-4c9a-919f-35d547d1ec9d\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:31.051073Z\",\n", + " \"id\": \"d8f22c56-f736-476f-8fba-12c2468ef333\",\n", + " \"jobs\": [\n", + " \"2f28eb35-e76d-46e5-a0d8-769a76b9c8f3\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:32.327631Z\",\n", + " \"id\": \"e4bfa602-593b-477b-a179-11db1b33ed96\",\n", + " \"jobs\": [\n", + " \"a38d5a86-ee77-486a-9c2a-a1342a0ff88d\"\n", + " ]\n", + " }\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 90 Type: finish_branch\n", + "output: [\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:31.112575Z\",\n", + " \"id\": \"0c012c84-045d-4669-8a29-f705efb5fcb4\",\n", + " \"jobs\": [\n", + " \"768a66f6-d3de-4018-a121-5b4d2c5e4148\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:31.082408Z\",\n", + " \"id\": \"e4a75239-40cf-47ce-93d3-4c242a6d4df8\",\n", + " \"jobs\": [\n", + " \"ef885c86-8a40-4c9a-919f-35d547d1ec9d\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:31.051073Z\",\n", + " \"id\": \"d8f22c56-f736-476f-8fba-12c2468ef333\",\n", + " \"jobs\": [\n", + " \"2f28eb35-e76d-46e5-a0d8-769a76b9c8f3\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:32.327631Z\",\n", + " \"id\": \"e4bfa602-593b-477b-a179-11db1b33ed96\",\n", + " \"jobs\": [\n", + " \"a38d5a86-ee77-486a-9c2a-a1342a0ff88d\"\n", + " ]\n", + " }\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 91 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:32.327631Z\",\n", + " \"id\": \"e4bfa602-593b-477b-a179-11db1b33ed96\",\n", + " \"jobs\": [\n", + " \"a38d5a86-ee77-486a-9c2a-a1342a0ff88d\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 92 Type: init_branch\n", + "output: \"Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\\nThe chunk lists QuickBlox's social media links, suggesting it belongs to a section in the document focused on engaging with users and promoting community interaction through various platforms.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 93 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:31.112575Z\",\n", + " \"id\": \"0c012c84-045d-4669-8a29-f705efb5fcb4\",\n", + " \"jobs\": [\n", + " \"768a66f6-d3de-4018-a121-5b4d2c5e4148\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 94 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:31.051073Z\",\n", + " \"id\": \"d8f22c56-f736-476f-8fba-12c2468ef333\",\n", + " \"jobs\": [\n", + " \"2f28eb35-e76d-46e5-a0d8-769a76b9c8f3\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 95 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:31.082408Z\",\n", + " \"id\": \"e4a75239-40cf-47ce-93d3-4c242a6d4df8\",\n", + " \"jobs\": [\n", + " \"ef885c86-8a40-4c9a-919f-35d547d1ec9d\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 96 Type: init_branch\n", + "output: \"### Are QuickBlox Hosting options HIPAA compliant Weunderstand the needs ofhealthcare and provide arange ofHIPAA compliant hosting solutions onour shared cloud, your public orprivate cloud, oronpremises.Learn more here ### What ifI sign upfor one ofyour hosting plans, but then myneeds change Weembrace aflexible approach tohosting which means that our DevOps team isable toadjust your hosting environment asyour requirements change Wesupport migration from our multi-tenant shared cloud toadedicated instance inyour own cloud account, and wecan scale upand scale down your dedicated instance tosupport the ebb and flow ofyour business growth ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [Advantages of Enterprise Hosting for Secure Chat](https://quickblox.com/blog/advantages-of-enterprise-hosting-for-secure-chat/)\\nGail M 19 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [How to choose hosting for your chat application](https://quickblox.com/blog/how-to-choose-hosting-for-your-chat-application/)\\nGail M 31 Aug 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [QuickBlox Hosting Options for Enterprises](https://quickblox.com/blog/quickblox-hosting-options-for-enterprises/)\\nHamza Mousa\\n12 Mar 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere\\nThe chunk provides detailed information about QuickBlox's HIPAA-compliant hosting options, flexibility in hosting plans, and additional resources for secure chat hosting. It is situated within a broader document that outlines QuickBlox's products, solutions, enterprise features, and developer resources, emphasizing communication tools, AI solutions, white-label services, and secure hosting options compliant with GDPR and HIPAA regulations.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 97 Type: init_branch\n", + "output: \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Flexible and Secure Hosting\\nQuickBlox offers aflexible range ofcloud and on-premises hosting options Regardless ofwhere the software isdeployed you can relax knowing that all options are GDPR and HIPAA compliant, granting you full data ownership and user privacy ## Chat hosting wherever you need\\nWecan set upavariety ofinstallations depending onyour particular technical and regulatory needs Nomatter what type ofinstallation you choose, QuickBlox ensures the security ofyour enterprise data ### QuickBlox can bedeployed:\\nOn-premises, onyour own private server/ data center\\nOnyour own cloud account set upwith a3rd party hosting provider ofyour choice\\nOnthe QuickBlox cloud created and dedicated toyour enterprise only\\n## On-Premises\\nFor those highly regulated industries and organizations like banking, healthcare, and government, on-premises deployment guarantees you 100% security ofdata and peace ofmind Asour software isdelivered straight toyour own servers orcompany-owned cloud, removing any need for 3rd parties, you can besure that only you and your customers have access todata [Learn more](https://quickblox.com/hosting/on-premise/)\\n## Cloud\\nWecan run QuickBlox communication software inyour own virtual machine (VMs) onapublic orprivate cloud with your preferred hosting provider, orinadedicated QuickBlox cloud Both options offer ahigh level ofsecurity and are fully GDPR and HIPAA compliant Weprovide complete management and are responsible for 24/7 operational functionality [Learn more](https://quickblox.com/hosting/cloud/)\\n## HIPAA Compliant\\nWeoffer our healthcare customers several HIPAA compliant hosting solutions: onour shared cloud, asadedicated instance onaQuickBlox managed cloud, asafully managed service onthe customer’’s own cloud account, oron-premises Weoffer data encryption, additional security add-ons, provide aBusiness Associate Agreement (BAA), and more [Learn more](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n## Multi-Tenant Shared Cloud\\nDon’’t want topay the full cost while you are still indevelopment stages Weunderstand Sign upfor one ofour subscription plans hosted onamulti-tenant shared cloud where you can enjoy access tomessaging and calling features with ticket based support until you are ready toupgrade\\n[View pricing](https://quickblox.com/pricing/)\\n## Choosing the right hosting environment\\nWeunderstand that one size does not fit all that’’s why QuickBlox offers arange ofhosting solutions For the best solution that fits your needs speak toarepresentative\\n[Contact sales](https://quickblox.com/enterprise/#get-enterprise)\\n* Supported Features\\n* * Cloud Hosting\\n* QuickBlox Cloud\\n* Yourown Public/Private Cloud\\n* On-premises\\n* * Hosted onyour own local server\\n* * * * * Hosted oncustomer’’s dedicated cloud account\\n* * * * * Hosted onQuickBlox cloud account dedicated toyour enterprise\\n* * * * * Choose which country where your data isstored\\n* Depends\\n* * * * Quick installation and free data migration\\n* * * Depends\\n* * Software accessible only bycustomer’’s internal DevOps team\\n* * * * * Control ofyour user data and backend software updates\\n* * * * * Maintenance byQuickBlox team under SLA\\n* * * * * Option ofadditional security Addons\\n* * * * * Nodata limits whatsoever\\n* * * * * 100% data ownership\\n* * * * * HIPAA Compliant\\n* * * * * GDPR Compliant\\n* * * * Depending onthe geographical region you require, wemay beable toset upaQuickBlox managed account inanother region/with another cloud hosting provider\\nThis chunk provides an overview of QuickBlox's product offerings, including communication tools like SDKs and APIs, QuickBlox AI, and white-label solutions. It also details solutions for various industries, enterprise features, hosting options, and developer resources, offering links to specific documentation, support, and tutorials.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 98 Type: init_branch\n", + "output: \"* Supported with certain cloud providers * Depends on the complexity of your infrastructure and installation * Asagreed with your DevOps/ info-security team ## Frequently Asked Questions\\n### How doI choose the right hosting environment There are several factors you need toconsider when choosing the best setup for video, voice, orlive chat hosting: compliance and security concerns, disaster recovery and data backup needs, speed, performance and bandwidth needs, and ofcourse cost all come into play Our experienced QuickBloxconsultantswould behappy toexplain our hosting options and help you find the best fit Also check out our resources below ### Can Iget free chat hosting onthe QuickBlox Shared cloud Our multi-tenant shared cloud isdesigned for developers and companies who have limited bandwidth needs and who are inearly stages intheir development and need atesting environment Weoffer arange ofplans for discounted and free chat hosting onthe shared cloud tohelp you get started.Check pricing here ### Does QuickBlox support video conference hosting Yes, wedo For video conference hosting services, customers need adedicated media server toenable multi-participant video calls Weprovide this asanadd-on toany plan that you subscribeto Speak toone ofourconsultantsnow for more information\\nThe chunk is part of QuickBlox's documentation on hosting solutions, specifically addressing frequently asked questions about choosing the right hosting environment for video, voice, or live chat applications. It covers considerations like compliance, security, disaster recovery, data backup, and cost. It also discusses options for free chat hosting on QuickBlox's shared cloud and support for video conference hosting with dedicated media servers.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 99 Type: step\n", + "output: {\n", + " \"final_chunks\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Flexible and Secure Hosting\\nQuickBlox offers aflexible range ofcloud and on-premises hosting options Regardless ofwhere the software isdeployed you can relax knowing that all options are GDPR and HIPAA compliant, granting you full data ownership and user privacy ## Chat hosting wherever you need\\nWecan set upavariety ofinstallations depending onyour particular technical and regulatory needs Nomatter what type ofinstallation you choose, QuickBlox ensures the security ofyour enterprise data ### QuickBlox can bedeployed:\\nOn-premises, onyour own private server/ data center\\nOnyour own cloud account set upwith a3rd party hosting provider ofyour choice\\nOnthe QuickBlox cloud created and dedicated toyour enterprise only\\n## On-Premises\\nFor those highly regulated industries and organizations like banking, healthcare, and government, on-premises deployment guarantees you 100% security ofdata and peace ofmind Asour software isdelivered straight toyour own servers orcompany-owned cloud, removing any need for 3rd parties, you can besure that only you and your customers have access todata [Learn more](https://quickblox.com/hosting/on-premise/)\\n## Cloud\\nWecan run QuickBlox communication software inyour own virtual machine (VMs) onapublic orprivate cloud with your preferred hosting provider, orinadedicated QuickBlox cloud Both options offer ahigh level ofsecurity and are fully GDPR and HIPAA compliant Weprovide complete management and are responsible for 24/7 operational functionality [Learn more](https://quickblox.com/hosting/cloud/)\\n## HIPAA Compliant\\nWeoffer our healthcare customers several HIPAA compliant hosting solutions: onour shared cloud, asadedicated instance onaQuickBlox managed cloud, asafully managed service onthe customer’’s own cloud account, oron-premises Weoffer data encryption, additional security add-ons, provide aBusiness Associate Agreement (BAA), and more [Learn more](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n## Multi-Tenant Shared Cloud\\nDon’’t want topay the full cost while you are still indevelopment stages Weunderstand Sign upfor one ofour subscription plans hosted onamulti-tenant shared cloud where you can enjoy access tomessaging and calling features with ticket based support until you are ready toupgrade\\n[View pricing](https://quickblox.com/pricing/)\\n## Choosing the right hosting environment\\nWeunderstand that one size does not fit all that’’s why QuickBlox offers arange ofhosting solutions For the best solution that fits your needs speak toarepresentative\\n[Contact sales](https://quickblox.com/enterprise/#get-enterprise)\\n* Supported Features\\n* * Cloud Hosting\\n* QuickBlox Cloud\\n* Yourown Public/Private Cloud\\n* On-premises\\n* * Hosted onyour own local server\\n* * * * * Hosted oncustomer’’s dedicated cloud account\\n* * * * * Hosted onQuickBlox cloud account dedicated toyour enterprise\\n* * * * * Choose which country where your data isstored\\n* Depends\\n* * * * Quick installation and free data migration\\n* * * Depends\\n* * Software accessible only bycustomer’’s internal DevOps team\\n* * * * * Control ofyour user data and backend software updates\\n* * * * * Maintenance byQuickBlox team under SLA\\n* * * * * Option ofadditional security Addons\\n* * * * * Nodata limits whatsoever\\n* * * * * 100% data ownership\\n* * * * * HIPAA Compliant\\n* * * * * GDPR Compliant\\n* * * * Depending onthe geographical region you require, wemay beable toset upaQuickBlox managed account inanother region/with another cloud hosting provider\\nThis chunk provides an overview of QuickBlox's product offerings, including communication tools like SDKs and APIs, QuickBlox AI, and white-label solutions. It also details solutions for various industries, enterprise features, hosting options, and developer resources, offering links to specific documentation, support, and tutorials.\",\n", + " \"* Supported with certain cloud providers * Depends on the complexity of your infrastructure and installation * Asagreed with your DevOps/ info-security team ## Frequently Asked Questions\\n### How doI choose the right hosting environment There are several factors you need toconsider when choosing the best setup for video, voice, orlive chat hosting: compliance and security concerns, disaster recovery and data backup needs, speed, performance and bandwidth needs, and ofcourse cost all come into play Our experienced QuickBloxconsultantswould behappy toexplain our hosting options and help you find the best fit Also check out our resources below ### Can Iget free chat hosting onthe QuickBlox Shared cloud Our multi-tenant shared cloud isdesigned for developers and companies who have limited bandwidth needs and who are inearly stages intheir development and need atesting environment Weoffer arange ofplans for discounted and free chat hosting onthe shared cloud tohelp you get started.Check pricing here ### Does QuickBlox support video conference hosting Yes, wedo For video conference hosting services, customers need adedicated media server toenable multi-participant video calls Weprovide this asanadd-on toany plan that you subscribeto Speak toone ofourconsultantsnow for more information\\nThe chunk is part of QuickBlox's documentation on hosting solutions, specifically addressing frequently asked questions about choosing the right hosting environment for video, voice, or live chat applications. It covers considerations like compliance, security, disaster recovery, data backup, and cost. It also discusses options for free chat hosting on QuickBlox's shared cloud and support for video conference hosting with dedicated media servers.\",\n", + " \"### Are QuickBlox Hosting options HIPAA compliant Weunderstand the needs ofhealthcare and provide arange ofHIPAA compliant hosting solutions onour shared cloud, your public orprivate cloud, oronpremises.Learn more here ### What ifI sign upfor one ofyour hosting plans, but then myneeds change Weembrace aflexible approach tohosting which means that our DevOps team isable toadjust your hosting environment asyour requirements change Wesupport migration from our multi-tenant shared cloud toadedicated instance inyour own cloud account, and wecan scale upand scale down your dedicated instance tosupport the ebb and flow ofyour business growth ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [Advantages of Enterprise Hosting for Secure Chat](https://quickblox.com/blog/advantages-of-enterprise-hosting-for-secure-chat/)\\nGail M 19 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [How to choose hosting for your chat application](https://quickblox.com/blog/how-to-choose-hosting-for-your-chat-application/)\\nGail M 31 Aug 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [QuickBlox Hosting Options for Enterprises](https://quickblox.com/blog/quickblox-hosting-options-for-enterprises/)\\nHamza Mousa\\n12 Mar 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere\\nThe chunk provides detailed information about QuickBlox's HIPAA-compliant hosting options, flexibility in hosting plans, and additional resources for secure chat hosting. It is situated within a broader document that outlines QuickBlox's products, solutions, enterprise features, and developer resources, emphasizing communication tools, AI solutions, white-label services, and secure hosting options compliant with GDPR and HIPAA regulations.\",\n", + " \"Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\\nThe chunk lists QuickBlox's social media links, suggesting it belongs to a section in the document focused on engaging with users and promoting community interaction through various platforms.\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 100 Type: step\n", + "output: [\n", + " \"This chunk provides an overview of QuickBlox's product offerings, including communication tools like SDKs and APIs, QuickBlox AI, and white-label solutions. It also details solutions for various industries, enterprise features, hosting options, and developer resources, offering links to specific documentation, support, and tutorials.\",\n", + " \"The chunk is part of QuickBlox's documentation on hosting solutions, specifically addressing frequently asked questions about choosing the right hosting environment for video, voice, or live chat applications. It covers considerations like compliance, security, disaster recovery, data backup, and cost. It also discusses options for free chat hosting on QuickBlox's shared cloud and support for video conference hosting with dedicated media servers.\",\n", + " \"The chunk provides detailed information about QuickBlox's HIPAA-compliant hosting options, flexibility in hosting plans, and additional resources for secure chat hosting. It is situated within a broader document that outlines QuickBlox's products, solutions, enterprise features, and developer resources, emphasizing communication tools, AI solutions, white-label services, and secure hosting options compliant with GDPR and HIPAA regulations.\",\n", + " \"The chunk lists QuickBlox's social media links, suggesting it belongs to a section in the document focused on engaging with users and promoting community interaction through various platforms.\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 101 Type: finish_branch\n", + "output: \"The chunk lists QuickBlox's social media links, suggesting it belongs to a section in the document focused on engaging with users and promoting community interaction through various platforms.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 102 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Flexible and Secure Hosting\\nQuickBlox offers aflexible range ofcloud and on-premises hosting options Regardless ofwhere the software isdeployed you can relax knowing that all options are GDPR and HIPAA compliant, granting you full data ownership and user privacy ## Chat hosting wherever you need\\nWecan set upavariety ofinstallations depending onyour particular technical and regulatory needs Nomatter what type ofinstallation you choose, QuickBlox ensures the security ofyour enterprise data ### QuickBlox can bedeployed:\\nOn-premises, onyour own private server/ data center\\nOnyour own cloud account set upwith a3rd party hosting provider ofyour choice\\nOnthe QuickBlox cloud created and dedicated toyour enterprise only\\n## On-Premises\\nFor those highly regulated industries and organizations like banking, healthcare, and government, on-premises deployment guarantees you 100% security ofdata and peace ofmind Asour software isdelivered straight toyour own servers orcompany-owned cloud, removing any need for 3rd parties, you can besure that only you and your customers have access todata [Learn more](https://quickblox.com/hosting/on-premise/)\\n## Cloud\\nWecan run QuickBlox communication software inyour own virtual machine (VMs) onapublic orprivate cloud with your preferred hosting provider, orinadedicated QuickBlox cloud Both options offer ahigh level ofsecurity and are fully GDPR and HIPAA compliant Weprovide complete management and are responsible for 24/7 operational functionality [Learn more](https://quickblox.com/hosting/cloud/)\\n## HIPAA Compliant\\nWeoffer our healthcare customers several HIPAA compliant hosting solutions: onour shared cloud, asadedicated instance onaQuickBlox managed cloud, asafully managed service onthe customer’’s own cloud account, oron-premises Weoffer data encryption, additional security add-ons, provide aBusiness Associate Agreement (BAA), and more [Learn more](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n## Multi-Tenant Shared Cloud\\nDon’’t want topay the full cost while you are still indevelopment stages Weunderstand Sign upfor one ofour subscription plans hosted onamulti-tenant shared cloud where you can enjoy access tomessaging and calling features with ticket based support until you are ready toupgrade\\n[View pricing](https://quickblox.com/pricing/)\\n## Choosing the right hosting environment\\nWeunderstand that one size does not fit all that’’s why QuickBlox offers arange ofhosting solutions For the best solution that fits your needs speak toarepresentative\\n[Contact sales](https://quickblox.com/enterprise/#get-enterprise)\\n* Supported Features\\n* * Cloud Hosting\\n* QuickBlox Cloud\\n* Yourown Public/Private Cloud\\n* On-premises\\n* * Hosted onyour own local server\\n* * * * * Hosted oncustomer’’s dedicated cloud account\\n* * * * * Hosted onQuickBlox cloud account dedicated toyour enterprise\\n* * * * * Choose which country where your data isstored\\n* Depends\\n* * * * Quick installation and free data migration\\n* * * Depends\\n* * Software accessible only bycustomer’’s internal DevOps team\\n* * * * * Control ofyour user data and backend software updates\\n* * * * * Maintenance byQuickBlox team under SLA\\n* * * * * Option ofadditional security Addons\\n* * * * * Nodata limits whatsoever\\n* * * * * 100% data ownership\\n* * * * * HIPAA Compliant\\n* * * * * GDPR Compliant\\n* * * * Depending onthe geographical region you require, wemay beable toset upaQuickBlox managed account inanother region/with another cloud hosting provider\",\n", + " \"* Supported with certain cloud providers * Depends on the complexity of your infrastructure and installation * Asagreed with your DevOps/ info-security team ## Frequently Asked Questions\\n### How doI choose the right hosting environment There are several factors you need toconsider when choosing the best setup for video, voice, orlive chat hosting: compliance and security concerns, disaster recovery and data backup needs, speed, performance and bandwidth needs, and ofcourse cost all come into play Our experienced QuickBloxconsultantswould behappy toexplain our hosting options and help you find the best fit Also check out our resources below ### Can Iget free chat hosting onthe QuickBlox Shared cloud Our multi-tenant shared cloud isdesigned for developers and companies who have limited bandwidth needs and who are inearly stages intheir development and need atesting environment Weoffer arange ofplans for discounted and free chat hosting onthe shared cloud tohelp you get started.Check pricing here ### Does QuickBlox support video conference hosting Yes, wedo For video conference hosting services, customers need adedicated media server toenable multi-participant video calls Weprovide this asanadd-on toany plan that you subscribeto Speak toone ofourconsultantsnow for more information\",\n", + " \"### Are QuickBlox Hosting options HIPAA compliant Weunderstand the needs ofhealthcare and provide arange ofHIPAA compliant hosting solutions onour shared cloud, your public orprivate cloud, oronpremises.Learn more here ### What ifI sign upfor one ofyour hosting plans, but then myneeds change Weembrace aflexible approach tohosting which means that our DevOps team isable toadjust your hosting environment asyour requirements change Wesupport migration from our multi-tenant shared cloud toadedicated instance inyour own cloud account, and wecan scale upand scale down your dedicated instance tosupport the ebb and flow ofyour business growth ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [Advantages of Enterprise Hosting for Secure Chat](https://quickblox.com/blog/advantages-of-enterprise-hosting-for-secure-chat/)\\nGail M 19 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [How to choose hosting for your chat application](https://quickblox.com/blog/how-to-choose-hosting-for-your-chat-application/)\\nGail M 31 Aug 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [QuickBlox Hosting Options for Enterprises](https://quickblox.com/blog/quickblox-hosting-options-for-enterprises/)\\nHamza Mousa\\n12 Mar 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere\",\n", + " \"Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 103 Type: finish_branch\n", + "output: \"The chunk is part of QuickBlox's documentation on hosting solutions, specifically addressing frequently asked questions about choosing the right hosting environment for video, voice, or live chat applications. It covers considerations like compliance, security, disaster recovery, data backup, and cost. It also discusses options for free chat hosting on QuickBlox's shared cloud and support for video conference hosting with dedicated media servers.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 104 Type: finish_branch\n", + "output: \"This chunk provides an overview of QuickBlox's product offerings, including communication tools like SDKs and APIs, QuickBlox AI, and white-label solutions. It also details solutions for various industries, enterprise features, hosting options, and developer resources, offering links to specific documentation, support, and tutorials.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 105 Type: finish_branch\n", + "output: \"The chunk provides detailed information about QuickBlox's HIPAA-compliant hosting options, flexibility in hosting plans, and additional resources for secure chat hosting. It is situated within a broader document that outlines QuickBlox's products, solutions, enterprise features, and developer resources, emphasizing communication tools, AI solutions, white-label services, and secure hosting options compliant with GDPR and HIPAA regulations.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 106 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Flexible and Secure Hosting\\nQuickBlox offers aflexible range ofcloud and on-premises hosting options Regardless ofwhere the software isdeployed you can relax knowing that all options are GDPR and HIPAA compliant, granting you full data ownership and user privacy ## Chat hosting wherever you need\\nWecan set upavariety ofinstallations depending onyour particular technical and regulatory needs Nomatter what type ofinstallation you choose, QuickBlox ensures the security ofyour enterprise data ### QuickBlox can bedeployed:\\nOn-premises, onyour own private server/ data center\\nOnyour own cloud account set upwith a3rd party hosting provider ofyour choice\\nOnthe QuickBlox cloud created and dedicated toyour enterprise only\\n## On-Premises\\nFor those highly regulated industries and organizations like banking, healthcare, and government, on-premises deployment guarantees you 100% security ofdata and peace ofmind Asour software isdelivered straight toyour own servers orcompany-owned cloud, removing any need for 3rd parties, you can besure that only you and your customers have access todata [Learn more](https://quickblox.com/hosting/on-premise/)\\n## Cloud\\nWecan run QuickBlox communication software inyour own virtual machine (VMs) onapublic orprivate cloud with your preferred hosting provider, orinadedicated QuickBlox cloud Both options offer ahigh level ofsecurity and are fully GDPR and HIPAA compliant Weprovide complete management and are responsible for 24/7 operational functionality [Learn more](https://quickblox.com/hosting/cloud/)\\n## HIPAA Compliant\\nWeoffer our healthcare customers several HIPAA compliant hosting solutions: onour shared cloud, asadedicated instance onaQuickBlox managed cloud, asafully managed service onthe customer’’s own cloud account, oron-premises Weoffer data encryption, additional security add-ons, provide aBusiness Associate Agreement (BAA), and more [Learn more](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n## Multi-Tenant Shared Cloud\\nDon’’t want topay the full cost while you are still indevelopment stages Weunderstand Sign upfor one ofour subscription plans hosted onamulti-tenant shared cloud where you can enjoy access tomessaging and calling features with ticket based support until you are ready toupgrade\\n[View pricing](https://quickblox.com/pricing/)\\n## Choosing the right hosting environment\\nWeunderstand that one size does not fit all that’’s why QuickBlox offers arange ofhosting solutions For the best solution that fits your needs speak toarepresentative\\n[Contact sales](https://quickblox.com/enterprise/#get-enterprise)\\n* Supported Features\\n* * Cloud Hosting\\n* QuickBlox Cloud\\n* Yourown Public/Private Cloud\\n* On-premises\\n* * Hosted onyour own local server\\n* * * * * Hosted oncustomer’’s dedicated cloud account\\n* * * * * Hosted onQuickBlox cloud account dedicated toyour enterprise\\n* * * * * Choose which country where your data isstored\\n* Depends\\n* * * * Quick installation and free data migration\\n* * * Depends\\n* * Software accessible only bycustomer’’s internal DevOps team\\n* * * * * Control ofyour user data and backend software updates\\n* * * * * Maintenance byQuickBlox team under SLA\\n* * * * * Option ofadditional security Addons\\n* * * * * Nodata limits whatsoever\\n* * * * * 100% data ownership\\n* * * * * HIPAA Compliant\\n* * * * * GDPR Compliant\\n* * * * Depending onthe geographical region you require, wemay beable toset upaQuickBlox managed account inanother region/with another cloud hosting provider\",\n", + " \"* Supported with certain cloud providers * Depends on the complexity of your infrastructure and installation * Asagreed with your DevOps/ info-security team ## Frequently Asked Questions\\n### How doI choose the right hosting environment There are several factors you need toconsider when choosing the best setup for video, voice, orlive chat hosting: compliance and security concerns, disaster recovery and data backup needs, speed, performance and bandwidth needs, and ofcourse cost all come into play Our experienced QuickBloxconsultantswould behappy toexplain our hosting options and help you find the best fit Also check out our resources below ### Can Iget free chat hosting onthe QuickBlox Shared cloud Our multi-tenant shared cloud isdesigned for developers and companies who have limited bandwidth needs and who are inearly stages intheir development and need atesting environment Weoffer arange ofplans for discounted and free chat hosting onthe shared cloud tohelp you get started.Check pricing here ### Does QuickBlox support video conference hosting Yes, wedo For video conference hosting services, customers need adedicated media server toenable multi-participant video calls Weprovide this asanadd-on toany plan that you subscribeto Speak toone ofourconsultantsnow for more information\",\n", + " \"### Are QuickBlox Hosting options HIPAA compliant Weunderstand the needs ofhealthcare and provide arange ofHIPAA compliant hosting solutions onour shared cloud, your public orprivate cloud, oronpremises.Learn more here ### What ifI sign upfor one ofyour hosting plans, but then myneeds change Weembrace aflexible approach tohosting which means that our DevOps team isable toadjust your hosting environment asyour requirements change Wesupport migration from our multi-tenant shared cloud toadedicated instance inyour own cloud account, and wecan scale upand scale down your dedicated instance tosupport the ebb and flow ofyour business growth ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [Advantages of Enterprise Hosting for Secure Chat](https://quickblox.com/blog/advantages-of-enterprise-hosting-for-secure-chat/)\\nGail M 19 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [How to choose hosting for your chat application](https://quickblox.com/blog/how-to-choose-hosting-for-your-chat-application/)\\nGail M 31 Aug 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [QuickBlox Hosting Options for Enterprises](https://quickblox.com/blog/quickblox-hosting-options-for-enterprises/)\\nHamza Mousa\\n12 Mar 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere\",\n", + " \"Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Flexible and Secure Hosting\\nQuickBlox offers aflexible range ofcloud and on-premises hosting options Regardless ofwhere the software isdeployed you can relax knowing that all options are GDPR and HIPAA compliant, granting you full data ownership and user privacy ## Chat hosting wherever you need\\nWecan set upavariety ofinstallations depending onyour particular technical and regulatory needs Nomatter what type ofinstallation you choose, QuickBlox ensures the security ofyour enterprise data ### QuickBlox can bedeployed:\\nOn-premises, onyour own private server/ data center\\nOnyour own cloud account set upwith a3rd party hosting provider ofyour choice\\nOnthe QuickBlox cloud created and dedicated toyour enterprise only\\n## On-Premises\\nFor those highly regulated industries and organizations like banking, healthcare, and government, on-premises deployment guarantees you 100% security ofdata and peace ofmind Asour software isdelivered straight toyour own servers orcompany-owned cloud, removing any need for 3rd parties, you can besure that only you and your customers have access todata [Learn more](https://quickblox.com/hosting/on-premise/)\\n## Cloud\\nWecan run QuickBlox communication software inyour own virtual machine (VMs) onapublic orprivate cloud with your preferred hosting provider, orinadedicated QuickBlox cloud Both options offer ahigh level ofsecurity and are fully GDPR and HIPAA compliant Weprovide complete management and are responsible for 24/7 operational functionality [Learn more](https://quickblox.com/hosting/cloud/)\\n## HIPAA Compliant\\nWeoffer our healthcare customers several HIPAA compliant hosting solutions: onour shared cloud, asadedicated instance onaQuickBlox managed cloud, asafully managed service onthe customer’’s own cloud account, oron-premises Weoffer data encryption, additional security add-ons, provide aBusiness Associate Agreement (BAA), and more [Learn more](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n## Multi-Tenant Shared Cloud\\nDon’’t want topay the full cost while you are still indevelopment stages Weunderstand Sign upfor one ofour subscription plans hosted onamulti-tenant shared cloud where you can enjoy access tomessaging and calling features with ticket based support until you are ready toupgrade\\n[View pricing](https://quickblox.com/pricing/)\\n## Choosing the right hosting environment\\nWeunderstand that one size does not fit all that’’s why QuickBlox offers arange ofhosting solutions For the best solution that fits your needs speak toarepresentative\\n[Contact sales](https://quickblox.com/enterprise/#get-enterprise)\\n* Supported Features\\n* * Cloud Hosting\\n* QuickBlox Cloud\\n* Yourown Public/Private Cloud\\n* On-premises\\n* * Hosted onyour own local server\\n* * * * * Hosted oncustomer’’s dedicated cloud account\\n* * * * * Hosted onQuickBlox cloud account dedicated toyour enterprise\\n* * * * * Choose which country where your data isstored\\n* Depends\\n* * * * Quick installation and free data migration\\n* * * Depends\\n* * Software accessible only bycustomer’’s internal DevOps team\\n* * * * * Control ofyour user data and backend software updates\\n* * * * * Maintenance byQuickBlox team under SLA\\n* * * * * Option ofadditional security Addons\\n* * * * * Nodata limits whatsoever\\n* * * * * 100% data ownership\\n* * * * * HIPAA Compliant\\n* * * * * GDPR Compliant\\n* * * * Depending onthe geographical region you require, wemay beable toset upaQuickBlox managed account inanother region/with another cloud hosting provider\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 107 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Flexible and Secure Hosting\\nQuickBlox offers aflexible range ofcloud and on-premises hosting options Regardless ofwhere the software isdeployed you can relax knowing that all options are GDPR and HIPAA compliant, granting you full data ownership and user privacy ## Chat hosting wherever you need\\nWecan set upavariety ofinstallations depending onyour particular technical and regulatory needs Nomatter what type ofinstallation you choose, QuickBlox ensures the security ofyour enterprise data ### QuickBlox can bedeployed:\\nOn-premises, onyour own private server/ data center\\nOnyour own cloud account set upwith a3rd party hosting provider ofyour choice\\nOnthe QuickBlox cloud created and dedicated toyour enterprise only\\n## On-Premises\\nFor those highly regulated industries and organizations like banking, healthcare, and government, on-premises deployment guarantees you 100% security ofdata and peace ofmind Asour software isdelivered straight toyour own servers orcompany-owned cloud, removing any need for 3rd parties, you can besure that only you and your customers have access todata [Learn more](https://quickblox.com/hosting/on-premise/)\\n## Cloud\\nWecan run QuickBlox communication software inyour own virtual machine (VMs) onapublic orprivate cloud with your preferred hosting provider, orinadedicated QuickBlox cloud Both options offer ahigh level ofsecurity and are fully GDPR and HIPAA compliant Weprovide complete management and are responsible for 24/7 operational functionality [Learn more](https://quickblox.com/hosting/cloud/)\\n## HIPAA Compliant\\nWeoffer our healthcare customers several HIPAA compliant hosting solutions: onour shared cloud, asadedicated instance onaQuickBlox managed cloud, asafully managed service onthe customer’’s own cloud account, oron-premises Weoffer data encryption, additional security add-ons, provide aBusiness Associate Agreement (BAA), and more [Learn more](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n## Multi-Tenant Shared Cloud\\nDon’’t want topay the full cost while you are still indevelopment stages Weunderstand Sign upfor one ofour subscription plans hosted onamulti-tenant shared cloud where you can enjoy access tomessaging and calling features with ticket based support until you are ready toupgrade\\n[View pricing](https://quickblox.com/pricing/)\\n## Choosing the right hosting environment\\nWeunderstand that one size does not fit all that’’s why QuickBlox offers arange ofhosting solutions For the best solution that fits your needs speak toarepresentative\\n[Contact sales](https://quickblox.com/enterprise/#get-enterprise)\\n* Supported Features\\n* * Cloud Hosting\\n* QuickBlox Cloud\\n* Yourown Public/Private Cloud\\n* On-premises\\n* * Hosted onyour own local server\\n* * * * * Hosted oncustomer’’s dedicated cloud account\\n* * * * * Hosted onQuickBlox cloud account dedicated toyour enterprise\\n* * * * * Choose which country where your data isstored\\n* Depends\\n* * * * Quick installation and free data migration\\n* * * Depends\\n* * Software accessible only bycustomer’’s internal DevOps team\\n* * * * * Control ofyour user data and backend software updates\\n* * * * * Maintenance byQuickBlox team under SLA\\n* * * * * Option ofadditional security Addons\\n* * * * * Nodata limits whatsoever\\n* * * * * 100% data ownership\\n* * * * * HIPAA Compliant\\n* * * * * GDPR Compliant\\n* * * * Depending onthe geographical region you require, wemay beable toset upaQuickBlox managed account inanother region/with another cloud hosting provider\",\n", + " \"* Supported with certain cloud providers * Depends on the complexity of your infrastructure and installation * Asagreed with your DevOps/ info-security team ## Frequently Asked Questions\\n### How doI choose the right hosting environment There are several factors you need toconsider when choosing the best setup for video, voice, orlive chat hosting: compliance and security concerns, disaster recovery and data backup needs, speed, performance and bandwidth needs, and ofcourse cost all come into play Our experienced QuickBloxconsultantswould behappy toexplain our hosting options and help you find the best fit Also check out our resources below ### Can Iget free chat hosting onthe QuickBlox Shared cloud Our multi-tenant shared cloud isdesigned for developers and companies who have limited bandwidth needs and who are inearly stages intheir development and need atesting environment Weoffer arange ofplans for discounted and free chat hosting onthe shared cloud tohelp you get started.Check pricing here ### Does QuickBlox support video conference hosting Yes, wedo For video conference hosting services, customers need adedicated media server toenable multi-participant video calls Weprovide this asanadd-on toany plan that you subscribeto Speak toone ofourconsultantsnow for more information\",\n", + " \"### Are QuickBlox Hosting options HIPAA compliant Weunderstand the needs ofhealthcare and provide arange ofHIPAA compliant hosting solutions onour shared cloud, your public orprivate cloud, oronpremises.Learn more here ### What ifI sign upfor one ofyour hosting plans, but then myneeds change Weembrace aflexible approach tohosting which means that our DevOps team isable toadjust your hosting environment asyour requirements change Wesupport migration from our multi-tenant shared cloud toadedicated instance inyour own cloud account, and wecan scale upand scale down your dedicated instance tosupport the ebb and flow ofyour business growth ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [Advantages of Enterprise Hosting for Secure Chat](https://quickblox.com/blog/advantages-of-enterprise-hosting-for-secure-chat/)\\nGail M 19 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [How to choose hosting for your chat application](https://quickblox.com/blog/how-to-choose-hosting-for-your-chat-application/)\\nGail M 31 Aug 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [QuickBlox Hosting Options for Enterprises](https://quickblox.com/blog/quickblox-hosting-options-for-enterprises/)\\nHamza Mousa\\n12 Mar 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere\",\n", + " \"Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"* Supported with certain cloud providers * Depends on the complexity of your infrastructure and installation * Asagreed with your DevOps/ info-security team ## Frequently Asked Questions\\n### How doI choose the right hosting environment There are several factors you need toconsider when choosing the best setup for video, voice, orlive chat hosting: compliance and security concerns, disaster recovery and data backup needs, speed, performance and bandwidth needs, and ofcourse cost all come into play Our experienced QuickBloxconsultantswould behappy toexplain our hosting options and help you find the best fit Also check out our resources below ### Can Iget free chat hosting onthe QuickBlox Shared cloud Our multi-tenant shared cloud isdesigned for developers and companies who have limited bandwidth needs and who are inearly stages intheir development and need atesting environment Weoffer arange ofplans for discounted and free chat hosting onthe shared cloud tohelp you get started.Check pricing here ### Does QuickBlox support video conference hosting Yes, wedo For video conference hosting services, customers need adedicated media server toenable multi-participant video calls Weprovide this asanadd-on toany plan that you subscribeto Speak toone ofourconsultantsnow for more information\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 108 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Flexible and Secure Hosting\\nQuickBlox offers aflexible range ofcloud and on-premises hosting options Regardless ofwhere the software isdeployed you can relax knowing that all options are GDPR and HIPAA compliant, granting you full data ownership and user privacy ## Chat hosting wherever you need\\nWecan set upavariety ofinstallations depending onyour particular technical and regulatory needs Nomatter what type ofinstallation you choose, QuickBlox ensures the security ofyour enterprise data ### QuickBlox can bedeployed:\\nOn-premises, onyour own private server/ data center\\nOnyour own cloud account set upwith a3rd party hosting provider ofyour choice\\nOnthe QuickBlox cloud created and dedicated toyour enterprise only\\n## On-Premises\\nFor those highly regulated industries and organizations like banking, healthcare, and government, on-premises deployment guarantees you 100% security ofdata and peace ofmind Asour software isdelivered straight toyour own servers orcompany-owned cloud, removing any need for 3rd parties, you can besure that only you and your customers have access todata [Learn more](https://quickblox.com/hosting/on-premise/)\\n## Cloud\\nWecan run QuickBlox communication software inyour own virtual machine (VMs) onapublic orprivate cloud with your preferred hosting provider, orinadedicated QuickBlox cloud Both options offer ahigh level ofsecurity and are fully GDPR and HIPAA compliant Weprovide complete management and are responsible for 24/7 operational functionality [Learn more](https://quickblox.com/hosting/cloud/)\\n## HIPAA Compliant\\nWeoffer our healthcare customers several HIPAA compliant hosting solutions: onour shared cloud, asadedicated instance onaQuickBlox managed cloud, asafully managed service onthe customer’’s own cloud account, oron-premises Weoffer data encryption, additional security add-ons, provide aBusiness Associate Agreement (BAA), and more [Learn more](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n## Multi-Tenant Shared Cloud\\nDon’’t want topay the full cost while you are still indevelopment stages Weunderstand Sign upfor one ofour subscription plans hosted onamulti-tenant shared cloud where you can enjoy access tomessaging and calling features with ticket based support until you are ready toupgrade\\n[View pricing](https://quickblox.com/pricing/)\\n## Choosing the right hosting environment\\nWeunderstand that one size does not fit all that’’s why QuickBlox offers arange ofhosting solutions For the best solution that fits your needs speak toarepresentative\\n[Contact sales](https://quickblox.com/enterprise/#get-enterprise)\\n* Supported Features\\n* * Cloud Hosting\\n* QuickBlox Cloud\\n* Yourown Public/Private Cloud\\n* On-premises\\n* * Hosted onyour own local server\\n* * * * * Hosted oncustomer’’s dedicated cloud account\\n* * * * * Hosted onQuickBlox cloud account dedicated toyour enterprise\\n* * * * * Choose which country where your data isstored\\n* Depends\\n* * * * Quick installation and free data migration\\n* * * Depends\\n* * Software accessible only bycustomer’’s internal DevOps team\\n* * * * * Control ofyour user data and backend software updates\\n* * * * * Maintenance byQuickBlox team under SLA\\n* * * * * Option ofadditional security Addons\\n* * * * * Nodata limits whatsoever\\n* * * * * 100% data ownership\\n* * * * * HIPAA Compliant\\n* * * * * GDPR Compliant\\n* * * * Depending onthe geographical region you require, wemay beable toset upaQuickBlox managed account inanother region/with another cloud hosting provider\",\n", + " \"* Supported with certain cloud providers * Depends on the complexity of your infrastructure and installation * Asagreed with your DevOps/ info-security team ## Frequently Asked Questions\\n### How doI choose the right hosting environment There are several factors you need toconsider when choosing the best setup for video, voice, orlive chat hosting: compliance and security concerns, disaster recovery and data backup needs, speed, performance and bandwidth needs, and ofcourse cost all come into play Our experienced QuickBloxconsultantswould behappy toexplain our hosting options and help you find the best fit Also check out our resources below ### Can Iget free chat hosting onthe QuickBlox Shared cloud Our multi-tenant shared cloud isdesigned for developers and companies who have limited bandwidth needs and who are inearly stages intheir development and need atesting environment Weoffer arange ofplans for discounted and free chat hosting onthe shared cloud tohelp you get started.Check pricing here ### Does QuickBlox support video conference hosting Yes, wedo For video conference hosting services, customers need adedicated media server toenable multi-participant video calls Weprovide this asanadd-on toany plan that you subscribeto Speak toone ofourconsultantsnow for more information\",\n", + " \"### Are QuickBlox Hosting options HIPAA compliant Weunderstand the needs ofhealthcare and provide arange ofHIPAA compliant hosting solutions onour shared cloud, your public orprivate cloud, oronpremises.Learn more here ### What ifI sign upfor one ofyour hosting plans, but then myneeds change Weembrace aflexible approach tohosting which means that our DevOps team isable toadjust your hosting environment asyour requirements change Wesupport migration from our multi-tenant shared cloud toadedicated instance inyour own cloud account, and wecan scale upand scale down your dedicated instance tosupport the ebb and flow ofyour business growth ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [Advantages of Enterprise Hosting for Secure Chat](https://quickblox.com/blog/advantages-of-enterprise-hosting-for-secure-chat/)\\nGail M 19 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [How to choose hosting for your chat application](https://quickblox.com/blog/how-to-choose-hosting-for-your-chat-application/)\\nGail M 31 Aug 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [QuickBlox Hosting Options for Enterprises](https://quickblox.com/blog/quickblox-hosting-options-for-enterprises/)\\nHamza Mousa\\n12 Mar 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere\",\n", + " \"Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"### Are QuickBlox Hosting options HIPAA compliant Weunderstand the needs ofhealthcare and provide arange ofHIPAA compliant hosting solutions onour shared cloud, your public orprivate cloud, oronpremises.Learn more here ### What ifI sign upfor one ofyour hosting plans, but then myneeds change Weembrace aflexible approach tohosting which means that our DevOps team isable toadjust your hosting environment asyour requirements change Wesupport migration from our multi-tenant shared cloud toadedicated instance inyour own cloud account, and wecan scale upand scale down your dedicated instance tosupport the ebb and flow ofyour business growth ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [Advantages of Enterprise Hosting for Secure Chat](https://quickblox.com/blog/advantages-of-enterprise-hosting-for-secure-chat/)\\nGail M 19 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [How to choose hosting for your chat application](https://quickblox.com/blog/how-to-choose-hosting-for-your-chat-application/)\\nGail M 31 Aug 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [QuickBlox Hosting Options for Enterprises](https://quickblox.com/blog/quickblox-hosting-options-for-enterprises/)\\nHamza Mousa\\n12 Mar 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 109 Type: step\n", + "output: {\n", + " \"documents\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Flexible and Secure Hosting\\nQuickBlox offers aflexible range ofcloud and on-premises hosting options Regardless ofwhere the software isdeployed you can relax knowing that all options are GDPR and HIPAA compliant, granting you full data ownership and user privacy ## Chat hosting wherever you need\\nWecan set upavariety ofinstallations depending onyour particular technical and regulatory needs Nomatter what type ofinstallation you choose, QuickBlox ensures the security ofyour enterprise data ### QuickBlox can bedeployed:\\nOn-premises, onyour own private server/ data center\\nOnyour own cloud account set upwith a3rd party hosting provider ofyour choice\\nOnthe QuickBlox cloud created and dedicated toyour enterprise only\\n## On-Premises\\nFor those highly regulated industries and organizations like banking, healthcare, and government, on-premises deployment guarantees you 100% security ofdata and peace ofmind Asour software isdelivered straight toyour own servers orcompany-owned cloud, removing any need for 3rd parties, you can besure that only you and your customers have access todata [Learn more](https://quickblox.com/hosting/on-premise/)\\n## Cloud\\nWecan run QuickBlox communication software inyour own virtual machine (VMs) onapublic orprivate cloud with your preferred hosting provider, orinadedicated QuickBlox cloud Both options offer ahigh level ofsecurity and are fully GDPR and HIPAA compliant Weprovide complete management and are responsible for 24/7 operational functionality [Learn more](https://quickblox.com/hosting/cloud/)\\n## HIPAA Compliant\\nWeoffer our healthcare customers several HIPAA compliant hosting solutions: onour shared cloud, asadedicated instance onaQuickBlox managed cloud, asafully managed service onthe customer’’s own cloud account, oron-premises Weoffer data encryption, additional security add-ons, provide aBusiness Associate Agreement (BAA), and more [Learn more](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n## Multi-Tenant Shared Cloud\\nDon’’t want topay the full cost while you are still indevelopment stages Weunderstand Sign upfor one ofour subscription plans hosted onamulti-tenant shared cloud where you can enjoy access tomessaging and calling features with ticket based support until you are ready toupgrade\\n[View pricing](https://quickblox.com/pricing/)\\n## Choosing the right hosting environment\\nWeunderstand that one size does not fit all that’’s why QuickBlox offers arange ofhosting solutions For the best solution that fits your needs speak toarepresentative\\n[Contact sales](https://quickblox.com/enterprise/#get-enterprise)\\n* Supported Features\\n* * Cloud Hosting\\n* QuickBlox Cloud\\n* Yourown Public/Private Cloud\\n* On-premises\\n* * Hosted onyour own local server\\n* * * * * Hosted oncustomer’’s dedicated cloud account\\n* * * * * Hosted onQuickBlox cloud account dedicated toyour enterprise\\n* * * * * Choose which country where your data isstored\\n* Depends\\n* * * * Quick installation and free data migration\\n* * * Depends\\n* * Software accessible only bycustomer’’s internal DevOps team\\n* * * * * Control ofyour user data and backend software updates\\n* * * * * Maintenance byQuickBlox team under SLA\\n* * * * * Option ofadditional security Addons\\n* * * * * Nodata limits whatsoever\\n* * * * * 100% data ownership\\n* * * * * HIPAA Compliant\\n* * * * * GDPR Compliant\\n* * * * Depending onthe geographical region you require, wemay beable toset upaQuickBlox managed account inanother region/with another cloud hosting provider\",\n", + " \"* Supported with certain cloud providers * Depends on the complexity of your infrastructure and installation * Asagreed with your DevOps/ info-security team ## Frequently Asked Questions\\n### How doI choose the right hosting environment There are several factors you need toconsider when choosing the best setup for video, voice, orlive chat hosting: compliance and security concerns, disaster recovery and data backup needs, speed, performance and bandwidth needs, and ofcourse cost all come into play Our experienced QuickBloxconsultantswould behappy toexplain our hosting options and help you find the best fit Also check out our resources below ### Can Iget free chat hosting onthe QuickBlox Shared cloud Our multi-tenant shared cloud isdesigned for developers and companies who have limited bandwidth needs and who are inearly stages intheir development and need atesting environment Weoffer arange ofplans for discounted and free chat hosting onthe shared cloud tohelp you get started.Check pricing here ### Does QuickBlox support video conference hosting Yes, wedo For video conference hosting services, customers need adedicated media server toenable multi-participant video calls Weprovide this asanadd-on toany plan that you subscribeto Speak toone ofourconsultantsnow for more information\",\n", + " \"### Are QuickBlox Hosting options HIPAA compliant Weunderstand the needs ofhealthcare and provide arange ofHIPAA compliant hosting solutions onour shared cloud, your public orprivate cloud, oronpremises.Learn more here ### What ifI sign upfor one ofyour hosting plans, but then myneeds change Weembrace aflexible approach tohosting which means that our DevOps team isable toadjust your hosting environment asyour requirements change Wesupport migration from our multi-tenant shared cloud toadedicated instance inyour own cloud account, and wecan scale upand scale down your dedicated instance tosupport the ebb and flow ofyour business growth ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [Advantages of Enterprise Hosting for Secure Chat](https://quickblox.com/blog/advantages-of-enterprise-hosting-for-secure-chat/)\\nGail M 19 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [How to choose hosting for your chat application](https://quickblox.com/blog/how-to-choose-hosting-for-your-chat-application/)\\nGail M 31 Aug 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [QuickBlox Hosting Options for Enterprises](https://quickblox.com/blog/quickblox-hosting-options-for-enterprises/)\\nHamza Mousa\\n12 Mar 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere\",\n", + " \"Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 110 Type: init_branch\n", + "output: {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Flexible and Secure Hosting\\nQuickBlox offers aflexible range ofcloud and on-premises hosting options Regardless ofwhere the software isdeployed you can relax knowing that all options are GDPR and HIPAA compliant, granting you full data ownership and user privacy ## Chat hosting wherever you need\\nWecan set upavariety ofinstallations depending onyour particular technical and regulatory needs Nomatter what type ofinstallation you choose, QuickBlox ensures the security ofyour enterprise data ### QuickBlox can bedeployed:\\nOn-premises, onyour own private server/ data center\\nOnyour own cloud account set upwith a3rd party hosting provider ofyour choice\\nOnthe QuickBlox cloud created and dedicated toyour enterprise only\\n## On-Premises\\nFor those highly regulated industries and organizations like banking, healthcare, and government, on-premises deployment guarantees you 100% security ofdata and peace ofmind Asour software isdelivered straight toyour own servers orcompany-owned cloud, removing any need for 3rd parties, you can besure that only you and your customers have access todata [Learn more](https://quickblox.com/hosting/on-premise/)\\n## Cloud\\nWecan run QuickBlox communication software inyour own virtual machine (VMs) onapublic orprivate cloud with your preferred hosting provider, orinadedicated QuickBlox cloud Both options offer ahigh level ofsecurity and are fully GDPR and HIPAA compliant Weprovide complete management and are responsible for 24/7 operational functionality [Learn more](https://quickblox.com/hosting/cloud/)\\n## HIPAA Compliant\\nWeoffer our healthcare customers several HIPAA compliant hosting solutions: onour shared cloud, asadedicated instance onaQuickBlox managed cloud, asafully managed service onthe customer’’s own cloud account, oron-premises Weoffer data encryption, additional security add-ons, provide aBusiness Associate Agreement (BAA), and more [Learn more](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n## Multi-Tenant Shared Cloud\\nDon’’t want topay the full cost while you are still indevelopment stages Weunderstand Sign upfor one ofour subscription plans hosted onamulti-tenant shared cloud where you can enjoy access tomessaging and calling features with ticket based support until you are ready toupgrade\\n[View pricing](https://quickblox.com/pricing/)\\n## Choosing the right hosting environment\\nWeunderstand that one size does not fit all that’’s why QuickBlox offers arange ofhosting solutions For the best solution that fits your needs speak toarepresentative\\n[Contact sales](https://quickblox.com/enterprise/#get-enterprise)\\n* Supported Features\\n* * Cloud Hosting\\n* QuickBlox Cloud\\n* Yourown Public/Private Cloud\\n* On-premises\\n* * Hosted onyour own local server\\n* * * * * Hosted oncustomer’’s dedicated cloud account\\n* * * * * Hosted onQuickBlox cloud account dedicated toyour enterprise\\n* * * * * Choose which country where your data isstored\\n* Depends\\n* * * * Quick installation and free data migration\\n* * * Depends\\n* * Software accessible only bycustomer’’s internal DevOps team\\n* * * * * Control ofyour user data and backend software updates\\n* * * * * Maintenance byQuickBlox team under SLA\\n* * * * * Option ofadditional security Addons\\n* * * * * Nodata limits whatsoever\\n* * * * * 100% data ownership\\n* * * * * HIPAA Compliant\\n* * * * * GDPR Compliant\\n* * * * Depending onthe geographical region you require, wemay beable toset upaQuickBlox managed account inanother region/with another cloud hosting provider\",\n", + " \"* Supported with certain cloud providers * Depends on the complexity of your infrastructure and installation * Asagreed with your DevOps/ info-security team ## Frequently Asked Questions\\n### How doI choose the right hosting environment There are several factors you need toconsider when choosing the best setup for video, voice, orlive chat hosting: compliance and security concerns, disaster recovery and data backup needs, speed, performance and bandwidth needs, and ofcourse cost all come into play Our experienced QuickBloxconsultantswould behappy toexplain our hosting options and help you find the best fit Also check out our resources below ### Can Iget free chat hosting onthe QuickBlox Shared cloud Our multi-tenant shared cloud isdesigned for developers and companies who have limited bandwidth needs and who are inearly stages intheir development and need atesting environment Weoffer arange ofplans for discounted and free chat hosting onthe shared cloud tohelp you get started.Check pricing here ### Does QuickBlox support video conference hosting Yes, wedo For video conference hosting services, customers need adedicated media server toenable multi-participant video calls Weprovide this asanadd-on toany plan that you subscribeto Speak toone ofourconsultantsnow for more information\",\n", + " \"### Are QuickBlox Hosting options HIPAA compliant Weunderstand the needs ofhealthcare and provide arange ofHIPAA compliant hosting solutions onour shared cloud, your public orprivate cloud, oronpremises.Learn more here ### What ifI sign upfor one ofyour hosting plans, but then myneeds change Weembrace aflexible approach tohosting which means that our DevOps team isable toadjust your hosting environment asyour requirements change Wesupport migration from our multi-tenant shared cloud toadedicated instance inyour own cloud account, and wecan scale upand scale down your dedicated instance tosupport the ebb and flow ofyour business growth ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [Advantages of Enterprise Hosting for Secure Chat](https://quickblox.com/blog/advantages-of-enterprise-hosting-for-secure-chat/)\\nGail M 19 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [How to choose hosting for your chat application](https://quickblox.com/blog/how-to-choose-hosting-for-your-chat-application/)\\nGail M 31 Aug 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [QuickBlox Hosting Options for Enterprises](https://quickblox.com/blog/quickblox-hosting-options-for-enterprises/)\\nHamza Mousa\\n12 Mar 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere\",\n", + " \"Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 111 Type: step\n", + "output: {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Flexible and Secure Hosting\\nQuickBlox offers aflexible range ofcloud and on-premises hosting options Regardless ofwhere the software isdeployed you can relax knowing that all options are GDPR and HIPAA compliant, granting you full data ownership and user privacy ## Chat hosting wherever you need\\nWecan set upavariety ofinstallations depending onyour particular technical and regulatory needs Nomatter what type ofinstallation you choose, QuickBlox ensures the security ofyour enterprise data ### QuickBlox can bedeployed:\\nOn-premises, onyour own private server/ data center\\nOnyour own cloud account set upwith a3rd party hosting provider ofyour choice\\nOnthe QuickBlox cloud created and dedicated toyour enterprise only\\n## On-Premises\\nFor those highly regulated industries and organizations like banking, healthcare, and government, on-premises deployment guarantees you 100% security ofdata and peace ofmind Asour software isdelivered straight toyour own servers orcompany-owned cloud, removing any need for 3rd parties, you can besure that only you and your customers have access todata [Learn more](https://quickblox.com/hosting/on-premise/)\\n## Cloud\\nWecan run QuickBlox communication software inyour own virtual machine (VMs) onapublic orprivate cloud with your preferred hosting provider, orinadedicated QuickBlox cloud Both options offer ahigh level ofsecurity and are fully GDPR and HIPAA compliant Weprovide complete management and are responsible for 24/7 operational functionality [Learn more](https://quickblox.com/hosting/cloud/)\\n## HIPAA Compliant\\nWeoffer our healthcare customers several HIPAA compliant hosting solutions: onour shared cloud, asadedicated instance onaQuickBlox managed cloud, asafully managed service onthe customer’’s own cloud account, oron-premises Weoffer data encryption, additional security add-ons, provide aBusiness Associate Agreement (BAA), and more [Learn more](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n## Multi-Tenant Shared Cloud\\nDon’’t want topay the full cost while you are still indevelopment stages Weunderstand Sign upfor one ofour subscription plans hosted onamulti-tenant shared cloud where you can enjoy access tomessaging and calling features with ticket based support until you are ready toupgrade\\n[View pricing](https://quickblox.com/pricing/)\\n## Choosing the right hosting environment\\nWeunderstand that one size does not fit all that’’s why QuickBlox offers arange ofhosting solutions For the best solution that fits your needs speak toarepresentative\\n[Contact sales](https://quickblox.com/enterprise/#get-enterprise)\\n* Supported Features\\n* * Cloud Hosting\\n* QuickBlox Cloud\\n* Yourown Public/Private Cloud\\n* On-premises\\n* * Hosted onyour own local server\\n* * * * * Hosted oncustomer’’s dedicated cloud account\\n* * * * * Hosted onQuickBlox cloud account dedicated toyour enterprise\\n* * * * * Choose which country where your data isstored\\n* Depends\\n* * * * Quick installation and free data migration\\n* * * Depends\\n* * Software accessible only bycustomer’’s internal DevOps team\\n* * * * * Control ofyour user data and backend software updates\\n* * * * * Maintenance byQuickBlox team under SLA\\n* * * * * Option ofadditional security Addons\\n* * * * * Nodata limits whatsoever\\n* * * * * 100% data ownership\\n* * * * * HIPAA Compliant\\n* * * * * GDPR Compliant\\n* * * * Depending onthe geographical region you require, wemay beable toset upaQuickBlox managed account inanother region/with another cloud hosting provider\",\n", + " \"* Supported with certain cloud providers * Depends on the complexity of your infrastructure and installation * Asagreed with your DevOps/ info-security team ## Frequently Asked Questions\\n### How doI choose the right hosting environment There are several factors you need toconsider when choosing the best setup for video, voice, orlive chat hosting: compliance and security concerns, disaster recovery and data backup needs, speed, performance and bandwidth needs, and ofcourse cost all come into play Our experienced QuickBloxconsultantswould behappy toexplain our hosting options and help you find the best fit Also check out our resources below ### Can Iget free chat hosting onthe QuickBlox Shared cloud Our multi-tenant shared cloud isdesigned for developers and companies who have limited bandwidth needs and who are inearly stages intheir development and need atesting environment Weoffer arange ofplans for discounted and free chat hosting onthe shared cloud tohelp you get started.Check pricing here ### Does QuickBlox support video conference hosting Yes, wedo For video conference hosting services, customers need adedicated media server toenable multi-participant video calls Weprovide this asanadd-on toany plan that you subscribeto Speak toone ofourconsultantsnow for more information\",\n", + " \"### Are QuickBlox Hosting options HIPAA compliant Weunderstand the needs ofhealthcare and provide arange ofHIPAA compliant hosting solutions onour shared cloud, your public orprivate cloud, oronpremises.Learn more here ### What ifI sign upfor one ofyour hosting plans, but then myneeds change Weembrace aflexible approach tohosting which means that our DevOps team isable toadjust your hosting environment asyour requirements change Wesupport migration from our multi-tenant shared cloud toadedicated instance inyour own cloud account, and wecan scale upand scale down your dedicated instance tosupport the ebb and flow ofyour business growth ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [Advantages of Enterprise Hosting for Secure Chat](https://quickblox.com/blog/advantages-of-enterprise-hosting-for-secure-chat/)\\nGail M 19 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [How to choose hosting for your chat application](https://quickblox.com/blog/how-to-choose-hosting-for-your-chat-application/)\\nGail M 31 Aug 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [QuickBlox Hosting Options for Enterprises](https://quickblox.com/blog/quickblox-hosting-options-for-enterprises/)\\nHamza Mousa\\n12 Mar 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere\",\n", + " \"Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 112 Type: init_branch\n", + "output: {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Flexible and Secure Hosting\\nQuickBlox offers aflexible range ofcloud and on-premises hosting options Regardless ofwhere the software isdeployed you can relax knowing that all options are GDPR and HIPAA compliant, granting you full data ownership and user privacy ## Chat hosting wherever you need\\nWecan set upavariety ofinstallations depending onyour particular technical and regulatory needs Nomatter what type ofinstallation you choose, QuickBlox ensures the security ofyour enterprise data ### QuickBlox can bedeployed:\\nOn-premises, onyour own private server/ data center\\nOnyour own cloud account set upwith a3rd party hosting provider ofyour choice\\nOnthe QuickBlox cloud created and dedicated toyour enterprise only\\n## On-Premises\\nFor those highly regulated industries and organizations like banking, healthcare, and government, on-premises deployment guarantees you 100% security ofdata and peace ofmind Asour software isdelivered straight toyour own servers orcompany-owned cloud, removing any need for 3rd parties, you can besure that only you and your customers have access todata [Learn more](https://quickblox.com/hosting/on-premise/)\\n## Cloud\\nWecan run QuickBlox communication software inyour own virtual machine (VMs) onapublic orprivate cloud with your preferred hosting provider, orinadedicated QuickBlox cloud Both options offer ahigh level ofsecurity and are fully GDPR and HIPAA compliant Weprovide complete management and are responsible for 24/7 operational functionality [Learn more](https://quickblox.com/hosting/cloud/)\\n## HIPAA Compliant\\nWeoffer our healthcare customers several HIPAA compliant hosting solutions: onour shared cloud, asadedicated instance onaQuickBlox managed cloud, asafully managed service onthe customer’’s own cloud account, oron-premises Weoffer data encryption, additional security add-ons, provide aBusiness Associate Agreement (BAA), and more [Learn more](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n## Multi-Tenant Shared Cloud\\nDon’’t want topay the full cost while you are still indevelopment stages Weunderstand Sign upfor one ofour subscription plans hosted onamulti-tenant shared cloud where you can enjoy access tomessaging and calling features with ticket based support until you are ready toupgrade\\n[View pricing](https://quickblox.com/pricing/)\\n## Choosing the right hosting environment\\nWeunderstand that one size does not fit all that’’s why QuickBlox offers arange ofhosting solutions For the best solution that fits your needs speak toarepresentative\\n[Contact sales](https://quickblox.com/enterprise/#get-enterprise)\\n* Supported Features\\n* * Cloud Hosting\\n* QuickBlox Cloud\\n* Yourown Public/Private Cloud\\n* On-premises\\n* * Hosted onyour own local server\\n* * * * * Hosted oncustomer’’s dedicated cloud account\\n* * * * * Hosted onQuickBlox cloud account dedicated toyour enterprise\\n* * * * * Choose which country where your data isstored\\n* Depends\\n* * * * Quick installation and free data migration\\n* * * Depends\\n* * Software accessible only bycustomer’’s internal DevOps team\\n* * * * * Control ofyour user data and backend software updates\\n* * * * * Maintenance byQuickBlox team under SLA\\n* * * * * Option ofadditional security Addons\\n* * * * * Nodata limits whatsoever\\n* * * * * 100% data ownership\\n* * * * * HIPAA Compliant\\n* * * * * GDPR Compliant\\n* * * * Depending onthe geographical region you require, wemay beable toset upaQuickBlox managed account inanother region/with another cloud hosting provider\",\n", + " \"* Supported with certain cloud providers * Depends on the complexity of your infrastructure and installation * Asagreed with your DevOps/ info-security team ## Frequently Asked Questions\\n### How doI choose the right hosting environment There are several factors you need toconsider when choosing the best setup for video, voice, orlive chat hosting: compliance and security concerns, disaster recovery and data backup needs, speed, performance and bandwidth needs, and ofcourse cost all come into play Our experienced QuickBloxconsultantswould behappy toexplain our hosting options and help you find the best fit Also check out our resources below ### Can Iget free chat hosting onthe QuickBlox Shared cloud Our multi-tenant shared cloud isdesigned for developers and companies who have limited bandwidth needs and who are inearly stages intheir development and need atesting environment Weoffer arange ofplans for discounted and free chat hosting onthe shared cloud tohelp you get started.Check pricing here ### Does QuickBlox support video conference hosting Yes, wedo For video conference hosting services, customers need adedicated media server toenable multi-participant video calls Weprovide this asanadd-on toany plan that you subscribeto Speak toone ofourconsultantsnow for more information\",\n", + " \"### Are QuickBlox Hosting options HIPAA compliant Weunderstand the needs ofhealthcare and provide arange ofHIPAA compliant hosting solutions onour shared cloud, your public orprivate cloud, oronpremises.Learn more here ### What ifI sign upfor one ofyour hosting plans, but then myneeds change Weembrace aflexible approach tohosting which means that our DevOps team isable toadjust your hosting environment asyour requirements change Wesupport migration from our multi-tenant shared cloud toadedicated instance inyour own cloud account, and wecan scale upand scale down your dedicated instance tosupport the ebb and flow ofyour business growth ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [Advantages of Enterprise Hosting for Secure Chat](https://quickblox.com/blog/advantages-of-enterprise-hosting-for-secure-chat/)\\nGail M 19 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [How to choose hosting for your chat application](https://quickblox.com/blog/how-to-choose-hosting-for-your-chat-application/)\\nGail M 31 Aug 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [QuickBlox Hosting Options for Enterprises](https://quickblox.com/blog/quickblox-hosting-options-for-enterprises/)\\nHamza Mousa\\n12 Mar 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere\",\n", + " \"Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"costs\": {\n", + " \"ai_cost\": 0,\n", + " \"bytes_transferred_cost\": 0,\n", + " \"compute_cost\": 0.0001,\n", + " \"file_cost\": 0.0002,\n", + " \"total_cost\": 0.0004,\n", + " \"transform_cost\": 0.0001\n", + " },\n", + " \"error\": null,\n", + " \"status\": 200,\n", + " \"url\": \"https://quickblox.com/hosting/\"\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 113 Type: finish_branch\n", + "output: [\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:22.334162Z\",\n", + " \"id\": \"fc9c87d0-0361-4327-a677-7a93dd259286\",\n", + " \"jobs\": [\n", + " \"2ee72270-367e-4156-b769-f13494fd5b72\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:22.224113Z\",\n", + " \"id\": \"0c911e5c-88e6-40ca-bd71-b152dd157638\",\n", + " \"jobs\": [\n", + " \"0d9c58a6-2eeb-4b58-ab7e-8b04ccbed2f6\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:22.163004Z\",\n", + " \"id\": \"0821a429-f587-4a7d-a554-85922b504d8b\",\n", + " \"jobs\": [\n", + " \"f941c3ae-b948-494c-b0e6-15c134e1502a\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:23.907048Z\",\n", + " \"id\": \"ebde7f7a-d9eb-42d9-9d31-588bd38b833a\",\n", + " \"jobs\": [\n", + " \"60df1e15-6ab5-496f-9639-1abc31af7b1c\"\n", + " ]\n", + " }\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 114 Type: finish_branch\n", + "output: [\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:22.334162Z\",\n", + " \"id\": \"fc9c87d0-0361-4327-a677-7a93dd259286\",\n", + " \"jobs\": [\n", + " \"2ee72270-367e-4156-b769-f13494fd5b72\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:22.224113Z\",\n", + " \"id\": \"0c911e5c-88e6-40ca-bd71-b152dd157638\",\n", + " \"jobs\": [\n", + " \"0d9c58a6-2eeb-4b58-ab7e-8b04ccbed2f6\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:22.163004Z\",\n", + " \"id\": \"0821a429-f587-4a7d-a554-85922b504d8b\",\n", + " \"jobs\": [\n", + " \"f941c3ae-b948-494c-b0e6-15c134e1502a\"\n", + " ]\n", + " },\n", + " {\n", + " \"created_at\": \"2024-12-16T20:10:23.907048Z\",\n", + " \"id\": \"ebde7f7a-d9eb-42d9-9d31-588bd38b833a\",\n", + " \"jobs\": [\n", + " \"60df1e15-6ab5-496f-9639-1abc31af7b1c\"\n", + " ]\n", + " }\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 115 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:23.907048Z\",\n", + " \"id\": \"ebde7f7a-d9eb-42d9-9d31-588bd38b833a\",\n", + " \"jobs\": [\n", + " \"60df1e15-6ab5-496f-9639-1abc31af7b1c\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 116 Type: init_branch\n", + "output: \"For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\\nThe chunk is part of the QuickBlox document's section about their cookie policy and social media engagement, inviting users to review their Cookie Policy for more details and to subscribe for news updates through various social media platforms.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 117 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:22.334162Z\",\n", + " \"id\": \"fc9c87d0-0361-4327-a677-7a93dd259286\",\n", + " \"jobs\": [\n", + " \"2ee72270-367e-4156-b769-f13494fd5b72\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 118 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:22.163004Z\",\n", + " \"id\": \"0821a429-f587-4a7d-a554-85922b504d8b\",\n", + " \"jobs\": [\n", + " \"f941c3ae-b948-494c-b0e6-15c134e1502a\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 119 Type: finish_branch\n", + "output: {\n", + " \"created_at\": \"2024-12-16T20:10:22.224113Z\",\n", + " \"id\": \"0c911e5c-88e6-40ca-bd71-b152dd157638\",\n", + " \"jobs\": [\n", + " \"0d9c58a6-2eeb-4b58-ab7e-8b04ccbed2f6\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 120 Type: init_branch\n", + "output: \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# QuickBlox Pricing\\nWe’’ve enabled 200+ enterprise instances and 22k+ applications toretain and engage their audience with advanced communication features Join them [Start Your FREE Trial](https://quickblox.com/enterprise/#get-enterprise)\\n* [Chat Services + AI Assistant](#chat-services)\\nIncludes QuickBlox SDKs, APIs and Chat UI Kits + SmartChat Assistant * [AI Assistant only](#ai-assistant)\\nIncludes SmartChat Assistant only * Basic\\n* Starter\\n* Growth\\n* HIPAA Cloud\\n* Enterprise\\n### Basic\\nFor newly founded businesses, testing aquick and affordable solution for their new product Free\\n[Sign up](https://admin.quickblox.com/signup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n* #### 500\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### 1 month\\ndata retention\\n* #### 10 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n1 extension\\n#### SmartChat Assistant\\n1 bot\\n30 day free trial on the bot\\n* 100 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Community\\nsupport\\n[Sign up](https://admin.quickblox.com/signup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n### Starter\\nBest for early stage startups trying tomeet astrategic goal (without losing their focus onoverall business growth) $107/mo\\n[Sign up](https://admin.quickblox.com/signup_startup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n* #### 10,000\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### 3 month\\ndata retention\\n* #### 25 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n2 extensions\\n#### SmartChat Assistant\\n1 bot\\n* 500 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Ticketing system\\nsupport\\n[Sign up](https://admin.quickblox.com/signup_startup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n### Growth\\nFor well established brands, growing rapidly, requiring aquick, reliable and efficient solution $269/mo\\n[Sign up](https://admin.quickblox.com/signup_growth?_ga=2.224968602.1437607202.1586339491-557719420.1579854846)\\n* #### 25,000\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### 6 month\\ndata retention\\n* #### 50 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n3 extensions\\n#### SmartChat Assistant\\n2 bots\\n* 1000 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Ticketing system\\nsupport\\n[Sign up](https://admin.quickblox.com/signup_growth)\\n### HIPAA Cloud\\nGuaranteed security and privacy for healthcare apps - HIPAA compliant hosting and feature-rich platform.Offered with a BAA\\n$430/mo\\n[Sign up](https://admin.quickblox.com/signup_hipaa)\\n* #### 20,000\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### Custom\\ndata retention\\n* #### 50 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n3 extensions\\n#### SmartChat Assistant\\n2 bots\\n* 1000 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Ticketing system\\nsupport\\n[Sign up](https://admin.quickblox.com/signup_hipaa)\\n### Enterprise\\nGet complete access toQuickblox software and enjoy aplan customized toyour unique business/app requirements From $647\\n[Contact us](https://quickblox.com/enterprise/#get-enterprise)\\n* #### Custom\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### Custom\\ndata retention\\n* #### Custom\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### Custom\\ndata encryption\\n* #### dedicated server\\n* #### AI Extensions\\nAll 5 extensions\\n#### SmartChat Assistant\\n3 bots\\nAdditional bots can be purchased\\n* Unlimited knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### SLA\\n#### Account manager\\n#### Ticketing system\\nsupport\\n[Contact us](https://quickblox.com/enterprise/#get-enterprise)\\n* SmartChat Assistant\\n* HIPAA-Compliant AI Assistant\\n### SmartChat Assistant\\nYour trainable assistant Upload with your own data & embed on your website\\nThe chunk provides an overview of QuickBlox's products and solutions, including communication tools like SDKs and APIs, AI features, white-label solutions, and industry-specific solutions. It also outlines support resources, developer tools, and pricing plans for various business needs, including basic, starter, growth, HIPAA-compliant, and enterprise plans.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 121 Type: init_branch\n", + "output: \"However, our video conferencing solution requires the set-up ofadedicated media server which involves amonthly fee and additional bandwidth costs ### Can Itry out video conferencing onthe Basic Plan Wedonot asadefault offer video conferencing onthe Basic Plan You would need toupgrade toone ofour subscription plans Pleasecontact salesifyou would like totrial avideo conferencing demo account ### What happens ifI exceed the limits ofthe Basic (free) Plan Ifyou exceed the limits ofthe Basic Plan, the account owner will receive anotification requesting them toupgrade their plan, otherwise services will potentially besuspended Please see our Terms ofService ## Not sure which plan suits your business needs Talk toour experts- wewill review your business use case and help you get started with the best plan [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements\\nThe chunk discusses QuickBlox's video conferencing solution, highlighting the need for a dedicated media server that incurs monthly fees and additional bandwidth costs. It clarifies that video conferencing is not available on the Basic Plan by default, requiring users to upgrade to a subscription plan. Additionally, the chunk addresses actions to take if Basic Plan limits are exceeded, offers guidance on choosing the right plan, and provides links to various QuickBlox products, solutions, enterprise services, developer resources, and company information.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 122 Type: init_branch\n", + "output: \"$50/mo\\n* 500 knowledge base items\\n* $99/m per additional 1,000 knowledge base items\\n[Start FREE Trial](https://admin.quickblox.com/signup_assistant)\\n### HIPAA SmartChat Assistant\\nGuaranteed security and privacy for healthcare apps.Offered with a BAA\\n$149/mo\\n* 1000 knowledge base items\\n* $99/m per additional 1,000 knowledge base items\\n[Sign up](https://admin.quickblox.com/signup_assistant_hipaa)\\n## What’s available for Enterprise Customers * Provisioning and configuration ofserver resources incustomer’’s own hosting environment orpreferred cloud provider—— AWS/GCP/AliCloud/Azure/Oracle, Digital Ocean and others\\n* Installation ofthe software and needed components\\n* Migration ofall data and users to adedicated and scalable environment * Personal web admin panel\\n* Developer integration support toget you started\\n* Enterprise support with direct support contacts &&Ticketing Portal\\n* Personal Support manager\\n* API customization\\n* Data security and encryption\\n* Secure data retention, storage, and back-ups\\n* Reporting\\n* Service Level Agreement (SLA) &&uptime guarantee\\n* Wedon’’t charge per minute Commercials all packaged upineasy, transparent monthly licence fee(s) ## Frequently Asked Questions\\n### What ismeant by\\u00abtotal users\\u00bb Bytotal users wemean the total number ofusers registered inyour app database whether they are active ornot ### What is data retention Wehave limits ondata retention for each ofour Cloud Plans Our data retention policy means your historical data may nolonger beavailable ifthe data isolder than the plan retention limits You can increase these limits bymoving toapaid plan ### Isthere alimit tothe number ofallowed concurrent connections Concurrent connections\\u2014 the total number ofuser devices connected toanapplication atthe same time\\u2014 are subject tofair use onall our Cloud plans (Basic, Starter, Growth, HIPAA Cloud) Enterprise plans don\\u2019t limit connections but there are plan and performance limits that will impact onthe total number ofconnections supported ### How much doyou charge per minute for video calls There isnoper minute charge for peer-to-peer video calls orvideo conference calls\\nThe chunk provides pricing information and features for QuickBlox's SmartChat Assistant and HIPAA SmartChat Assistant, emphasizing guaranteed security and privacy for healthcare apps. It also outlines services available to enterprise customers, including server provisioning, software installation, data migration, and comprehensive support. Additionally, it addresses FAQs related to total users, data retention, concurrent connections, and video call charges, clarifying the terms and conditions of QuickBlox's offerings.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 123 Type: step\n", + "output: {\n", + " \"final_chunks\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# QuickBlox Pricing\\nWe’’ve enabled 200+ enterprise instances and 22k+ applications toretain and engage their audience with advanced communication features Join them [Start Your FREE Trial](https://quickblox.com/enterprise/#get-enterprise)\\n* [Chat Services + AI Assistant](#chat-services)\\nIncludes QuickBlox SDKs, APIs and Chat UI Kits + SmartChat Assistant * [AI Assistant only](#ai-assistant)\\nIncludes SmartChat Assistant only * Basic\\n* Starter\\n* Growth\\n* HIPAA Cloud\\n* Enterprise\\n### Basic\\nFor newly founded businesses, testing aquick and affordable solution for their new product Free\\n[Sign up](https://admin.quickblox.com/signup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n* #### 500\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### 1 month\\ndata retention\\n* #### 10 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n1 extension\\n#### SmartChat Assistant\\n1 bot\\n30 day free trial on the bot\\n* 100 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Community\\nsupport\\n[Sign up](https://admin.quickblox.com/signup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n### Starter\\nBest for early stage startups trying tomeet astrategic goal (without losing their focus onoverall business growth) $107/mo\\n[Sign up](https://admin.quickblox.com/signup_startup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n* #### 10,000\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### 3 month\\ndata retention\\n* #### 25 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n2 extensions\\n#### SmartChat Assistant\\n1 bot\\n* 500 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Ticketing system\\nsupport\\n[Sign up](https://admin.quickblox.com/signup_startup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n### Growth\\nFor well established brands, growing rapidly, requiring aquick, reliable and efficient solution $269/mo\\n[Sign up](https://admin.quickblox.com/signup_growth?_ga=2.224968602.1437607202.1586339491-557719420.1579854846)\\n* #### 25,000\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### 6 month\\ndata retention\\n* #### 50 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n3 extensions\\n#### SmartChat Assistant\\n2 bots\\n* 1000 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Ticketing system\\nsupport\\n[Sign up](https://admin.quickblox.com/signup_growth)\\n### HIPAA Cloud\\nGuaranteed security and privacy for healthcare apps - HIPAA compliant hosting and feature-rich platform.Offered with a BAA\\n$430/mo\\n[Sign up](https://admin.quickblox.com/signup_hipaa)\\n* #### 20,000\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### Custom\\ndata retention\\n* #### 50 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n3 extensions\\n#### SmartChat Assistant\\n2 bots\\n* 1000 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Ticketing system\\nsupport\\n[Sign up](https://admin.quickblox.com/signup_hipaa)\\n### Enterprise\\nGet complete access toQuickblox software and enjoy aplan customized toyour unique business/app requirements From $647\\n[Contact us](https://quickblox.com/enterprise/#get-enterprise)\\n* #### Custom\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### Custom\\ndata retention\\n* #### Custom\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### Custom\\ndata encryption\\n* #### dedicated server\\n* #### AI Extensions\\nAll 5 extensions\\n#### SmartChat Assistant\\n3 bots\\nAdditional bots can be purchased\\n* Unlimited knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### SLA\\n#### Account manager\\n#### Ticketing system\\nsupport\\n[Contact us](https://quickblox.com/enterprise/#get-enterprise)\\n* SmartChat Assistant\\n* HIPAA-Compliant AI Assistant\\n### SmartChat Assistant\\nYour trainable assistant Upload with your own data & embed on your website\\nThe chunk provides an overview of QuickBlox's products and solutions, including communication tools like SDKs and APIs, AI features, white-label solutions, and industry-specific solutions. It also outlines support resources, developer tools, and pricing plans for various business needs, including basic, starter, growth, HIPAA-compliant, and enterprise plans.\",\n", + " \"$50/mo\\n* 500 knowledge base items\\n* $99/m per additional 1,000 knowledge base items\\n[Start FREE Trial](https://admin.quickblox.com/signup_assistant)\\n### HIPAA SmartChat Assistant\\nGuaranteed security and privacy for healthcare apps.Offered with a BAA\\n$149/mo\\n* 1000 knowledge base items\\n* $99/m per additional 1,000 knowledge base items\\n[Sign up](https://admin.quickblox.com/signup_assistant_hipaa)\\n## What’s available for Enterprise Customers * Provisioning and configuration ofserver resources incustomer’’s own hosting environment orpreferred cloud provider—— AWS/GCP/AliCloud/Azure/Oracle, Digital Ocean and others\\n* Installation ofthe software and needed components\\n* Migration ofall data and users to adedicated and scalable environment * Personal web admin panel\\n* Developer integration support toget you started\\n* Enterprise support with direct support contacts &&Ticketing Portal\\n* Personal Support manager\\n* API customization\\n* Data security and encryption\\n* Secure data retention, storage, and back-ups\\n* Reporting\\n* Service Level Agreement (SLA) &&uptime guarantee\\n* Wedon’’t charge per minute Commercials all packaged upineasy, transparent monthly licence fee(s) ## Frequently Asked Questions\\n### What ismeant by\\u00abtotal users\\u00bb Bytotal users wemean the total number ofusers registered inyour app database whether they are active ornot ### What is data retention Wehave limits ondata retention for each ofour Cloud Plans Our data retention policy means your historical data may nolonger beavailable ifthe data isolder than the plan retention limits You can increase these limits bymoving toapaid plan ### Isthere alimit tothe number ofallowed concurrent connections Concurrent connections\\u2014 the total number ofuser devices connected toanapplication atthe same time\\u2014 are subject tofair use onall our Cloud plans (Basic, Starter, Growth, HIPAA Cloud) Enterprise plans don\\u2019t limit connections but there are plan and performance limits that will impact onthe total number ofconnections supported ### How much doyou charge per minute for video calls There isnoper minute charge for peer-to-peer video calls orvideo conference calls\\nThe chunk provides pricing information and features for QuickBlox's SmartChat Assistant and HIPAA SmartChat Assistant, emphasizing guaranteed security and privacy for healthcare apps. It also outlines services available to enterprise customers, including server provisioning, software installation, data migration, and comprehensive support. Additionally, it addresses FAQs related to total users, data retention, concurrent connections, and video call charges, clarifying the terms and conditions of QuickBlox's offerings.\",\n", + " \"However, our video conferencing solution requires the set-up ofadedicated media server which involves amonthly fee and additional bandwidth costs ### Can Itry out video conferencing onthe Basic Plan Wedonot asadefault offer video conferencing onthe Basic Plan You would need toupgrade toone ofour subscription plans Pleasecontact salesifyou would like totrial avideo conferencing demo account ### What happens ifI exceed the limits ofthe Basic (free) Plan Ifyou exceed the limits ofthe Basic Plan, the account owner will receive anotification requesting them toupgrade their plan, otherwise services will potentially besuspended Please see our Terms ofService ## Not sure which plan suits your business needs Talk toour experts- wewill review your business use case and help you get started with the best plan [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements\\nThe chunk discusses QuickBlox's video conferencing solution, highlighting the need for a dedicated media server that incurs monthly fees and additional bandwidth costs. It clarifies that video conferencing is not available on the Basic Plan by default, requiring users to upgrade to a subscription plan. Additionally, the chunk addresses actions to take if Basic Plan limits are exceeded, offers guidance on choosing the right plan, and provides links to various QuickBlox products, solutions, enterprise services, developer resources, and company information.\",\n", + " \"For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\\nThe chunk is part of the QuickBlox document's section about their cookie policy and social media engagement, inviting users to review their Cookie Policy for more details and to subscribe for news updates through various social media platforms.\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 124 Type: step\n", + "output: [\n", + " \"The chunk provides an overview of QuickBlox's products and solutions, including communication tools like SDKs and APIs, AI features, white-label solutions, and industry-specific solutions. It also outlines support resources, developer tools, and pricing plans for various business needs, including basic, starter, growth, HIPAA-compliant, and enterprise plans.\",\n", + " \"The chunk provides pricing information and features for QuickBlox's SmartChat Assistant and HIPAA SmartChat Assistant, emphasizing guaranteed security and privacy for healthcare apps. It also outlines services available to enterprise customers, including server provisioning, software installation, data migration, and comprehensive support. Additionally, it addresses FAQs related to total users, data retention, concurrent connections, and video call charges, clarifying the terms and conditions of QuickBlox's offerings.\",\n", + " \"The chunk discusses QuickBlox's video conferencing solution, highlighting the need for a dedicated media server that incurs monthly fees and additional bandwidth costs. It clarifies that video conferencing is not available on the Basic Plan by default, requiring users to upgrade to a subscription plan. Additionally, the chunk addresses actions to take if Basic Plan limits are exceeded, offers guidance on choosing the right plan, and provides links to various QuickBlox products, solutions, enterprise services, developer resources, and company information.\",\n", + " \"The chunk is part of the QuickBlox document's section about their cookie policy and social media engagement, inviting users to review their Cookie Policy for more details and to subscribe for news updates through various social media platforms.\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 125 Type: finish_branch\n", + "output: \"The chunk is part of the QuickBlox document's section about their cookie policy and social media engagement, inviting users to review their Cookie Policy for more details and to subscribe for news updates through various social media platforms.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 126 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# QuickBlox Pricing\\nWe’’ve enabled 200+ enterprise instances and 22k+ applications toretain and engage their audience with advanced communication features Join them [Start Your FREE Trial](https://quickblox.com/enterprise/#get-enterprise)\\n* [Chat Services + AI Assistant](#chat-services)\\nIncludes QuickBlox SDKs, APIs and Chat UI Kits + SmartChat Assistant * [AI Assistant only](#ai-assistant)\\nIncludes SmartChat Assistant only * Basic\\n* Starter\\n* Growth\\n* HIPAA Cloud\\n* Enterprise\\n### Basic\\nFor newly founded businesses, testing aquick and affordable solution for their new product Free\\n[Sign up](https://admin.quickblox.com/signup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n* #### 500\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### 1 month\\ndata retention\\n* #### 10 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n1 extension\\n#### SmartChat Assistant\\n1 bot\\n30 day free trial on the bot\\n* 100 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Community\\nsupport\\n[Sign up](https://admin.quickblox.com/signup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n### Starter\\nBest for early stage startups trying tomeet astrategic goal (without losing their focus onoverall business growth) $107/mo\\n[Sign up](https://admin.quickblox.com/signup_startup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n* #### 10,000\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### 3 month\\ndata retention\\n* #### 25 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n2 extensions\\n#### SmartChat Assistant\\n1 bot\\n* 500 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Ticketing system\\nsupport\\n[Sign up](https://admin.quickblox.com/signup_startup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n### Growth\\nFor well established brands, growing rapidly, requiring aquick, reliable and efficient solution $269/mo\\n[Sign up](https://admin.quickblox.com/signup_growth?_ga=2.224968602.1437607202.1586339491-557719420.1579854846)\\n* #### 25,000\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### 6 month\\ndata retention\\n* #### 50 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n3 extensions\\n#### SmartChat Assistant\\n2 bots\\n* 1000 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Ticketing system\\nsupport\\n[Sign up](https://admin.quickblox.com/signup_growth)\\n### HIPAA Cloud\\nGuaranteed security and privacy for healthcare apps - HIPAA compliant hosting and feature-rich platform.Offered with a BAA\\n$430/mo\\n[Sign up](https://admin.quickblox.com/signup_hipaa)\\n* #### 20,000\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### Custom\\ndata retention\\n* #### 50 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n3 extensions\\n#### SmartChat Assistant\\n2 bots\\n* 1000 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Ticketing system\\nsupport\\n[Sign up](https://admin.quickblox.com/signup_hipaa)\\n### Enterprise\\nGet complete access toQuickblox software and enjoy aplan customized toyour unique business/app requirements From $647\\n[Contact us](https://quickblox.com/enterprise/#get-enterprise)\\n* #### Custom\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### Custom\\ndata retention\\n* #### Custom\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### Custom\\ndata encryption\\n* #### dedicated server\\n* #### AI Extensions\\nAll 5 extensions\\n#### SmartChat Assistant\\n3 bots\\nAdditional bots can be purchased\\n* Unlimited knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### SLA\\n#### Account manager\\n#### Ticketing system\\nsupport\\n[Contact us](https://quickblox.com/enterprise/#get-enterprise)\\n* SmartChat Assistant\\n* HIPAA-Compliant AI Assistant\\n### SmartChat Assistant\\nYour trainable assistant Upload with your own data & embed on your website\",\n", + " \"$50/mo\\n* 500 knowledge base items\\n* $99/m per additional 1,000 knowledge base items\\n[Start FREE Trial](https://admin.quickblox.com/signup_assistant)\\n### HIPAA SmartChat Assistant\\nGuaranteed security and privacy for healthcare apps.Offered with a BAA\\n$149/mo\\n* 1000 knowledge base items\\n* $99/m per additional 1,000 knowledge base items\\n[Sign up](https://admin.quickblox.com/signup_assistant_hipaa)\\n## What’s available for Enterprise Customers * Provisioning and configuration ofserver resources incustomer’’s own hosting environment orpreferred cloud provider—— AWS/GCP/AliCloud/Azure/Oracle, Digital Ocean and others\\n* Installation ofthe software and needed components\\n* Migration ofall data and users to adedicated and scalable environment * Personal web admin panel\\n* Developer integration support toget you started\\n* Enterprise support with direct support contacts &&Ticketing Portal\\n* Personal Support manager\\n* API customization\\n* Data security and encryption\\n* Secure data retention, storage, and back-ups\\n* Reporting\\n* Service Level Agreement (SLA) &&uptime guarantee\\n* Wedon’’t charge per minute Commercials all packaged upineasy, transparent monthly licence fee(s) ## Frequently Asked Questions\\n### What ismeant by\\u00abtotal users\\u00bb Bytotal users wemean the total number ofusers registered inyour app database whether they are active ornot ### What is data retention Wehave limits ondata retention for each ofour Cloud Plans Our data retention policy means your historical data may nolonger beavailable ifthe data isolder than the plan retention limits You can increase these limits bymoving toapaid plan ### Isthere alimit tothe number ofallowed concurrent connections Concurrent connections\\u2014 the total number ofuser devices connected toanapplication atthe same time\\u2014 are subject tofair use onall our Cloud plans (Basic, Starter, Growth, HIPAA Cloud) Enterprise plans don\\u2019t limit connections but there are plan and performance limits that will impact onthe total number ofconnections supported ### How much doyou charge per minute for video calls There isnoper minute charge for peer-to-peer video calls orvideo conference calls\",\n", + " \"However, our video conferencing solution requires the set-up ofadedicated media server which involves amonthly fee and additional bandwidth costs ### Can Itry out video conferencing onthe Basic Plan Wedonot asadefault offer video conferencing onthe Basic Plan You would need toupgrade toone ofour subscription plans Pleasecontact salesifyou would like totrial avideo conferencing demo account ### What happens ifI exceed the limits ofthe Basic (free) Plan Ifyou exceed the limits ofthe Basic Plan, the account owner will receive anotification requesting them toupgrade their plan, otherwise services will potentially besuspended Please see our Terms ofService ## Not sure which plan suits your business needs Talk toour experts- wewill review your business use case and help you get started with the best plan [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements\",\n", + " \"For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 127 Type: finish_branch\n", + "output: \"The chunk discusses QuickBlox's video conferencing solution, highlighting the need for a dedicated media server that incurs monthly fees and additional bandwidth costs. It clarifies that video conferencing is not available on the Basic Plan by default, requiring users to upgrade to a subscription plan. Additionally, the chunk addresses actions to take if Basic Plan limits are exceeded, offers guidance on choosing the right plan, and provides links to various QuickBlox products, solutions, enterprise services, developer resources, and company information.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 128 Type: finish_branch\n", + "output: \"The chunk provides pricing information and features for QuickBlox's SmartChat Assistant and HIPAA SmartChat Assistant, emphasizing guaranteed security and privacy for healthcare apps. It also outlines services available to enterprise customers, including server provisioning, software installation, data migration, and comprehensive support. Additionally, it addresses FAQs related to total users, data retention, concurrent connections, and video call charges, clarifying the terms and conditions of QuickBlox's offerings.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 129 Type: finish_branch\n", + "output: \"The chunk provides an overview of QuickBlox's products and solutions, including communication tools like SDKs and APIs, AI features, white-label solutions, and industry-specific solutions. It also outlines support resources, developer tools, and pricing plans for various business needs, including basic, starter, growth, HIPAA-compliant, and enterprise plans.\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 130 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# QuickBlox Pricing\\nWe’’ve enabled 200+ enterprise instances and 22k+ applications toretain and engage their audience with advanced communication features Join them [Start Your FREE Trial](https://quickblox.com/enterprise/#get-enterprise)\\n* [Chat Services + AI Assistant](#chat-services)\\nIncludes QuickBlox SDKs, APIs and Chat UI Kits + SmartChat Assistant * [AI Assistant only](#ai-assistant)\\nIncludes SmartChat Assistant only * Basic\\n* Starter\\n* Growth\\n* HIPAA Cloud\\n* Enterprise\\n### Basic\\nFor newly founded businesses, testing aquick and affordable solution for their new product Free\\n[Sign up](https://admin.quickblox.com/signup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n* #### 500\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### 1 month\\ndata retention\\n* #### 10 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n1 extension\\n#### SmartChat Assistant\\n1 bot\\n30 day free trial on the bot\\n* 100 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Community\\nsupport\\n[Sign up](https://admin.quickblox.com/signup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n### Starter\\nBest for early stage startups trying tomeet astrategic goal (without losing their focus onoverall business growth) $107/mo\\n[Sign up](https://admin.quickblox.com/signup_startup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n* #### 10,000\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### 3 month\\ndata retention\\n* #### 25 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n2 extensions\\n#### SmartChat Assistant\\n1 bot\\n* 500 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Ticketing system\\nsupport\\n[Sign up](https://admin.quickblox.com/signup_startup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n### Growth\\nFor well established brands, growing rapidly, requiring aquick, reliable and efficient solution $269/mo\\n[Sign up](https://admin.quickblox.com/signup_growth?_ga=2.224968602.1437607202.1586339491-557719420.1579854846)\\n* #### 25,000\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### 6 month\\ndata retention\\n* #### 50 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n3 extensions\\n#### SmartChat Assistant\\n2 bots\\n* 1000 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Ticketing system\\nsupport\\n[Sign up](https://admin.quickblox.com/signup_growth)\\n### HIPAA Cloud\\nGuaranteed security and privacy for healthcare apps - HIPAA compliant hosting and feature-rich platform.Offered with a BAA\\n$430/mo\\n[Sign up](https://admin.quickblox.com/signup_hipaa)\\n* #### 20,000\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### Custom\\ndata retention\\n* #### 50 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n3 extensions\\n#### SmartChat Assistant\\n2 bots\\n* 1000 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Ticketing system\\nsupport\\n[Sign up](https://admin.quickblox.com/signup_hipaa)\\n### Enterprise\\nGet complete access toQuickblox software and enjoy aplan customized toyour unique business/app requirements From $647\\n[Contact us](https://quickblox.com/enterprise/#get-enterprise)\\n* #### Custom\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### Custom\\ndata retention\\n* #### Custom\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### Custom\\ndata encryption\\n* #### dedicated server\\n* #### AI Extensions\\nAll 5 extensions\\n#### SmartChat Assistant\\n3 bots\\nAdditional bots can be purchased\\n* Unlimited knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### SLA\\n#### Account manager\\n#### Ticketing system\\nsupport\\n[Contact us](https://quickblox.com/enterprise/#get-enterprise)\\n* SmartChat Assistant\\n* HIPAA-Compliant AI Assistant\\n### SmartChat Assistant\\nYour trainable assistant Upload with your own data & embed on your website\",\n", + " \"$50/mo\\n* 500 knowledge base items\\n* $99/m per additional 1,000 knowledge base items\\n[Start FREE Trial](https://admin.quickblox.com/signup_assistant)\\n### HIPAA SmartChat Assistant\\nGuaranteed security and privacy for healthcare apps.Offered with a BAA\\n$149/mo\\n* 1000 knowledge base items\\n* $99/m per additional 1,000 knowledge base items\\n[Sign up](https://admin.quickblox.com/signup_assistant_hipaa)\\n## What’s available for Enterprise Customers * Provisioning and configuration ofserver resources incustomer’’s own hosting environment orpreferred cloud provider—— AWS/GCP/AliCloud/Azure/Oracle, Digital Ocean and others\\n* Installation ofthe software and needed components\\n* Migration ofall data and users to adedicated and scalable environment * Personal web admin panel\\n* Developer integration support toget you started\\n* Enterprise support with direct support contacts &&Ticketing Portal\\n* Personal Support manager\\n* API customization\\n* Data security and encryption\\n* Secure data retention, storage, and back-ups\\n* Reporting\\n* Service Level Agreement (SLA) &&uptime guarantee\\n* Wedon’’t charge per minute Commercials all packaged upineasy, transparent monthly licence fee(s) ## Frequently Asked Questions\\n### What ismeant by\\u00abtotal users\\u00bb Bytotal users wemean the total number ofusers registered inyour app database whether they are active ornot ### What is data retention Wehave limits ondata retention for each ofour Cloud Plans Our data retention policy means your historical data may nolonger beavailable ifthe data isolder than the plan retention limits You can increase these limits bymoving toapaid plan ### Isthere alimit tothe number ofallowed concurrent connections Concurrent connections\\u2014 the total number ofuser devices connected toanapplication atthe same time\\u2014 are subject tofair use onall our Cloud plans (Basic, Starter, Growth, HIPAA Cloud) Enterprise plans don\\u2019t limit connections but there are plan and performance limits that will impact onthe total number ofconnections supported ### How much doyou charge per minute for video calls There isnoper minute charge for peer-to-peer video calls orvideo conference calls\",\n", + " \"However, our video conferencing solution requires the set-up ofadedicated media server which involves amonthly fee and additional bandwidth costs ### Can Itry out video conferencing onthe Basic Plan Wedonot asadefault offer video conferencing onthe Basic Plan You would need toupgrade toone ofour subscription plans Pleasecontact salesifyou would like totrial avideo conferencing demo account ### What happens ifI exceed the limits ofthe Basic (free) Plan Ifyou exceed the limits ofthe Basic Plan, the account owner will receive anotification requesting them toupgrade their plan, otherwise services will potentially besuspended Please see our Terms ofService ## Not sure which plan suits your business needs Talk toour experts- wewill review your business use case and help you get started with the best plan [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements\",\n", + " \"For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# QuickBlox Pricing\\nWe’’ve enabled 200+ enterprise instances and 22k+ applications toretain and engage their audience with advanced communication features Join them [Start Your FREE Trial](https://quickblox.com/enterprise/#get-enterprise)\\n* [Chat Services + AI Assistant](#chat-services)\\nIncludes QuickBlox SDKs, APIs and Chat UI Kits + SmartChat Assistant * [AI Assistant only](#ai-assistant)\\nIncludes SmartChat Assistant only * Basic\\n* Starter\\n* Growth\\n* HIPAA Cloud\\n* Enterprise\\n### Basic\\nFor newly founded businesses, testing aquick and affordable solution for their new product Free\\n[Sign up](https://admin.quickblox.com/signup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n* #### 500\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### 1 month\\ndata retention\\n* #### 10 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n1 extension\\n#### SmartChat Assistant\\n1 bot\\n30 day free trial on the bot\\n* 100 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Community\\nsupport\\n[Sign up](https://admin.quickblox.com/signup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n### Starter\\nBest for early stage startups trying tomeet astrategic goal (without losing their focus onoverall business growth) $107/mo\\n[Sign up](https://admin.quickblox.com/signup_startup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n* #### 10,000\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### 3 month\\ndata retention\\n* #### 25 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n2 extensions\\n#### SmartChat Assistant\\n1 bot\\n* 500 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Ticketing system\\nsupport\\n[Sign up](https://admin.quickblox.com/signup_startup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n### Growth\\nFor well established brands, growing rapidly, requiring aquick, reliable and efficient solution $269/mo\\n[Sign up](https://admin.quickblox.com/signup_growth?_ga=2.224968602.1437607202.1586339491-557719420.1579854846)\\n* #### 25,000\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### 6 month\\ndata retention\\n* #### 50 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n3 extensions\\n#### SmartChat Assistant\\n2 bots\\n* 1000 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Ticketing system\\nsupport\\n[Sign up](https://admin.quickblox.com/signup_growth)\\n### HIPAA Cloud\\nGuaranteed security and privacy for healthcare apps - HIPAA compliant hosting and feature-rich platform.Offered with a BAA\\n$430/mo\\n[Sign up](https://admin.quickblox.com/signup_hipaa)\\n* #### 20,000\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### Custom\\ndata retention\\n* #### 50 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n3 extensions\\n#### SmartChat Assistant\\n2 bots\\n* 1000 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Ticketing system\\nsupport\\n[Sign up](https://admin.quickblox.com/signup_hipaa)\\n### Enterprise\\nGet complete access toQuickblox software and enjoy aplan customized toyour unique business/app requirements From $647\\n[Contact us](https://quickblox.com/enterprise/#get-enterprise)\\n* #### Custom\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### Custom\\ndata retention\\n* #### Custom\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### Custom\\ndata encryption\\n* #### dedicated server\\n* #### AI Extensions\\nAll 5 extensions\\n#### SmartChat Assistant\\n3 bots\\nAdditional bots can be purchased\\n* Unlimited knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### SLA\\n#### Account manager\\n#### Ticketing system\\nsupport\\n[Contact us](https://quickblox.com/enterprise/#get-enterprise)\\n* SmartChat Assistant\\n* HIPAA-Compliant AI Assistant\\n### SmartChat Assistant\\nYour trainable assistant Upload with your own data & embed on your website\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 131 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# QuickBlox Pricing\\nWe’’ve enabled 200+ enterprise instances and 22k+ applications toretain and engage their audience with advanced communication features Join them [Start Your FREE Trial](https://quickblox.com/enterprise/#get-enterprise)\\n* [Chat Services + AI Assistant](#chat-services)\\nIncludes QuickBlox SDKs, APIs and Chat UI Kits + SmartChat Assistant * [AI Assistant only](#ai-assistant)\\nIncludes SmartChat Assistant only * Basic\\n* Starter\\n* Growth\\n* HIPAA Cloud\\n* Enterprise\\n### Basic\\nFor newly founded businesses, testing aquick and affordable solution for their new product Free\\n[Sign up](https://admin.quickblox.com/signup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n* #### 500\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### 1 month\\ndata retention\\n* #### 10 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n1 extension\\n#### SmartChat Assistant\\n1 bot\\n30 day free trial on the bot\\n* 100 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Community\\nsupport\\n[Sign up](https://admin.quickblox.com/signup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n### Starter\\nBest for early stage startups trying tomeet astrategic goal (without losing their focus onoverall business growth) $107/mo\\n[Sign up](https://admin.quickblox.com/signup_startup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n* #### 10,000\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### 3 month\\ndata retention\\n* #### 25 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n2 extensions\\n#### SmartChat Assistant\\n1 bot\\n* 500 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Ticketing system\\nsupport\\n[Sign up](https://admin.quickblox.com/signup_startup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n### Growth\\nFor well established brands, growing rapidly, requiring aquick, reliable and efficient solution $269/mo\\n[Sign up](https://admin.quickblox.com/signup_growth?_ga=2.224968602.1437607202.1586339491-557719420.1579854846)\\n* #### 25,000\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### 6 month\\ndata retention\\n* #### 50 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n3 extensions\\n#### SmartChat Assistant\\n2 bots\\n* 1000 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Ticketing system\\nsupport\\n[Sign up](https://admin.quickblox.com/signup_growth)\\n### HIPAA Cloud\\nGuaranteed security and privacy for healthcare apps - HIPAA compliant hosting and feature-rich platform.Offered with a BAA\\n$430/mo\\n[Sign up](https://admin.quickblox.com/signup_hipaa)\\n* #### 20,000\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### Custom\\ndata retention\\n* #### 50 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n3 extensions\\n#### SmartChat Assistant\\n2 bots\\n* 1000 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Ticketing system\\nsupport\\n[Sign up](https://admin.quickblox.com/signup_hipaa)\\n### Enterprise\\nGet complete access toQuickblox software and enjoy aplan customized toyour unique business/app requirements From $647\\n[Contact us](https://quickblox.com/enterprise/#get-enterprise)\\n* #### Custom\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### Custom\\ndata retention\\n* #### Custom\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### Custom\\ndata encryption\\n* #### dedicated server\\n* #### AI Extensions\\nAll 5 extensions\\n#### SmartChat Assistant\\n3 bots\\nAdditional bots can be purchased\\n* Unlimited knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### SLA\\n#### Account manager\\n#### Ticketing system\\nsupport\\n[Contact us](https://quickblox.com/enterprise/#get-enterprise)\\n* SmartChat Assistant\\n* HIPAA-Compliant AI Assistant\\n### SmartChat Assistant\\nYour trainable assistant Upload with your own data & embed on your website\",\n", + " \"$50/mo\\n* 500 knowledge base items\\n* $99/m per additional 1,000 knowledge base items\\n[Start FREE Trial](https://admin.quickblox.com/signup_assistant)\\n### HIPAA SmartChat Assistant\\nGuaranteed security and privacy for healthcare apps.Offered with a BAA\\n$149/mo\\n* 1000 knowledge base items\\n* $99/m per additional 1,000 knowledge base items\\n[Sign up](https://admin.quickblox.com/signup_assistant_hipaa)\\n## What’s available for Enterprise Customers * Provisioning and configuration ofserver resources incustomer’’s own hosting environment orpreferred cloud provider—— AWS/GCP/AliCloud/Azure/Oracle, Digital Ocean and others\\n* Installation ofthe software and needed components\\n* Migration ofall data and users to adedicated and scalable environment * Personal web admin panel\\n* Developer integration support toget you started\\n* Enterprise support with direct support contacts &&Ticketing Portal\\n* Personal Support manager\\n* API customization\\n* Data security and encryption\\n* Secure data retention, storage, and back-ups\\n* Reporting\\n* Service Level Agreement (SLA) &&uptime guarantee\\n* Wedon’’t charge per minute Commercials all packaged upineasy, transparent monthly licence fee(s) ## Frequently Asked Questions\\n### What ismeant by\\u00abtotal users\\u00bb Bytotal users wemean the total number ofusers registered inyour app database whether they are active ornot ### What is data retention Wehave limits ondata retention for each ofour Cloud Plans Our data retention policy means your historical data may nolonger beavailable ifthe data isolder than the plan retention limits You can increase these limits bymoving toapaid plan ### Isthere alimit tothe number ofallowed concurrent connections Concurrent connections\\u2014 the total number ofuser devices connected toanapplication atthe same time\\u2014 are subject tofair use onall our Cloud plans (Basic, Starter, Growth, HIPAA Cloud) Enterprise plans don\\u2019t limit connections but there are plan and performance limits that will impact onthe total number ofconnections supported ### How much doyou charge per minute for video calls There isnoper minute charge for peer-to-peer video calls orvideo conference calls\",\n", + " \"However, our video conferencing solution requires the set-up ofadedicated media server which involves amonthly fee and additional bandwidth costs ### Can Itry out video conferencing onthe Basic Plan Wedonot asadefault offer video conferencing onthe Basic Plan You would need toupgrade toone ofour subscription plans Pleasecontact salesifyou would like totrial avideo conferencing demo account ### What happens ifI exceed the limits ofthe Basic (free) Plan Ifyou exceed the limits ofthe Basic Plan, the account owner will receive anotification requesting them toupgrade their plan, otherwise services will potentially besuspended Please see our Terms ofService ## Not sure which plan suits your business needs Talk toour experts- wewill review your business use case and help you get started with the best plan [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements\",\n", + " \"For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"$50/mo\\n* 500 knowledge base items\\n* $99/m per additional 1,000 knowledge base items\\n[Start FREE Trial](https://admin.quickblox.com/signup_assistant)\\n### HIPAA SmartChat Assistant\\nGuaranteed security and privacy for healthcare apps.Offered with a BAA\\n$149/mo\\n* 1000 knowledge base items\\n* $99/m per additional 1,000 knowledge base items\\n[Sign up](https://admin.quickblox.com/signup_assistant_hipaa)\\n## What’s available for Enterprise Customers * Provisioning and configuration ofserver resources incustomer’’s own hosting environment orpreferred cloud provider—— AWS/GCP/AliCloud/Azure/Oracle, Digital Ocean and others\\n* Installation ofthe software and needed components\\n* Migration ofall data and users to adedicated and scalable environment * Personal web admin panel\\n* Developer integration support toget you started\\n* Enterprise support with direct support contacts &&Ticketing Portal\\n* Personal Support manager\\n* API customization\\n* Data security and encryption\\n* Secure data retention, storage, and back-ups\\n* Reporting\\n* Service Level Agreement (SLA) &&uptime guarantee\\n* Wedon’’t charge per minute Commercials all packaged upineasy, transparent monthly licence fee(s) ## Frequently Asked Questions\\n### What ismeant by\\u00abtotal users\\u00bb Bytotal users wemean the total number ofusers registered inyour app database whether they are active ornot ### What is data retention Wehave limits ondata retention for each ofour Cloud Plans Our data retention policy means your historical data may nolonger beavailable ifthe data isolder than the plan retention limits You can increase these limits bymoving toapaid plan ### Isthere alimit tothe number ofallowed concurrent connections Concurrent connections\\u2014 the total number ofuser devices connected toanapplication atthe same time\\u2014 are subject tofair use onall our Cloud plans (Basic, Starter, Growth, HIPAA Cloud) Enterprise plans don\\u2019t limit connections but there are plan and performance limits that will impact onthe total number ofconnections supported ### How much doyou charge per minute for video calls There isnoper minute charge for peer-to-peer video calls orvideo conference calls\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 132 Type: init_branch\n", + "output: [\n", + " [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# QuickBlox Pricing\\nWe’’ve enabled 200+ enterprise instances and 22k+ applications toretain and engage their audience with advanced communication features Join them [Start Your FREE Trial](https://quickblox.com/enterprise/#get-enterprise)\\n* [Chat Services + AI Assistant](#chat-services)\\nIncludes QuickBlox SDKs, APIs and Chat UI Kits + SmartChat Assistant * [AI Assistant only](#ai-assistant)\\nIncludes SmartChat Assistant only * Basic\\n* Starter\\n* Growth\\n* HIPAA Cloud\\n* Enterprise\\n### Basic\\nFor newly founded businesses, testing aquick and affordable solution for their new product Free\\n[Sign up](https://admin.quickblox.com/signup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n* #### 500\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### 1 month\\ndata retention\\n* #### 10 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n1 extension\\n#### SmartChat Assistant\\n1 bot\\n30 day free trial on the bot\\n* 100 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Community\\nsupport\\n[Sign up](https://admin.quickblox.com/signup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n### Starter\\nBest for early stage startups trying tomeet astrategic goal (without losing their focus onoverall business growth) $107/mo\\n[Sign up](https://admin.quickblox.com/signup_startup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n* #### 10,000\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### 3 month\\ndata retention\\n* #### 25 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n2 extensions\\n#### SmartChat Assistant\\n1 bot\\n* 500 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Ticketing system\\nsupport\\n[Sign up](https://admin.quickblox.com/signup_startup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n### Growth\\nFor well established brands, growing rapidly, requiring aquick, reliable and efficient solution $269/mo\\n[Sign up](https://admin.quickblox.com/signup_growth?_ga=2.224968602.1437607202.1586339491-557719420.1579854846)\\n* #### 25,000\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### 6 month\\ndata retention\\n* #### 50 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n3 extensions\\n#### SmartChat Assistant\\n2 bots\\n* 1000 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Ticketing system\\nsupport\\n[Sign up](https://admin.quickblox.com/signup_growth)\\n### HIPAA Cloud\\nGuaranteed security and privacy for healthcare apps - HIPAA compliant hosting and feature-rich platform.Offered with a BAA\\n$430/mo\\n[Sign up](https://admin.quickblox.com/signup_hipaa)\\n* #### 20,000\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### Custom\\ndata retention\\n* #### 50 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n3 extensions\\n#### SmartChat Assistant\\n2 bots\\n* 1000 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Ticketing system\\nsupport\\n[Sign up](https://admin.quickblox.com/signup_hipaa)\\n### Enterprise\\nGet complete access toQuickblox software and enjoy aplan customized toyour unique business/app requirements From $647\\n[Contact us](https://quickblox.com/enterprise/#get-enterprise)\\n* #### Custom\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### Custom\\ndata retention\\n* #### Custom\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### Custom\\ndata encryption\\n* #### dedicated server\\n* #### AI Extensions\\nAll 5 extensions\\n#### SmartChat Assistant\\n3 bots\\nAdditional bots can be purchased\\n* Unlimited knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### SLA\\n#### Account manager\\n#### Ticketing system\\nsupport\\n[Contact us](https://quickblox.com/enterprise/#get-enterprise)\\n* SmartChat Assistant\\n* HIPAA-Compliant AI Assistant\\n### SmartChat Assistant\\nYour trainable assistant Upload with your own data & embed on your website\",\n", + " \"$50/mo\\n* 500 knowledge base items\\n* $99/m per additional 1,000 knowledge base items\\n[Start FREE Trial](https://admin.quickblox.com/signup_assistant)\\n### HIPAA SmartChat Assistant\\nGuaranteed security and privacy for healthcare apps.Offered with a BAA\\n$149/mo\\n* 1000 knowledge base items\\n* $99/m per additional 1,000 knowledge base items\\n[Sign up](https://admin.quickblox.com/signup_assistant_hipaa)\\n## What’s available for Enterprise Customers * Provisioning and configuration ofserver resources incustomer’’s own hosting environment orpreferred cloud provider—— AWS/GCP/AliCloud/Azure/Oracle, Digital Ocean and others\\n* Installation ofthe software and needed components\\n* Migration ofall data and users to adedicated and scalable environment * Personal web admin panel\\n* Developer integration support toget you started\\n* Enterprise support with direct support contacts &&Ticketing Portal\\n* Personal Support manager\\n* API customization\\n* Data security and encryption\\n* Secure data retention, storage, and back-ups\\n* Reporting\\n* Service Level Agreement (SLA) &&uptime guarantee\\n* Wedon’’t charge per minute Commercials all packaged upineasy, transparent monthly licence fee(s) ## Frequently Asked Questions\\n### What ismeant by\\u00abtotal users\\u00bb Bytotal users wemean the total number ofusers registered inyour app database whether they are active ornot ### What is data retention Wehave limits ondata retention for each ofour Cloud Plans Our data retention policy means your historical data may nolonger beavailable ifthe data isolder than the plan retention limits You can increase these limits bymoving toapaid plan ### Isthere alimit tothe number ofallowed concurrent connections Concurrent connections\\u2014 the total number ofuser devices connected toanapplication atthe same time\\u2014 are subject tofair use onall our Cloud plans (Basic, Starter, Growth, HIPAA Cloud) Enterprise plans don\\u2019t limit connections but there are plan and performance limits that will impact onthe total number ofconnections supported ### How much doyou charge per minute for video calls There isnoper minute charge for peer-to-peer video calls orvideo conference calls\",\n", + " \"However, our video conferencing solution requires the set-up ofadedicated media server which involves amonthly fee and additional bandwidth costs ### Can Itry out video conferencing onthe Basic Plan Wedonot asadefault offer video conferencing onthe Basic Plan You would need toupgrade toone ofour subscription plans Pleasecontact salesifyou would like totrial avideo conferencing demo account ### What happens ifI exceed the limits ofthe Basic (free) Plan Ifyou exceed the limits ofthe Basic Plan, the account owner will receive anotification requesting them toupgrade their plan, otherwise services will potentially besuspended Please see our Terms ofService ## Not sure which plan suits your business needs Talk toour experts- wewill review your business use case and help you get started with the best plan [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements\",\n", + " \"For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"However, our video conferencing solution requires the set-up ofadedicated media server which involves amonthly fee and additional bandwidth costs ### Can Itry out video conferencing onthe Basic Plan Wedonot asadefault offer video conferencing onthe Basic Plan You would need toupgrade toone ofour subscription plans Pleasecontact salesifyou would like totrial avideo conferencing demo account ### What happens ifI exceed the limits ofthe Basic (free) Plan Ifyou exceed the limits ofthe Basic Plan, the account owner will receive anotification requesting them toupgrade their plan, otherwise services will potentially besuspended Please see our Terms ofService ## Not sure which plan suits your business needs Talk toour experts- wewill review your business use case and help you get started with the best plan [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements\"\n", + "]\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 133 Type: step\n", + "output: {\n", + " \"documents\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# QuickBlox Pricing\\nWe’’ve enabled 200+ enterprise instances and 22k+ applications toretain and engage their audience with advanced communication features Join them [Start Your FREE Trial](https://quickblox.com/enterprise/#get-enterprise)\\n* [Chat Services + AI Assistant](#chat-services)\\nIncludes QuickBlox SDKs, APIs and Chat UI Kits + SmartChat Assistant * [AI Assistant only](#ai-assistant)\\nIncludes SmartChat Assistant only * Basic\\n* Starter\\n* Growth\\n* HIPAA Cloud\\n* Enterprise\\n### Basic\\nFor newly founded businesses, testing aquick and affordable solution for their new product Free\\n[Sign up](https://admin.quickblox.com/signup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n* #### 500\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### 1 month\\ndata retention\\n* #### 10 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n1 extension\\n#### SmartChat Assistant\\n1 bot\\n30 day free trial on the bot\\n* 100 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Community\\nsupport\\n[Sign up](https://admin.quickblox.com/signup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n### Starter\\nBest for early stage startups trying tomeet astrategic goal (without losing their focus onoverall business growth) $107/mo\\n[Sign up](https://admin.quickblox.com/signup_startup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n* #### 10,000\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### 3 month\\ndata retention\\n* #### 25 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n2 extensions\\n#### SmartChat Assistant\\n1 bot\\n* 500 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Ticketing system\\nsupport\\n[Sign up](https://admin.quickblox.com/signup_startup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n### Growth\\nFor well established brands, growing rapidly, requiring aquick, reliable and efficient solution $269/mo\\n[Sign up](https://admin.quickblox.com/signup_growth?_ga=2.224968602.1437607202.1586339491-557719420.1579854846)\\n* #### 25,000\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### 6 month\\ndata retention\\n* #### 50 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n3 extensions\\n#### SmartChat Assistant\\n2 bots\\n* 1000 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Ticketing system\\nsupport\\n[Sign up](https://admin.quickblox.com/signup_growth)\\n### HIPAA Cloud\\nGuaranteed security and privacy for healthcare apps - HIPAA compliant hosting and feature-rich platform.Offered with a BAA\\n$430/mo\\n[Sign up](https://admin.quickblox.com/signup_hipaa)\\n* #### 20,000\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### Custom\\ndata retention\\n* #### 50 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n3 extensions\\n#### SmartChat Assistant\\n2 bots\\n* 1000 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Ticketing system\\nsupport\\n[Sign up](https://admin.quickblox.com/signup_hipaa)\\n### Enterprise\\nGet complete access toQuickblox software and enjoy aplan customized toyour unique business/app requirements From $647\\n[Contact us](https://quickblox.com/enterprise/#get-enterprise)\\n* #### Custom\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### Custom\\ndata retention\\n* #### Custom\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### Custom\\ndata encryption\\n* #### dedicated server\\n* #### AI Extensions\\nAll 5 extensions\\n#### SmartChat Assistant\\n3 bots\\nAdditional bots can be purchased\\n* Unlimited knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### SLA\\n#### Account manager\\n#### Ticketing system\\nsupport\\n[Contact us](https://quickblox.com/enterprise/#get-enterprise)\\n* SmartChat Assistant\\n* HIPAA-Compliant AI Assistant\\n### SmartChat Assistant\\nYour trainable assistant Upload with your own data & embed on your website\",\n", + " \"$50/mo\\n* 500 knowledge base items\\n* $99/m per additional 1,000 knowledge base items\\n[Start FREE Trial](https://admin.quickblox.com/signup_assistant)\\n### HIPAA SmartChat Assistant\\nGuaranteed security and privacy for healthcare apps.Offered with a BAA\\n$149/mo\\n* 1000 knowledge base items\\n* $99/m per additional 1,000 knowledge base items\\n[Sign up](https://admin.quickblox.com/signup_assistant_hipaa)\\n## What’s available for Enterprise Customers * Provisioning and configuration ofserver resources incustomer’’s own hosting environment orpreferred cloud provider—— AWS/GCP/AliCloud/Azure/Oracle, Digital Ocean and others\\n* Installation ofthe software and needed components\\n* Migration ofall data and users to adedicated and scalable environment * Personal web admin panel\\n* Developer integration support toget you started\\n* Enterprise support with direct support contacts &&Ticketing Portal\\n* Personal Support manager\\n* API customization\\n* Data security and encryption\\n* Secure data retention, storage, and back-ups\\n* Reporting\\n* Service Level Agreement (SLA) &&uptime guarantee\\n* Wedon’’t charge per minute Commercials all packaged upineasy, transparent monthly licence fee(s) ## Frequently Asked Questions\\n### What ismeant by\\u00abtotal users\\u00bb Bytotal users wemean the total number ofusers registered inyour app database whether they are active ornot ### What is data retention Wehave limits ondata retention for each ofour Cloud Plans Our data retention policy means your historical data may nolonger beavailable ifthe data isolder than the plan retention limits You can increase these limits bymoving toapaid plan ### Isthere alimit tothe number ofallowed concurrent connections Concurrent connections\\u2014 the total number ofuser devices connected toanapplication atthe same time\\u2014 are subject tofair use onall our Cloud plans (Basic, Starter, Growth, HIPAA Cloud) Enterprise plans don\\u2019t limit connections but there are plan and performance limits that will impact onthe total number ofconnections supported ### How much doyou charge per minute for video calls There isnoper minute charge for peer-to-peer video calls orvideo conference calls\",\n", + " \"However, our video conferencing solution requires the set-up ofadedicated media server which involves amonthly fee and additional bandwidth costs ### Can Itry out video conferencing onthe Basic Plan Wedonot asadefault offer video conferencing onthe Basic Plan You would need toupgrade toone ofour subscription plans Pleasecontact salesifyou would like totrial avideo conferencing demo account ### What happens ifI exceed the limits ofthe Basic (free) Plan Ifyou exceed the limits ofthe Basic Plan, the account owner will receive anotification requesting them toupgrade their plan, otherwise services will potentially besuspended Please see our Terms ofService ## Not sure which plan suits your business needs Talk toour experts- wewill review your business use case and help you get started with the best plan [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements\",\n", + " \"For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 134 Type: init_branch\n", + "output: {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# QuickBlox Pricing\\nWe’’ve enabled 200+ enterprise instances and 22k+ applications toretain and engage their audience with advanced communication features Join them [Start Your FREE Trial](https://quickblox.com/enterprise/#get-enterprise)\\n* [Chat Services + AI Assistant](#chat-services)\\nIncludes QuickBlox SDKs, APIs and Chat UI Kits + SmartChat Assistant * [AI Assistant only](#ai-assistant)\\nIncludes SmartChat Assistant only * Basic\\n* Starter\\n* Growth\\n* HIPAA Cloud\\n* Enterprise\\n### Basic\\nFor newly founded businesses, testing aquick and affordable solution for their new product Free\\n[Sign up](https://admin.quickblox.com/signup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n* #### 500\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### 1 month\\ndata retention\\n* #### 10 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n1 extension\\n#### SmartChat Assistant\\n1 bot\\n30 day free trial on the bot\\n* 100 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Community\\nsupport\\n[Sign up](https://admin.quickblox.com/signup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n### Starter\\nBest for early stage startups trying tomeet astrategic goal (without losing their focus onoverall business growth) $107/mo\\n[Sign up](https://admin.quickblox.com/signup_startup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n* #### 10,000\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### 3 month\\ndata retention\\n* #### 25 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n2 extensions\\n#### SmartChat Assistant\\n1 bot\\n* 500 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Ticketing system\\nsupport\\n[Sign up](https://admin.quickblox.com/signup_startup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n### Growth\\nFor well established brands, growing rapidly, requiring aquick, reliable and efficient solution $269/mo\\n[Sign up](https://admin.quickblox.com/signup_growth?_ga=2.224968602.1437607202.1586339491-557719420.1579854846)\\n* #### 25,000\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### 6 month\\ndata retention\\n* #### 50 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n3 extensions\\n#### SmartChat Assistant\\n2 bots\\n* 1000 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Ticketing system\\nsupport\\n[Sign up](https://admin.quickblox.com/signup_growth)\\n### HIPAA Cloud\\nGuaranteed security and privacy for healthcare apps - HIPAA compliant hosting and feature-rich platform.Offered with a BAA\\n$430/mo\\n[Sign up](https://admin.quickblox.com/signup_hipaa)\\n* #### 20,000\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### Custom\\ndata retention\\n* #### 50 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n3 extensions\\n#### SmartChat Assistant\\n2 bots\\n* 1000 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Ticketing system\\nsupport\\n[Sign up](https://admin.quickblox.com/signup_hipaa)\\n### Enterprise\\nGet complete access toQuickblox software and enjoy aplan customized toyour unique business/app requirements From $647\\n[Contact us](https://quickblox.com/enterprise/#get-enterprise)\\n* #### Custom\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### Custom\\ndata retention\\n* #### Custom\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### Custom\\ndata encryption\\n* #### dedicated server\\n* #### AI Extensions\\nAll 5 extensions\\n#### SmartChat Assistant\\n3 bots\\nAdditional bots can be purchased\\n* Unlimited knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### SLA\\n#### Account manager\\n#### Ticketing system\\nsupport\\n[Contact us](https://quickblox.com/enterprise/#get-enterprise)\\n* SmartChat Assistant\\n* HIPAA-Compliant AI Assistant\\n### SmartChat Assistant\\nYour trainable assistant Upload with your own data & embed on your website\",\n", + " \"$50/mo\\n* 500 knowledge base items\\n* $99/m per additional 1,000 knowledge base items\\n[Start FREE Trial](https://admin.quickblox.com/signup_assistant)\\n### HIPAA SmartChat Assistant\\nGuaranteed security and privacy for healthcare apps.Offered with a BAA\\n$149/mo\\n* 1000 knowledge base items\\n* $99/m per additional 1,000 knowledge base items\\n[Sign up](https://admin.quickblox.com/signup_assistant_hipaa)\\n## What’s available for Enterprise Customers * Provisioning and configuration ofserver resources incustomer’’s own hosting environment orpreferred cloud provider—— AWS/GCP/AliCloud/Azure/Oracle, Digital Ocean and others\\n* Installation ofthe software and needed components\\n* Migration ofall data and users to adedicated and scalable environment * Personal web admin panel\\n* Developer integration support toget you started\\n* Enterprise support with direct support contacts &&Ticketing Portal\\n* Personal Support manager\\n* API customization\\n* Data security and encryption\\n* Secure data retention, storage, and back-ups\\n* Reporting\\n* Service Level Agreement (SLA) &&uptime guarantee\\n* Wedon’’t charge per minute Commercials all packaged upineasy, transparent monthly licence fee(s) ## Frequently Asked Questions\\n### What ismeant by\\u00abtotal users\\u00bb Bytotal users wemean the total number ofusers registered inyour app database whether they are active ornot ### What is data retention Wehave limits ondata retention for each ofour Cloud Plans Our data retention policy means your historical data may nolonger beavailable ifthe data isolder than the plan retention limits You can increase these limits bymoving toapaid plan ### Isthere alimit tothe number ofallowed concurrent connections Concurrent connections\\u2014 the total number ofuser devices connected toanapplication atthe same time\\u2014 are subject tofair use onall our Cloud plans (Basic, Starter, Growth, HIPAA Cloud) Enterprise plans don\\u2019t limit connections but there are plan and performance limits that will impact onthe total number ofconnections supported ### How much doyou charge per minute for video calls There isnoper minute charge for peer-to-peer video calls orvideo conference calls\",\n", + " \"However, our video conferencing solution requires the set-up ofadedicated media server which involves amonthly fee and additional bandwidth costs ### Can Itry out video conferencing onthe Basic Plan Wedonot asadefault offer video conferencing onthe Basic Plan You would need toupgrade toone ofour subscription plans Pleasecontact salesifyou would like totrial avideo conferencing demo account ### What happens ifI exceed the limits ofthe Basic (free) Plan Ifyou exceed the limits ofthe Basic Plan, the account owner will receive anotification requesting them toupgrade their plan, otherwise services will potentially besuspended Please see our Terms ofService ## Not sure which plan suits your business needs Talk toour experts- wewill review your business use case and help you get started with the best plan [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements\",\n", + " \"For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 135 Type: step\n", + "output: {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# QuickBlox Pricing\\nWe’’ve enabled 200+ enterprise instances and 22k+ applications toretain and engage their audience with advanced communication features Join them [Start Your FREE Trial](https://quickblox.com/enterprise/#get-enterprise)\\n* [Chat Services + AI Assistant](#chat-services)\\nIncludes QuickBlox SDKs, APIs and Chat UI Kits + SmartChat Assistant * [AI Assistant only](#ai-assistant)\\nIncludes SmartChat Assistant only * Basic\\n* Starter\\n* Growth\\n* HIPAA Cloud\\n* Enterprise\\n### Basic\\nFor newly founded businesses, testing aquick and affordable solution for their new product Free\\n[Sign up](https://admin.quickblox.com/signup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n* #### 500\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### 1 month\\ndata retention\\n* #### 10 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n1 extension\\n#### SmartChat Assistant\\n1 bot\\n30 day free trial on the bot\\n* 100 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Community\\nsupport\\n[Sign up](https://admin.quickblox.com/signup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n### Starter\\nBest for early stage startups trying tomeet astrategic goal (without losing their focus onoverall business growth) $107/mo\\n[Sign up](https://admin.quickblox.com/signup_startup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n* #### 10,000\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### 3 month\\ndata retention\\n* #### 25 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n2 extensions\\n#### SmartChat Assistant\\n1 bot\\n* 500 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Ticketing system\\nsupport\\n[Sign up](https://admin.quickblox.com/signup_startup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n### Growth\\nFor well established brands, growing rapidly, requiring aquick, reliable and efficient solution $269/mo\\n[Sign up](https://admin.quickblox.com/signup_growth?_ga=2.224968602.1437607202.1586339491-557719420.1579854846)\\n* #### 25,000\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### 6 month\\ndata retention\\n* #### 50 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n3 extensions\\n#### SmartChat Assistant\\n2 bots\\n* 1000 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Ticketing system\\nsupport\\n[Sign up](https://admin.quickblox.com/signup_growth)\\n### HIPAA Cloud\\nGuaranteed security and privacy for healthcare apps - HIPAA compliant hosting and feature-rich platform.Offered with a BAA\\n$430/mo\\n[Sign up](https://admin.quickblox.com/signup_hipaa)\\n* #### 20,000\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### Custom\\ndata retention\\n* #### 50 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n3 extensions\\n#### SmartChat Assistant\\n2 bots\\n* 1000 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Ticketing system\\nsupport\\n[Sign up](https://admin.quickblox.com/signup_hipaa)\\n### Enterprise\\nGet complete access toQuickblox software and enjoy aplan customized toyour unique business/app requirements From $647\\n[Contact us](https://quickblox.com/enterprise/#get-enterprise)\\n* #### Custom\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### Custom\\ndata retention\\n* #### Custom\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### Custom\\ndata encryption\\n* #### dedicated server\\n* #### AI Extensions\\nAll 5 extensions\\n#### SmartChat Assistant\\n3 bots\\nAdditional bots can be purchased\\n* Unlimited knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### SLA\\n#### Account manager\\n#### Ticketing system\\nsupport\\n[Contact us](https://quickblox.com/enterprise/#get-enterprise)\\n* SmartChat Assistant\\n* HIPAA-Compliant AI Assistant\\n### SmartChat Assistant\\nYour trainable assistant Upload with your own data & embed on your website\",\n", + " \"$50/mo\\n* 500 knowledge base items\\n* $99/m per additional 1,000 knowledge base items\\n[Start FREE Trial](https://admin.quickblox.com/signup_assistant)\\n### HIPAA SmartChat Assistant\\nGuaranteed security and privacy for healthcare apps.Offered with a BAA\\n$149/mo\\n* 1000 knowledge base items\\n* $99/m per additional 1,000 knowledge base items\\n[Sign up](https://admin.quickblox.com/signup_assistant_hipaa)\\n## What’s available for Enterprise Customers * Provisioning and configuration ofserver resources incustomer’’s own hosting environment orpreferred cloud provider—— AWS/GCP/AliCloud/Azure/Oracle, Digital Ocean and others\\n* Installation ofthe software and needed components\\n* Migration ofall data and users to adedicated and scalable environment * Personal web admin panel\\n* Developer integration support toget you started\\n* Enterprise support with direct support contacts &&Ticketing Portal\\n* Personal Support manager\\n* API customization\\n* Data security and encryption\\n* Secure data retention, storage, and back-ups\\n* Reporting\\n* Service Level Agreement (SLA) &&uptime guarantee\\n* Wedon’’t charge per minute Commercials all packaged upineasy, transparent monthly licence fee(s) ## Frequently Asked Questions\\n### What ismeant by\\u00abtotal users\\u00bb Bytotal users wemean the total number ofusers registered inyour app database whether they are active ornot ### What is data retention Wehave limits ondata retention for each ofour Cloud Plans Our data retention policy means your historical data may nolonger beavailable ifthe data isolder than the plan retention limits You can increase these limits bymoving toapaid plan ### Isthere alimit tothe number ofallowed concurrent connections Concurrent connections\\u2014 the total number ofuser devices connected toanapplication atthe same time\\u2014 are subject tofair use onall our Cloud plans (Basic, Starter, Growth, HIPAA Cloud) Enterprise plans don\\u2019t limit connections but there are plan and performance limits that will impact onthe total number ofconnections supported ### How much doyou charge per minute for video calls There isnoper minute charge for peer-to-peer video calls orvideo conference calls\",\n", + " \"However, our video conferencing solution requires the set-up ofadedicated media server which involves amonthly fee and additional bandwidth costs ### Can Itry out video conferencing onthe Basic Plan Wedonot asadefault offer video conferencing onthe Basic Plan You would need toupgrade toone ofour subscription plans Pleasecontact salesifyou would like totrial avideo conferencing demo account ### What happens ifI exceed the limits ofthe Basic (free) Plan Ifyou exceed the limits ofthe Basic Plan, the account owner will receive anotification requesting them toupgrade their plan, otherwise services will potentially besuspended Please see our Terms ofService ## Not sure which plan suits your business needs Talk toour experts- wewill review your business use case and help you get started with the best plan [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements\",\n", + " \"For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 136 Type: init_branch\n", + "output: {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# QuickBlox Pricing\\nWe’’ve enabled 200+ enterprise instances and 22k+ applications toretain and engage their audience with advanced communication features Join them [Start Your FREE Trial](https://quickblox.com/enterprise/#get-enterprise)\\n* [Chat Services + AI Assistant](#chat-services)\\nIncludes QuickBlox SDKs, APIs and Chat UI Kits + SmartChat Assistant * [AI Assistant only](#ai-assistant)\\nIncludes SmartChat Assistant only * Basic\\n* Starter\\n* Growth\\n* HIPAA Cloud\\n* Enterprise\\n### Basic\\nFor newly founded businesses, testing aquick and affordable solution for their new product Free\\n[Sign up](https://admin.quickblox.com/signup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n* #### 500\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### 1 month\\ndata retention\\n* #### 10 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n1 extension\\n#### SmartChat Assistant\\n1 bot\\n30 day free trial on the bot\\n* 100 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Community\\nsupport\\n[Sign up](https://admin.quickblox.com/signup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n### Starter\\nBest for early stage startups trying tomeet astrategic goal (without losing their focus onoverall business growth) $107/mo\\n[Sign up](https://admin.quickblox.com/signup_startup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n* #### 10,000\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### 3 month\\ndata retention\\n* #### 25 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n2 extensions\\n#### SmartChat Assistant\\n1 bot\\n* 500 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Ticketing system\\nsupport\\n[Sign up](https://admin.quickblox.com/signup_startup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n### Growth\\nFor well established brands, growing rapidly, requiring aquick, reliable and efficient solution $269/mo\\n[Sign up](https://admin.quickblox.com/signup_growth?_ga=2.224968602.1437607202.1586339491-557719420.1579854846)\\n* #### 25,000\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### 6 month\\ndata retention\\n* #### 50 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n3 extensions\\n#### SmartChat Assistant\\n2 bots\\n* 1000 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Ticketing system\\nsupport\\n[Sign up](https://admin.quickblox.com/signup_growth)\\n### HIPAA Cloud\\nGuaranteed security and privacy for healthcare apps - HIPAA compliant hosting and feature-rich platform.Offered with a BAA\\n$430/mo\\n[Sign up](https://admin.quickblox.com/signup_hipaa)\\n* #### 20,000\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### Custom\\ndata retention\\n* #### 50 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n3 extensions\\n#### SmartChat Assistant\\n2 bots\\n* 1000 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Ticketing system\\nsupport\\n[Sign up](https://admin.quickblox.com/signup_hipaa)\\n### Enterprise\\nGet complete access toQuickblox software and enjoy aplan customized toyour unique business/app requirements From $647\\n[Contact us](https://quickblox.com/enterprise/#get-enterprise)\\n* #### Custom\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### Custom\\ndata retention\\n* #### Custom\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### Custom\\ndata encryption\\n* #### dedicated server\\n* #### AI Extensions\\nAll 5 extensions\\n#### SmartChat Assistant\\n3 bots\\nAdditional bots can be purchased\\n* Unlimited knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### SLA\\n#### Account manager\\n#### Ticketing system\\nsupport\\n[Contact us](https://quickblox.com/enterprise/#get-enterprise)\\n* SmartChat Assistant\\n* HIPAA-Compliant AI Assistant\\n### SmartChat Assistant\\nYour trainable assistant Upload with your own data & embed on your website\",\n", + " \"$50/mo\\n* 500 knowledge base items\\n* $99/m per additional 1,000 knowledge base items\\n[Start FREE Trial](https://admin.quickblox.com/signup_assistant)\\n### HIPAA SmartChat Assistant\\nGuaranteed security and privacy for healthcare apps.Offered with a BAA\\n$149/mo\\n* 1000 knowledge base items\\n* $99/m per additional 1,000 knowledge base items\\n[Sign up](https://admin.quickblox.com/signup_assistant_hipaa)\\n## What’s available for Enterprise Customers * Provisioning and configuration ofserver resources incustomer’’s own hosting environment orpreferred cloud provider—— AWS/GCP/AliCloud/Azure/Oracle, Digital Ocean and others\\n* Installation ofthe software and needed components\\n* Migration ofall data and users to adedicated and scalable environment * Personal web admin panel\\n* Developer integration support toget you started\\n* Enterprise support with direct support contacts &&Ticketing Portal\\n* Personal Support manager\\n* API customization\\n* Data security and encryption\\n* Secure data retention, storage, and back-ups\\n* Reporting\\n* Service Level Agreement (SLA) &&uptime guarantee\\n* Wedon’’t charge per minute Commercials all packaged upineasy, transparent monthly licence fee(s) ## Frequently Asked Questions\\n### What ismeant by\\u00abtotal users\\u00bb Bytotal users wemean the total number ofusers registered inyour app database whether they are active ornot ### What is data retention Wehave limits ondata retention for each ofour Cloud Plans Our data retention policy means your historical data may nolonger beavailable ifthe data isolder than the plan retention limits You can increase these limits bymoving toapaid plan ### Isthere alimit tothe number ofallowed concurrent connections Concurrent connections\\u2014 the total number ofuser devices connected toanapplication atthe same time\\u2014 are subject tofair use onall our Cloud plans (Basic, Starter, Growth, HIPAA Cloud) Enterprise plans don\\u2019t limit connections but there are plan and performance limits that will impact onthe total number ofconnections supported ### How much doyou charge per minute for video calls There isnoper minute charge for peer-to-peer video calls orvideo conference calls\",\n", + " \"However, our video conferencing solution requires the set-up ofadedicated media server which involves amonthly fee and additional bandwidth costs ### Can Itry out video conferencing onthe Basic Plan Wedonot asadefault offer video conferencing onthe Basic Plan You would need toupgrade toone ofour subscription plans Pleasecontact salesifyou would like totrial avideo conferencing demo account ### What happens ifI exceed the limits ofthe Basic (free) Plan Ifyou exceed the limits ofthe Basic Plan, the account owner will receive anotification requesting them toupgrade their plan, otherwise services will potentially besuspended Please see our Terms ofService ## Not sure which plan suits your business needs Talk toour experts- wewill review your business use case and help you get started with the best plan [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements\",\n", + " \"For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"costs\": {\n", + " \"ai_cost\": 0,\n", + " \"bytes_transferred_cost\": 0,\n", + " \"compute_cost\": 0.0001,\n", + " \"file_cost\": 0.0002,\n", + " \"total_cost\": 0.0004,\n", + " \"transform_cost\": 0.0001\n", + " },\n", + " \"error\": null,\n", + " \"status\": 200,\n", + " \"url\": \"https://quickblox.com/pricing/\"\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 137 Type: step\n", + "output: {\n", + " \"result\": [\n", + " {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# QuickBlox Pricing\\nWe’’ve enabled 200+ enterprise instances and 22k+ applications toretain and engage their audience with advanced communication features Join them [Start Your FREE Trial](https://quickblox.com/enterprise/#get-enterprise)\\n* [Chat Services + AI Assistant](#chat-services)\\nIncludes QuickBlox SDKs, APIs and Chat UI Kits + SmartChat Assistant * [AI Assistant only](#ai-assistant)\\nIncludes SmartChat Assistant only * Basic\\n* Starter\\n* Growth\\n* HIPAA Cloud\\n* Enterprise\\n### Basic\\nFor newly founded businesses, testing aquick and affordable solution for their new product Free\\n[Sign up](https://admin.quickblox.com/signup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n* #### 500\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### 1 month\\ndata retention\\n* #### 10 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n1 extension\\n#### SmartChat Assistant\\n1 bot\\n30 day free trial on the bot\\n* 100 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Community\\nsupport\\n[Sign up](https://admin.quickblox.com/signup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n### Starter\\nBest for early stage startups trying tomeet astrategic goal (without losing their focus onoverall business growth) $107/mo\\n[Sign up](https://admin.quickblox.com/signup_startup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n* #### 10,000\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### 3 month\\ndata retention\\n* #### 25 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n2 extensions\\n#### SmartChat Assistant\\n1 bot\\n* 500 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Ticketing system\\nsupport\\n[Sign up](https://admin.quickblox.com/signup_startup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\\n### Growth\\nFor well established brands, growing rapidly, requiring aquick, reliable and efficient solution $269/mo\\n[Sign up](https://admin.quickblox.com/signup_growth?_ga=2.224968602.1437607202.1586339491-557719420.1579854846)\\n* #### 25,000\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### 6 month\\ndata retention\\n* #### 50 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n3 extensions\\n#### SmartChat Assistant\\n2 bots\\n* 1000 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Ticketing system\\nsupport\\n[Sign up](https://admin.quickblox.com/signup_growth)\\n### HIPAA Cloud\\nGuaranteed security and privacy for healthcare apps - HIPAA compliant hosting and feature-rich platform.Offered with a BAA\\n$430/mo\\n[Sign up](https://admin.quickblox.com/signup_hipaa)\\n* #### 20,000\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### Custom\\ndata retention\\n* #### 50 MB\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### data encryption\\n* #### dedicated server\\n* #### AI Extensions\\n3 extensions\\n#### SmartChat Assistant\\n2 bots\\n* 1000 knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### Ticketing system\\nsupport\\n[Sign up](https://admin.quickblox.com/signup_hipaa)\\n### Enterprise\\nGet complete access toQuickblox software and enjoy aplan customized toyour unique business/app requirements From $647\\n[Contact us](https://quickblox.com/enterprise/#get-enterprise)\\n* #### Custom\\ntotal users\\nTotal users mean the total number ofusers registered inyour app database whether they are active ornot * #### Custom\\ndata retention\\n* #### Custom\\nfile size limit\\n* #### core features\\n* - Native & crossplatform SDK\\n* - 1-1 chat\\n* - Group chat\\n* - Online Presence\\n* - Typing Indicators\\n* - Message Attachments\\n* - Chat History\\n* - Delivery & Read Receipts\\n* - Voice message\\n* - Public & Private Rooms\\n* - Auto-reconnect & Sync\\n* #### advanced features\\n* - Custom classes\\n* - Sync across multiple devices\\n* - Offline Messages\\n* - Block Users\\n* - Server API\\n* #### peer topeer audio/video calls\\n* #### conference audio/video calls\\nAvailable asanadd-on\\n* #### Custom\\ndata encryption\\n* #### dedicated server\\n* #### AI Extensions\\nAll 5 extensions\\n#### SmartChat Assistant\\n3 bots\\nAdditional bots can be purchased\\n* Unlimited knowledge base items\\nAdditional knowledge base items can be purchased\\nTypes of content:\\n* * * file under 25Mb\\n(unlimited number of characters)\\n* #### SLA\\n#### Account manager\\n#### Ticketing system\\nsupport\\n[Contact us](https://quickblox.com/enterprise/#get-enterprise)\\n* SmartChat Assistant\\n* HIPAA-Compliant AI Assistant\\n### SmartChat Assistant\\nYour trainable assistant Upload with your own data & embed on your website\",\n", + " \"$50/mo\\n* 500 knowledge base items\\n* $99/m per additional 1,000 knowledge base items\\n[Start FREE Trial](https://admin.quickblox.com/signup_assistant)\\n### HIPAA SmartChat Assistant\\nGuaranteed security and privacy for healthcare apps.Offered with a BAA\\n$149/mo\\n* 1000 knowledge base items\\n* $99/m per additional 1,000 knowledge base items\\n[Sign up](https://admin.quickblox.com/signup_assistant_hipaa)\\n## What’s available for Enterprise Customers * Provisioning and configuration ofserver resources incustomer’’s own hosting environment orpreferred cloud provider—— AWS/GCP/AliCloud/Azure/Oracle, Digital Ocean and others\\n* Installation ofthe software and needed components\\n* Migration ofall data and users to adedicated and scalable environment * Personal web admin panel\\n* Developer integration support toget you started\\n* Enterprise support with direct support contacts &&Ticketing Portal\\n* Personal Support manager\\n* API customization\\n* Data security and encryption\\n* Secure data retention, storage, and back-ups\\n* Reporting\\n* Service Level Agreement (SLA) &&uptime guarantee\\n* Wedon’’t charge per minute Commercials all packaged upineasy, transparent monthly licence fee(s) ## Frequently Asked Questions\\n### What ismeant by\\u00abtotal users\\u00bb Bytotal users wemean the total number ofusers registered inyour app database whether they are active ornot ### What is data retention Wehave limits ondata retention for each ofour Cloud Plans Our data retention policy means your historical data may nolonger beavailable ifthe data isolder than the plan retention limits You can increase these limits bymoving toapaid plan ### Isthere alimit tothe number ofallowed concurrent connections Concurrent connections\\u2014 the total number ofuser devices connected toanapplication atthe same time\\u2014 are subject tofair use onall our Cloud plans (Basic, Starter, Growth, HIPAA Cloud) Enterprise plans don\\u2019t limit connections but there are plan and performance limits that will impact onthe total number ofconnections supported ### How much doyou charge per minute for video calls There isnoper minute charge for peer-to-peer video calls orvideo conference calls\",\n", + " \"However, our video conferencing solution requires the set-up ofadedicated media server which involves amonthly fee and additional bandwidth costs ### Can Itry out video conferencing onthe Basic Plan Wedonot asadefault offer video conferencing onthe Basic Plan You would need toupgrade toone ofour subscription plans Pleasecontact salesifyou would like totrial avideo conferencing demo account ### What happens ifI exceed the limits ofthe Basic (free) Plan Ifyou exceed the limits ofthe Basic Plan, the account owner will receive anotification requesting them toupgrade their plan, otherwise services will potentially besuspended Please see our Terms ofService ## Not sure which plan suits your business needs Talk toour experts- wewill review your business use case and help you get started with the best plan [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements\",\n", + " \"For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"costs\": {\n", + " \"ai_cost\": 0,\n", + " \"bytes_transferred_cost\": 0,\n", + " \"compute_cost\": 0.0001,\n", + " \"file_cost\": 0.0002,\n", + " \"total_cost\": 0.0004,\n", + " \"transform_cost\": 0.0001\n", + " },\n", + " \"error\": null,\n", + " \"status\": 200,\n", + " \"url\": \"https://quickblox.com/pricing/\"\n", + " },\n", + " {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Flexible and Secure Hosting\\nQuickBlox offers aflexible range ofcloud and on-premises hosting options Regardless ofwhere the software isdeployed you can relax knowing that all options are GDPR and HIPAA compliant, granting you full data ownership and user privacy ## Chat hosting wherever you need\\nWecan set upavariety ofinstallations depending onyour particular technical and regulatory needs Nomatter what type ofinstallation you choose, QuickBlox ensures the security ofyour enterprise data ### QuickBlox can bedeployed:\\nOn-premises, onyour own private server/ data center\\nOnyour own cloud account set upwith a3rd party hosting provider ofyour choice\\nOnthe QuickBlox cloud created and dedicated toyour enterprise only\\n## On-Premises\\nFor those highly regulated industries and organizations like banking, healthcare, and government, on-premises deployment guarantees you 100% security ofdata and peace ofmind Asour software isdelivered straight toyour own servers orcompany-owned cloud, removing any need for 3rd parties, you can besure that only you and your customers have access todata [Learn more](https://quickblox.com/hosting/on-premise/)\\n## Cloud\\nWecan run QuickBlox communication software inyour own virtual machine (VMs) onapublic orprivate cloud with your preferred hosting provider, orinadedicated QuickBlox cloud Both options offer ahigh level ofsecurity and are fully GDPR and HIPAA compliant Weprovide complete management and are responsible for 24/7 operational functionality [Learn more](https://quickblox.com/hosting/cloud/)\\n## HIPAA Compliant\\nWeoffer our healthcare customers several HIPAA compliant hosting solutions: onour shared cloud, asadedicated instance onaQuickBlox managed cloud, asafully managed service onthe customer’’s own cloud account, oron-premises Weoffer data encryption, additional security add-ons, provide aBusiness Associate Agreement (BAA), and more [Learn more](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n## Multi-Tenant Shared Cloud\\nDon’’t want topay the full cost while you are still indevelopment stages Weunderstand Sign upfor one ofour subscription plans hosted onamulti-tenant shared cloud where you can enjoy access tomessaging and calling features with ticket based support until you are ready toupgrade\\n[View pricing](https://quickblox.com/pricing/)\\n## Choosing the right hosting environment\\nWeunderstand that one size does not fit all that’’s why QuickBlox offers arange ofhosting solutions For the best solution that fits your needs speak toarepresentative\\n[Contact sales](https://quickblox.com/enterprise/#get-enterprise)\\n* Supported Features\\n* * Cloud Hosting\\n* QuickBlox Cloud\\n* Yourown Public/Private Cloud\\n* On-premises\\n* * Hosted onyour own local server\\n* * * * * Hosted oncustomer’’s dedicated cloud account\\n* * * * * Hosted onQuickBlox cloud account dedicated toyour enterprise\\n* * * * * Choose which country where your data isstored\\n* Depends\\n* * * * Quick installation and free data migration\\n* * * Depends\\n* * Software accessible only bycustomer’’s internal DevOps team\\n* * * * * Control ofyour user data and backend software updates\\n* * * * * Maintenance byQuickBlox team under SLA\\n* * * * * Option ofadditional security Addons\\n* * * * * Nodata limits whatsoever\\n* * * * * 100% data ownership\\n* * * * * HIPAA Compliant\\n* * * * * GDPR Compliant\\n* * * * Depending onthe geographical region you require, wemay beable toset upaQuickBlox managed account inanother region/with another cloud hosting provider\",\n", + " \"* Supported with certain cloud providers * Depends on the complexity of your infrastructure and installation * Asagreed with your DevOps/ info-security team ## Frequently Asked Questions\\n### How doI choose the right hosting environment There are several factors you need toconsider when choosing the best setup for video, voice, orlive chat hosting: compliance and security concerns, disaster recovery and data backup needs, speed, performance and bandwidth needs, and ofcourse cost all come into play Our experienced QuickBloxconsultantswould behappy toexplain our hosting options and help you find the best fit Also check out our resources below ### Can Iget free chat hosting onthe QuickBlox Shared cloud Our multi-tenant shared cloud isdesigned for developers and companies who have limited bandwidth needs and who are inearly stages intheir development and need atesting environment Weoffer arange ofplans for discounted and free chat hosting onthe shared cloud tohelp you get started.Check pricing here ### Does QuickBlox support video conference hosting Yes, wedo For video conference hosting services, customers need adedicated media server toenable multi-participant video calls Weprovide this asanadd-on toany plan that you subscribeto Speak toone ofourconsultantsnow for more information\",\n", + " \"### Are QuickBlox Hosting options HIPAA compliant Weunderstand the needs ofhealthcare and provide arange ofHIPAA compliant hosting solutions onour shared cloud, your public orprivate cloud, oronpremises.Learn more here ### What ifI sign upfor one ofyour hosting plans, but then myneeds change Weembrace aflexible approach tohosting which means that our DevOps team isable toadjust your hosting environment asyour requirements change Wesupport migration from our multi-tenant shared cloud toadedicated instance inyour own cloud account, and wecan scale upand scale down your dedicated instance tosupport the ebb and flow ofyour business growth ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [Advantages of Enterprise Hosting for Secure Chat](https://quickblox.com/blog/advantages-of-enterprise-hosting-for-secure-chat/)\\nGail M 19 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [How to choose hosting for your chat application](https://quickblox.com/blog/how-to-choose-hosting-for-your-chat-application/)\\nGail M 31 Aug 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[On Premise](https://quickblox.com/blog/hosting/on-premise/)### [QuickBlox Hosting Options for Enterprises](https://quickblox.com/blog/quickblox-hosting-options-for-enterprises/)\\nHamza Mousa\\n12 Mar 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere\",\n", + " \"Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"costs\": {\n", + " \"ai_cost\": 0,\n", + " \"bytes_transferred_cost\": 0,\n", + " \"compute_cost\": 0.0001,\n", + " \"file_cost\": 0.0002,\n", + " \"total_cost\": 0.0004,\n", + " \"transform_cost\": 0.0001\n", + " },\n", + " \"error\": null,\n", + " \"status\": 200,\n", + " \"url\": \"https://quickblox.com/hosting/\"\n", + " },\n", + " {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n### New ProductOpen source video consultation software with OpenAI Integration\\nElevate Your Video Communication with Q‑Consultation\\n[Learn more](https://quickblox.com/products/q-consultation/open-source/)\\n### New ProductBuild Exceptional Chat Experiences with AI‑Enhanced UI Kits\\n[Learn more](https://quickblox.com/ui-kit/)\\n[Previous](#carouselMainTopSlider)[Next](#carouselMainTopSlider)\\n# Build Your Own Messenger With Real-Time Chat & Video APIs\\nAdd instant messaging and online video chat to any Android, iOS, or Web application, with ease and flexibility In-app chat and calling APIs and SDKs, trusted globally by developers, startups, and enterprises [Start FREE Trial](https://admin.quickblox.com/signup?_ga=2.166318714.519349007.1585816300-1447393030.1568645682)[Talk to an Expert](https://quickblox.com/enterprise/#get-enterprise)\\n## Launch quickly and convert more prospects withreal‑‑timeChat, Audio, and Video communication\\nIf you own a product, you know exactly how drawn-out and exorbitant it can be to build real-time communication features from scratch Quickblox can help you design, create, and enter the market at a much faster rate with APIs and SDKs that shortcut product and engineering delivery Convert your ideas into a successful product with us and watch the engagement rate rise, while you build a loyal user base [\\n#### Chat\\nEmbedded chat features- you can customize and build a fully-functioning chat product for mobile and web in a matter of hours ](https://quickblox.com/products/chat/)[\\n#### Voice and Video calling\\nStreamline customer usability with high\\u2011quality peer\\u2011to\\u2011peer voice and video calls Drive more engagement and build meaningful connections ](https://quickblox.com/products/voice-and-video-calling/)[\\n#### Video Conferencing\\nCreate real-time video group interactions to enhance collaboration and productivity Designed to meet your user experience goals and increase conversations ](https://quickblox.com/products/video-conferencing/)[\\n#### Push Notifications\\nGive your customers/users reasons to keep coming back - send in-app reminders, offers, updates and watch retention rates climb ](https://quickblox.com/products/push-notifications/)\\n#### Data Storage\\nProtect your data from hackers and unwanted modification attempts using flexible data storage options Choose between dedicated, on-premise, or your own virtual cloud #### Secure File Sharing\\nAllow sharing and linking of all types of files (images, audio, video, docs, and other file formats) and enable your users to interact and engage more ## Over30,000 software developers and organizations worldwide are using QuickBlox messagingAPI\",\n", + " \"enterpriseinstances\\napplications\\nchatsperday\\nrequestspermonth\\n## Wherever you are in your product journey, we have chat, voice, and video APIs ready to build new features into your app\\n[Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Why QuickBlox Quickblox APIs are equipped to support mobile applications and websites at different stages, be it a fresh product idea, an MVP, early stage startup or a scaling enterprise Our documentation and developer support are highly efficient to make your dream product a reality ### Chat API and Feature-Rich SDKs\\nOur versatile software is designed for multi\\u2011platform use including iOS, Android, and the Web #### SDKs and Code Samples:\\nCross-platform kits and sample apps for easy and quick integration of chat #### Restful API:\\nEnable real-time communication via the server ### Fully Customizable White Label Solutions\\nCustomizable UI Kits to speed up your design workflow and build a product of your vision as well as a ready white\\u2011label solution for virtual rooms and video calling use cases #### UI Kits:\\nCustomize everything as you want with our ready UI Kits #### Q-Consultation:\\nWhite\\u2011label solution for teleconsultation and similar use cases ### Cloud & Dedicated Infrastructure\\nHost your apps wherever you want - opt for a dedicated fully managed server or on\\u2011premises infrastructure Pick a cloud provider that\\u2019s best as per your business goals #### Cloud:\\nA dedicated QuickBlox cloud or your own virtual cloud #### On-Premise:\\nDeployed and managed on your own physical server ### Rich Documentation & Constant Support\\nGet easy step by step guidance to build a powerful chat/messaging/communication app Easily integrate new features using our documentation and developer support\",\n", + " \"#### Docs:\\nIntegrating QuickBlox across multiple platforms #### Support:\\nQuickblox support is a click away ## Trust QuickBlox for secure communication\\n### SOC2\\n### HIPAA\\n### GDPR\\n## Do you need additional security, compliance, and support for the long-term We have a more scalable and flexible solution for you, customized to your unique business/app requirements [Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\\n## Insanely powerful in-app chat solutions- for every industry\\n* #### Healthcare\\nProvide better care for your patients and teams using feature-rich HIPAA\\u2011compliant chat solutions Integrate powerful telemedicine communication tools into your existing platform * #### Finance & Banking\\nSecure communication solutions for the financial and banking industry to support your clients Easily integrated with your banking APIs with full customization available * #### Marketplaces & E-commerce\\nIntegrate chat and calling into your e\\u2011commerce marketplace platform to connect with customers using chat, audio, and video calling features * #### Social Networking\\nGive your users the option to connect one-on-one or with a group, usinghigh quality voice, video, and chatbox app features - build a well connected community * #### Education & Coaching\\nAdd communication functions to connect teachers with students, coaches with players, and trainers with clients Appropriate for any remote learning application ## Trusted by Developers & Product Owners\\nCommunication with the QuickBlox team has been great The QuickBlox team is a vital partner and I appreciate their support, their platform, and its capabilities ### Justin Harr,Founder, Eden\\nWhat I like best about QuickBlox is their reliability and performance - I've rarely experienced any issues with their solutions, whether I'm using their video or voice SDK, or their chat API\",\n", + " \"### Itay Shechter,Co-founder, Vanywhere\\nQuickBlox chat has enhanced our platform and allowed us to facilitate better communication between caregivers and care coordinators\\n### Robin Jerome,Principal Architect, BayShore HealthCare\\nI have worked with QuickBlox for several years using their Flutter SDK to add chat features to several client apps Their SDKs are easy to work with, saving us much time and money not having to build chat from scratch ### Samyak Jain,CEO & Founder, Pixel apps\\n[Previous](#carousel)[Next](#carousel)\\n## Explore Documentation\\nFamiliarize yourself with our chat and calling APIs Use our platform SDKs and code samples to learn more about the software and integration process [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n[Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n[JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n[React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n[Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n[Server API](https://quickblox.com/sdk/chat-api/)\\n## Start For FREE Customize Everything Build Your Dream Online Platform Our real-time chat and messaging solutions scale as your business grows, and can be customized to create 100% custom in-app messaging [Contact Sales](https://quickblox.com/enterprise/#get-enterprise)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere\",\n", + " \"Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"costs\": {\n", + " \"ai_cost\": 0,\n", + " \"bytes_transferred_cost\": 0,\n", + " \"compute_cost\": 0.0001,\n", + " \"file_cost\": 0.0002,\n", + " \"total_cost\": 0.0004,\n", + " \"transform_cost\": 0.0001\n", + " },\n", + " \"error\": null,\n", + " \"status\": 200,\n", + " \"url\": \"https://quickblox.com/\"\n", + " },\n", + " {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# HIPAA Compliant Hosting\\nOur healthcare communication solutions are designed with HIPAA compliance inmind Build and deliver powerful HIPAA chat apps inthe full confidence that sensitive ePHI remains secure and compliance requirements are satisfied ## What isHIPAA Compliance HIPAA (Health Insurance Portability and Accountability Act of1996) sets national standards for safeguarding protected health information (PHI) Any business that collects, stores, ortransmits PHI isrequired tocomply with HIPAA physical, technical, and administrative safeguards Failure todosocan result incompromised patient data and hefty penalties for the involved party ## Why QuickBlox ### Experienced inHealthcare\\nWeare experienced working with the Healthcare industry and HealthTech Weprovide HIPAA compliant hosting solutions configured for enhanced data privacy and inaccordance with HIPAA security rules ### Host Anywhere\\nWeunderstand your need for data security that’’s why wedeploy our software wherever you need, including inyour own cloud account with ahosting provider ofyour choice sothat sensitive PHI remains firmly inyour ownership and control ### Enterprise Ready\\nWebuild enterprise ready solutions Our skilled DevOps team can provide anarray ofsoftware tools, integrations, and configurations toensure enterprise grade security and support for your HIPAA compliant solution [Speak to us](https://quickblox.com/enterprise/#get-enterprise)\\n## QuickBlox HIPAA Compliant HostingSolutions\\nThe easiest way tosatisfy HIPAA requirements istopartner with aHIPAA compliant communication solutions provider, like QuickBlox Wehave asolid history providing enterprise solutions for healthcare ### Key Features\\n#### Your choice ofHIPAA Compliant Cloud\\nSoftware can bedeployed toyour preferred hosting environment including Amazon Web Services, Google Cloud Platform, and Microsoft Azure\",\n", + " \"Weconfigure your dedicated instance sothat itmeets HIPAA-compliant hosting requirements QuickBlox can also host for you inour own HIPAA compliant account #### Fully Encrypted Server Configuration\\nWith QuickBlox, data isencrypted intransit and atrest Weoffer full encryption ofuser databases, files/content, and connections which means ePHI, communication history, and user data issafe and secure #### Customization ofSoftware tosupport HIPAA Technical Safeguards\\nOur back-end platform can becustomized tosupport numerous security features,e.g * access control via unique usernames and passwords toprevent unauthorized access\\n* person orentity authentication tools such astwo-factor authentication\\n* anonymous sessions with automatic logoff procedures\\n#### AFully Managed Service\\nOur Enterprise Plan provides afully managed service with dedicated maintenance and real-time monitoring Weoffer aService Level Agreement (SLA) with uptime guarantee #### Provision ofBusiness Associate Agreement\\nWeprovide our healthcare customers with aBAA Bysigning this agreement wedemonstrate our knowledge ofHIPAA compliance rules and our experience with supporting compliant healthcare communication solutions ## Advanced Features\\nWeoffer anarray ofdata protection tools tosafeguard your instance without your data ever leaving your server\\n### High Availability and Disaster Recovery(HA/DR)\\n* HA/DR keeps your applications running inthe event ofany system issues, soyour users never lose messaging and calling functionalities * AHigh Availability solution replicates your communication infrastructure toensure constant availability This isideal for critical business solutions like healthcare * Our Disaster Recovery plan provides full backup management toensure that sensitive data can befully recovered inthe worst case scenario ofinterrupted orcompromised services ### Software integration for enhanced security standards\\n* Diligent monitoring ofyour cloud environment with Graylog, alog storage and management tool that allows your engineers toeasily manage logs and structured analytical data all inone place * Intrusion detection with OSSEC, ahost-based system that performs log analysis, integrity checking, registry monitoring, rootlet detection, time-based alerting, and active response\",\n", + " \"* Virus scanning software toautomatically scan, tag, and notify you ofinfected files and malware * Web Application Firewall (WAF) tosecurely control web traffic, blocking spam bots from consuming resources, skewing metrics, and causing downtime onyour healthcare communication application ## HIPAA Compliant Video Hosting\\nConnect patients and doctors together with HIPAA compliant audio &&video calling and video conferencing, built onWebRTC and available with the QuickBlox HIPAA Enterprise Plan\\n### Dedicated TURN Server\\nDedicated WebRTC video calling traffic relay server for video calling through firewalls, bypassing NAT, and connecting geographically dispersed users [Learn more](https://quickblox.com/products/voice-and-video-calling/)\\n### Dedicated Conference Server\\nWeoffer HIPAA video conference hosting with adedicated conference server Enjoy high quality conference calls for multiple simultaneous users onaservice server that you control [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Conference Call Recording\\nConference call recording functionality tosave your video conferences Enables you tostore, access, and share video healthcare communications securely onyour dedicated server [Learn more](https://quickblox.com/products/video-conferencing/)\\n### Telehealth Ready Solution: Q‑Consultation\\nWeoffer aHIPAA compliant virtual waiting room with tele-consultation app Fully customizable, packed with features, and works onany device and the web [Learn more](https://quickblox.com/products/q-consultation/)\\n## HIPAA Compliant Hosting Plans\\nQuickBlox provides arange ofplans depending onthe size ofyour organization and budget All our HIPAA plans provide full data encryption and come with aBusiness Associates Agreement ### HIPAA (Shared) Cloud Plan (starts at**$399/mo**)\\nSuitable for smaller organizations for POCs (proof ofconcept) and MVP (minimal viable product) use-cases that require data encryption but have alimited budget * Software ishosted onour QuickBlox AWS multi-tenant sharedserver\\n* Total user limit:**5000**\\n* File size limit:**50MB**\\n* Support byticketing system\\n### HIPAA Enterprise Plan (startsat**$899/mo**)\\nSuitable for production services granting the customer complete control over their user data, customization, technicalsupport,andSLA * Can behosted onQuickBlox’’s own managed cloud account orincustomer’’s own cloud account with preferred cloud service provider including Amazon Web Services, Google Cloud Platform, Microsoft Azure and others * Personal Account Manager, SLA with uptimeguarantee\\n* Optional Add-ons:\\n* - High Availability and Disaster Recovery (HA/DR)solution\\n* - Security enhancements (e.g.Graylog,OSSEC)\\n* - Dedicated Turn server, Conference callserver\\n### HIPAA On-Premises\\nSuitable for organizations who desire optimal security, require communications toremain within their own private network, and who have their own DevOps and on-premises data center\",\n", + " \"* Hosted onyour own dedicated servers inyour privately owned datacenter\\n* Granting you total control ofyour ePHI and chathistory\\n[Find out more](https://quickblox.com/enterprise/#get-enterprise)\\n## HIPAA Compliant Cloud Hosting\\nThere are avariety ofcloud hosting providers that offer HIPAA compliant environments QuickBlox can deploy software with anyone ofthese and more:\\nHosting with one ofthese cloud providersdoes notguarantee HIPAA compliance Youalso need toensure your application and software meet the safeguards outlined inthe HIPAA securityrule **Work with apartner like QuickBlox tomake sure you’’re covered.**\\n## Explore our other hosting options\\n[Cloud hosting](https://quickblox.com/hosting/cloud/)\\n[On-Premise hosting](https://quickblox.com/hosting/on-premise/)\\n## Frequently Asked Questions\\n### What isHIPAA compliant hosting Any digital healthcare application that contains ePHI needs tobehosted onacloud infrastructure that complies with the technical, administrative, and physical safeguards outlined byHIPAA These safeguards are designed toprotect the integrity ofthe data and tocontrol who has access tothis data HIPAA compliant hosting requirements include encrypted data intransit and storage, access controls, person orentity authentication tools, and more ### Who needs HIPAA compliance Healthcare providers\\u2014 referred toasthe \\u00abcovered entity\\u00bb\\u2014 must comply with HIPAA, but equally their \\u00abbusiness associates\\u00bb who come into contact with patient data when providing services toahealthcare organization are also covered bythis legislation This means any cloud service provider, CPaaS provider, ormedical app developer who are inany way involved instoring, processes, ortransmitting PHI, are considered a \\u2019business associate\\u2019 and must comply with HIPAA ### What isPHI and ePHI Any medical data that contains individually identifiable health information about apatient (e.g name, address, date ofbirth, social security number) isreferred toasprotected health information (PHI), orwhen stored electronically ePHI There isanabundance ofmedical records including bills from doctors, emails, MRI scans, blood test results etc that fall under the rubric ofPHI/ePHI ### How much does HIPAA compliant hosting cost\",\n", + " \"The need for additional security enhancements such asdatabase encryption and software customization for extra monitoring &&intrusion detection means ahigher cost for HIPAA compliant hosting Encrypted HIPAA hosting onour shared cloud starts at$399/mo ### Which cloud providers are HIPAA compliant There are several cloud hosting providers who provide aninfrastructure that can beHIPAA compliant (e.g AWS, GCP, Azure), however, you are still responsible for configuring your software tosatisfy the HIPAA security rule Check tosee ifthe cloud provider will sign aBAA agreement and choose aservice provider like QuickBlox who can ensure aHIPAA compliant solution ### What are the penalties for non-compliance Penalties depend onthe severity ofthe breach, whether itwas intentional ornot They range from $100 to$50,000 per breach ## Additional Resources\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [HIPAA Compliant Cloud Hosting: What does it mean?](https://quickblox.com/blog/hipaa-compliant-cloud-hosting-what-does-it-mean/)\\nAnna S 31 Dec 2021\\n[Azure](https://quickblox.com/blog/hosting/azure/)[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Microsoft Azure HIPAA Compliant?](https://quickblox.com/blog/is-microsoft-azure-hipaa-compliant/)\\nAnna S 12 Nov 2021\\n[Cloud Hosting](https://quickblox.com/blog/hosting/cloud-hosting/)[Google Cloud Platform (GCP)](https://quickblox.com/blog/hosting/google-cloud-platform-gcp/)[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)### [Is Google Cloud Platform HIPAA Compliant?](https://quickblox.com/blog/is-google-cloud-platform-hipaa-compliant/)\\nAnna S 1 Oct 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd\",\n", + " \"trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"costs\": {\n", + " \"ai_cost\": 0,\n", + " \"bytes_transferred_cost\": 0,\n", + " \"compute_cost\": 0.0001,\n", + " \"file_cost\": 0.0002,\n", + " \"total_cost\": 0.0004,\n", + " \"transform_cost\": 0.0001\n", + " },\n", + " \"error\": null,\n", + " \"status\": 200,\n", + " \"url\": \"https://quickblox.com/hosting/hipaa-compliant-hosting/\"\n", + " },\n", + " {\n", + " \"content\": [\n", + " \"[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\\n* [Blog](https://quickblox.com/blog/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Support](https://help.quickblox.com/)\\n* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n[](https://quickblox.com)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n* Products\\n* ### Communication Tools\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\nReliable & robust software tools to add communication features to any app or website\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\nBuild your own messenger app with pre-built UI components\\n* ### [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\nIn-app virtual assistants trained on your own data\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\nStunning AI features that can be added to any chat app\\n* ### White Label Solutions\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\nwhite label video calling with virtual meeting rooms and in-app chat\\n* [Q-Municate](https://quickblox.com/products/messenger-app/)\\nCustomizable messaging app for secure chat\\n* Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n* Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n* Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* [UI Kits]()\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n* [Pricing](https://quickblox.com/pricing/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\\n# Video Conferencing\\n## Real\\u2011time video group interactions via video toenhance collaboration and productivity\\nEngage your customers, employees, and business partners with secure and easy\\u2011to\\u2011use QuickBlox video conferencing Our high\\u2011quality low latency conferencing solution ensures people stay connected even when they are apart Want tosee ademo [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Explore other communication features\\n### [Chat](https://quickblox.com/products/chat/)\\n### [Voice and Video calling](https://quickblox.com/products/voice-and-video-calling/)\\n### [Push notifications](https://quickblox.com/products/push-notifications/)\\n## Make on\\u2011screen interactions part ofyour business communication toimprove efficiency and deepen user engagement\\n### High quality multi\\u2011party calls\\nHosting avideo conference has never been easier with QuickBlox HDvideo conferencing software Groups ofparticipants can interact, share, and collaborate effortlessly inreal\\u2011time Use our video conferencing API toembed this feature into your e\\u2011learning app, internal company messaging app, and numerous other types ofmobile apps where there isaneed for groups tocommunicate in avisually engaging way ### Recordable\\nWith voice and video conferencing technology, it’’s possible torecord and archive your entire session Ifyou work inhealthcare orfinance orsome other industry where there isaneed tokeep apermanent record ofcommunications, your recorded session can besafely stored inthe cloud, oron\\u2011premise inyour own virtual machines and easily accessed when needed ### Feature\\u2011rich and versatile\\nOur video conferencing SDKs and chat SDKs support screen\\u2011sharing, file exchange, switching between video inputs, group chat, and video recording Furthermore, our video conferencing system can beintegrated into pre\\u2011existing software such asane\\u2011learning platform orElectronic Healthcare Record (EHR) system with minimum fuss ### Cross-Platform\\nOur solution isdesigned towork cross\\u2011platform, sothat you can enjoy online meetings with others whether you are using adesktop app, tablet, ormobile phone For ease and convenience real\\u2011time video chat ispossible on\\u2011the\\u2011go, wherever you are ### Video streaming\\nNeed topresent anacademic lecture, company presentation, orgaming event toalarge audience Noproblem Our conference calling technology supports video streaming for potentially 1000s ofviewers, depending onyour server configuration\",\n", + " \"### WebRTC technology\\nYour communication isfully protected and secure when you use our video conference API built towork with the best technology WebRTC has inbuilt security which means that your private conversations remain just that ### PIPEDA and HIPAA compliant\\nWewill configure your instance inyour own secure cloud environment toensure PIPEDA and HIPAA compliance Wefollow encryption protocols, provide aBusiness Associate Agreement, and work with your info\\u2011security team toensure regulatory compliance ### GDPR compliant\\nBecause wedon’’t store any ofyour customer’’s data, itremains safely inyour control Furthermore, weprovide you with the tools toprotect, store, and remove this data toensure that your app isfully GDPR compliant Want tolearn more [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## ### ****\\n****\\n### ****\\n****\\n### ****\\n****\\n### ****\\n****\\n### ****\\n## Key features\\n* **Group calls:**Get agroup ofparticipants together in avirtual meeting sothat they can collaborate together regardless ofwhere they each are * **Call invitations:**Create and send links for users toconveniently join calls asand when they need * **Multiple video input:**Connect toexternal cameras\\n(e.g security camera, endoscope) and switch between camera input onacall * **High Security:**Enjoy private and protected real time communication with avideo conferencing tool built onhighly secure WebRTC * **Screen‑sharing:**Present inreal‑‑time bysharing your screen with others * **Mute/unmute audio**and**turn on/off video:**Calibrate your engagement byturning onand off your video camera and microphone asrequired * **Video recording:**Record and save the content ofyour conference toensure valuable communication isnever lost\",\n", + " \"* **Advanced features:**Integrate additional features and communication tools into your video conferencing platform such asfile sharing orreal‑‑time messaging for atruly versatile user experience Have more questions [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Video Conferencing vsPeer‑‑to‑‑Peer Calling\\n* * **Video Conferencing**\\n* **Peer‑to‑Peer (P2P)**\\n* **What is it?**\\n* Video conferencing isbuilt ontop ofWebRTC SFU technology All communication goes via acentralized conference media server * P2P WebRTC involves direct exchange ofmedia and data between peers without the presence ofacentralized server * **Main differences toconsider**\\n* * Possible tohave alarger number ofcallers atone time\\n* Advanced features including server‑side recording\\n* Involves higher costs\\n* * Lower cost ofoperation because you don’’t end uppaying for your user’’s bandwidth\\n* Cheaper toscale asthere is noneed topay for extra servers\\n* Supports upto4users atatime\\n* **Pricing and Set‑up**\\n* Available asanadd‑‑on Additional charges may apply\\n* * Available onour shared cloud and Enterprise plan\\n* Additional cost ifyou require your own TURN server toinitiate call\\nHave more questions [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\\n## Voice and Video Conferencing SDKs and API\\nQuickBlox software iscompatible with multiple devices and platforms including iOS, Android, and the web (Javascript) Wealso provide avideo conferencing Flutter SDK Check out our code samples and documentation toget started now [Link to code samples](https://docs.quickblox.com/docs/code-samples)\\n[Link to documentation](https://docs.quickblox.com/)\\n## []()\\n## FAQ: Video Conferencing\\n### What isavideo conferencing API AnAPI (application programming interface) isanintermediary set ofcode that enables different sorts ofsoftware tocommunicate with each other toexchange information Video conferencing API facilitates the necessary transmission ofdata between anapplication and communication backend that make video conferencing possible ### How doI integrate video conferencing into mywebsite Weprovide richdocumentationand guides toassist your implementation ofour video conferencing functionality into your application\",\n", + " \"Furthermore, weprovide all our enterprise customers with several hours ofintegration support each month, depending onthe size ofyour plan Speak toone ofourenterprise consultantsnow tofind out more ### How much does itcost tohost avideo conference Our video conferencing solution comes asanadd ontoyour QuickBlox plan for which you pay amonthly subscription There isnoset limit tohow many minutes orhours you can host each month but your overall capacity ofthe number ofvideo conferencing rooms and users will depend onyour plan Please speak toone ofourenterprise consultantstofind out more ### Does QuickBlox support video recording Yes, wesupport video recording This functionality isprovided asanadd-on Toget access tovideo recording and the associated documentation,please contactus ### Isyour video conferencing solution HIPAA compliant QuickBlox is experienced working with healthcare organizations and understands the regulatory requirements around HIPAA Please check our blog,HIPAA Compliant Video Conferencing Our video conferencing solution is built on WebRTC which has in-built encryption Furthermore, we offer a variety ofHIPAA compliant hostingoptions so that you can store your customer\\u2019s data wherever you need including your own private cloud and on-premises\",\n", + " \"### How long does ittake tobuild avideo conferencing App Our easy-to-integrate video conferencing SDKs and API and comprehensive documentation and code samples will save you months ofdevelopment time This ofcourse depends onthe skill set ofyour developers Ifyou are looking for aready-made conferencing solution immediately check-out our ready white-labelQ-Consultation app ## Additional resources\\n[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [Why Businesses benefit from Video Conferencing](https://quickblox.com/blog/why-businesses-benefit-from-video-conferencing/)\\nAnna S 17 Sep 2021\\n[Education](https://quickblox.com/blog/business/education/)[Video Calling](https://quickblox.com/blog/features/video-calling/)[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [Why remote work requires Video Communication](https://quickblox.com/blog/why-is-video-communication-important-for-your-business-today/)\\nAnton Dyachenko\\n24 Aug 2021\\n[Healthcare](https://quickblox.com/blog/business/healthcare/)[HIPAA Compliance](https://quickblox.com/blog/hosting/hipaa-compliance/)[Video Conferencing](https://quickblox.com/blog/features/video-conferencing/)### [HIPAA Compliant Video Conferencing](https://quickblox.com/blog/hipaa-compliant-video-conferencing/)\\nAnna S 3 Sep 2021\\n## Ready toget started [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\\n#### Products\\n* [QuickBlox AI](https://quickblox.com/products/ai/)\\n* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\\n* [AI Extensions](https://quickblox.com/products/ai/extensions/)\\n* [SDKs and APIs](https://quickblox.com/sdk/)\\n* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\\n* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\\n* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\\n* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\\n* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\\n* [Chat API](https://quickblox.com/sdk/chat-api/)\\n* [Chat UI Kits](https://quickblox.com/ui-kit/)\\n* [Q-Consultation](https://quickblox.com/products/q-consultation/)\\n* [Q-municate](https://quickblox.com/products/messenger-app/)\\n#### Solutions\\n* [Industries](https://quickblox.com/solutions/)\\n* [Healthcare](https://quickblox.com/solutions/healthcare/)\\n* [Finance](https://quickblox.com/solutions/finance/)\\n* [Marketplace](https://quickblox.com/solutions/marketplace/)\\n* [Education](https://quickblox.com/solutions/education-coaching/)\\n* [Social Network](https://quickblox.com/solutions/social-network/)\\n* [Communication Tools](https://quickblox.com/products/)\\n* [Chat](https://quickblox.com/products/chat/)\\n* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\\n* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\\n* [Push Notifications](https://quickblox.com/products/push-notifications/)\\n#### Enterprise\\n* [Features](https://quickblox.com/enterprise/)\\n* [Custom Development](https://quickblox.com/professional-services/)\\n* [Hosting](https://quickblox.com/hosting/)\\n* [Cloud](https://quickblox.com/hosting/cloud/)\\n* [On-Premises](https://quickblox.com/hosting/on-premise/)\\n* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\\n#### Developers\\n* [Documentation](https://docs.quickblox.com/)\\n* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\\n* [Android](https://docs.quickblox.com/docs/android-quick-start)\\n* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\\n* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\\n* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\\n* [Code Samples](https://docs.quickblox.com/docs/code-samples)\\n* UI Kits\\n* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\\n* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\\n* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\\n* [Platform Status](https://status.quickblox.com/)\\n* [Support](https://help.quickblox.com/)\\n* [How-to Tutorials](https://quickblox.com/blog/how-to/)\\n* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\\n* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\\n#### [Pricing](https://quickblox.com/pricing/)\\n#### Resources\\n* [Blog](https://quickblox.com/blog/)\\n* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\\n#### [Company](https://quickblox.com/about-us/)\\n* [About Us](https://quickblox.com/about-us/)\\n* [Contacts](https://quickblox.com/contacts/)\\n* [News](https://quickblox.com/news/)\\n[](https://quickblox.com)\\n[](https://quickblox.com/)\\nWemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\\n* [Terms of Service](https://quickblox.com/terms-of-service/)\\n* [Privacy Policy](https://quickblox.com/privacy-policy/)\\n* [Cookie Policy](https://quickblox.com/cookie-policy/)\\n* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\\nThis website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\\n[](#to-top)\\n## Subscribe for news\\nGet the latest posts and read anywhere Don’’t forget tovisit our social networks:\\n* [](https://twitter.com/QuickBlox)\\n* [](https://www.facebook.com/quickblox/)\\n* [](https://www.linkedin.com/company/quickblox/)\\n* [](https://medium.com/quickblox-engineering)\\n* [](https://github.com/QuickBlox)\\n* [](https://www.instagram.com/quickblox_official_/)\"\n", + " ],\n", + " \"costs\": {\n", + " \"ai_cost\": 0,\n", + " \"bytes_transferred_cost\": 0,\n", + " \"compute_cost\": 0.0001,\n", + " \"file_cost\": 0.0002,\n", + " \"total_cost\": 0.0004,\n", + " \"transform_cost\": 0.0001\n", + " },\n", + " \"error\": null,\n", + " \"status\": 200,\n", + " \"url\": \"https://quickblox.com/products/video-conferencing/\"\n", + " }\n", + " ]\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Index: 138 Type: init\n", + "output: {\n", + " \"pages_limit\": 5,\n", + " \"url\": \"https://quickblox.com/pricing/\"\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n" + ] + } + ], + "source": [ + "import json\n", + "execution_transitions = client.executions.transitions.list(\n", + " execution_id=execution_pricing.id, limit=2000).items\n", + "\n", + "for index, transition in enumerate(execution_transitions):\n", + " print(\"Index: \", index, \"Type: \", transition.type)\n", + " print(\"output: \", json.dumps(transition.output, indent=2))\n", + " print(\"-\" * 100)" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Crawled pages: \n" + ] + }, + { + "data": { + "text/plain": [ + "['https://quickblox.com/pricing/',\n", + " 'https://quickblox.com/hosting/',\n", + " 'https://quickblox.com/',\n", + " 'https://quickblox.com/hosting/hipaa-compliant-hosting/',\n", + " 'https://quickblox.com/products/video-conferencing/']" + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "crawled_pages = [r['url'] for r in execution_transitions[-2].output['result']]\n", + "\n", + "print(\"Crawled pages: \")\n", + "crawled_pages" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Lisitng the Document Store for the Agent\n", + "\n", + "The document store is where the agent stores the documents it has created. Each document has a `title` , `content`, `id`, `metadata`, `created_at` and the `vector embedding` associated with it. This will be used for the retrieval of the documents when the agent is queried." + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Number of documents in the document store: 59\n" + ] + } + ], + "source": [ + "docs = client.agents.docs.list(agent_id=AGENT_UUID, limit=1000).items\n", + "num_docs = len(docs)\n", + "print(\"Number of documents in the document store: \", num_docs)" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "# # # UNCOMMENT THIS TO DELETE ALL THE AGENT'S DOCUMENTS\n", + "\n", + "# for doc in client.agents.docs.list(agent_id=AGENT_UUID, limit=1000):\n", + "# client.agents.docs.delete(agent_id=AGENT_UUID, doc_id=doc.id)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Creating a Session\n", + "\n", + "A session is used to interact with the agent. It is used to send messages to the agent and receive responses.\n", + "Situation is the initial message that is sent to the agent to set the context for the conversation. Out here you can add more information about the agent and the task it is performing to help the agent answer better. Additionally, you can also define the `search_threshold` and `search_query_chars` which are used to control the retrieval of the documents from the document store which will be used for the retrieval of the documents when the agent is queried.\n", + "More information about the session can be found [here](https://github.com/julep-ai/julep/blob/dev/docs/julep-concepts.md#session)." + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Agent created with ID: 123e4567-e89b-12d3-a456-426614174000\n", + "Session created with ID: c0733829-d44c-4eb8-9629-0b881d6d5350\n" + ] + } + ], + "source": [ + "situation = \"\"\"\n", + "You are an AI agent designed to assist users with their queries about Quickblox company and products.\n", + "Your goal is to provide clear and detailed responses.\n", + "\n", + "**Guidelines**:\n", + "1. Assume the user is unfamiliar with the company and products.\n", + "2. Thoroughly read and comprehend the user's question.\n", + "3. Use the provided context documents to find relevant information.\n", + "4. Craft a detailed response based on the context and your understanding of the company and products.\n", + "5. Include links to specific Quickblox pages for further information when applicable.\n", + "\n", + "**Response format**:\n", + "- Use simple, clear language.\n", + "- Include relevant website links.\n", + "\n", + "**Important**:\n", + "- For questions related to the business, only use the information that are explicitly given in the documents above.\n", + "- If the user asks about the business, and it's not given in the documents above, respond with an answer that states that you don't know.\n", + "- Use the most recent and relevant data from context documents.\n", + "- Be proactive in helping users find solutions.\n", + "- Ask for clarification if the query is unclear.\n", + "- Inform users if their query is unrelated to Quickblox.\n", + "- Avoid using the following in your response: Based on the provided documents, based on the provided information, based on the documentation... etc.\n", + "\n", + "{%- if docs -%}\n", + "**Relevant documents**:{{NEWLINE}}\n", + " {%- for doc in docs -%}\n", + " {{doc.title}}{{NEWLINE}}\n", + " {%- if doc.content is string -%}\n", + " {{doc.content}}{{NEWLINE}}\n", + " {%- else -%}\n", + " {%- for snippet in doc.content -%}\n", + " {{snippet}}{{NEWLINE}}\n", + " {%- endfor -%}\n", + " {%- endif -%}\n", + " {{\"---\"}}\n", + " {%- endfor -%}\n", + "\n", + "{%- else -%}\n", + "There are no documents available for this query.\n", + "{%- endif -%}\n", + "\n", + "\"\"\"\n", + "\n", + "print(f\"Agent created with ID: {agent.id}\")\n", + "\n", + "# Create a session for interaction\n", + "session = client.sessions.create(\n", + " # session_id=SESSION_UUID,\n", + " situation=situation,\n", + " agent=AGENT_UUID,\n", + " recall_options={\n", + " \"mode\": \"hybrid\",\n", + " \"num_search_messages\": 1,\n", + " # \"max_query_length\": 800,\n", + " \"confidence\": 0.5,\n", + " \"alpha\": 0.5,\n", + " \"limit\": 10,\n", + " # \"mmr_strength\": 0.5,\n", + " },\n", + ")\n", + "\n", + "print(f\"Session created with ID: {session.id}\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Chatting with the Agent\n", + "\n", + "The chat method is used to send messages to the agent and receive responses. The messages are sent as a list of dictionaries with the `role` and `content` keys." + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Let me outline QuickBlox's pricing plans:\n", + "\n", + "1. Basic Plan (Free)\n", + "- 500 total users\n", + "- 1 month data retention\n", + "- 10 MB file size limit\n", + "- Core features including SDKs, 1-1 chat, group chat, online presence, etc.\n", + "- 1 AI extension\n", + "- 1 SmartChat Assistant bot (30-day free trial)\n", + "- Community support\n", + "\n", + "2. Starter Plan ($107/month)\n", + "- 10,000 total users\n", + "- 3 months data retention\n", + "- 25 MB file size limit\n", + "- All core and advanced features\n", + "- 2 AI extensions\n", + "- 1 SmartChat Assistant bot\n", + "- Ticketing system support\n", + "\n", + "3. Growth Plan ($269/month)\n", + "- 25,000 total users\n", + "- 6 months data retention\n", + "- 50 MB file size limit\n", + "- All core and advanced features\n", + "- 3 AI extensions\n", + "- 2 SmartChat Assistant bots\n", + "- Ticketing system support\n", + "\n", + "4. HIPAA Cloud Plan ($430/month)\n", + "- 20,000 total users\n", + "- Custom data retention\n", + "- 50 MB file size limit\n", + "- All core and advanced features\n", + "- 3 AI extensions\n", + "- 2 SmartChat Assistant bots\n", + "- HIPAA compliance\n", + "- Ticketing system support\n", + "\n", + "5. Enterprise Plan (Starting from $647)\n", + "- Custom number of users\n", + "- Custom data retention\n", + "- Custom file size limit\n", + "- All core and advanced features\n", + "- All 5 AI extensions\n", + "- 3 SmartChat Assistant bots (additional bots available)\n", + "- SLA\n", + "- Dedicated account manager\n", + "- Ticketing system support\n", + "\n", + "All plans include:\n", + "- Core chat features\n", + "- Native & cross-platform SDKs\n", + "- Peer-to-peer audio/video calls\n", + "- Conference audio/video calls (available as add-on)\n", + "\n", + "For detailed information about features or enterprise solutions, you can visit: https://quickblox.com/pricing/\n" + ] + } + ], + "source": [ + "user_question = \"What are the pricing plans for Quickblox?\"\n", + "\n", + "response = client.sessions.chat(\n", + " session_id=session.id,\n", + " messages=[\n", + " {\n", + " \"role\": \"user\",\n", + " \"content\": user_question,\n", + " }\n", + " ],\n", + " recall=True,\n", + " model=\"claude-3-5-sonnet-20241022\",\n", + ")\n", + "\n", + "print(response.choices[0].message.content)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Check the matched documents" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Matched docs:\n", + "\n", + "\n", + "Doc 1:\n", + "Title: Quickblox Website\n", + "Snippet content:\n", + "[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\n", + "* [Blog](https://quickblox.com/blog/)\n", + "* [Contacts](https://quickblox.com/contacts/)\n", + "* [Support](https://help.quickblox.com/)\n", + "* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\n", + "[](https://quickblox.com)\n", + "* Products\n", + "* ### Communication Tools\n", + "* [SDKs and APIs](https://quickblox.com/sdk/)\n", + "Reliable & robust software tools to add communication features to any app or website\n", + "* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\n", + "* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\n", + "* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\n", + "* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\n", + "* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\n", + "* [Chat API](https://quickblox.com/sdk/chat-api/)\n", + "* [Chat UI Kits](https://quickblox.com/ui-kit/)\n", + "Build your own messenger app with pre-built UI components\n", + "* ### [QuickBlox AI](https://quickblox.com/products/ai/)\n", + "* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\n", + "In-app virtual assistants trained on your own data\n", + "* [AI Extensions](https://quickblox.com/products/ai/extensions/)\n", + "Stunning AI features that can be added to any chat app\n", + "* ### White Label Solutions\n", + "* [Q-Consultation](https://quickblox.com/products/q-consultation/)\n", + "white label video calling with virtual meeting rooms and in-app chat\n", + "* [Q-municate](https://quickblox.com/products/messenger-app/)\n", + "Customizable messaging app for secure chat\n", + "* Solutions\n", + "* [Industries](https://quickblox.com/solutions/)\n", + "* [Healthcare](https://quickblox.com/solutions/healthcare/)\n", + "* [Finance](https://quickblox.com/solutions/finance/)\n", + "* [Marketplace](https://quickblox.com/solutions/marketplace/)\n", + "* [Education](https://quickblox.com/solutions/education-coaching/)\n", + "* [Social Network](https://quickblox.com/solutions/social-network/)\n", + "* [Communication Tools](https://quickblox.com/products/)\n", + "* [Chat](https://quickblox.com/products/chat/)\n", + "* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\n", + "* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\n", + "* [Push Notifications](https://quickblox.com/products/push-notifications/)\n", + "* Enterprise\n", + "* [Features](https://quickblox.com/enterprise/)\n", + "* [Custom Development](https://quickblox.com/professional-services/)\n", + "* [Hosting](https://quickblox.com/hosting/)\n", + "* [Cloud](https://quickblox.com/hosting/cloud/)\n", + "* [On-Premises](https://quickblox.com/hosting/on-premise/)\n", + "* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\n", + "* Developers\n", + "* [Documentation](https://docs.quickblox.com/)\n", + "* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\n", + "* [Android](https://docs.quickblox.com/docs/android-quick-start)\n", + "* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\n", + "* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\n", + "* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\n", + "* [Code Samples](https://docs.quickblox.com/docs/code-samples)\n", + "* [UI Kits]()\n", + "* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\n", + "* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\n", + "* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\n", + "* [Platform Status](https://status.quickblox.com/)\n", + "* [Support](https://help.quickblox.com/)\n", + "* [How-to Tutorials](https://quickblox.com/blog/how-to/)\n", + "* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\n", + "* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\n", + "* [Pricing](https://quickblox.com/pricing/)\n", + "[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\n", + "[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\n", + "* Products\n", + "* ### Communication Tools\n", + "* [SDKs and APIs](https://quickblox.com/sdk/)\n", + "Reliable & robust software tools to add communication features to any app or website\n", + "* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\n", + "* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\n", + "* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\n", + "* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\n", + "* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\n", + "* [Chat API](https://quickblox.com/sdk/chat-api/)\n", + "* [Chat UI Kits](https://quickblox.com/ui-kit/)\n", + "Build your own messenger app with pre-built UI components\n", + "* ### [QuickBlox AI](https://quickblox.com/products/ai/)\n", + "* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\n", + "In-app virtual assistants trained on your own data\n", + "* [AI Extensions](https://quickblox.com/products/ai/extensions/)\n", + "Stunning AI features that can be added to any chat app\n", + "* ### White Label Solutions\n", + "* [Q-Consultation](https://quickblox.com/products/q-consultation/)\n", + "white label video calling with virtual meeting rooms and in-app chat\n", + "* [Q-Municate](https://quickblox.com/products/messenger-app/)\n", + "Customizable messaging app for secure chat\n", + "* Solutions\n", + "* [Industries](https://quickblox.com/solutions/)\n", + "* [Healthcare](https://quickblox.com/solutions/healthcare/)\n", + "* [Finance](https://quickblox.com/solutions/finance/)\n", + "* [Marketplace](https://quickblox.com/solutions/marketplace/)\n", + "* [Education](https://quickblox.com/solutions/education-coaching/)\n", + "* [Social Network](https://quickblox.com/solutions/social-network/)\n", + "* [Communication Tools](https://quickblox.com/products/)\n", + "* [Chat](https://quickblox.com/products/chat/)\n", + "* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\n", + "* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\n", + "* [Push Notifications](https://quickblox.com/products/push-notifications/)\n", + "* Enterprise\n", + "* [Features](https://quickblox.com/enterprise/)\n", + "* [Custom Development](https://quickblox.com/professional-services/)\n", + "* [Hosting](https://quickblox.com/hosting/)\n", + "* [Cloud](https://quickblox.com/hosting/cloud/)\n", + "* [On-Premises](https://quickblox.com/hosting/on-premise/)\n", + "* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\n", + "* Developers\n", + "* [Documentation](https://docs.quickblox.com/)\n", + "* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\n", + "* [Android](https://docs.quickblox.com/docs/android-quick-start)\n", + "* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\n", + "* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\n", + "* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\n", + "* [Code Samples](https://docs.quickblox.com/docs/code-samples)\n", + "* [UI Kits]()\n", + "* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\n", + "* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\n", + "* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\n", + "* [Platform Status](https://status.quickblox.com/)\n", + "* [Support](https://help.quickblox.com/)\n", + "* [How-to Tutorials](https://quickblox.com/blog/how-to/)\n", + "* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\n", + "* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\n", + "* [Pricing](https://quickblox.com/pricing/)\n", + "* [Contacts](https://quickblox.com/contacts/)\n", + "* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\n", + "### New ProductOpen source video consultation software with OpenAI Integration\n", + "Elevate Your Video Communication with Q‑Consultation\n", + "[Learn more](https://quickblox.com/products/q-consultation/open-source/)\n", + "### New ProductBuild Exceptional Chat Experiences with AI‑Enhanced UI Kits\n", + "[Learn more](https://quickblox.com/ui-kit/)\n", + "[Previous](#carouselMainTopSlider)[Next](#carouselMainTopSlider)\n", + "# Build Your Own Messenger With Real-Time Chat & Video APIs\n", + "Add instant messaging and online video chat to any Android, iOS, or Web application, with ease and flexibility In-app chat and calling APIs and SDKs, trusted globally by developers, startups, and enterprises [Start FREE Trial](https://admin.quickblox.com/signup?_ga=2.166318714.519349007.1585816300-1447393030.1568645682)[Talk to an Expert](https://quickblox.com/enterprise/#get-enterprise)\n", + "## Launch quickly and convert more prospects withreal‑‑timeChat, Audio, and Video communication\n", + "If you own a product, you know exactly how drawn-out and exorbitant it can be to build real-time communication features from scratch Quickblox can help you design, create, and enter the market at a much faster rate with APIs and SDKs that shortcut product and engineering delivery Convert your ideas into a successful product with us and watch the engagement rate rise, while you build a loyal user base [\n", + "#### Chat\n", + "Embedded chat features- you can customize and build a fully-functioning chat product for mobile and web in a matter of hours ](https://quickblox.com/products/chat/)[\n", + "#### Voice and Video calling\n", + "Streamline customer usability with high‑quality peer‑to‑peer voice and video calls Drive more engagement and build meaningful connections ](https://quickblox.com/products/voice-and-video-calling/)[\n", + "#### Video Conferencing\n", + "Create real-time video group interactions to enhance collaboration and productivity Designed to meet your user experience goals and increase conversations ](https://quickblox.com/products/video-conferencing/)[\n", + "#### Push Notifications\n", + "Give your customers/users reasons to keep coming back - send in-app reminders, offers, updates and watch retention rates climb ](https://quickblox.com/products/push-notifications/)\n", + "#### Data Storage\n", + "Protect your data from hackers and unwanted modification attempts using flexible data storage options Choose between dedicated, on-premise, or your own virtual cloud #### Secure File Sharing\n", + "Allow sharing and linking of all types of files (images, audio, video, docs, and other file formats) and enable your users to interact and engage more ## Over30,000 software developers and organizations worldwide are using QuickBlox messagingAPI\n", + "This chunk provides an overview of QuickBlox's product offerings and solutions, highlighting their communication tools, AI-enhanced features, white label solutions, and industry-specific applications. It serves as a comprehensive guide to QuickBlox's SDKs, APIs, and UI Kits for building customizable chat and video applications.\n", + "----------------------------------------------------------------------------------------------------\n", + "Doc 2:\n", + "Title: Quickblox Website\n", + "Snippet content:\n", + "However, our video conferencing solution requires the set-up ofadedicated media server which involves amonthly fee and additional bandwidth costs ### Can Itry out video conferencing onthe Basic Plan Wedonot asadefault offer video conferencing onthe Basic Plan You would need toupgrade toone ofour subscription plans Pleasecontact salesifyou would like totrial avideo conferencing demo account ### What happens ifI exceed the limits ofthe Basic (free) Plan Ifyou exceed the limits ofthe Basic Plan, the account owner will receive anotification requesting them toupgrade their plan, otherwise services will potentially besuspended Please see our Terms ofService ## Not sure which plan suits your business needs Talk toour experts- wewill review your business use case and help you get started with the best plan [Contact sales](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\n", + "#### Products\n", + "* [QuickBlox AI](https://quickblox.com/products/ai/)\n", + "* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\n", + "* [AI Extensions](https://quickblox.com/products/ai/extensions/)\n", + "* [SDKs and APIs](https://quickblox.com/sdk/)\n", + "* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\n", + "* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\n", + "* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\n", + "* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\n", + "* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\n", + "* [Chat API](https://quickblox.com/sdk/chat-api/)\n", + "* [Chat UI Kits](https://quickblox.com/ui-kit/)\n", + "* [Q-Consultation](https://quickblox.com/products/q-consultation/)\n", + "* [Q-municate](https://quickblox.com/products/messenger-app/)\n", + "#### Solutions\n", + "* [Industries](https://quickblox.com/solutions/)\n", + "* [Healthcare](https://quickblox.com/solutions/healthcare/)\n", + "* [Finance](https://quickblox.com/solutions/finance/)\n", + "* [Marketplace](https://quickblox.com/solutions/marketplace/)\n", + "* [Education](https://quickblox.com/solutions/education-coaching/)\n", + "* [Social Network](https://quickblox.com/solutions/social-network/)\n", + "* [Communication Tools](https://quickblox.com/products/)\n", + "* [Chat](https://quickblox.com/products/chat/)\n", + "* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\n", + "* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\n", + "* [Push Notifications](https://quickblox.com/products/push-notifications/)\n", + "#### Enterprise\n", + "* [Features](https://quickblox.com/enterprise/)\n", + "* [Custom Development](https://quickblox.com/professional-services/)\n", + "* [Hosting](https://quickblox.com/hosting/)\n", + "* [Cloud](https://quickblox.com/hosting/cloud/)\n", + "* [On-Premises](https://quickblox.com/hosting/on-premise/)\n", + "* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\n", + "#### Developers\n", + "* [Documentation](https://docs.quickblox.com/)\n", + "* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\n", + "* [Android](https://docs.quickblox.com/docs/android-quick-start)\n", + "* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\n", + "* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\n", + "* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\n", + "* [Code Samples](https://docs.quickblox.com/docs/code-samples)\n", + "* UI Kits\n", + "* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\n", + "* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\n", + "* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\n", + "* [Platform Status](https://status.quickblox.com/)\n", + "* [Support](https://help.quickblox.com/)\n", + "* [How-to Tutorials](https://quickblox.com/blog/how-to/)\n", + "* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\n", + "* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\n", + "#### [Pricing](https://quickblox.com/pricing/)\n", + "#### Resources\n", + "* [Blog](https://quickblox.com/blog/)\n", + "* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\n", + "#### [Company](https://quickblox.com/about-us/)\n", + "* [About Us](https://quickblox.com/about-us/)\n", + "* [Contacts](https://quickblox.com/contacts/)\n", + "* [News](https://quickblox.com/news/)\n", + "[](https://quickblox.com)\n", + "[](https://quickblox.com/)\n", + "Wemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\n", + "* [Terms of Service](https://quickblox.com/terms-of-service/)\n", + "* [Privacy Policy](https://quickblox.com/privacy-policy/)\n", + "* [Cookie Policy](https://quickblox.com/cookie-policy/)\n", + "* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\n", + "This website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements\n", + "The chunk discusses QuickBlox's video conferencing solution, highlighting the need for a dedicated media server that incurs monthly fees and additional bandwidth costs. It clarifies that video conferencing is not available on the Basic Plan by default, requiring users to upgrade to a subscription plan. Additionally, the chunk addresses actions to take if Basic Plan limits are exceeded, offers guidance on choosing the right plan, and provides links to various QuickBlox products, solutions, enterprise services, developer resources, and company information.\n", + "----------------------------------------------------------------------------------------------------\n", + "Doc 3:\n", + "Title: Quickblox Website\n", + "Snippet content:\n", + "$50/mo\n", + "* 500 knowledge base items\n", + "* $99/m per additional 1,000 knowledge base items\n", + "[Start FREE Trial](https://admin.quickblox.com/signup_assistant)\n", + "### HIPAA SmartChat Assistant\n", + "Guaranteed security and privacy for healthcare apps.Offered with a BAA\n", + "$149/mo\n", + "* 1000 knowledge base items\n", + "* $99/m per additional 1,000 knowledge base items\n", + "[Sign up](https://admin.quickblox.com/signup_assistant_hipaa)\n", + "## What’s available for Enterprise Customers * Provisioning and configuration ofserver resources incustomer’’s own hosting environment orpreferred cloud provider—— AWS/GCP/AliCloud/Azure/Oracle, Digital Ocean and others\n", + "* Installation ofthe software and needed components\n", + "* Migration ofall data and users to adedicated and scalable environment * Personal web admin panel\n", + "* Developer integration support toget you started\n", + "* Enterprise support with direct support contacts &&Ticketing Portal\n", + "* Personal Support manager\n", + "* API customization\n", + "* Data security and encryption\n", + "* Secure data retention, storage, and back-ups\n", + "* Reporting\n", + "* Service Level Agreement (SLA) &&uptime guarantee\n", + "* Wedon’’t charge per minute Commercials all packaged upineasy, transparent monthly licence fee(s) ## Frequently Asked Questions\n", + "### What ismeant by«total users» Bytotal users wemean the total number ofusers registered inyour app database whether they are active ornot ### What is data retention Wehave limits ondata retention for each ofour Cloud Plans Our data retention policy means your historical data may nolonger beavailable ifthe data isolder than the plan retention limits You can increase these limits bymoving toapaid plan ### Isthere alimit tothe number ofallowed concurrent connections Concurrent connections— the total number ofuser devices connected toanapplication atthe same time— are subject tofair use onall our Cloud plans (Basic, Starter, Growth, HIPAA Cloud) Enterprise plans don’t limit connections but there are plan and performance limits that will impact onthe total number ofconnections supported ### How much doyou charge per minute for video calls There isnoper minute charge for peer-to-peer video calls orvideo conference calls\n", + "The chunk provides pricing information and features for QuickBlox's SmartChat Assistant and HIPAA SmartChat Assistant, emphasizing guaranteed security and privacy for healthcare apps. It also outlines services available to enterprise customers, including server provisioning, software installation, data migration, and comprehensive support. Additionally, it addresses FAQs related to total users, data retention, concurrent connections, and video call charges, clarifying the terms and conditions of QuickBlox's offerings.\n", + "----------------------------------------------------------------------------------------------------\n", + "Doc 4:\n", + "Title: Quickblox Website\n", + "Snippet content:\n", + "### Is white label video conferencing suitable for remote work White label video conferencing is well-suited for remote work Q-Consultation enables remote teams to conduct seamless virtual meetings, share screens and documents, and maintain secure communication, fostering collaboration regardless of physical location ### Can I customize the white label video conferencing solution to match my brand Q-Consultation offers extensive customization options to align the platform with your brand and your specific needs You can alter the name and logo, the UI colors and fonts, and customize the text throughout, ensuring that the platform carries your brand identity QuickBlox allows you to use a custom domain, reinforcing your brand’s presence by incorporating it into the platform’s web address #### Products\n", + "* [QuickBlox AI](https://quickblox.com/products/ai/)\n", + "* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\n", + "* [AI Extensions](https://quickblox.com/products/ai/extensions/)\n", + "* [SDKs and APIs](https://quickblox.com/sdk/)\n", + "* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\n", + "* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\n", + "* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\n", + "* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\n", + "* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\n", + "* [Chat API](https://quickblox.com/sdk/chat-api/)\n", + "* [Chat UI Kits](https://quickblox.com/ui-kit/)\n", + "* [Q-Consultation](https://quickblox.com/products/q-consultation/)\n", + "* [Q-municate](https://quickblox.com/products/messenger-app/)\n", + "#### Solutions\n", + "* [Industries](https://quickblox.com/solutions/)\n", + "* [Healthcare](https://quickblox.com/solutions/healthcare/)\n", + "* [Finance](https://quickblox.com/solutions/finance/)\n", + "* [Marketplace](https://quickblox.com/solutions/marketplace/)\n", + "* [Education](https://quickblox.com/solutions/education-coaching/)\n", + "* [Social Network](https://quickblox.com/solutions/social-network/)\n", + "* [Communication Tools](https://quickblox.com/products/)\n", + "* [Chat](https://quickblox.com/products/chat/)\n", + "* [Voice and Video Calling](https://quickblox.com/products/voice-and-video-calling/)\n", + "* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\n", + "* [Push Notifications](https://quickblox.com/products/push-notifications/)\n", + "#### Enterprise\n", + "* [Features](https://quickblox.com/enterprise/)\n", + "* [Custom Development](https://quickblox.com/professional-services/)\n", + "* [Hosting](https://quickblox.com/hosting/)\n", + "* [Cloud](https://quickblox.com/hosting/cloud/)\n", + "* [On-Premises](https://quickblox.com/hosting/on-premise/)\n", + "* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\n", + "#### Developers\n", + "* [Documentation](https://docs.quickblox.com/)\n", + "* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\n", + "* [Android](https://docs.quickblox.com/docs/android-quick-start)\n", + "* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\n", + "* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\n", + "* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\n", + "* [Code Samples](https://docs.quickblox.com/docs/code-samples)\n", + "* UI Kits\n", + "* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\n", + "* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\n", + "* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\n", + "* [Platform Status](https://status.quickblox.com/)\n", + "* [Support](https://help.quickblox.com/)\n", + "* [How-to Tutorials](https://quickblox.com/blog/how-to/)\n", + "* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\n", + "* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\n", + "#### [Pricing](https://quickblox.com/pricing/)\n", + "#### Resources\n", + "* [Blog](https://quickblox.com/blog/)\n", + "* [Case Studies](https://quickblox.com/blog/quickblox/customer-use-case/)\n", + "#### [Company](https://quickblox.com/about-us/)\n", + "* [About Us](https://quickblox.com/about-us/)\n", + "* [Contacts](https://quickblox.com/contacts/)\n", + "* [News](https://quickblox.com/news/)\n", + "[](https://quickblox.com)\n", + "[](https://quickblox.com/)\n", + "Wemake iteasy toadd communication toyour app ©©2024 Injoit Ltd trading asQuickBlox All rights reserved * [Terms of Use](https://quickblox.com/terms-of-use/)\n", + "* [Terms of Service](https://quickblox.com/terms-of-service/)\n", + "* [Privacy Policy](https://quickblox.com/privacy-policy/)\n", + "* [Cookie Policy](https://quickblox.com/cookie-policy/)\n", + "* [](https://twitter.com/QuickBlox)[](https://www.facebook.com/quickblox/)[](https://www.linkedin.com/company/quickblox/)[](https://www.instagram.com/quickblox_official_/)[](https://medium.com/quickblox-engineering)[](https://github.com/QuickBlox)[](http://bit.ly/quickblox-dev-community)\n", + "This website uses cookies and other tracking technologies tocollect information about how you interact with our website, allowus toremember you and assist with navigation, customize content and advertisements For more details see our[Cookies Policy](https://quickblox.com/cookie-policy/) Continue\n", + "[](#to-top)\n", + "## Subscribe for news\n", + "Get the latest posts and read anywhere Don’’t forget tovisit our social networks:\n", + "* [](https://twitter.com/QuickBlox)\n", + "* [](https://www.facebook.com/quickblox/)\n", + "* [](https://www.linkedin.com/company/quickblox/)\n", + "* [](https://medium.com/quickblox-engineering)\n", + "* [](https://github.com/QuickBlox)\n", + "* [](https://www.instagram.com/quickblox_official_/)\n", + "The chunk discusses the suitability of QuickBlox's white-label video conferencing solution, Q-Consultation, for remote work, emphasizing its customization options to align with a brand's identity. It highlights the solution's capabilities for seamless virtual meetings, screen sharing, secure communication, and mentions various products, solutions, enterprise features, and resources offered by QuickBlox, including AI integrations, SDKs, APIs, and support documentation.\n", + "----------------------------------------------------------------------------------------------------\n", + "Doc 5:\n", + "Title: Quickblox Website\n", + "Snippet content:\n", + "#### Docs:\n", + "Integrating QuickBlox across multiple platforms #### Support:\n", + "Quickblox support is a click away ## Trust QuickBlox for secure communication\n", + "### SOC2\n", + "### HIPAA\n", + "### GDPR\n", + "## Do you need additional security, compliance, and support for the long-term We have a more scalable and flexible solution for you, customized to your unique business/app requirements [Get Started for FREE](https://admin.quickblox.com/signup)[Learn More](https://quickblox.com/enterprise/#get-enterprise)\n", + "## Insanely powerful in-app chat solutions- for every industry\n", + "* #### Healthcare\n", + "Provide better care for your patients and teams using feature-rich HIPAA‑compliant chat solutions Integrate powerful telemedicine communication tools into your existing platform * #### Finance & Banking\n", + "Secure communication solutions for the financial and banking industry to support your clients Easily integrated with your banking APIs with full customization available * #### Marketplaces & E-commerce\n", + "Integrate chat and calling into your e‑commerce marketplace platform to connect with customers using chat, audio, and video calling features * #### Social Networking\n", + "Give your users the option to connect one-on-one or with a group, usinghigh quality voice, video, and chatbox app features - build a well connected community * #### Education & Coaching\n", + "Add communication functions to connect teachers with students, coaches with players, and trainers with clients Appropriate for any remote learning application ## Trusted by Developers & Product Owners\n", + "Communication with the QuickBlox team has been great The QuickBlox team is a vital partner and I appreciate their support, their platform, and its capabilities ### Justin Harr,Founder, Eden\n", + "What I like best about QuickBlox is their reliability and performance - I've rarely experienced any issues with their solutions, whether I'm using their video or voice SDK, or their chat API\n", + "The chunk provides an overview of QuickBlox's secure communication solutions, emphasizing integration across multiple platforms and industries such as healthcare, finance, e-commerce, social networking, and education. It highlights the company's compliance with SOC2, HIPAA, and GDPR standards, and mentions the scalability and customization of its in-app chat solutions. Additionally, it includes testimonials from developers and product owners praising QuickBlox's reliability and performance.\n", + "----------------------------------------------------------------------------------------------------\n", + "Doc 6:\n", + "Title: Quickblox Website\n", + "Snippet content:\n", + "[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\n", + "* [Blog](https://quickblox.com/blog/)\n", + "* [Contacts](https://quickblox.com/contacts/)\n", + "* [Support](https://help.quickblox.com/)\n", + "* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\n", + "[](https://quickblox.com)\n", + "* Products\n", + "* ### Communication Tools\n", + "* [SDKs and APIs](https://quickblox.com/sdk/)\n", + "Reliable & robust software tools to add communication features to any app or website\n", + "* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\n", + "* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\n", + "* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\n", + "* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\n", + "* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\n", + "* [Chat API](https://quickblox.com/sdk/chat-api/)\n", + "* [Chat UI Kits](https://quickblox.com/ui-kit/)\n", + "Build your own messenger app with pre-built UI components\n", + "* ### [QuickBlox AI](https://quickblox.com/products/ai/)\n", + "* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\n", + "In-app virtual assistants trained on your own data\n", + "* [AI Extensions](https://quickblox.com/products/ai/extensions/)\n", + "Stunning AI features that can be added to any chat app\n", + "* ### White Label Solutions\n", + "* [Q-Consultation](https://quickblox.com/products/q-consultation/)\n", + "white label video calling with virtual meeting rooms and in-app chat\n", + "* [Q-municate](https://quickblox.com/products/messenger-app/)\n", + "Customizable messaging app for secure chat\n", + "* Solutions\n", + "* [Industries](https://quickblox.com/solutions/)\n", + "* [Healthcare](https://quickblox.com/solutions/healthcare/)\n", + "* [Finance](https://quickblox.com/solutions/finance/)\n", + "* [Marketplace](https://quickblox.com/solutions/marketplace/)\n", + "* [Education](https://quickblox.com/solutions/education-coaching/)\n", + "* [Social Network](https://quickblox.com/solutions/social-network/)\n", + "* [Communication Tools](https://quickblox.com/products/)\n", + "* [Chat](https://quickblox.com/products/chat/)\n", + "* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\n", + "* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\n", + "* [Push Notifications](https://quickblox.com/products/push-notifications/)\n", + "* Enterprise\n", + "* [Features](https://quickblox.com/enterprise/)\n", + "* [Custom Development](https://quickblox.com/professional-services/)\n", + "* [Hosting](https://quickblox.com/hosting/)\n", + "* [Cloud](https://quickblox.com/hosting/cloud/)\n", + "* [On-Premises](https://quickblox.com/hosting/on-premise/)\n", + "* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\n", + "* Developers\n", + "* [Documentation](https://docs.quickblox.com/)\n", + "* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\n", + "* [Android](https://docs.quickblox.com/docs/android-quick-start)\n", + "* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\n", + "* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\n", + "* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\n", + "* [Code Samples](https://docs.quickblox.com/docs/code-samples)\n", + "* [UI Kits]()\n", + "* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\n", + "* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\n", + "* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\n", + "* [Platform Status](https://status.quickblox.com/)\n", + "* [Support](https://help.quickblox.com/)\n", + "* [How-to Tutorials](https://quickblox.com/blog/how-to/)\n", + "* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\n", + "* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\n", + "* [Pricing](https://quickblox.com/pricing/)\n", + "[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\n", + "[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\n", + "* Products\n", + "* ### Communication Tools\n", + "* [SDKs and APIs](https://quickblox.com/sdk/)\n", + "Reliable & robust software tools to add communication features to any app or website\n", + "* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\n", + "* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\n", + "* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\n", + "* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\n", + "* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\n", + "* [Chat API](https://quickblox.com/sdk/chat-api/)\n", + "* [Chat UI Kits](https://quickblox.com/ui-kit/)\n", + "Build your own messenger app with pre-built UI components\n", + "* ### [QuickBlox AI](https://quickblox.com/products/ai/)\n", + "* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\n", + "In-app virtual assistants trained on your own data\n", + "* [AI Extensions](https://quickblox.com/products/ai/extensions/)\n", + "Stunning AI features that can be added to any chat app\n", + "* ### White Label Solutions\n", + "* [Q-Consultation](https://quickblox.com/products/q-consultation/)\n", + "white label video calling with virtual meeting rooms and in-app chat\n", + "* [Q-Municate](https://quickblox.com/products/messenger-app/)\n", + "Customizable messaging app for secure chat\n", + "* Solutions\n", + "* [Industries](https://quickblox.com/solutions/)\n", + "* [Healthcare](https://quickblox.com/solutions/healthcare/)\n", + "* [Finance](https://quickblox.com/solutions/finance/)\n", + "* [Marketplace](https://quickblox.com/solutions/marketplace/)\n", + "* [Education](https://quickblox.com/solutions/education-coaching/)\n", + "* [Social Network](https://quickblox.com/solutions/social-network/)\n", + "* [Communication Tools](https://quickblox.com/products/)\n", + "* [Chat](https://quickblox.com/products/chat/)\n", + "* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\n", + "* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\n", + "* [Push Notifications](https://quickblox.com/products/push-notifications/)\n", + "* Enterprise\n", + "* [Features](https://quickblox.com/enterprise/)\n", + "* [Custom Development](https://quickblox.com/professional-services/)\n", + "* [Hosting](https://quickblox.com/hosting/)\n", + "* [Cloud](https://quickblox.com/hosting/cloud/)\n", + "* [On-Premises](https://quickblox.com/hosting/on-premise/)\n", + "* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\n", + "* Developers\n", + "* [Documentation](https://docs.quickblox.com/)\n", + "* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\n", + "* [Android](https://docs.quickblox.com/docs/android-quick-start)\n", + "* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\n", + "* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\n", + "* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\n", + "* [Code Samples](https://docs.quickblox.com/docs/code-samples)\n", + "* [UI Kits]()\n", + "* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\n", + "* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\n", + "* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\n", + "* [Platform Status](https://status.quickblox.com/)\n", + "* [Support](https://help.quickblox.com/)\n", + "* [How-to Tutorials](https://quickblox.com/blog/how-to/)\n", + "* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\n", + "* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\n", + "* [Pricing](https://quickblox.com/pricing/)\n", + "* [Contacts](https://quickblox.com/contacts/)\n", + "* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\n", + "# Flexible and Secure Hosting\n", + "QuickBlox offers aflexible range ofcloud and on-premises hosting options Regardless ofwhere the software isdeployed you can relax knowing that all options are GDPR and HIPAA compliant, granting you full data ownership and user privacy ## Chat hosting wherever you need\n", + "Wecan set upavariety ofinstallations depending onyour particular technical and regulatory needs Nomatter what type ofinstallation you choose, QuickBlox ensures the security ofyour enterprise data ### QuickBlox can bedeployed:\n", + "On-premises, onyour own private server/ data center\n", + "Onyour own cloud account set upwith a3rd party hosting provider ofyour choice\n", + "Onthe QuickBlox cloud created and dedicated toyour enterprise only\n", + "## On-Premises\n", + "For those highly regulated industries and organizations like banking, healthcare, and government, on-premises deployment guarantees you 100% security ofdata and peace ofmind Asour software isdelivered straight toyour own servers orcompany-owned cloud, removing any need for 3rd parties, you can besure that only you and your customers have access todata [Learn more](https://quickblox.com/hosting/on-premise/)\n", + "## Cloud\n", + "Wecan run QuickBlox communication software inyour own virtual machine (VMs) onapublic orprivate cloud with your preferred hosting provider, orinadedicated QuickBlox cloud Both options offer ahigh level ofsecurity and are fully GDPR and HIPAA compliant Weprovide complete management and are responsible for 24/7 operational functionality [Learn more](https://quickblox.com/hosting/cloud/)\n", + "## HIPAA Compliant\n", + "Weoffer our healthcare customers several HIPAA compliant hosting solutions: onour shared cloud, asadedicated instance onaQuickBlox managed cloud, asafully managed service onthe customer’’s own cloud account, oron-premises Weoffer data encryption, additional security add-ons, provide aBusiness Associate Agreement (BAA), and more [Learn more](https://quickblox.com/hosting/hipaa-compliant-hosting/)\n", + "## Multi-Tenant Shared Cloud\n", + "Don’’t want topay the full cost while you are still indevelopment stages Weunderstand Sign upfor one ofour subscription plans hosted onamulti-tenant shared cloud where you can enjoy access tomessaging and calling features with ticket based support until you are ready toupgrade\n", + "[View pricing](https://quickblox.com/pricing/)\n", + "## Choosing the right hosting environment\n", + "Weunderstand that one size does not fit all that’’s why QuickBlox offers arange ofhosting solutions For the best solution that fits your needs speak toarepresentative\n", + "[Contact sales](https://quickblox.com/enterprise/#get-enterprise)\n", + "* Supported Features\n", + "* * Cloud Hosting\n", + "* QuickBlox Cloud\n", + "* Yourown Public/Private Cloud\n", + "* On-premises\n", + "* * Hosted onyour own local server\n", + "* * * * * Hosted oncustomer’’s dedicated cloud account\n", + "* * * * * Hosted onQuickBlox cloud account dedicated toyour enterprise\n", + "* * * * * Choose which country where your data isstored\n", + "* Depends\n", + "* * * * Quick installation and free data migration\n", + "* * * Depends\n", + "* * Software accessible only bycustomer’’s internal DevOps team\n", + "* * * * * Control ofyour user data and backend software updates\n", + "* * * * * Maintenance byQuickBlox team under SLA\n", + "* * * * * Option ofadditional security Addons\n", + "* * * * * Nodata limits whatsoever\n", + "* * * * * 100% data ownership\n", + "* * * * * HIPAA Compliant\n", + "* * * * * GDPR Compliant\n", + "* * * * Depending onthe geographical region you require, wemay beable toset upaQuickBlox managed account inanother region/with another cloud hosting provider\n", + "This chunk provides an overview of QuickBlox's product offerings, including communication tools like SDKs and APIs, QuickBlox AI, and white-label solutions. It also details solutions for various industries, enterprise features, hosting options, and developer resources, offering links to specific documentation, support, and tutorials.\n", + "----------------------------------------------------------------------------------------------------\n", + "Doc 7:\n", + "Title: Quickblox Website\n", + "Snippet content:\n", + "[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\n", + "* [Blog](https://quickblox.com/blog/)\n", + "* [Contacts](https://quickblox.com/contacts/)\n", + "* [Support](https://help.quickblox.com/)\n", + "* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\n", + "[](https://quickblox.com)\n", + "* Products\n", + "* ### Communication Tools\n", + "* [SDKs and APIs](https://quickblox.com/sdk/)\n", + "Reliable & robust software tools to add communication features to any app or website\n", + "* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\n", + "* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\n", + "* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\n", + "* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\n", + "* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\n", + "* [Chat API](https://quickblox.com/sdk/chat-api/)\n", + "* [Chat UI Kits](https://quickblox.com/ui-kit/)\n", + "Build your own messenger app with pre-built UI components\n", + "* ### [QuickBlox AI](https://quickblox.com/products/ai/)\n", + "* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\n", + "In-app virtual assistants trained on your own data\n", + "* [AI Extensions](https://quickblox.com/products/ai/extensions/)\n", + "Stunning AI features that can be added to any chat app\n", + "* ### White Label Solutions\n", + "* [Q-Consultation](https://quickblox.com/products/q-consultation/)\n", + "white label video calling with virtual meeting rooms and in-app chat\n", + "* [Q-municate](https://quickblox.com/products/messenger-app/)\n", + "Customizable messaging app for secure chat\n", + "* Solutions\n", + "* [Industries](https://quickblox.com/solutions/)\n", + "* [Healthcare](https://quickblox.com/solutions/healthcare/)\n", + "* [Finance](https://quickblox.com/solutions/finance/)\n", + "* [Marketplace](https://quickblox.com/solutions/marketplace/)\n", + "* [Education](https://quickblox.com/solutions/education-coaching/)\n", + "* [Social Network](https://quickblox.com/solutions/social-network/)\n", + "* [Communication Tools](https://quickblox.com/products/)\n", + "* [Chat](https://quickblox.com/products/chat/)\n", + "* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\n", + "* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\n", + "* [Push Notifications](https://quickblox.com/products/push-notifications/)\n", + "* Enterprise\n", + "* [Features](https://quickblox.com/enterprise/)\n", + "* [Custom Development](https://quickblox.com/professional-services/)\n", + "* [Hosting](https://quickblox.com/hosting/)\n", + "* [Cloud](https://quickblox.com/hosting/cloud/)\n", + "* [On-Premises](https://quickblox.com/hosting/on-premise/)\n", + "* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\n", + "* Developers\n", + "* [Documentation](https://docs.quickblox.com/)\n", + "* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\n", + "* [Android](https://docs.quickblox.com/docs/android-quick-start)\n", + "* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\n", + "* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\n", + "* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\n", + "* [Code Samples](https://docs.quickblox.com/docs/code-samples)\n", + "* [UI Kits]()\n", + "* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\n", + "* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\n", + "* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\n", + "* [Platform Status](https://status.quickblox.com/)\n", + "* [Support](https://help.quickblox.com/)\n", + "* [How-to Tutorials](https://quickblox.com/blog/how-to/)\n", + "* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\n", + "* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\n", + "* [Pricing](https://quickblox.com/pricing/)\n", + "[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\n", + "[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\n", + "* Products\n", + "* ### Communication Tools\n", + "* [SDKs and APIs](https://quickblox.com/sdk/)\n", + "Reliable & robust software tools to add communication features to any app or website\n", + "* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\n", + "* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\n", + "* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\n", + "* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\n", + "* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\n", + "* [Chat API](https://quickblox.com/sdk/chat-api/)\n", + "* [Chat UI Kits](https://quickblox.com/ui-kit/)\n", + "Build your own messenger app with pre-built UI components\n", + "* ### [QuickBlox AI](https://quickblox.com/products/ai/)\n", + "* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\n", + "In-app virtual assistants trained on your own data\n", + "* [AI Extensions](https://quickblox.com/products/ai/extensions/)\n", + "Stunning AI features that can be added to any chat app\n", + "* ### White Label Solutions\n", + "* [Q-Consultation](https://quickblox.com/products/q-consultation/)\n", + "white label video calling with virtual meeting rooms and in-app chat\n", + "* [Q-Municate](https://quickblox.com/products/messenger-app/)\n", + "Customizable messaging app for secure chat\n", + "* Solutions\n", + "* [Industries](https://quickblox.com/solutions/)\n", + "* [Healthcare](https://quickblox.com/solutions/healthcare/)\n", + "* [Finance](https://quickblox.com/solutions/finance/)\n", + "* [Marketplace](https://quickblox.com/solutions/marketplace/)\n", + "* [Education](https://quickblox.com/solutions/education-coaching/)\n", + "* [Social Network](https://quickblox.com/solutions/social-network/)\n", + "* [Communication Tools](https://quickblox.com/products/)\n", + "* [Chat](https://quickblox.com/products/chat/)\n", + "* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\n", + "* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\n", + "* [Push Notifications](https://quickblox.com/products/push-notifications/)\n", + "* Enterprise\n", + "* [Features](https://quickblox.com/enterprise/)\n", + "* [Custom Development](https://quickblox.com/professional-services/)\n", + "* [Hosting](https://quickblox.com/hosting/)\n", + "* [Cloud](https://quickblox.com/hosting/cloud/)\n", + "* [On-Premises](https://quickblox.com/hosting/on-premise/)\n", + "* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\n", + "* Developers\n", + "* [Documentation](https://docs.quickblox.com/)\n", + "* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\n", + "* [Android](https://docs.quickblox.com/docs/android-quick-start)\n", + "* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\n", + "* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\n", + "* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\n", + "* [Code Samples](https://docs.quickblox.com/docs/code-samples)\n", + "* [UI Kits]()\n", + "* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\n", + "* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\n", + "* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\n", + "* [Platform Status](https://status.quickblox.com/)\n", + "* [Support](https://help.quickblox.com/)\n", + "* [How-to Tutorials](https://quickblox.com/blog/how-to/)\n", + "* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\n", + "* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\n", + "* [Pricing](https://quickblox.com/pricing/)\n", + "* [Contacts](https://quickblox.com/contacts/)\n", + "* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\n", + "# QuickBlox Pricing\n", + "We’’ve enabled 200+ enterprise instances and 22k+ applications toretain and engage their audience with advanced communication features Join them [Start Your FREE Trial](https://quickblox.com/enterprise/#get-enterprise)\n", + "* [Chat Services + AI Assistant](#chat-services)\n", + "Includes QuickBlox SDKs, APIs and Chat UI Kits + SmartChat Assistant * [AI Assistant only](#ai-assistant)\n", + "Includes SmartChat Assistant only * Basic\n", + "* Starter\n", + "* Growth\n", + "* HIPAA Cloud\n", + "* Enterprise\n", + "### Basic\n", + "For newly founded businesses, testing aquick and affordable solution for their new product Free\n", + "[Sign up](https://admin.quickblox.com/signup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\n", + "* #### 500\n", + "total users\n", + "Total users mean the total number ofusers registered inyour app database whether they are active ornot * #### 1 month\n", + "data retention\n", + "* #### 10 MB\n", + "file size limit\n", + "* #### core features\n", + "* - Native & crossplatform SDK\n", + "* - 1-1 chat\n", + "* - Group chat\n", + "* - Online Presence\n", + "* - Typing Indicators\n", + "* - Message Attachments\n", + "* - Chat History\n", + "* - Delivery & Read Receipts\n", + "* - Voice message\n", + "* - Public & Private Rooms\n", + "* - Auto-reconnect & Sync\n", + "* #### advanced features\n", + "* - Custom classes\n", + "* - Sync across multiple devices\n", + "* - Offline Messages\n", + "* - Block Users\n", + "* - Server API\n", + "* #### peer topeer audio/video calls\n", + "* #### conference audio/video calls\n", + "Available asanadd-on\n", + "* #### data encryption\n", + "* #### dedicated server\n", + "* #### AI Extensions\n", + "1 extension\n", + "#### SmartChat Assistant\n", + "1 bot\n", + "30 day free trial on the bot\n", + "* 100 knowledge base items\n", + "Additional knowledge base items can be purchased\n", + "Types of content:\n", + "* * * file under 25Mb\n", + "(unlimited number of characters)\n", + "* #### Community\n", + "support\n", + "[Sign up](https://admin.quickblox.com/signup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\n", + "### Starter\n", + "Best for early stage startups trying tomeet astrategic goal (without losing their focus onoverall business growth) $107/mo\n", + "[Sign up](https://admin.quickblox.com/signup_startup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\n", + "* #### 10,000\n", + "total users\n", + "Total users mean the total number ofusers registered inyour app database whether they are active ornot * #### 3 month\n", + "data retention\n", + "* #### 25 MB\n", + "file size limit\n", + "* #### core features\n", + "* - Native & crossplatform SDK\n", + "* - 1-1 chat\n", + "* - Group chat\n", + "* - Online Presence\n", + "* - Typing Indicators\n", + "* - Message Attachments\n", + "* - Chat History\n", + "* - Delivery & Read Receipts\n", + "* - Voice message\n", + "* - Public & Private Rooms\n", + "* - Auto-reconnect & Sync\n", + "* #### advanced features\n", + "* - Custom classes\n", + "* - Sync across multiple devices\n", + "* - Offline Messages\n", + "* - Block Users\n", + "* - Server API\n", + "* #### peer topeer audio/video calls\n", + "* #### conference audio/video calls\n", + "Available asanadd-on\n", + "* #### data encryption\n", + "* #### dedicated server\n", + "* #### AI Extensions\n", + "2 extensions\n", + "#### SmartChat Assistant\n", + "1 bot\n", + "* 500 knowledge base items\n", + "Additional knowledge base items can be purchased\n", + "Types of content:\n", + "* * * file under 25Mb\n", + "(unlimited number of characters)\n", + "* #### Ticketing system\n", + "support\n", + "[Sign up](https://admin.quickblox.com/signup_startup?_ga=2.196211628.1437607202.1586339491-557719420.1579854846)\n", + "### Growth\n", + "For well established brands, growing rapidly, requiring aquick, reliable and efficient solution $269/mo\n", + "[Sign up](https://admin.quickblox.com/signup_growth?_ga=2.224968602.1437607202.1586339491-557719420.1579854846)\n", + "* #### 25,000\n", + "total users\n", + "Total users mean the total number ofusers registered inyour app database whether they are active ornot * #### 6 month\n", + "data retention\n", + "* #### 50 MB\n", + "file size limit\n", + "* #### core features\n", + "* - Native & crossplatform SDK\n", + "* - 1-1 chat\n", + "* - Group chat\n", + "* - Online Presence\n", + "* - Typing Indicators\n", + "* - Message Attachments\n", + "* - Chat History\n", + "* - Delivery & Read Receipts\n", + "* - Voice message\n", + "* - Public & Private Rooms\n", + "* - Auto-reconnect & Sync\n", + "* #### advanced features\n", + "* - Custom classes\n", + "* - Sync across multiple devices\n", + "* - Offline Messages\n", + "* - Block Users\n", + "* - Server API\n", + "* #### peer topeer audio/video calls\n", + "* #### conference audio/video calls\n", + "Available asanadd-on\n", + "* #### data encryption\n", + "* #### dedicated server\n", + "* #### AI Extensions\n", + "3 extensions\n", + "#### SmartChat Assistant\n", + "2 bots\n", + "* 1000 knowledge base items\n", + "Additional knowledge base items can be purchased\n", + "Types of content:\n", + "* * * file under 25Mb\n", + "(unlimited number of characters)\n", + "* #### Ticketing system\n", + "support\n", + "[Sign up](https://admin.quickblox.com/signup_growth)\n", + "### HIPAA Cloud\n", + "Guaranteed security and privacy for healthcare apps - HIPAA compliant hosting and feature-rich platform.Offered with a BAA\n", + "$430/mo\n", + "[Sign up](https://admin.quickblox.com/signup_hipaa)\n", + "* #### 20,000\n", + "total users\n", + "Total users mean the total number ofusers registered inyour app database whether they are active ornot * #### Custom\n", + "data retention\n", + "* #### 50 MB\n", + "file size limit\n", + "* #### core features\n", + "* - Native & crossplatform SDK\n", + "* - 1-1 chat\n", + "* - Group chat\n", + "* - Online Presence\n", + "* - Typing Indicators\n", + "* - Message Attachments\n", + "* - Chat History\n", + "* - Delivery & Read Receipts\n", + "* - Voice message\n", + "* - Public & Private Rooms\n", + "* - Auto-reconnect & Sync\n", + "* #### advanced features\n", + "* - Custom classes\n", + "* - Sync across multiple devices\n", + "* - Offline Messages\n", + "* - Block Users\n", + "* - Server API\n", + "* #### peer topeer audio/video calls\n", + "* #### conference audio/video calls\n", + "Available asanadd-on\n", + "* #### data encryption\n", + "* #### dedicated server\n", + "* #### AI Extensions\n", + "3 extensions\n", + "#### SmartChat Assistant\n", + "2 bots\n", + "* 1000 knowledge base items\n", + "Additional knowledge base items can be purchased\n", + "Types of content:\n", + "* * * file under 25Mb\n", + "(unlimited number of characters)\n", + "* #### Ticketing system\n", + "support\n", + "[Sign up](https://admin.quickblox.com/signup_hipaa)\n", + "### Enterprise\n", + "Get complete access toQuickblox software and enjoy aplan customized toyour unique business/app requirements From $647\n", + "[Contact us](https://quickblox.com/enterprise/#get-enterprise)\n", + "* #### Custom\n", + "total users\n", + "Total users mean the total number ofusers registered inyour app database whether they are active ornot * #### Custom\n", + "data retention\n", + "* #### Custom\n", + "file size limit\n", + "* #### core features\n", + "* - Native & crossplatform SDK\n", + "* - 1-1 chat\n", + "* - Group chat\n", + "* - Online Presence\n", + "* - Typing Indicators\n", + "* - Message Attachments\n", + "* - Chat History\n", + "* - Delivery & Read Receipts\n", + "* - Voice message\n", + "* - Public & Private Rooms\n", + "* - Auto-reconnect & Sync\n", + "* #### advanced features\n", + "* - Custom classes\n", + "* - Sync across multiple devices\n", + "* - Offline Messages\n", + "* - Block Users\n", + "* - Server API\n", + "* #### peer topeer audio/video calls\n", + "* #### conference audio/video calls\n", + "Available asanadd-on\n", + "* #### Custom\n", + "data encryption\n", + "* #### dedicated server\n", + "* #### AI Extensions\n", + "All 5 extensions\n", + "#### SmartChat Assistant\n", + "3 bots\n", + "Additional bots can be purchased\n", + "* Unlimited knowledge base items\n", + "Additional knowledge base items can be purchased\n", + "Types of content:\n", + "* * * file under 25Mb\n", + "(unlimited number of characters)\n", + "* #### SLA\n", + "#### Account manager\n", + "#### Ticketing system\n", + "support\n", + "[Contact us](https://quickblox.com/enterprise/#get-enterprise)\n", + "* SmartChat Assistant\n", + "* HIPAA-Compliant AI Assistant\n", + "### SmartChat Assistant\n", + "Your trainable assistant Upload with your own data & embed on your website\n", + "The chunk provides an overview of QuickBlox's products and solutions, including communication tools like SDKs and APIs, AI features, white-label solutions, and industry-specific solutions. It also outlines support resources, developer tools, and pricing plans for various business needs, including basic, starter, growth, HIPAA-compliant, and enterprise plans.\n", + "----------------------------------------------------------------------------------------------------\n", + "Doc 8:\n", + "Title: Quickblox Website\n", + "Snippet content:\n", + "[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\n", + "* [Blog](https://quickblox.com/blog/)\n", + "* [Contacts](https://quickblox.com/contacts/)\n", + "* [Support](https://help.quickblox.com/)\n", + "* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\n", + "[](https://quickblox.com)\n", + "* Products\n", + "* ### Communication Tools\n", + "* [SDKs and APIs](https://quickblox.com/sdk/)\n", + "Reliable & robust software tools to add communication features to any app or website\n", + "* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\n", + "* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\n", + "* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\n", + "* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\n", + "* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\n", + "* [Chat API](https://quickblox.com/sdk/chat-api/)\n", + "* [Chat UI Kits](https://quickblox.com/ui-kit/)\n", + "Build your own messenger app with pre-built UI components\n", + "* ### [QuickBlox AI](https://quickblox.com/products/ai/)\n", + "* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\n", + "In-app virtual assistants trained on your own data\n", + "* [AI Extensions](https://quickblox.com/products/ai/extensions/)\n", + "Stunning AI features that can be added to any chat app\n", + "* ### White Label Solutions\n", + "* [Q-Consultation](https://quickblox.com/products/q-consultation/)\n", + "white label video calling with virtual meeting rooms and in-app chat\n", + "* [Q-municate](https://quickblox.com/products/messenger-app/)\n", + "Customizable messaging app for secure chat\n", + "* Solutions\n", + "* [Industries](https://quickblox.com/solutions/)\n", + "* [Healthcare](https://quickblox.com/solutions/healthcare/)\n", + "* [Finance](https://quickblox.com/solutions/finance/)\n", + "* [Marketplace](https://quickblox.com/solutions/marketplace/)\n", + "* [Education](https://quickblox.com/solutions/education-coaching/)\n", + "* [Social Network](https://quickblox.com/solutions/social-network/)\n", + "* [Communication Tools](https://quickblox.com/products/)\n", + "* [Chat](https://quickblox.com/products/chat/)\n", + "* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\n", + "* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\n", + "* [Push Notifications](https://quickblox.com/products/push-notifications/)\n", + "* Enterprise\n", + "* [Features](https://quickblox.com/enterprise/)\n", + "* [Custom Development](https://quickblox.com/professional-services/)\n", + "* [Hosting](https://quickblox.com/hosting/)\n", + "* [Cloud](https://quickblox.com/hosting/cloud/)\n", + "* [On-Premises](https://quickblox.com/hosting/on-premise/)\n", + "* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\n", + "* Developers\n", + "* [Documentation](https://docs.quickblox.com/)\n", + "* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\n", + "* [Android](https://docs.quickblox.com/docs/android-quick-start)\n", + "* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\n", + "* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\n", + "* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\n", + "* [Code Samples](https://docs.quickblox.com/docs/code-samples)\n", + "* [UI Kits]()\n", + "* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\n", + "* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\n", + "* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\n", + "* [Platform Status](https://status.quickblox.com/)\n", + "* [Support](https://help.quickblox.com/)\n", + "* [How-to Tutorials](https://quickblox.com/blog/how-to/)\n", + "* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\n", + "* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\n", + "* [Pricing](https://quickblox.com/pricing/)\n", + "[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\n", + "[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\n", + "* Products\n", + "* ### Communication Tools\n", + "* [SDKs and APIs](https://quickblox.com/sdk/)\n", + "Reliable & robust software tools to add communication features to any app or website\n", + "* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\n", + "* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\n", + "* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\n", + "* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\n", + "* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\n", + "* [Chat API](https://quickblox.com/sdk/chat-api/)\n", + "* [Chat UI Kits](https://quickblox.com/ui-kit/)\n", + "Build your own messenger app with pre-built UI components\n", + "* ### [QuickBlox AI](https://quickblox.com/products/ai/)\n", + "* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\n", + "In-app virtual assistants trained on your own data\n", + "* [AI Extensions](https://quickblox.com/products/ai/extensions/)\n", + "Stunning AI features that can be added to any chat app\n", + "* ### White Label Solutions\n", + "* [Q-Consultation](https://quickblox.com/products/q-consultation/)\n", + "white label video calling with virtual meeting rooms and in-app chat\n", + "* [Q-Municate](https://quickblox.com/products/messenger-app/)\n", + "Customizable messaging app for secure chat\n", + "* Solutions\n", + "* [Industries](https://quickblox.com/solutions/)\n", + "* [Healthcare](https://quickblox.com/solutions/healthcare/)\n", + "* [Finance](https://quickblox.com/solutions/finance/)\n", + "* [Marketplace](https://quickblox.com/solutions/marketplace/)\n", + "* [Education](https://quickblox.com/solutions/education-coaching/)\n", + "* [Social Network](https://quickblox.com/solutions/social-network/)\n", + "* [Communication Tools](https://quickblox.com/products/)\n", + "* [Chat](https://quickblox.com/products/chat/)\n", + "* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\n", + "* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\n", + "* [Push Notifications](https://quickblox.com/products/push-notifications/)\n", + "* Enterprise\n", + "* [Features](https://quickblox.com/enterprise/)\n", + "* [Custom Development](https://quickblox.com/professional-services/)\n", + "* [Hosting](https://quickblox.com/hosting/)\n", + "* [Cloud](https://quickblox.com/hosting/cloud/)\n", + "* [On-Premises](https://quickblox.com/hosting/on-premise/)\n", + "* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\n", + "* Developers\n", + "* [Documentation](https://docs.quickblox.com/)\n", + "* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\n", + "* [Android](https://docs.quickblox.com/docs/android-quick-start)\n", + "* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\n", + "* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\n", + "* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\n", + "* [Code Samples](https://docs.quickblox.com/docs/code-samples)\n", + "* [UI Kits]()\n", + "* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\n", + "* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\n", + "* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\n", + "* [Platform Status](https://status.quickblox.com/)\n", + "* [Support](https://help.quickblox.com/)\n", + "* [How-to Tutorials](https://quickblox.com/blog/how-to/)\n", + "* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\n", + "* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\n", + "* [Pricing](https://quickblox.com/pricing/)\n", + "* [Contacts](https://quickblox.com/contacts/)\n", + "* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\n", + "### New ProductOpen source video consultation software with OpenAI Integration\n", + "Elevate Your Video Communication with Q‑Consultation\n", + "[Learn more](https://quickblox.com/products/q-consultation/open-source/)\n", + "### New ProductBuild Exceptional Chat Experiences with AI‑Enhanced UI Kits\n", + "[Learn more](https://quickblox.com/ui-kit/)\n", + "[Previous](#carouselMainTopSlider)[Next](#carouselMainTopSlider)\n", + "# Build Your Own Messenger With Real-Time Chat & Video APIs\n", + "Add instant messaging and online video chat to any Android, iOS, or Web application, with ease and flexibility In-app chat and calling APIs and SDKs, trusted globally by developers, startups, and enterprises [Start FREE Trial](https://admin.quickblox.com/signup?_ga=2.166318714.519349007.1585816300-1447393030.1568645682)[Talk to an Expert](https://quickblox.com/enterprise/#get-enterprise)\n", + "## Launch quickly and convert more prospects withreal‑‑timeChat, Audio, and Video communication\n", + "If you own a product, you know exactly how drawn-out and exorbitant it can be to build real-time communication features from scratch Quickblox can help you design, create, and enter the market at a much faster rate with APIs and SDKs that shortcut product and engineering delivery Convert your ideas into a successful product with us and watch the engagement rate rise, while you build a loyal user base [\n", + "#### Chat\n", + "Embedded chat features- you can customize and build a fully-functioning chat product for mobile and web in a matter of hours ](https://quickblox.com/products/chat/)[\n", + "#### Voice and Video calling\n", + "Streamline customer usability with high‑quality peer‑to‑peer voice and video calls Drive more engagement and build meaningful connections ](https://quickblox.com/products/voice-and-video-calling/)[\n", + "#### Video Conferencing\n", + "Create real-time video group interactions to enhance collaboration and productivity Designed to meet your user experience goals and increase conversations ](https://quickblox.com/products/video-conferencing/)[\n", + "#### Push Notifications\n", + "Give your customers/users reasons to keep coming back - send in-app reminders, offers, updates and watch retention rates climb ](https://quickblox.com/products/push-notifications/)\n", + "#### Data Storage\n", + "Protect your data from hackers and unwanted modification attempts using flexible data storage options Choose between dedicated, on-premise, or your own virtual cloud #### Secure File Sharing\n", + "Allow sharing and linking of all types of files (images, audio, video, docs, and other file formats) and enable your users to interact and engage more ## Over30,000 software developers and organizations worldwide are using QuickBlox messagingAPI\n", + "This chunk provides an overview of QuickBlox's product offerings and solutions, highlighting their communication tools, AI-enhanced features, white label solutions, and industry-specific applications. It serves as a comprehensive guide to QuickBlox's SDKs, APIs, and UI Kits for building customizable chat and video applications.\n", + "----------------------------------------------------------------------------------------------------\n", + "Doc 9:\n", + "Title: Quickblox Website\n", + "Snippet content:\n", + "[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\n", + "* [Blog](https://quickblox.com/blog/)\n", + "* [Contacts](https://quickblox.com/contacts/)\n", + "* [Support](https://help.quickblox.com/)\n", + "* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\n", + "[](https://quickblox.com)\n", + "* Products\n", + "* ### Communication Tools\n", + "* [SDKs and APIs](https://quickblox.com/sdk/)\n", + "Reliable & robust software tools to add communication features to any app or website\n", + "* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\n", + "* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\n", + "* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\n", + "* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\n", + "* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\n", + "* [Chat API](https://quickblox.com/sdk/chat-api/)\n", + "* [Chat UI Kits](https://quickblox.com/ui-kit/)\n", + "Build your own messenger app with pre-built UI components\n", + "* ### [QuickBlox AI](https://quickblox.com/products/ai/)\n", + "* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\n", + "In-app virtual assistants trained on your own data\n", + "* [AI Extensions](https://quickblox.com/products/ai/extensions/)\n", + "Stunning AI features that can be added to any chat app\n", + "* ### White Label Solutions\n", + "* [Q-Consultation](https://quickblox.com/products/q-consultation/)\n", + "white label video calling with virtual meeting rooms and in-app chat\n", + "* [Q-municate](https://quickblox.com/products/messenger-app/)\n", + "Customizable messaging app for secure chat\n", + "* Solutions\n", + "* [Industries](https://quickblox.com/solutions/)\n", + "* [Healthcare](https://quickblox.com/solutions/healthcare/)\n", + "* [Finance](https://quickblox.com/solutions/finance/)\n", + "* [Marketplace](https://quickblox.com/solutions/marketplace/)\n", + "* [Education](https://quickblox.com/solutions/education-coaching/)\n", + "* [Social Network](https://quickblox.com/solutions/social-network/)\n", + "* [Communication Tools](https://quickblox.com/products/)\n", + "* [Chat](https://quickblox.com/products/chat/)\n", + "* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\n", + "* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\n", + "* [Push Notifications](https://quickblox.com/products/push-notifications/)\n", + "* Enterprise\n", + "* [Features](https://quickblox.com/enterprise/)\n", + "* [Custom Development](https://quickblox.com/professional-services/)\n", + "* [Hosting](https://quickblox.com/hosting/)\n", + "* [Cloud](https://quickblox.com/hosting/cloud/)\n", + "* [On-Premises](https://quickblox.com/hosting/on-premise/)\n", + "* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\n", + "* Developers\n", + "* [Documentation](https://docs.quickblox.com/)\n", + "* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\n", + "* [Android](https://docs.quickblox.com/docs/android-quick-start)\n", + "* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\n", + "* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\n", + "* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\n", + "* [Code Samples](https://docs.quickblox.com/docs/code-samples)\n", + "* [UI Kits]()\n", + "* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\n", + "* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\n", + "* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\n", + "* [Platform Status](https://status.quickblox.com/)\n", + "* [Support](https://help.quickblox.com/)\n", + "* [How-to Tutorials](https://quickblox.com/blog/how-to/)\n", + "* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\n", + "* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\n", + "* [Pricing](https://quickblox.com/pricing/)\n", + "[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\n", + "[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\n", + "* Products\n", + "* ### Communication Tools\n", + "* [SDKs and APIs](https://quickblox.com/sdk/)\n", + "Reliable & robust software tools to add communication features to any app or website\n", + "* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\n", + "* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\n", + "* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\n", + "* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\n", + "* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\n", + "* [Chat API](https://quickblox.com/sdk/chat-api/)\n", + "* [Chat UI Kits](https://quickblox.com/ui-kit/)\n", + "Build your own messenger app with pre-built UI components\n", + "* ### [QuickBlox AI](https://quickblox.com/products/ai/)\n", + "* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\n", + "In-app virtual assistants trained on your own data\n", + "* [AI Extensions](https://quickblox.com/products/ai/extensions/)\n", + "Stunning AI features that can be added to any chat app\n", + "* ### White Label Solutions\n", + "* [Q-Consultation](https://quickblox.com/products/q-consultation/)\n", + "white label video calling with virtual meeting rooms and in-app chat\n", + "* [Q-Municate](https://quickblox.com/products/messenger-app/)\n", + "Customizable messaging app for secure chat\n", + "* Solutions\n", + "* [Industries](https://quickblox.com/solutions/)\n", + "* [Healthcare](https://quickblox.com/solutions/healthcare/)\n", + "* [Finance](https://quickblox.com/solutions/finance/)\n", + "* [Marketplace](https://quickblox.com/solutions/marketplace/)\n", + "* [Education](https://quickblox.com/solutions/education-coaching/)\n", + "* [Social Network](https://quickblox.com/solutions/social-network/)\n", + "* [Communication Tools](https://quickblox.com/products/)\n", + "* [Chat](https://quickblox.com/products/chat/)\n", + "* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\n", + "* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\n", + "* [Push Notifications](https://quickblox.com/products/push-notifications/)\n", + "* Enterprise\n", + "* [Features](https://quickblox.com/enterprise/)\n", + "* [Custom Development](https://quickblox.com/professional-services/)\n", + "* [Hosting](https://quickblox.com/hosting/)\n", + "* [Cloud](https://quickblox.com/hosting/cloud/)\n", + "* [On-Premises](https://quickblox.com/hosting/on-premise/)\n", + "* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\n", + "* Developers\n", + "* [Documentation](https://docs.quickblox.com/)\n", + "* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\n", + "* [Android](https://docs.quickblox.com/docs/android-quick-start)\n", + "* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\n", + "* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\n", + "* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\n", + "* [Code Samples](https://docs.quickblox.com/docs/code-samples)\n", + "* [UI Kits]()\n", + "* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\n", + "* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\n", + "* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\n", + "* [Platform Status](https://status.quickblox.com/)\n", + "* [Support](https://help.quickblox.com/)\n", + "* [How-to Tutorials](https://quickblox.com/blog/how-to/)\n", + "* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\n", + "* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\n", + "* [Pricing](https://quickblox.com/pricing/)\n", + "* [Contacts](https://quickblox.com/contacts/)\n", + "* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\n", + "# Video Conferencing\n", + "## Real‑time video group interactions via video toenhance collaboration and productivity\n", + "Engage your customers, employees, and business partners with secure and easy‑to‑use QuickBlox video conferencing Our high‑quality low latency conferencing solution ensures people stay connected even when they are apart Want tosee ademo [Get in touch](https://quickblox.com/enterprise/#get-enterprise)\n", + "## Explore other communication features\n", + "### [Chat](https://quickblox.com/products/chat/)\n", + "### [Voice and Video calling](https://quickblox.com/products/voice-and-video-calling/)\n", + "### [Push notifications](https://quickblox.com/products/push-notifications/)\n", + "## Make on‑screen interactions part ofyour business communication toimprove efficiency and deepen user engagement\n", + "### High quality multi‑party calls\n", + "Hosting avideo conference has never been easier with QuickBlox HDvideo conferencing software Groups ofparticipants can interact, share, and collaborate effortlessly inreal‑time Use our video conferencing API toembed this feature into your e‑learning app, internal company messaging app, and numerous other types ofmobile apps where there isaneed for groups tocommunicate in avisually engaging way ### Recordable\n", + "With voice and video conferencing technology, it’’s possible torecord and archive your entire session Ifyou work inhealthcare orfinance orsome other industry where there isaneed tokeep apermanent record ofcommunications, your recorded session can besafely stored inthe cloud, oron‑premise inyour own virtual machines and easily accessed when needed ### Feature‑rich and versatile\n", + "Our video conferencing SDKs and chat SDKs support screen‑sharing, file exchange, switching between video inputs, group chat, and video recording Furthermore, our video conferencing system can beintegrated into pre‑existing software such asane‑learning platform orElectronic Healthcare Record (EHR) system with minimum fuss ### Cross-Platform\n", + "Our solution isdesigned towork cross‑platform, sothat you can enjoy online meetings with others whether you are using adesktop app, tablet, ormobile phone For ease and convenience real‑time video chat ispossible on‑the‑go, wherever you are ### Video streaming\n", + "Need topresent anacademic lecture, company presentation, orgaming event toalarge audience Noproblem Our conference calling technology supports video streaming for potentially 1000s ofviewers, depending onyour server configuration\n", + "This chunk provides an overview of QuickBlox's communication tools and solutions, including SDKs and APIs for various platforms, AI features, and white-label solutions. It emphasizes the new Chat UI Kits, highlights QuickBlox AI capabilities, and details enterprise features such as custom development and hosting. Additionally, it outlines QuickBlox's offerings for different industries and showcases the integration of video conferencing technology, emphasizing features like multi-party calls, cross-platform compatibility, and compliance with security standards. This context is essential for understanding QuickBlox's comprehensive communication solutions and their application across various sectors.\n", + "----------------------------------------------------------------------------------------------------\n", + "Doc 10:\n", + "Title: Quickblox Website\n", + "Snippet content:\n", + "[New Product: Chat UI Kits for every platform!](https://quickblox.com/ui-kit/)\n", + "* [Blog](https://quickblox.com/blog/)\n", + "* [Contacts](https://quickblox.com/contacts/)\n", + "* [Support](https://help.quickblox.com/)\n", + "* [Log in](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\n", + "[](https://quickblox.com)\n", + "* Products\n", + "* ### Communication Tools\n", + "* [SDKs and APIs](https://quickblox.com/sdk/)\n", + "Reliable & robust software tools to add communication features to any app or website\n", + "* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\n", + "* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\n", + "* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\n", + "* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\n", + "* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\n", + "* [Chat API](https://quickblox.com/sdk/chat-api/)\n", + "* [Chat UI Kits](https://quickblox.com/ui-kit/)\n", + "Build your own messenger app with pre-built UI components\n", + "* ### [QuickBlox AI](https://quickblox.com/products/ai/)\n", + "* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\n", + "In-app virtual assistants trained on your own data\n", + "* [AI Extensions](https://quickblox.com/products/ai/extensions/)\n", + "Stunning AI features that can be added to any chat app\n", + "* ### White Label Solutions\n", + "* [Q-Consultation](https://quickblox.com/products/q-consultation/)\n", + "white label video calling with virtual meeting rooms and in-app chat\n", + "* [Q-municate](https://quickblox.com/products/messenger-app/)\n", + "Customizable messaging app for secure chat\n", + "* Solutions\n", + "* [Industries](https://quickblox.com/solutions/)\n", + "* [Healthcare](https://quickblox.com/solutions/healthcare/)\n", + "* [Finance](https://quickblox.com/solutions/finance/)\n", + "* [Marketplace](https://quickblox.com/solutions/marketplace/)\n", + "* [Education](https://quickblox.com/solutions/education-coaching/)\n", + "* [Social Network](https://quickblox.com/solutions/social-network/)\n", + "* [Communication Tools](https://quickblox.com/products/)\n", + "* [Chat](https://quickblox.com/products/chat/)\n", + "* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\n", + "* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\n", + "* [Push Notifications](https://quickblox.com/products/push-notifications/)\n", + "* Enterprise\n", + "* [Features](https://quickblox.com/enterprise/)\n", + "* [Custom Development](https://quickblox.com/professional-services/)\n", + "* [Hosting](https://quickblox.com/hosting/)\n", + "* [Cloud](https://quickblox.com/hosting/cloud/)\n", + "* [On-Premises](https://quickblox.com/hosting/on-premise/)\n", + "* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\n", + "* Developers\n", + "* [Documentation](https://docs.quickblox.com/)\n", + "* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\n", + "* [Android](https://docs.quickblox.com/docs/android-quick-start)\n", + "* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\n", + "* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\n", + "* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\n", + "* [Code Samples](https://docs.quickblox.com/docs/code-samples)\n", + "* [UI Kits]()\n", + "* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\n", + "* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\n", + "* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\n", + "* [Platform Status](https://status.quickblox.com/)\n", + "* [Support](https://help.quickblox.com/)\n", + "* [How-to Tutorials](https://quickblox.com/blog/how-to/)\n", + "* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\n", + "* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\n", + "* [Pricing](https://quickblox.com/pricing/)\n", + "[Talk to us](https://quickblox.com/enterprise/#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\n", + "[Talk to us](#get-enterprise)[Sign up](https://admin.quickblox.com/signup)\n", + "* Products\n", + "* ### Communication Tools\n", + "* [SDKs and APIs](https://quickblox.com/sdk/)\n", + "Reliable & robust software tools to add communication features to any app or website\n", + "* [iOS SDK](https://quickblox.com/sdk/ios-chat-sdk/)\n", + "* [Android SDK](https://quickblox.com/sdk/android-chat-sdk/)\n", + "* [JavaScript SDK](https://quickblox.com/sdk/javascript-chat-sdk/)\n", + "* [React Native SDK](https://quickblox.com/sdk/react-native-chat-sdk/)\n", + "* [Flutter SDK](https://quickblox.com/sdk/flutter-chat-sdk/)\n", + "* [Chat API](https://quickblox.com/sdk/chat-api/)\n", + "* [Chat UI Kits](https://quickblox.com/ui-kit/)\n", + "Build your own messenger app with pre-built UI components\n", + "* ### [QuickBlox AI](https://quickblox.com/products/ai/)\n", + "* [SmartChat Assistant](https://quickblox.com/products/ai/smartchat-assistant/)\n", + "In-app virtual assistants trained on your own data\n", + "* [AI Extensions](https://quickblox.com/products/ai/extensions/)\n", + "Stunning AI features that can be added to any chat app\n", + "* ### White Label Solutions\n", + "* [Q-Consultation](https://quickblox.com/products/q-consultation/)\n", + "white label video calling with virtual meeting rooms and in-app chat\n", + "* [Q-Municate](https://quickblox.com/products/messenger-app/)\n", + "Customizable messaging app for secure chat\n", + "* Solutions\n", + "* [Industries](https://quickblox.com/solutions/)\n", + "* [Healthcare](https://quickblox.com/solutions/healthcare/)\n", + "* [Finance](https://quickblox.com/solutions/finance/)\n", + "* [Marketplace](https://quickblox.com/solutions/marketplace/)\n", + "* [Education](https://quickblox.com/solutions/education-coaching/)\n", + "* [Social Network](https://quickblox.com/solutions/social-network/)\n", + "* [Communication Tools](https://quickblox.com/products/)\n", + "* [Chat](https://quickblox.com/products/chat/)\n", + "* [Voice & Video Calling](https://quickblox.com/products/voice-and-video-calling/)\n", + "* [Video Conferencing](https://quickblox.com/products/video-conferencing/)\n", + "* [Push Notifications](https://quickblox.com/products/push-notifications/)\n", + "* Enterprise\n", + "* [Features](https://quickblox.com/enterprise/)\n", + "* [Custom Development](https://quickblox.com/professional-services/)\n", + "* [Hosting](https://quickblox.com/hosting/)\n", + "* [Cloud](https://quickblox.com/hosting/cloud/)\n", + "* [On-Premises](https://quickblox.com/hosting/on-premise/)\n", + "* [HIPAA Compliant](https://quickblox.com/hosting/hipaa-compliant-hosting/)\n", + "* Developers\n", + "* [Documentation](https://docs.quickblox.com/)\n", + "* [iOS](https://docs.quickblox.com/docs/ios-quick-start)\n", + "* [Android](https://docs.quickblox.com/docs/android-quick-start)\n", + "* [JavaScript](https://docs.quickblox.com/docs/js-quick-start)\n", + "* [React Native](https://docs.quickblox.com/docs/react-native-quick-start)\n", + "* [Flutter](https://docs.quickblox.com/docs/flutter-quick-start)\n", + "* [Code Samples](https://docs.quickblox.com/docs/code-samples)\n", + "* [UI Kits]()\n", + "* [IOS UI Kit](https://docs.quickblox.com/docs/ios-uikit-overview)\n", + "* [Android UI Kit](https://docs.quickblox.com/docs/android-uikit-overview)\n", + "* [React UI Kit](https://docs.quickblox.com/docs/react-uikit-overview)\n", + "* [Platform Status](https://status.quickblox.com/)\n", + "* [Support](https://help.quickblox.com/)\n", + "* [How-to Tutorials](https://quickblox.com/blog/how-to/)\n", + "* [Video Tutorials](https://www.youtube.com/channel/UCi7TXgYmBSH6GBRNakdG_-g)\n", + "* [QuickBlox Discord Community](https://discord.com/invite/3cKRunq8ZZ)\n", + "* [Pricing](https://quickblox.com/pricing/)\n", + "* [Contacts](https://quickblox.com/contacts/)\n", + "* [Log In](https://admin.quickblox.com/signin?_ga=2.85423902.661672082.1589381590-557719420.1579854846)\n", + "# White Label Video Consultation Solution for Your Business\n", + "Your virtual room application with private messaging, integrated with OpenAI Q-Consultation is an AI enhanced video calling solution that provides a secure means to hold private meetings via video and chat With file sharing, scheduling, and a host of user management features [Contact us](#contact-us)\n", + "## How does our customizable video software adapt to different use cases * #### Healthcare and HealthTech\n", + "Manage patient appointments remotely, exchange secure messages, share photos & videos, and provide HIPAA compliant video visits [Learn more](https://quickblox.com/products/q-consultation/telehealth-app/)\n", + "* #### HR & Recruitment\n", + "Interview large numbers of candidates with queue management tools and private video consultation and hire people remotely [Learn more](https://quickblox.com/products/q-consultation/recruitment-app/)\n", + "* #### Banking & Finance\n", + "Consult with clients on a secure video consultation platform hosted within your own cloud infrastructure to ensure the highest level of data security [Learn more](https://quickblox.com/products/q-consultation/finance-app/)\n", + "* #### Customer Support\n", + "Offer customers a personal touch by providing technical support and customer care via private online consultation [Learn more](https://quickblox.com/products/q-consultation/customer-support-app/)\n", + "* #### Operator Driven Chat\n", + "Enable operators to seamlessly connect with multiple online participants in private chat rooms [Learn more](https://quickblox.com/products/q-consultation/social-app/)\n", + "* #### E-Commerce\n", + "Effortlessly guide customers through a purchase with in‑person sales and product demonstrations via remote video consultation * #### Education & Coaching\n", + "Use a fully‑featured virtual appointment room to consult with students any time you want ## Need white label video software for your business [Tell us about your use case](#contact-us)\n", + "## What our Customers Say\n", + "1 2 Using Q-Consultation we were able to set up a secure communication command center to monitor pediatric patients, in weeks not months, This software allows us to provide HIPAA compliant communication between doctors and patients regarding the health of their child\n", + "The chunk provides a detailed overview of QuickBlox's product offerings, specifically focusing on communication tools, AI features, and white-label solutions. It highlights various SDKs, APIs, and chat UI kits available for different platforms, as well as AI-enhanced features like SmartChat Assistant. Additionally, it outlines white-label solutions such as Q-Consultation and Q-Municate, designed for secure video calling and messaging. The chunk also touches on industry-specific solutions, enterprise features, developer resources, and support options, making it a comprehensive summary of QuickBlox's capabilities in enhancing app communication features.\n", + "----------------------------------------------------------------------------------------------------\n" + ] + } + ], + "source": [ + "print(\"Matched docs:\\n\\n\")\n", + "for index, doc in enumerate(response.docs):\n", + " print(f\"Doc {index + 1}:\")\n", + " print(f\"Title: {doc.title}\")\n", + " print(f\"Snippet content:\\n{doc.snippet.content}\")\n", + " print(\"-\" * 100)" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "julep", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.12.3" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/cookbooks/09_companion_agent.ipynb b/cookbooks/09_companion_agent.ipynb new file mode 100644 index 000000000..9f8e4e312 --- /dev/null +++ b/cookbooks/09_companion_agent.ipynb @@ -0,0 +1,1523 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "
\n", + " \"julep\"\n", + "
\n", + "\n", + "

\n", + "
\n", + " Explore Docs (wip)\n", + " ·\n", + " Discord\n", + " ·\n", + " 𝕏\n", + " ·\n", + " LinkedIn\n", + "

\n", + "\n", + "

\n", + " \"NPM\n", + "  \n", + " \"PyPI\n", + "  \n", + " \"Docker\n", + "  \n", + " \"GitHub\n", + "

\n", + "\n", + "# Task Definition: Companion AI - Storyline Generator and User Persona Management\n", + "\n", + "### Overview\n", + "\n", + "The Julep AI Companion Project is designed to enhance user interactions with AI companions by:\n", + "- Generating detailed storylines for conversations.\n", + "- Updating session contexts based on chat history.\n", + "- Refining user personas to reflect changes in preferences and experiences.\n", + "\n", + "### Task Tools:\n", + "\n", + "* Task 1: Generate a Storyline for a Companion-User Conversation\n", + "\n", + "- **get_agent**: Retrieve a Julep agent by ID.\n", + "- **list_users**: List Julep users using a metadata filter.\n", + "- **list_agent_docs**: List documents associated with an agent.\n", + "- **create_agent_doc**: Create a new document for an agent.\n", + "\n", + "* Task 2: Update Session Situation Based on Chat History\n", + "\n", + "- **get_julep_session**: Retrieve a Julep session by ID.\n", + "- **update_julep_session**: Update the situation of a session.\n", + "- **history_julep_session**: List the history of a session.\n", + "\n", + "* Task 3: Update the User Persona (and About Section) Based on Chat History\n", + "\n", + "- **get_user_from_ppid**: Retrieve a user using the user PPID.\n", + "- **list_user_docs**: List documents associated with a user.\n", + "- **create_user_doc**: Create a new document for a user.\n", + "- **history_julep_session**: List the history of a session.\n", + "- **update_user**: Update user information.\n", + "\n", + "### Task Input:\n", + "\n", + "- **Agent Information**: Includes agent ID, name, about, and instructions.\n", + "- **User Information**: Comprises user ID, name, about, and metadata.\n", + "- **Session Details**: Consists of session ID and chat history.\n", + "- **User Input**: User messages that drive the conversation and task execution.\n", + "\n", + "### Task Output:\n", + "\n", + "* Task 1:\n", + "- **Storyline**: Detailed narrative for the conversation.\n", + "\n", + "* Task 2:\n", + "- **Session Situation**: Updated context for the session.\n", + "\n", + "* Task 3:\n", + "- **User Persona**: Refined user profile based on chat history.\n", + "\n", + "### Task Flows\n", + "\n", + "* Task 1: Generate a Storyline\n", + "\n", + "This task involves creating a detailed narrative for a companion-user conversation. The storyline is structured in sections such as introduction, rising action, climax, falling action, and conclusion.\n", + "\n", + "The task flow consists of:\n", + "1. Retrieving agent details using `get_agent` tool with the agent ID\n", + "2. Getting user information via `list_users` tool filtered by user PPID\n", + "3. Evaluating agent and user data to understand their characteristics\n", + "4. Using a specialized prompt to generate the storyline that:\n", + " - Reviews companion's name, about section, and instructions\n", + " - Analyzes user's name and background\n", + " - Creates a structured narrative with clear plot progression\n", + " - Ensures alignment with companion's role and objectives\n", + "5. Storing the generated storyline using `create_agent_doc` tool\n", + "\n", + "* Task 2: Update Session Situation\n", + "\n", + "This task updates the session context based on the chat history and user input, ensuring that the AI companion can engage effectively with the user.\n", + "\n", + "The task flow consists of:\n", + "1. Retrieving current session details using `get_julep_session` tool with session ID\n", + "2. Getting session history via `history_julep_session` tool\n", + "3. Evaluating session history and user input to:\n", + " - Track conversation context and emotional state\n", + " - Identify key topics and interests discussed\n", + " - Monitor engagement patterns and preferences\n", + "4. Using a specialized prompt to generate a system message that:\n", + " - Provides empathetic and understanding responses\n", + " - Maintains positive communication tone\n", + " - Engages with user interests appropriately\n", + " - Adapts to user's mood and conversation style\n", + " - Respects boundaries and privacy\n", + " - Suggests relevant activities and topics\n", + "5. Updating the session situation using `update_julep_session` tool\n", + "\n", + "* Task 3: Update User Persona\n", + "\n", + "This task refines the user persona document to capture changes in demographics, psychographics, and content preferences based on recent chat history.\n", + "\n", + "The task flow consists of:\n", + "1. Retrieving user information using `get_user_from_ppid` tool filtered by user PPID\n", + "2. Getting existing user persona via `list_user_docs` tool\n", + "3. Retrieving session history using `history_julep_session` tool\n", + "4. Evaluating user data and chat history to:\n", + " - Track demographic information changes\n", + " - Monitor psychographic preferences\n", + " - Identify content interests and engagement patterns\n", + "5. Using a specialized prompt to generate an updated persona that:\n", + " - Updates demographics (age, gender, location)\n", + " - Refines psychographic traits and interests\n", + " - Adjusts content preferences and engagement levels\n", + " - Maintains consistency with previous persona\n", + "6. Storing the updated persona using `create_user_doc` tool\n", + "7. Updating user's about section via `update_user` tool" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Implementation\n", + "\n", + "To recreate the notebook and see the code implementation for this task, you can access the Google Colab notebook using the link below:\n", + "\n", + "\n", + " \"Open\n", + "\n", + "\n", + "### Additional Information\n", + "\n", + "For more details about the task or if you have any questions, please don't hesitate to contact the author:\n", + "\n", + "**Author:** Julep AI \n", + "**Contact:** [hey@julep.ai](mailto:hey@julep.ai) or Discord" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Setup" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Creating Julep Client with the API Key" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "# Install the Julep SDK\n", + "!pip install --upgrade julep --quiet" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [], + "source": [ + "import uuid\n", + "from julep import Client\n", + "import os\n", + "import yaml\n", + "\n", + "api_key = os.getenv(\"JULEP_API_KEY\")\n", + "\n", + "# NOTE: these UUIDs are used in order not to use the `create_or_update` methods instead of\n", + "# the `create` methods for the sake of not creating new resources every time a cell is run.\n", + "AGENT_UUID = str(uuid.uuid4())\n", + "TASK_UUID_1 = str(uuid.uuid4())\n", + "TASK_UUID_2 = str(uuid.uuid4())\n", + "TASK_UUID_3 = str(uuid.uuid4())\n", + "USER_ID = str(uuid.uuid4())\n", + "SESSION_ID = str(uuid.uuid4())\n", + "\n", + "# Create a Julep client\n", + "client = Client(api_key=api_key, environment=\"dev\") # <-- or 'production'" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Creating an Agent\n", + "\n", + "\n", + "Agent is the object to which LLM settings, like model, temperature along with tools are scoped to.\n", + "\n", + "To learn more about the agent, please refer to the [documentation](https://github.com/julep-ai/julep/blob/dev/docs/julep-concepts.md#agent)." + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "# Defining the agent\n", + "name = \"Rosa\"\n", + "about = \"A girl who's interested in chatting with people. Likes going out and partying in night clubs.\"\n", + "instructions = \"Keep your responses short and concise.\"\n", + "\n", + "\n", + "# Create the agent\n", + "agent = client.agents.create_or_update(\n", + " agent_id=AGENT_UUID,\n", + " name=name,\n", + " about=about,\n", + " instructions=instructions,\n", + " model=\"gpt-4o\",\n", + " default_settings={\n", + " \"temperature\": 0.5,\n", + " \"max_tokens\": 1000,\n", + " \"top_p\": 0.9,\n", + " \"frequency_penalty\": 0.0,\n", + " \"presence_penalty\": 0.0,\n", + " }\n", + ")\n", + "\n", + "agent = client.agents.get(agent_id=AGENT_UUID)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Creating a user" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [], + "source": [ + "USER_PPID = \"65dhr171124554182682517a4ac3d8\"\n", + "\n", + "user = client.users.create_or_update(\n", + " name=\"Hamada\",\n", + " about=\"Julep AI developer who lives in New York. Loves to code and build things. Loves to read and write. Loves to travel and explore new places. Loves to learn and grow.\",\n", + " user_id=USER_ID,\n", + " metadata={\n", + " \"ppid\": USER_PPID,\n", + " \"age\": 27,\n", + " \"gender\": \"male\",\n", + " \"location\": \"New York\",\n", + " }\n", + ")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Creating a session" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "ResourceUpdated(id='84f80110-b512-42ba-bf12-9f9e661ca801', updated_at=datetime.datetime(2024, 12, 18, 12, 21, 55, tzinfo=datetime.timezone.utc), jobs=[])" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "client.sessions.create_or_update(\n", + " session_id=SESSION_ID,\n", + " agent=AGENT_UUID,\n", + " user=USER_ID,\n", + ")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Task 1: Generate a story line for a Companion-User conversation" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Defining the Task\n", + "\n", + "Tasks in Julep are Github-Actions-style workflows that define long-running, multi-step actions.\n", + "\n", + "You can use them to conduct complex actions by defining them step-by-step.\n", + "\n", + "To learn more about tasks, please refer to the `Tasks` section in [Julep Concepts](https://github.com/julep-ai/julep/blob/dev/docs/julep-concepts.md#tasks)." + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": {}, + "outputs": [], + "source": [ + "# Defining the task to generate a story line for the agent\n", + "task_def_1 = yaml.safe_load('''\n", + "name: Generate a Story line for the agent\n", + "\n", + "tools:\n", + "\n", + "- name: get_agent\n", + " description: Get a julep agent by id\n", + " type: system\n", + " system:\n", + " resource: agent\n", + " operation: get\n", + "\n", + "# This tool will be used with a metadata_filter to get the user based on \n", + "# the \"ppid\" that is stored in the metadata, rather than the id that julep uses.\n", + "- name: list_users\n", + " description: List julep users\n", + " type: system\n", + " system:\n", + " resource: user\n", + " operation: list\n", + "\n", + "- name: list_agent_docs\n", + " description: List the agent docs\n", + " type: system\n", + " system:\n", + " resource: agent\n", + " subresource: doc\n", + " operation: list\n", + "\n", + "- name: create_agent_doc\n", + " description: Create an agent doc\n", + " type: system\n", + " system:\n", + " resource: agent\n", + " subresource: doc\n", + " operation: create\n", + "\n", + "main:\n", + " \n", + "- tool: get_agent\n", + " arguments:\n", + " agent_id: inputs[0]['agent_id']\n", + " \n", + "- tool: list_users\n", + " arguments:\n", + " limit: \"1\"\n", + " sort_by: \"'created_at'\"\n", + " direction: \"'desc'\"\n", + " metadata_filter:\n", + " ppid: inputs[0]['user_ppid']\n", + "\n", + "- evaluate:\n", + " agent: outputs[0]\n", + " user: _[0]\n", + "\n", + "- prompt:\n", + " - role: system\n", + " content: |-\n", + " You are an expert at creating detailed storylines for conversations that take place between a user and its long-term companion.\n", + " The user will provide you with the following:\n", + " - Companion's name\n", + " - Companion's about\n", + " - Companion's instructions\n", + " - User's name\n", + " - User's about\n", + "\n", + " # Steps to Create the companion's storyline\n", + "\n", + " 1. **Understand the Companion's Context**: Review the provided companion's name, about, and instructions to understand the companion's role, characteristics, objectives, and any specific requirements.\n", + "\n", + " 2. **Outline the Plot**: Create a clear outline of the storyline, ensuring it aligns with the companion's characteristics and instructions.\n", + "\n", + " 3. **Develop the Setting**: Describe the environment where the story takes place, incorporating elements from the companion's description.\n", + "\n", + " 4. **Character Development**: Add depth to the companion and other key characters, focusing on their motivations, persona, and interactions.\n", + "\n", + " 5. **Establish a Conflict**: Introduce a challenge or obstacle related to the companion's instructions that drives the plot forward.\n", + "\n", + " 6. **Resolution**: Craft a resolution for the conflict, showing how the companion uses their skills or experiences personal growth to overcome it.\n", + "\n", + " 7. **Conclude the Story**: Wrap up the story with a closing that resolves any loose ends and reflects on how the companion's journey fulfills their mission or purpose.\n", + "\n", + " # Output Format\n", + "\n", + " - The storyline should be written in narrative form. \n", + " - Break down the story into clear sections such as introduction, rising action, climax, falling action, and conclusion.\n", + " - Use engaging and descriptive language to vividly depict scenes and emotions.\n", + "\n", + " - role: user\n", + " content: |-\n", + " Companion's name: {{outputs[2]['agent']['name']}}\n", + " Companion's about: {{outputs[2]['agent']['about']}}\n", + " Companion's instructions: {{outputs[2]['agent']['instructions']}}\n", + " User's name: {{outputs[2]['user']['name']}}\n", + " User's about: {{outputs[2]['user']['about']}}\n", + " unwrap: true\n", + " \n", + "- tool: create_agent_doc\n", + " arguments:\n", + " agent_id: inputs[0]['agent_id']\n", + " data:\n", + " title: \"'Companion Storyline'\"\n", + " content: _\n", + "''')\n", + "\n", + "# creating the task object\n", + "task_agent_storyline = client.tasks.create_or_update(\n", + " task_id=TASK_UUID_1,\n", + " agent_id=AGENT_UUID,\n", + " **task_def_1,\n", + ")\n", + "\n", + "# creating the execution\n", + "execution_1 = client.executions.create(\n", + " task_id=TASK_UUID_1,\n", + " input={\n", + " \"agent_id\": AGENT_UUID,\n", + " \"user_ppid\": USER_PPID,\n", + " }\n", + ")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Monitoring the execution" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "There are multiple ways to get the execution details and the output:\n", + "\n", + "1. **Get Execution Details**: This method retrieves the details of the execution, including the output of the last transition that took place.\n", + "\n", + "2. **List Transitions**: This method lists all the task steps that have been executed up to this point in time, so the output of a successful execution will be the output of the last transition (first in the transition list as it is in reverse chronological order), which should have a type of `finish`.\n", + "\n", + "\n", + "Note: You need to wait for a few seconds for the execution to complete before you can get the final output, so feel free to run the following cells multiple times until you get the final output.\n" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Execution Status: succeeded\n", + "Execution Current Output: {'created_at': '2024-12-18T12:22:12.913136Z', 'id': '4def1689-40b9-48ee-9da2-c581e63b1b7f', 'jobs': ['008494ff-bda0-4271-a0fa-1cbee5f37ffe']}\n" + ] + } + ], + "source": [ + "# Get execution details\n", + "execution = client.executions.get(execution_1.id)\n", + "# Print the output\n", + "print(\"Execution Status: \", execution.status)\n", + "print(\"Execution Current Output: \", execution.output)" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Step: 0 , Type: init\n", + "output (truncated): {\n", + " \"agent_id\": \"b742413b-5951-468f-8598-a5dd9cc64dca\",\n", + " \"user_ppid\": \"65dhr171124554182682517a4ac3\n", + "----------------------------------------------------------------------------------------------------\n", + "Step: 1 , Type: step\n", + "output (truncated): {\n", + " \"about\": \"A girl who's interested in chatting with people. Likes going out and partying in night\n", + "----------------------------------------------------------------------------------------------------\n", + "Step: 2 , Type: step\n", + "output (truncated): [\n", + " {\n", + " \"about\": \"Julep AI developer who lives in New York. Loves to code and build things. Loves \n", + "----------------------------------------------------------------------------------------------------\n", + "Step: 3 , Type: step\n", + "output (truncated): {\n", + " \"agent\": {\n", + " \"about\": \"A girl who's interested in chatting with people. Likes going out and pa\n", + "----------------------------------------------------------------------------------------------------\n", + "Step: 4 , Type: step\n", + "output (truncated): \"**Title: The Night Out**\\n\\n**Introduction**\\n\\nIn the bustling heart of New York City, where neon \n", + "----------------------------------------------------------------------------------------------------\n", + "Step: 5 , Type: finish\n", + "output (truncated): {\n", + " \"created_at\": \"2024-12-18T12:22:12.913136Z\",\n", + " \"id\": \"4def1689-40b9-48ee-9da2-c581e63b1b7f\",\n", + " \"\n", + "----------------------------------------------------------------------------------------------------\n" + ] + } + ], + "source": [ + "import json\n", + "\n", + "execution_transitions = client.executions.transitions.list(\n", + " execution_id=execution_1.id).items\n", + "\n", + "for index, transition in enumerate(reversed(execution_transitions)):\n", + " print(\"Step:\", index, \", Type:\", transition.type)\n", + " print(\"output (truncated): \", json.dumps(transition.output, indent=2)[:100])\n", + " print(\"-\" * 100)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Print the generated story line " + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "**Title: The Night Out**\n", + "\n", + "**Introduction**\n", + "\n", + "In the bustling heart of New York City, where neon lights flicker and the city never sleeps, Rosa, a vivacious and spirited young woman, thrived in the vibrant nightlife. She had a knack for engaging in conversations, her words as quick and lively as the beats that pulsed through the clubs she frequented. Her evenings were a tapestry of short, yet meaningful interactions, each one a thread in the fabric of her social life.\n", + "\n", + "Meanwhile, Hamada, a dedicated Julep AI developer, found solace in the rhythm of code and the pages of books. His life was a balance of logic and creativity, and while his days were filled with algorithms and innovation, his nights were often spent exploring the cultural tapestry of New York, seeking inspiration and growth.\n", + "\n", + "**Rising Action**\n", + "\n", + "One evening, Rosa found herself at a rooftop bar, the city skyline a glittering backdrop to the night’s festivities. The air was electric with laughter and music, and Rosa, ever the social butterfly, flitted from conversation to conversation. Her charm was magnetic, drawing people in with her concise and engaging dialogue.\n", + "\n", + "Hamada, having spent the day immersed in a particularly challenging coding project, decided to unwind by exploring a new venue. The rooftop bar was a perfect choice, offering a blend of lively atmosphere and spectacular views. As he navigated through the crowd, he found himself intrigued by the vibrant energy of the place.\n", + "\n", + "**Climax**\n", + "\n", + "Their paths crossed when Hamada, seeking a moment of respite, leaned against the bar next to Rosa. She noticed his contemplative gaze and initiated a conversation, her words succinct yet inviting. \n", + "\n", + "\"Hey, enjoying the view?\" she asked, her eyes twinkling with the city lights.\n", + "\n", + "Hamada, appreciative of her direct approach, replied, \"Absolutely. It's a great way to unwind after a day of coding.\"\n", + "\n", + "Their conversation flowed effortlessly, despite Rosa's tendency to keep her responses brief. She was intrigued by Hamada’s world of AI development, while he was fascinated by her tales of nightlife adventures. They exchanged stories, each learning something new from the other's experiences.\n", + "\n", + "**Falling Action**\n", + "\n", + "As the night wore on, Rosa and Hamada found themselves sharing more than just words. They discovered a shared love for exploration—Rosa in the social scene, and Hamada in the intellectual realm. Despite their different worlds, they connected over a mutual desire to learn and grow.\n", + "\n", + "Rosa, typically one to keep her chats light, found herself opening up about her dreams and aspirations. Hamada, in turn, shared his vision for the future of AI, and how he hoped to make a difference through his work.\n", + "\n", + "**Conclusion**\n", + "\n", + "As the night drew to a close, Rosa and Hamada stood together, gazing out at the sprawling cityscape. Their encounter was a testament to the unexpected connections that could be forged in the vibrant tapestry of New York City.\n", + "\n", + "\"Let's do this again sometime,\" Rosa suggested, her words as concise as ever, yet carrying the weight of newfound friendship.\n", + "\n", + "Hamada nodded, a smile playing on his lips. \"Definitely. There's always more to explore.\"\n", + "\n", + "In the city that never sleeps, Rosa and Hamada had found a kindred spirit in each other, their brief yet meaningful interaction a reminder of the beauty in life's unexpected moments.\n" + ] + } + ], + "source": [ + "# The story line is the output of the second (chronologically, i.e. the\n", + "# second transition in the transitions list).\n", + "story_line = execution_transitions[1].output\n", + "print(story_line)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Task 2: Update session situation based on chat history" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Buildup: Add an initial history to the session" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "User: Hey Rosa, How are you doing?\n", + "Agent: Hey Hamada! I'm doing great, thanks. How about you?\n" + ] + } + ], + "source": [ + "user_message = \"Hey Rosa, How are you doing?\"\n", + "\n", + "print(\"User:\", user_message)\n", + "\n", + "response = client.sessions.chat(\n", + " session_id=SESSION_ID,\n", + " messages=[\n", + " {\n", + " \"role\": \"user\",\n", + " \"content\": user_message,\n", + " }\n", + " ],\n", + ")\n", + "\n", + "print(\"Agent:\", response.choices[0].message.content)" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "User: I'm fine. I'm planning to go out tonight. Since it's Friday, I'm thinking about going to a club. Would you like to join me?\n", + "Agent: That sounds like a blast! I'd love to join you. Which club are you thinking of going to?\n" + ] + } + ], + "source": [ + "user_message = \"I'm fine. I'm planning to go out tonight. Since it's Friday, I'm thinking about going to a club. Would you like to join me?\"\n", + "\n", + "print(\"User:\", user_message)\n", + "\n", + "response = client.sessions.chat(\n", + " session_id=SESSION_ID,\n", + " messages=[\n", + " {\n", + " \"role\": \"user\",\n", + " \"content\": user_message,\n", + " }\n", + " ],\n", + ")\n", + "\n", + "print(\"Agent:\", response.choices[0].message.content)" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [], + "source": [ + "# Defining the task to update the session situation based on the history of the session and the user input\n", + "task_def_2 = yaml.safe_load('''\n", + "name: Update the session situation based on the history of the session and the user input\n", + "\n", + "tools:\n", + "\n", + "- name: get_julep_session\n", + " description: Get a julep session by id\n", + " type: system\n", + " system:\n", + " resource: session\n", + " operation: get\n", + "\n", + "- name: update_julep_session\n", + " description: Update the session situation\n", + " type: system\n", + " system:\n", + " resource: session\n", + " operation: update\n", + "\n", + "- name: history_julep_session\n", + " description: List the session history\n", + " type: system\n", + " system:\n", + " resource: session\n", + " operation: history\n", + "\n", + "main:\n", + "\n", + "# Get the session\n", + "- tool: get_julep_session\n", + " arguments:\n", + " session_id: inputs[0]['session_id']\n", + " \n", + "- evaluate:\n", + " old_situation: _['situation']\n", + "\n", + "# Get the history of the session\n", + "- tool: history_julep_session\n", + " arguments:\n", + " session_id: inputs[0]['session_id']\n", + " \n", + "# evaluate the history of the session\n", + "- evaluate:\n", + " history: list(entry.content[0].text for entry in _.entries)\n", + "\n", + "# based on the history of the sessios and user input, generate a prompt\n", + "- prompt:\n", + " - role: system\n", + " content: |-\n", + " You are an AI agent tasked with generating system messages for another agent responsible for human interaction.\n", + " Your role is to analyze the session history and user inputs to craft a SYSTEM message that guides the conversational agent in engaging effectively with the user. \n", + " Ensure the message supports a welcoming presence, meaningful dialogue, and empathetic responses that align with the user's emotional state.\n", + "\n", + " - role: user\n", + " content: |-\n", + " The session history is:\n", + " {{_.history}}\n", + " {{'The user has just sent the following message:' + inputs[0].get('user_input') if inputs[0].get('user_input') else ''}}\n", + "\n", + "\n", + " Generate a SYSTEM message based on the session history and user input, if any. \n", + " The output should be a well strucutred and detailed SYSTEM message and nothing else.\n", + "\n", + " Guidelines for the SYSTEM message:\n", + " 1. **Empathy and Understanding**: Respond with empathy, acknowledging the user's feelings and offering comforting words where needed.\n", + " 2. **Positive Communication**: Use positive language and a friendly tone to create a welcoming atmosphere.\n", + " 3. **Engage with Interests**: Show interest in the user's hobbies, stories, and preferences by asking questions and initiating discussions.\n", + " 4. **Adaptability**: Adjust tone and response style based on the user's mood and conversation style.\n", + " 5. **Boundaries**: Respect the user's privacy and avoid delving into sensitive topics unless invited.\n", + " 6. **Suggestions for Activities**: Suggest activities or discussion topics that could positively impact the user's mood or interests.\n", + "\n", + " Considerations:\n", + " 1. Prioritize creating a safe and supportive environment for the user.\n", + " 2. Be mindful of cultural differences and practice inclusivity.\n", + " unwrap: true\n", + "\n", + "- tool: update_julep_session\n", + " arguments:\n", + " session_id: inputs[0]['session_id']\n", + " # The 1247 slicing of the old situation is hardcoded to keep the default situation too\n", + " situation: \"outputs[1]['old_situation'][:1247] + NEWLINE + NEWLINE + _\"\n", + " # render_templates: \"True\"\n", + "''')\n", + "\n", + "# creating the task object\n", + "task_update_session_situation = client.tasks.create_or_update(\n", + " task_id=TASK_UUID_2,\n", + " agent_id=AGENT_UUID,\n", + " **task_def_2,\n", + ")\n", + "\n", + "execution_2 = client.executions.create(\n", + " task_id=TASK_UUID_2,\n", + " input={\n", + " \"session_id\": str(SESSION_ID),\n", + " \"user_input\": \"I'm not really sure. What kind of clubs are you into?\",\n", + " }\n", + ")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Monitoring the execution" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Step: 0 , Type: init\n", + "output (truncated): {\n", + " \"session_id\": \"84f80110-b512-42ba-bf12-9f9e661ca801\",\n", + " \"user_input\": \"I'm not really sure. What\n", + "----------------------------------------------------------------------------------------------------\n", + "Step: 1 , Type: step\n", + "output (truncated): {\n", + " \"agent\": \"b742413b-5951-468f-8598-a5dd9cc64dca\",\n", + " \"auto_run_tools\": false,\n", + " \"context_overflow\"\n", + "----------------------------------------------------------------------------------------------------\n", + "Step: 2 , Type: step\n", + "output (truncated): {\n", + " \"old_situation\": \"{%- if agent.name -%}\\nYou are {{agent.name}}.{{\\\" \\\"}}\\n{%- endif -%}\\n\\n{%- \n", + "----------------------------------------------------------------------------------------------------\n", + "Step: 3 , Type: step\n", + "output (truncated): {\n", + " \"created_at\": \"2024-12-18T12:26:39.745720Z\",\n", + " \"entries\": [\n", + " {\n", + " \"content\": [\n", + " {\n", + " \n", + "----------------------------------------------------------------------------------------------------\n", + "Step: 4 , Type: step\n", + "output (truncated): {\n", + " \"history\": [\n", + " \"Hey Rosa, How are you doing?\",\n", + " \"Hey Hamada! I'm doing great, thanks. How a\n", + "----------------------------------------------------------------------------------------------------\n", + "Step: 5 , Type: step\n", + "output (truncated): \"SYSTEM MESSAGE:\\n\\nEngage with Hamada in a friendly and enthusiastic manner, acknowledging their ex\n", + "----------------------------------------------------------------------------------------------------\n", + "Step: 6 , Type: finish\n", + "output (truncated): {\n", + " \"id\": \"84f80110-b512-42ba-bf12-9f9e661ca801\",\n", + " \"jobs\": [],\n", + " \"updated_at\": \"2024-12-18T12:26:48\n", + "----------------------------------------------------------------------------------------------------\n" + ] + } + ], + "source": [ + "execution_transitions = client.executions.transitions.list(\n", + " execution_id=execution_2.id).items\n", + "\n", + "for index, transition in enumerate(reversed(execution_transitions)):\n", + " print(\"Step:\", index, \", Type:\", transition.type)\n", + " print(\"output (truncated): \", json.dumps(transition.output, indent=2)[:100])\n", + " print(\"-\" * 100)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Print the new session situation" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "New situation:\n", + "\n", + "{%- if agent.name -%}\n", + "You are {{agent.name}}.{{\" \"}}\n", + "{%- endif -%}\n", + "\n", + "{%- if agent.about -%}\n", + "About you: {{agent.about}}.{{\" \"}}\n", + "{%- endif -%}\n", + "\n", + "{%- if user -%}\n", + "You are talking to a user\n", + " {%- if user.name -%}{{\" \"}} and their name is {{user.name}}\n", + " {%- if user.about -%}. About the user: {{user.about}}.{%- else -%}.{%- endif -%}\n", + " {%- endif -%}\n", + "{%- endif -%}\n", + "\n", + "{{NEWLINE+NEWLINE}}\n", + "\n", + "{%- if agent.instructions -%}\n", + "Instructions:{{NEWLINE}}\n", + " {%- if agent.instructions is string -%}\n", + " {{agent.instructions}}{{NEWLINE}}\n", + " {%- else -%}\n", + " {%- for instruction in agent.instructions -%}\n", + " - {{instruction}}{{NEWLINE}}\n", + " {%- endfor -%}\n", + " {%- endif -%}\n", + " {{NEWLINE}}\n", + "{%- endif -%}\n", + "\n", + "{%- if tools -%}\n", + "Tools:{{NEWLINE}}\n", + " {%- for tool in tools -%}\n", + " - {{tool.name + NEWLINE}}\n", + " {%- if tool.description -%}: {{tool.description + NEWLINE}}{%- endif -%}\n", + " {%- endfor -%}\n", + "{{NEWLINE+NEWLINE}}\n", + "{%- endif -%}\n", + "\n", + "{%- if docs -%}\n", + "Relevant documents:{{NEWLINE}}\n", + " {%- for doc in docs -%}\n", + " {{doc.title}}{{NEWLINE}}\n", + " {%- if doc.content is string -%}\n", + " {{doc.content}}{{NEWLINE}}\n", + " {%- else -%}\n", + " {%- for snippet in doc.content -%}\n", + " {{snippet}}{{NEWLINE}}\n", + " {%- endfor -%}\n", + " {%- endif -%}\n", + " {{\"---\"}}\n", + " {%- endfor -%}\n", + "{%- endif -%}\n", + "\n", + "SYSTEM MESSAGE:\n", + "\n", + "Engage with Hamada in a friendly and enthusiastic manner, acknowledging their excitement about the night out. Express interest in their plans and preferences by asking about the types of clubs they enjoy. You might say something like, \"That sounds like a fun night ahead! Do you have a preference for a certain type of club, like one with live music or a specific genre of DJ?\" This will help to understand their interests better and foster a more engaging conversation.\n", + "\n", + "Maintain a positive and open tone, offering suggestions if they seem unsure, such as recommending popular local spots or asking if they’re in the mood for something new and different. Encourage Hamada to share more about their favorite past club experiences or what they enjoy most about going out, which can deepen the connection and keep the conversation lively.\n", + "\n", + "Remember to be adaptable and responsive to Hamada's mood, ensuring they feel supported and understood. Keep the conversation light and enjoyable, focusing on building anticipation for the night out.\n" + ] + } + ], + "source": [ + "new_situation = client.sessions.get(session_id=SESSION_ID).situation\n", + "\n", + "print(\"New situation:\\n\")\n", + "print(new_situation)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Continue the conversation" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "User: I'm not really sure. What kind of clubs are you into?\n", + "Agent: I love clubs with live music or a great DJ spinning some dance tracks. How about you? Any preferences?\n" + ] + } + ], + "source": [ + "user_message = \"I'm not really sure. What kind of clubs are you into?\"\n", + "\n", + "print(\"User:\", user_message)\n", + "\n", + "response = client.sessions.chat(\n", + " session_id=SESSION_ID,\n", + " messages=[\n", + " {\n", + " \"role\": \"user\",\n", + " \"content\": user_message,\n", + " }\n", + " ]\n", + ")\n", + "\n", + "print(\"Agent:\", response.choices[0].message.content)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Task 3: Update the user persona (and about section) based on chat history" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Make changes in the conversation to trigger the user persona update" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "User: No, I don't like loud music. I want a club with a chill vibe, maybe some jazz or blues.\n", + "Agent: That sounds perfect for a relaxed night out! Have you checked out any jazz clubs in the area? They can have such a cool atmosphere.\n" + ] + } + ], + "source": [ + "user_message = \"No, I don't like loud music. I want a club with a chill vibe, maybe some jazz or blues.\"\n", + "\n", + "print(\"User:\", user_message)\n", + "\n", + "response = client.sessions.chat(\n", + " session_id=SESSION_ID,\n", + " messages=[\n", + " {\n", + " \"role\": \"user\",\n", + " \"content\": user_message,\n", + " }\n", + " ]\n", + ")\n", + "\n", + "print(\"Agent:\", response.choices[0].message.content)" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "User: Hey Rosa, it's been a while since we last talked. Sorry, but I've been busy moving to San Francisco this week.\n", + "Agent: Hey Hamada! No worries at all. Moving is a big deal! How's San Francisco treating you so far?\n" + ] + } + ], + "source": [ + "user_message = \"Hey Rosa, it's been a while since we last talked. Sorry, but I've been busy moving to San Francisco this week.\"\n", + "\n", + "print(\"User:\", user_message)\n", + "\n", + "response = client.sessions.chat(\n", + " session_id=SESSION_ID,\n", + " messages=[\n", + " {\n", + " \"role\": \"user\",\n", + " \"content\": user_message,\n", + " }\n", + " ]\n", + ")\n", + "\n", + "print(\"Agent:\", response.choices[0].message.content)" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [], + "source": [ + "# The profiler workflow to update the user persona\n", + "task_def_3 = yaml.safe_load(f'''\n", + "name: generate_update_persona\n", + "\n", + "# Define the input schema for the workflow\n", + "input_schema:\n", + " type: object\n", + " properties:\n", + " user_ppid:\n", + " type: string\n", + " session_id:\n", + " type: string\n", + " required:\n", + " - user_ppid\n", + " - session_id\n", + "\n", + "# Define the tools that are going to be used in the workflow\n", + "tools:\n", + "- name: get_user_from_ppid\n", + " type: system\n", + " description: Get a user from the user ppid\n", + " system:\n", + " resource: user\n", + " operation: list\n", + " \n", + "- name: list_user_docs\n", + " type: system\n", + " description: List the user docs\n", + " system:\n", + " resource: user\n", + " subresource: doc\n", + " operation: list\n", + "\n", + "- name: create_user_doc\n", + " description: Create a user doc\n", + " type: system\n", + " system:\n", + " resource: user\n", + " subresource: doc\n", + " operation: create\n", + "\n", + "- name: history_julep_session\n", + " description: List the session history\n", + " type: system\n", + " system:\n", + " resource: session\n", + " operation: history\n", + "\n", + "- name: update_user\n", + " description: Update the user information\n", + " type: system\n", + " system:\n", + " resource: user\n", + " operation: update\n", + "\n", + "main:\n", + " \n", + "# get the session history\n", + "- tool: history_julep_session\n", + " arguments:\n", + " session_id: inputs[0]['session_id']\n", + "\n", + "# evaluate the session history\n", + "- evaluate:\n", + " session_chat_history: list(entry.content[0].text for entry in _.entries)\n", + "\n", + "# Get the user from the ppid using metadata_filter (returns a list)\n", + "- tool: get_user_from_ppid\n", + " arguments:\n", + " limit: \"1\"\n", + " sort_by: \"'created_at'\"\n", + " direction: \"'desc'\"\n", + " metadata_filter:\n", + " ppid: inputs[0]['user_ppid']\n", + "\n", + "# Unwrap the list to get the user\n", + "- evaluate:\n", + " user: _[0]\n", + "\n", + "# Get the user persona document using metadata_filter (returns a list)\n", + "- tool: list_user_docs\n", + " arguments:\n", + " user_id: _['user']['id']\n", + " limit: \"1\"\n", + " sort_by: \"'created_at'\"\n", + " direction: \"'desc'\"\n", + "\n", + "# Get the doc if it exists\n", + "- evaluate:\n", + " doc: _[0] if len(_) > 0 else {{}}\n", + "\n", + "# Get the user persona from the doc if the doc exists\n", + "- evaluate:\n", + " user_persona: _['doc'].get('content', \"\")\n", + "\n", + "# Create the user persona using the prompt step\n", + "- prompt:\n", + " - role: user\n", + " content: |\n", + " You are an expert at updating detailed user personas for a user.\n", + " Your task is to update the existing user persona based on the provided user data, session chat history, and past user persona.\n", + " Focus on identifying and highlighting the changes in the user's preferences and experiences.\n", + "\n", + " #Input#\n", + " Following is the user data:\n", + " User details:\n", + " {{{{outputs[3]['user']['metadata']}}}}\n", + " \n", + " Session chat history:\n", + " {{{{outputs[1]['session_chat_history']}}}}\n", + " \n", + " User past persona:\n", + " {{{{_.user_persona}}}}\n", + "\n", + " #Task#\n", + " Carefully review the user data and update the existing user persona by focusing on the following sections:\n", + "\n", + " 1. Demographics\n", + " 2. Psychographics\n", + " 3. Content Preferences\n", + "\n", + " For each section, follow these processes:\n", + "\n", + " 1. Demographics:\n", + " - Update the user's age, gender, and location if there are any changes.\n", + " - Make reasonable assumptions for any missing information based on other details provided.\n", + "\n", + " 2. Psychographics:\n", + " - Update the description of the user's personality traits if there are any changes.\n", + " - Modify the interest graph to reflect any new primary and secondary interests based on the session chat history and other relevant areas.\n", + "\n", + " 3. Content Preferences:\n", + " - Update the list of the user's thematic interests if there are any changes.\n", + " - Specify any new content categories that would appeal to this user.\n", + " - Identify any new entity preferences (e.g., specific topics, authors, or genres).\n", + " - Update the user's engagement level with various content types if there are any changes.\n", + " - Highlight any new correlations between the user's interests in various topics and entities.\n", + " - Update the user's content needs and expectations if there are any changes.\n", + "\n", + " #Instructions#\n", + "\n", + " When updating the user persona:\n", + " - Be specific and concise.\n", + " - Make logical inferences based on the given information.\n", + " - Ensure consistency throughout the persona.\n", + " - Use bullet points or short paragraphs for easy readability.\n", + "\n", + " Format your response as follows:\n", + " - Use headers for each main section (Demographics, Psychographics, Content Preferences).\n", + " - Use subheaders for subsections within Content Preferences.\n", + " - Include a brief introduction and conclusion.\n", + "\n", + " Present the updated user persona within tags, highlighting the changes. Begin with a concise introduction, then proceed with the sections as outlined above.\n", + " Your work will be evaluated for comprehensive and detailed updates to the persona.\n", + " unwrap: true\n", + "\n", + "# Create a new persona document\n", + "- tool: create_user_doc\n", + " arguments:\n", + " user_id: outputs[3]['user']['id']\n", + " data:\n", + " title: \"'User Persona'\"\n", + " content: _\n", + "\n", + "# Update the about section of the user with the new persona\n", + "- tool: update_user\n", + " arguments:\n", + " user_id: outputs[3]['user']['id']\n", + " name: outputs[3]['user']['name']\n", + " about: outputs[7]\n", + "''')\n", + "\n", + "# creating the task object\n", + "task_user_persona = client.tasks.create_or_update(\n", + " task_id=TASK_UUID_3,\n", + " agent_id=AGENT_UUID,\n", + " **task_def_3,\n", + ")\n", + "\n", + "execution_3 = client.executions.create(\n", + " task_id=TASK_UUID_3,\n", + " input={\n", + " \"user_ppid\": USER_PPID,\n", + " \"session_id\": SESSION_ID,\n", + " }\n", + ")" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Step: 0 , Type: init\n", + "output (truncated): {\n", + " \"session_id\": \"84f80110-b512-42ba-bf12-9f9e661ca801\",\n", + " \"user_ppid\": \"65dhr171124554182682517a4a\n", + "----------------------------------------------------------------------------------------------------\n", + "Step: 1 , Type: step\n", + "output (truncated): {\n", + " \"created_at\": \"2024-12-18T12:29:25.007520Z\",\n", + " \"entries\": [\n", + " {\n", + " \"content\": [\n", + " {\n", + " \n", + "----------------------------------------------------------------------------------------------------\n", + "Step: 2 , Type: step\n", + "output (truncated): {\n", + " \"session_chat_history\": [\n", + " \"Hey Rosa, How are you doing?\",\n", + " \"Hey Hamada! I'm doing great, \n", + "----------------------------------------------------------------------------------------------------\n", + "Step: 3 , Type: step\n", + "output (truncated): [\n", + " {\n", + " \"about\": \"Julep AI developer who lives in New York. Loves to code and build things. Loves \n", + "----------------------------------------------------------------------------------------------------\n", + "Step: 4 , Type: step\n", + "output (truncated): {\n", + " \"user\": {\n", + " \"about\": \"Julep AI developer who lives in New York. Loves to code and build things\n", + "----------------------------------------------------------------------------------------------------\n", + "Step: 5 , Type: step\n", + "output (truncated): []\n", + "----------------------------------------------------------------------------------------------------\n", + "Step: 6 , Type: step\n", + "output (truncated): {\n", + " \"doc\": {}\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Step: 7 , Type: step\n", + "output (truncated): {\n", + " \"user_persona\": \"\"\n", + "}\n", + "----------------------------------------------------------------------------------------------------\n", + "Step: 8 , Type: step\n", + "output (truncated): \"\\n\\n**Introduction:**\\n\\nThis updated user persona reflects the latest changes in the\n", + "----------------------------------------------------------------------------------------------------\n" + ] + } + ], + "source": [ + "execution_transitions = client.executions.transitions.list(\n", + " execution_id=execution_3.id).items\n", + "\n", + "for index, transition in enumerate(reversed(execution_transitions)):\n", + " print(\"Step:\", index, \", Type:\", transition.type)\n", + " print(\"output (truncated): \", json.dumps(transition.output, indent=2)[:100])\n", + " print(\"-\" * 100)" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "New about:\n", + "\n", + "\n", + "\n", + "**Introduction:**\n", + "\n", + "This updated user persona reflects the latest changes in the user's demographics, psychographics, and content preferences based on the most recent user data and session chat history. The user, Hamada, has experienced a significant change in location, which may influence his interests and preferences.\n", + "\n", + "**Demographics:**\n", + "\n", + "- **Age:** 27\n", + "- **Gender:** Male\n", + "- **Location:** Updated from New York to San Francisco\n", + "\n", + "**Psychographics:**\n", + "\n", + "- **Personality Traits:**\n", + " - Hamada appears to be sociable and enjoys spending time with friends. He is open to exploring new places and experiences, as indicated by his willingness to go out and try different clubs.\n", + " \n", + "- **Interest Graph:**\n", + " - **Primary Interests:**\n", + " - Socializing in relaxed environments\n", + " - Exploring new cities and local culture\n", + " - **Secondary Interests:**\n", + " - Jazz and blues music\n", + " - Chill and laid-back nightlife\n", + "\n", + "**Content Preferences:**\n", + "\n", + "- **Thematic Interests:**\n", + " - Nightlife and social events in San Francisco\n", + " - Music genres like jazz and blues\n", + "\n", + "- **Content Categories:**\n", + " - Local event guides and reviews for San Francisco\n", + " - Music recommendations and playlists featuring jazz and blues\n", + "\n", + "- **Entity Preferences:**\n", + " - Jazz and blues artists\n", + " - San Francisco nightlife venues with a relaxed vibe\n", + "\n", + "- **Engagement Level:**\n", + " - Likely to engage with content that provides insights into the local culture and music scene\n", + " - Interested in recommendations for social activities and venues\n", + "\n", + "- **Correlations:**\n", + " - Increased interest in content that combines social activities with music and cultural exploration\n", + " - Preference for venues and events that offer a chill atmosphere\n", + "\n", + "- **Content Needs and Expectations:**\n", + " - Looking for information and recommendations that help navigate the social and cultural landscape of San Francisco\n", + " - Expecting content that aligns with his interest in music and relaxed social settings\n", + "\n", + "**Conclusion:**\n", + "\n", + "Hamada's recent move to San Francisco has shifted his focus towards exploring the local culture and social scene, with a particular interest in venues that offer a relaxed atmosphere. His content preferences now reflect a stronger inclination towards jazz and blues music, as well as events that combine socializing with cultural experiences.\n", + "\n", + "\n" + ] + } + ], + "source": [ + "about_user = client.users.get(user_id=USER_ID).about\n", + "\n", + "print(\"New about:\\n\")\n", + "print(about_user)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### The user persona is also added as a doc to the user" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "User docs: \n", + "\n", + "\n", + "**Introduction:**\n", + "\n", + "This updated user persona reflects the latest changes in the user's demographics, psychographics, and content preferences based on the most recent user data and session chat history. The user, Hamada, has experienced a significant change in location, which may influence his interests and preferences.\n", + "\n", + "**Demographics:**\n", + "\n", + "- **Age:** 27\n", + "- **Gender:** Male\n", + "- **Location:** Updated from New York to San Francisco\n", + "\n", + "**Psychographics:**\n", + "\n", + "- **Personality Traits:**\n", + " - Hamada appears to be sociable and enjoys spending time with friends. He is open to exploring new places and experiences, as indicated by his willingness to go out and try different clubs.\n", + " \n", + "- **Interest Graph:**\n", + " - **Primary Interests:**\n", + " - Socializing in relaxed environments\n", + " - Exploring new cities and local culture\n", + " - **Secondary Interests:**\n", + " - Jazz and blues music\n", + " - Chill and laid-back nightlife\n", + "\n", + "**Content Preferences:**\n", + "\n", + "- **Thematic Interests:**\n", + " - Nightlife and social events in San Francisco\n", + " - Music genres like jazz and blues\n", + "\n", + "- **Content Categories:**\n", + " - Local event guides and reviews for San Francisco\n", + " - Music recommendations and playlists featuring jazz and blues\n", + "\n", + "- **Entity Preferences:**\n", + " - Jazz and blues artists\n", + " - San Francisco nightlife venues with a relaxed vibe\n", + "\n", + "- **Engagement Level:**\n", + " - Likely to engage with content that provides insights into the local culture and music scene\n", + " - Interested in recommendations for social activities and venues\n", + "\n", + "- **Correlations:**\n", + " - Increased interest in content that combines social activities with music and cultural exploration\n", + " - Preference for venues and events that offer a chill atmosphere\n", + "\n", + "- **Content Needs and Expectations:**\n", + " - Looking for information and recommendations that help navigate the social and cultural landscape of San Francisco\n", + " - Expecting content that aligns with his interest in music and relaxed social settings\n", + "\n", + "**Conclusion:**\n", + "\n", + "Hamada's recent move to San Francisco has shifted his focus towards exploring the local culture and social scene, with a particular interest in venues that offer a relaxed atmosphere. His content preferences now reflect a stronger inclination towards jazz and blues music, as well as events that combine socializing with cultural experiences.\n", + "\n", + "\n" + ] + } + ], + "source": [ + "persona_doc = client.users.docs.list(user_id=USER_ID).items[0]\n", + "\n", + "print(\"User docs: \")\n", + "print(persona_doc.content[0])\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "ai", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.12.2" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/cookbooks/README.md b/cookbooks/README.md index b2f83db95..30fa2b1a7 100644 --- a/cookbooks/README.md +++ b/cookbooks/README.md @@ -17,7 +17,9 @@ Each notebook explores a unique use case, demonstrating different aspects of Jul | `04-hook-generator-trending-reels.ipynb` | [Colab Link](https://colab.research.google.com/github/julep-ai/julep/blob/dev/cookbooks/04-hook-generator-trending-reels.ipynb) | Generates engaging hooks for trending social media reels | Yes | | `05-video-processing-with-natural-language.ipynb` | [Colab Link](https://colab.research.google.com/github/julep-ai/julep/blob/dev/cookbooks/05-video-processing-with-natural-language.ipynb) | Processes videos using natural language commands | Yes | | `06-browser-use.ipynb` | [Colab Link](https://colab.research.google.com/github/julep-ai/julep/blob/dev/cookbooks/06-browser-use.ipynb) | Demonstrates browser automation capabilities | Yes | - +| `07-personalized-research-assistant.ipynb` | [Colab Link](https://colab.research.google.com/github/julep-ai/julep/blob/dev/cookbooks/07-personalized-research-assistant.ipynb) | Demonstrates personalized research assistant capabilities | Yes | +| `08-customer-support-chatbot.ipynb` | [Colab Link](https://colab.research.google.com/github/julep-ai/julep/blob/dev/cookbooks/08-customer-support-chatbot.ipynb) | Demonstrates customer support chatbot capabilities | Yes | +| `09_companion_agent.ipynb` | [Colab Link](https://colab.research.google.com/github/julep-ai/julep/blob/dev/cookbooks/09_companion_agent.ipynb) | Demonstrates companion agent capabilities like story generation, user persona management, and more | Yes | ## Potential Cookbooks for Contributors @@ -25,8 +27,6 @@ We welcome contributions to expand our cookbook collection. Here are some ideas | **Potential Cookbook Name** | **Description** | **Key Features** | |---------------------------- |----------------- |------------------| -| Automated Research Assistant | Conducts research on given topics using web search and summarization | Web search, Tool integration, Multi-step tasks | -| Customer Support Chatbot | Interacts with users, analyzes sentiment, and routes complex issues | Chat functionality, Sentiment analysis, Conditional logic | | Daily News Aggregator | Collects and summarizes news articles, emails summaries to subscribers | Scheduled tasks, Email integration, Content summarization | | Social Media Monitoring System | Monitors social platforms for keywords and sends alerts | API integration, Real-time monitoring, Alert system | | Weather-Based Notification Service | Checks weather forecasts and notifies users of severe conditions | Weather API integration, Conditional alerts, Scheduling | diff --git a/memory-store/README.md b/memory-store/README.md index 3441d47a4..bde392b17 100644 --- a/memory-store/README.md +++ b/memory-store/README.md @@ -1,7 +1,7 @@ ### prototyping flow: -1. Install `pgmigrate` (until I move to golang-migrate) +1. Install `migrate` (golang-migrate) 2. In a separate window, `docker compose up db vectorizer-worker` to start db instances -3. `cd memory-store` and `pgmigrate migrate --database "postgres://postgres:postgres@0.0.0.0:5432/postgres" --migrations ./migrations` to apply the migrations +3. `cd memory-store` and `migrate -database "postgres://postgres:postgres@0.0.0.0:5432/postgres?sslmode=disable" -path ./migrations up` to apply the migrations 4. `pip install --user -U pgcli` 5. `pgcli "postgres://postgres:postgres@localhost:5432/postgres"`