Overview
The Rappi API lets developers manage orders placed through the Rappi delivery app. You can retrieve order details, update order statuses, and integrate Rappi into your own platform. It uses OAuth 2.0, so you will need to go through an authorization flow to get started.
Beginner Tip
You must apply for API access through the Rappi developer portal before any endpoints will work. Start by reading their onboarding guide carefully, as approval can take a few days.
Available Data
Example Response
{
"status": "success",
"data": {
"result": "Data from Rappi",
"description": "Manage orders from Rappi's app",
"timestamp": "2025-01-15T10:00:00Z"
}
} Field Reference
order_id Unique identifier for the order within the Rappi system. status Current status of the order, such as PENDING, CONFIRMED, or DELIVERED. total Total monetary value of the order in the local currency. items List of products included in the order with quantities and prices. created_at ISO 8601 timestamp indicating when the order was placed. Implementation Example
const url = "https://dev-portal.rappi.com/";
// Replace headers or query params with the values required by this API.
const response = await fetch(url, {
headers: {
"Authorization": "Bearer YOUR_API_KEY"
}
});
if (!response.ok) throw new Error(`Request failed: ${response.status}`);
const data = await response.json();
console.log(data); What Can You Build?
Note: These code examples are AI-generated and unverified. Always refer to the official API documentation for accurate usage.
Common Errors & Troubleshooting
Matrix Score Breakdown
Partially tested on Apr 5, 2026
Technical Specifications
Explore More
Similar APIs
View All →Digi-Key
The Digi-Key API provides real-time access to pricing, inventory, and detailed specifications for millions of electronic components sold by Digi-Key.
eBay
The eBay API gives you access to eBay's massive marketplace, letting you search listings, retrieve product details, manage inventory, and handle orders programmatically.
Etsy
The Etsy API lets you interact with Etsy's handmade marketplace, enabling you to read shop listings, manage your own shop inventory, and handle orders for Etsy sellers.
Flipkart Marketplace
The Flipkart Marketplace API allows Flipkart sellers to manage product listings, update inventory, and fulfill orders programmatically through the Flipkart seller platform.
Tokopedia
The Tokopedia API (now served through the TikTok Shop partner portal) allows merchants and developers to integrate with Tokopedia, Indonesia's leading e-commerce marketplace.