API Dokümantasyonu
WaweHub API ile uygulamalarınızı entegre edin.
REST API · JSON · HTTPS
API Endpoints
All endpoints are available under https://api.thebitwave.com
| Method | Endpoint | Description |
|---|---|---|
| GET | /v1/products | List all products with pagination and filters |
| POST | /v1/products | Create a new product entry |
| GET | /v1/orders | Retrieve orders with status filtering |
| POST | /v1/orders | Place a new order |
| GET | /v1/campaigns | List active advertising campaigns |
| POST | /v1/campaigns | Create a new ad campaign |
| GET | /v1/contacts | Fetch CRM contact records |
| GET | /v1/analytics | Query analytics and performance data |
Authentication
All API requests require authentication using an API key. Include your key in the Authorization header as a Bearer token.
Authorization: Bearer YOUR_API_KEY- Generate keys from the Dashboard → Settings
- Keys are scoped per environment (test / live)
- Never expose API keys in client-side code
Rate Limits
API requests are rate-limited to ensure fair usage across all clients. Limits are applied per API key.
Standard1,000 req/min
Enterprise10,000 req/min
- 429 Too Many Requests on limit exceeded
- Retry-After header included in responses
- Contact us for higher limits
Quick Start
Get started with a simple cURL request to list your products.
terminal
curl -X GET https://api.thebitwave.com/v1/products \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json"