Back to Home
API Documentation
Build powerful integrations with DKS Stockox
Quick Links
Getting Started
The DKS Stockox API allows you to programmatically access and manage your inventory data. Build custom integrations, automate workflows, and sync data with your existing systems.
Base URL: https://api.stockalert.com
Authentication
All API requests require authentication using an API key in the Authorization header.
Authorization: Bearer YOUR_API_KEYAPI Endpoints
GET
/api/productsRetrieve all products
curl -X GET https://api.stockalert.com/api/products \
-H "Authorization: Bearer YOUR_API_KEY"POST
/api/productsCreate a new product
curl -X POST https://api.stockalert.com/api/products \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Product Name",
"sku": "SKU-001",
"quantity": 100
}'GET
/api/products/:idGet a specific product
curl -X GET https://api.stockalert.com/api/products/123 \
-H "Authorization: Bearer YOUR_API_KEY"Rate Limits
- Free Plan: 1,000 requests per day
- Starter Plan: 10,000 requests per day
- Professional Plan: 100,000 requests per day