This is an API of a chatbot that responds to your messages
The base URL for all API requests is:
https://intelli-chat-ai.vercel.app
Returns JSON response
user-input
: The message you send to chatbot
Returns a JSON object with the following properties:
response
: Chatbot’s response
Request [python]:
import requests url = 'https://intelli-chat-ai.vercel.app/chat' data = { 'user_input': 'Hi' } response = requests.post(url, data=data) if response.status_code == 200: print(response.text) else: print("Error:", response.status_code, response.text)
Response:
{"response":"Hi! Welcome to IntelliChat. How may I help?"}
This API uses the following error codes:
400 Bad Request
: The request was malformed or missing required parameters.
404 Not Found
: The requested resource was not found.
500 Internal Server Error
: An unexpected error occurred on the server.
This API is completely free to use. If you find it helpful and would like to support the developer, you can buy a coffee for him.
☕ https://ko-fi.com/dimuthdezoysa
☕ https://buymeacoffee.com/dimuthdezoysa
If you encounter any issues or have any questions regarding the API, please feel free to reach out to our support team at dimuthsakya@protonmail.com