Is the service behind Azure Open AI Service REST API listening on port 443?

Wei Kung Wang 0 Reputation points
2023-06-21T10:11:42.9366667+00:00

I am building an application to call a deployed model built with Azure Open AI service. More specifically, I am referring to this documentation https://learn.microsoft.com/en-us/azure/cognitive-services/openai/reference to call the Chat Completion endpoint.

If I call a deployed model with:

POST https://{your-resource-name}.openai.azure.com/openai/deployments/{deployment-id}/chat/completions?api-version={api-version}

Can I assume that the data in transit is encrypted with TLS 1.2 and the service that is listening to the request is listening on port 443 (the default HTTPS port)?

Azure OpenAI Service
Azure OpenAI Service
An Azure service that provides access to OpenAI’s GPT-3 models with enterprise capabilities.
4,111 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Sarfaraz Khan 0 Reputation points
    2023-06-21T10:16:15.7266667+00:00

    The Azure Open AI Service REST API is primarily accessed over HTTPS (HTTP Secure) using the HTTPS protocol, which typically uses port 443 for secure communication. However, it's important to note that the exact port configuration can vary depending on the specific implementation and configuration of the service. It is recommended to consult the Azure Open AI Service documentation or contact Microsoft Azure Support for the most accurate and up-to-date information regarding the service's port configuration.

    0 comments No comments

  2. Konstantinos Passadis 19,596 Reputation points MVP
    2023-06-21T10:17:34.26+00:00

    Hell @Wei Kung Wang !

    Yes you are correct

    Port is 443 and TLS 1,2 is used and recommended

    I hope this helps!

    Kindly mark the answer as Accepted and Upvote in case it helped!

    Regards

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.