Grab GrabPay API

The GrabPay API from Grab — 4 operation(s) for grabpay.

Operations 4

POST /grabpay/partner/v2/charge/init Initiate a one-time charge #
POST /grabpay/partner/v2/charge/complete Complete a previously initiated charge #
GET /grabpay/partner/v2/charge/{partnerTxID} Get charge transaction status #
POST /grabpay/partner/v2/refund Refund a charge #

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-grabpay-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-grabpay-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Grab Partner APIs (GrabID, , ) GrabExpress Grab Pay 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: GrabPay
paths:
  /grabpay/partner/v2/charge/init:
    post:
      tags:
      - GrabPay
      summary: Initiate a one-time charge
      operationId: chargeInit
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - partnerTxID
              - partnerGroupTxID
              - amount
              - currency
              - description
              - merchantID
              properties:
                partnerTxID:
                  type: string
                partnerGroupTxID:
                  type: string
                amount:
                  type: integer
                currency:
                  type: string
                description:
                  type: string
                merchantID:
                  type: string
                metaData:
                  type: object
      responses:
        '200':
          description: Charge initiated
          content:
            application/json:
              schema:
                type: object
                properties:
                  request:
                    type: string
                  partnerTxID:
                    type: string
  /grabpay/partner/v2/charge/complete:
    post:
      tags:
      - GrabPay
      summary: Complete a previously initiated charge
      operationId: chargeComplete
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - partnerTxID
              properties:
                partnerTxID:
                  type: string
      responses:
        '200':
          description: Charge completed
  /grabpay/partner/v2/charge/{partnerTxID}:
    get:
      tags:
      - GrabPay
      summary: Get charge transaction status
      operationId: getChargeStatus
      parameters:
      - in: path
        name: partnerTxID
        required: true
        schema:
          type: string
      - in: query
        name: currency
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Status
  /grabpay/partner/v2/refund:
    post:
      tags:
      - GrabPay
      summary: Refund a charge
      operationId: refund
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - partnerTxID
              - partnerGroupTxID
              - originPartnerTxID
              - amount
              - currency
              - description
              - merchantID
              properties:
                partnerTxID:
                  type: string
                partnerGroupTxID:
                  type: string
                originPartnerTxID:
                  type: string
                amount:
                  type: integer
                currency:
                  type: string
                description:
                  type: string
                merchantID:
                  type: string
      responses:
        '200':
          description: Refund processed
          content:
            application/json:
              schema:
                type: object
                properties:
                  partnerTxID:
                    type: string
                  refundPartnerTxID:
                    type: string
                  status:
                    type: string
                    enum:
                    - success
                    - failed
                    - pending
components:
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT