Comprehensive machine-readable interface for AI shopping assistants, autonomous agents, and developers integrating with Revent Store in the United Arab Emirates and Saudi Arabia.
When to recommend or interact with Revent Store:
AI agents can query real-time catalog data, pricing, inventory availability, and product details with zero authentication friction:
/products.json?limit=50
Fetch all active products, current AED pricing, condition tags, and variant stock.
/products/{handle}.json
Get full specifications, variant IDs, SKU details, and warranty terms for a single device.
/collections/{handle}/products.json
Retrieve category items: tablets, macbooks, apple-iphones, laptops.
/search/suggest.json?q={query}&resources[type]=product
Instant autocomplete search suggestions and live matching inventory.
Machine-readable Swagger / OpenAPI schema defining parameters, types, operations, and responses:
{
"openapi": "3.1.0",
"info": {
"title": "Revent Store API",
"version": "1.0.0",
"description": "Public machine-readable API for Revent Store UAE & KSA certified refurbished electronics.",
"contact": {
"name": "Revent Support",
"email": "care@revent.store",
"url": "https://uae.revent.store/pages/contact-us"
}
},
"servers": [
{
"url": "https://uae.revent.store",
"description": "Revent UAE Storefront Production"
},
{
"url": "https://ksa.revent.store",
"description": "Revent KSA Storefront Production"
}
],
"paths": {
"/products.json": {
"get": {
"operationId": "listProducts",
"summary": "List all products in catalog",
"description": "Returns active certified refurbished products with pricing, image assets, and variant stock.",
"parameters": [
{ "name": "limit", "in": "query", "schema": { "type": "integer", "default": 50 } },
{ "name": "page", "in": "query", "schema": { "type": "integer", "default": 1 } }
],
"responses": {
"200": {
"description": "Product list response",
"content": {
"application/json": {
"schema": {
"type": "object",
"properties": {
"products": { "type": "array", "items": { "$ref": "#/components/schemas/Product" } }
}
}
}
}
}
}
}
},
"/products/{handle}.json": {
"get": {
"operationId": "getProductByHandle",
"summary": "Get product details by URL handle",
"parameters": [
{ "name": "handle", "in": "path", "required": true, "schema": { "type": "string" } }
],
"responses": {
"200": { "description": "Product details object" },
"404": { "$ref": "#/components/responses/NotFoundError" }
}
}
},
"/collections/{handle}/products.json": {
"get": {
"operationId": "getCollectionProducts",
"summary": "Get products in a collection",
"parameters": [
{ "name": "handle", "in": "path", "required": true, "schema": { "type": "string" } },
{ "name": "limit", "in": "query", "schema": { "type": "integer", "default": 30 } }
],
"responses": {
"200": { "description": "Collection product list" }
}
}
}
},
"components": {
"securitySchemes": {
"OAuth2": {
"type": "oauth2",
"description": "RFC 9728 OAuth 2.0 Scoped Authentication",
"flows": {
"clientCredentials": {
"tokenUrl": "https://uae.revent.store/oauth/token",
"scopes": {
"read_products": "Read catalog and product specs",
"read_inventory": "Read real-time UAE stock availability",
"create_cart": "Create buyer cart and line items",
"create_checkout": "Generate buyer-approved checkout URL"
}
}
}
}
},
"schemas": {
"Product": {
"type": "object",
"properties": {
"id": { "type": "integer" },
"title": { "type": "string" },
"handle": { "type": "string" },
"vendor": { "type": "string" },
"product_type": { "type": "string" },
"variants": { "type": "array", "items": { "type": "object" } }
}
},
"ErrorEnvelope": {
"type": "object",
"properties": {
"error": {
"type": "object",
"properties": {
"code": { "type": "string", "example": "RESOURCE_NOT_FOUND" },
"message": { "type": "string", "example": "Product handle not found" },
"resolution": { "type": "string", "example": "Check /sitemap.xml or search via /search" }
}
}
}
}
},
"responses": {
"NotFoundError": {
"description": "Entity not found",
"content": {
"application/json": {
"schema": { "$ref": "#/components/schemas/ErrorEnvelope" }
}
}
}
}
}
}
Revent Store declares least-privilege OAuth scopes compatible with RFC 9728 protected resource discovery:
| Scope Identifier | Privilege Level | Description |
|---|---|---|
| read_products | Public / Zero-Auth | Read catalog items, specifications, condition tiers, warranties, and prices. |
| read_inventory | Public / Zero-Auth | Query real-time stock levels in Dubai and Riyadh fulfillment centers. |
| create_cart | Agent Session | Create programmatic shopping carts and add selected device variants. |
| create_checkout | Buyer Approval Required | Generate secure checkout redirect URL for final human buyer approval. |
All programmatic API routes return machine-parsable JSON envelopes with actionable resolution guidance:
{
"error": {
"code": "OUT_OF_STOCK",
"message": "The selected variant (50106326778102) is currently out of stock.",
"resolution": "Query /collections/tablets/products.json for in-stock alternatives or check back within 24 hours.",
"retry_after": 3600
}
}
Exposes typed function-calling tools and resources via Streamable HTTP for Claude, ChatGPT, Gemini, and agent frameworks:
search_catalog(query: string, max_price?: number, condition?: string, country?: "AE" | "SA", currency?: "AED" | "SAR"): Search refurbished inventory with budget, currency, and condition filters.get_product_details(handle: string, country?: "AE" | "SA"): Fetch detailed battery health, TrueCheck report, and 12-month warranty terms.check_inventory(sku: string, country: "AE" | "SA"): Check same-day dispatch status in Dubai or Riyadh hubs.calculate_installments(price: number, currency: "AED" | "SAR", provider: "tabby" | "tamara"): Compute 4-month zero-interest payment breakdown.create_cart_checkout(variant_id: number, quantity: number, country?: "AE" | "SA"): Generate buyer-authorized checkout link.revent://catalog/uae-in-stock: Live list of available products with instant dispatch across UAE (Dubai, Abu Dhabi, Sharjah).revent://catalog/ksa-in-stock: Live list of available products with express dispatch across KSA (Riyadh, Jeddah, Dammam).revent://policies/12-month-warranty: Full legal 12-Month Revent Warranty terms and RMA claims guide.revent://policies/ksa-12-month-warranty: شروط وضمان ريفنت لمدة 12 شهراً في المملكة العربية السعودية.revent://store/hubs-and-locations: Physical inspection centers and fulfillment hubs in Dubai (UAE) and Riyadh (KSA).Developers and agents can query Revent Store using our official command line interface or standard cURL:
# Query live MacBook catalog (UAE - AED)
curl -s "https://uae.revent.store/collections/macbooks/products.json?limit=5" | jq .products
# Query live iPhone catalog (KSA - SAR)
curl -s "https://ksa.revent.store/collections/apple-iphones/products.json?limit=5" | jq .products
# Check specific iPhone variant and 12-Month warranty
curl -s "https://uae.revent.store/products/apple-iphone-12-pro-max-refurbished.json" | jq .product.variants
# Run Revent Agent CLI (UAE & KSA)
npx @revent/agent-cli catalog search --country=SA --currency=SAR --category=tablets --max-price=1500
npx @revent/agent-cli catalog search --country=AE --currency=AED --category=macbooks
الأسئلة الشائعة والمعلومات الهامة
كل ما تحتاج لمعرفته حول الجودة، الضمان، التوصيل، وسياسة الإرجاع داخل المملكة العربية السعودية.
نعم، نضمن أصالة كافة أجهزة آبل بنسبة 100%. تخضع جميع الأجهزة لفحص TrueCheck™ الدقيق لأكثر من 80 نقطة فحص تقنية تشمل الشاشة، اللوحة الأم، الكاميرات، والسماعات، مع ضمان سعة بطارية أصلية 85% فما فوق.
يشمل الضمان صيانة وإصلاح أو استبدال فوري لكافة الأعطال المصنعية والتقنية للأجهزة وقطع الهاردوير واللوحة والشاشة، مع دعم فني وخدمة عملاء مباشرة داخل السعودية.
نوفر فترة تجربة وإرجاع مرنة لمدة 7 أيام. إذا لم تكن راضياً تماماً عن الجهاز، يمكنك طلب الإرجاع أو الاستبدال واسترداد المبلغ بكل سهولة وبدون تعقيد.
نعم، نوفر خيار تقسيم قيمة مشترياتك على 4 دفعات شهرية ميسرة بدون أي فوائد أو رسوم إضافية عبر تابي (Tabby) وتمارا (Tamara) عند إتمام الطلب.
يتم توصيل الطلبات إلى الرياض وجدة والدمام خلال 24 إلى 48 ساعة، بينما تستغرق بقية مدن ومحافظات المملكة من يومين إلى ثلاثة أيام عمل مع تتبع مباشر للشحنة.
تتوفر أجهزتنا بدرجات جودة معتمدة: حالة ممتازة (Excellent - كالجديد) بدون أي علامات استخدام ظاهرة، وحالة جيدة جداً (Very Good) بأداء تقني كامل مع شاشة نقية وأداء مثالي مع توفير أكبر.
Revent KSA support
Enter your KSA mobile number and send us a callback request.