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/v1

Authentication

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/products

Key Endpoints

Products

GET/products

List all products in your catalog

POST/products

Add a new product to your catalog

PUT/products/:id

Update an existing product

DELETE/products/:id

Remove a product from your catalog

Conversations

GET/conversations

Retrieve all customer conversations

GET/conversations/:id

Get a specific conversation with full message history

Analytics

GET/analytics/overview

Get high-level metrics and KPIs

GET/analytics/conversions

Track 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.