Get Recommendor LogoGet Recommendor
Developer API

Build with
Get Recommendor API

Powerful REST API for custom integrations and AI-powered recommendations.

REST API Overview

The Get Recommendor API provides programmatic access to recommendations, chatbot capabilities, and analytics data. Build custom storefronts, mobile apps, and integrations.

  • JSON-based REST endpoints
  • Fast response times (<50ms)
  • Rate limiting: 1000 requests/minute
  • Comprehensive error handling
Endpoint
https://api.getrecommendor.com/v1/
Base URL
GET /recommendations
POST /chatbot/message
GET /analytics

API Endpoints

GET/recommendationsGet product recommendations
GET /api/v1/recommendations?product_id=123&limit=8
POST/chatbot/messageSend message to AI chatbot
POST /api/v1/chatbot/message
{
  "session_id": "user_123",
  "message": "Show me blue shirts"
}
GET/trendingGet trending products
GET /api/v1/trending?limit=10
GET/analyticsGet store analytics
GET /api/v1/analytics?period=30d

Authentication

All API requests require an API key. Include it in the Authorization header:

Authorization: Bearer YOUR_API_KEY

Find your API key in the Get Recommendor dashboard under Settings → API Keys.

View API Key Guide →