Deliveroo · Schema

Quote

A delivery estimate and fee.

Food DeliveryGroceryMarketplaceLogisticsRestaurants

Properties

Name Type Description
quote_id string The identifier of the quote, valid for 5 minutes.
fee integer The delivery fee in minor currency units.
View JSON Schema on GitHub

JSON Schema

signature-api-quote-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "Quote",
  "description": "A delivery estimate and fee.",
  "$id": "https://raw.githubusercontent.com/api-evangelist/deliveroo/refs/heads/main/json-schema/signature-api-quote-schema.json",
  "type": "object",
  "properties": {
    "quote_id": {
      "type": "string",
      "description": "The identifier of the quote, valid for 5 minutes.",
      "example": "gb-12345"
    },
    "fee": {
      "type": "integer",
      "description": "The delivery fee in minor currency units.",
      "example": 299
    }
  }
}