- Docs
- API Reference
- REST API
REST API
Access QPub services through our RESTful API endpoints.
Overview
The QPub REST API provides HTTP-based access to all QPub services and features.
Base URL
https://api.qpub.com/v1
Authentication
All API requests require authentication using your API key:
curl -H "Authorization: Bearer YOUR_API_KEY" \
https://api.qpub.com/v1/channelsCore Endpoints
Channels
GET /channels- List channelsPOST /channels- Create channelGET /channels/{id}- Get channel detailsPUT /channels/{id}- Update channelDELETE /channels/{id}- Delete channel
Messages
POST /channels/{id}/messages- Send messageGET /channels/{id}/messages- Get messages
Connections
GET /connections- List connectionsPOST /connections- Create connection
Response Format
All responses are returned in JSON format with consistent structure.
This page is under construction. REST API documentation will be expanded soon.
Previous
Socket Protocol
Next
Overview