SellBot AIML API
Integrate SellBot AIML into your e-commerce platform with our REST API. Connect your product catalog, manage conversations, and track analytics programmatically.
Getting Started
To use the SellBot AIML API, you'll need an API key. Sign up for an account and generate your key from the dashboard.
Base URL:
https://api.sellbotaiml.com/v1Authentication
All API requests require authentication using your API key in the Authorization header.
curl -H "Authorization: Bearer YOUR_API_KEY" https://api.sellbotaiml.com/v1/productsKey Endpoints
Products
/productsList all products in your catalog
/productsAdd a new product to your catalog
/products/:idUpdate an existing product
/products/:idRemove a product from your catalog
Conversations
/conversationsRetrieve all customer conversations
/conversations/:idGet a specific conversation with full message history
Analytics
/analytics/overviewGet high-level metrics and KPIs
/analytics/conversionsTrack conversion rates and sales data
Example Request
Here's an example of adding a new product to your catalog:
curl -X POST https://api.sellbotaiml.com/v1/products \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"name": "Urban Pro Waterproof Laptop Backpack",
"price": 89.99,
"description": "Professional backpack with laptop compartment",
"inventory": 50,
"images": ["https://example.com/image.jpg"],
"attributes": {
"size": "16 inch",
"waterproof": true,
"weight": "1.2kg"
}
}'Security
- •All API requests must be made over HTTPS
- •API keys should be kept secure and never exposed in client-side code
- •Rate limiting: 1000 requests per hour per API key
- •Rotate your API keys regularly for enhanced security
Need Help?
For detailed API documentation, interactive examples, and support, visit our developer portal or contact our team.