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_discounts(price: number, currency: "AED" | "SAR"): 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-Month Revent Warranty terms and RMA claims guide for the Kingdom of Saudi Arabia (KSA).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
Got Questions?
Everything you need to know about certified refurbished Apple devices, 12-month warranty, fast UAE delivery, and payment plans.
Yes. Every device sold on Revent is guaranteed authentic OEM hardware. Our diagnostic technicians inspect every device across TrueCheck™ 80+ checkpoints including display, logic board, cameras, and battery health before packaging.
Our comprehensive 12-Month Hardware Warranty covers internal components, logic board, display, speakers, and cameras with local UAE repair or priority replacement service following technical inspection.
Every order comes with an eligible 7-day return policy. If you have any issue with your device, our customer support team will arrange an authorized return or exchange in accordance with our return guidelines.
We accept all major credit and debit cards (Visa, Mastercard), Apple Pay, and Cash on Delivery at checkout with secure, encrypted processing.
Orders to Dubai and Sharjah are typically delivered within 24 to 48 hours. Abu Dhabi, Ajman, RAK, Fujairah, and UAQ are delivered in 1 to 2 business days with live SMS tracking.
We offer devices in verified grades: Excellent (Like-New with no visible signs of use) and Very Good (flawless display with minimal signs of use and 85%+ genuine battery health).
Revent UAE support
Enter your UAE mobile number and send us a callback request.