Rappi API

Shopping / OAuth Advanced HTTPS
Varies by plan (check documentation)

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

Use case: Integrate manage orders from rappi's app data into web and mobile applications
Rappi data via REST API
JSON-formatted response data
Requires OAuth authentication

Example Response

JSON 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

401 Unauthorized Access token is missing, expired, or invalid.
Re-run the OAuth flow to get a fresh access token and ensure you include it as a Bearer token in the Authorization header.
403 Forbidden Your application does not have permission to access the requested resource.
Check that your Rappi developer account has been approved and that you are requesting scopes you have been granted.
404 Not Found The order ID specified does not exist or does not belong to your account.
Verify the order ID is correct and was created through your Rappi integration.

Matrix Score Breakdown

🌐 Reachability 30/30
⚡ Speed 5/20
🔒 Security 15/15
🛠 Developer XP 3/20
✓ Reliability 10/15

Partially tested on Apr 5, 2026

Technical Specifications

Auth OAuth
HTTPS REQUIRED
CORS UNKNOWN
Category Shopping
Difficulty Advanced
Verified: 2026-04-04

Similar APIs

View All →