Grab GrabExpress API

The GrabExpress API from Grab — 3 operation(s) for grabexpress.

Operations 4

POST /grab-express-sandbox/v1/deliveries/quotes Request a delivery quote #
POST /grab-express-sandbox/v1/deliveries Create a delivery order #
GET /grab-express-sandbox/v1/deliveries/{deliveryID} Get delivery status #
DELETE /grab-express-sandbox/v1/deliveries/{deliveryID} Cancel a delivery #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/grab-grabexpress-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

grab-grabexpress-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Grab Partner APIs (GrabID, GrabPay, ) Grab Express API
  description: Best-effort OpenAPI 3.1 for Grab's partner platform APIs. Covers OAuth 2.0 identity (GrabID), GrabPay payment endpoints (one-time charge, refund, status), and GrabExpress delivery quotes / orders. All requests use OAuth 2.0 (client_credentials for server-to-server or authorization_code for user-authorized flows).
  version: v1
servers:
- url: https://partner-api.grab.com
  description: Production
- url: https://partner-api.stg-myteksi.com
  description: Staging
security:
- bearerAuth: []
tags:
- name: GrabExpress
paths:
  /grab-express-sandbox/v1/deliveries/quotes:
    post:
      tags:
      - GrabExpress
      summary: Request a delivery quote
      operationId: getDeliveryQuote
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                serviceType:
                  type: string
                  enum:
                  - INSTANT
                  - SAME_DAY
                packages:
                  type: array
                  items:
                    type: object
                    properties:
                      name:
                        type: string
                      description:
                        type: string
                      quantity:
                        type: integer
                      dimensions:
                        type: object
                        properties:
                          height:
                            type: integer
                          width:
                            type: integer
                          depth:
                            type: integer
                          weight:
                            type: integer
                origin:
                  $ref: '#/components/schemas/DeliveryContact'
                destination:
                  $ref: '#/components/schemas/DeliveryContact'
      responses:
        '200':
          description: Quote
  /grab-express-sandbox/v1/deliveries:
    post:
      tags:
      - GrabExpress
      summary: Create a delivery order
      operationId: createDelivery
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                merchantOrderID:
                  type: string
                serviceType:
                  type: string
                packages:
                  type: array
                  items:
                    type: object
                origin:
                  $ref: '#/components/schemas/DeliveryContact'
                destination:
                  $ref: '#/components/schemas/DeliveryContact'
                paymentMethod:
                  type: string
                  enum:
                  - CASHLESS
                  - CASH
      responses:
        '200':
          description: Delivery created
          content:
            application/json:
              schema:
                type: object
                properties:
                  deliveryID:
                    type: string
                  quote:
                    type: object
                  status:
                    type: string
  /grab-express-sandbox/v1/deliveries/{deliveryID}:
    get:
      tags:
      - GrabExpress
      summary: Get delivery status
      operationId: getDelivery
      parameters:
      - in: path
        name: deliveryID
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Delivery
    delete:
      tags:
      - GrabExpress
      summary: Cancel a delivery
      operationId: cancelDelivery
      parameters:
      - in: path
        name: deliveryID
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Cancelled
components:
  schemas:
    DeliveryContact:
      type: object
      properties:
        address:
          type: object
          properties:
            address:
              type: string
            coordinates:
              type: object
              properties:
                latitude:
                  type: number
                longitude:
                  type: number
            keywords:
              type: string
            cityName:
              type: string
        contact:
          type: object
          properties:
            firstName:
              type: string
            lastName:
              type: string
            phone:
              type: object
              properties:
                countryCode:
                  type: string
                number:
                  type: string
            email:
              type: string
              format: email
            companyName:
              type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT