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

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

Request
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.

Metadata Score Breakdown

Estimated from metadata — endpoint not independently tested

This score is estimated from observable metadata — HTTPS support, authentication model, declared CORS, and documentation reachability — because the API requires authentication or exposes no publicly testable endpoint. The five-signal breakdown is only shown for live-tested APIs.

Metadata estimate · endpoint not independently tested

Technical Specifications

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

Similar APIs

View All →