Comprehensive documentation for integrating with the NarodGPT API
Getting started with the NarodGPT API
The NarodGPT API allows you to integrate AI-powered chat capabilities into your applications. Our RESTful API provides endpoints for sending messages, managing knowledge bases, and handling webhooks.
https://api.narodgpt.com/v1
All requests should be sent with the Content-Type: application/json
header. Request bodies should be valid JSON.
All responses are returned in JSON format. Successful responses will have a 2xx status code, while errors will have a 4xx or 5xx status code.
Error responses include a detail
field with a description of the error:
{ "detail": "Invalid API key" }
API requests are rate-limited based on your plan. Rate limit information is included in the response headers:
X-RateLimit-Limit
: Maximum requests per hourX-RateLimit-Remaining
: Remaining requests for the current periodX-RateLimit-Reset
: Time when the rate limit resets (Unix timestamp)Learn how to authenticate your API requests using API keys
Send messages and receive AI-powered responses
Receive real-time notifications for chat events
Official client libraries for popular programming languages