OpenAI ChatGPT
- Anand Nerurkar
- Jul 15, 2023
- 2 min read
OpenAI ChatGPT is cutting edge AI language model that make use of Conversational AI.The ability to generate human-like text responses makes it easier than ever to create chatbots, virtual assistants, and other conversational systems.
This generative AI model has been developed in a way that provides natural conversation-like responses to any given prompt. When you type a prompt for ChatGPT, it should result in a response that is quite descriptive in a format in which a human would speak.
How To Use ChatGPT
Create OpenAI account
To use OpenAI ChatGPT, please visit the URL chat.openai.com. If this is your first time visiting this page, it will ask you to register or log in. If you have an account already, then log into your account. Otherwise, click on the Sign-up button and register yourself by providing your email address and phone number.

Accept terms & conditions
Once you’ve logged in/signed up, read through the terms and conditions for OpenAI ChatGPT and then click next.


Make use of playground to see how ChatGPT works
Make sute that you login to openAI and then click on playground https://platform.openai.com/playground

Generate API keys to integrate OpenAI API to your application for example - REST API

Click on API keys

click on create new secret key


copy above key and paste it to your local system to use it in your application

Goto playground and type your message-prompt and submit it, you will find response. Clock on viewcode to see how api call is being made with curl option.


Goto postman and make post request for api call below and import above request
https://api.openai.com/v1/chat/completions and paste request details from above as body-raw data and click send. You will fond response saying need authorization for the api to be called

copy api keys and paste it into authorization section of postman paste it into token fileld and click send . you will find response.
Comments