Komerce QRIS API

The QRIS API from Komerce — 3 operation(s) for qris.

Operations 3

POST /api/v1/qrisly/upload-qris Upload a QRIS image #
POST /api/v1/qrisly/generate-qris Generate a dynamic QRIS #
GET /api/v1/qrisly/payment-status/{history_id} Check QRIS payment status #

Documentation

Specifications

Other Resources

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/komerce-qris-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

komerce-qris-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Komerce QRISLY QRIS API
  version: v1
  description: 'QRISLY (by RajaOngkir / Komerce) turns a static QRIS code into dynamic, per-transaction

    QRIS codes. Upload a QRIS image once, then generate a dynamic QRIS with a custom amount

    per transaction, optionally with a unique-amount identifier so a mobile listener app can

    distinguish otherwise identical payments. Payment status is available by polling or via

    webhooks (payment.success, payment.expired). Authentication is a header API key

    (`X-API-Key`). Rate limits are surfaced on X-RateLimit-Limit / X-RateLimit-Remaining /

    X-RateLimit-Reset response headers.

    '
  contact:
    name: RajaOngkir Support
    email: support@rajaongkir.com
    url: https://rajaongkir.com/docs/qrisly/getting-started/getting-started
  x-apievangelist-generated: '2026-07-19'
  x-apievangelist-method: generated
  x-apievangelist-source: https://rajaongkir.com/docs/qrisly/getting-started/available-endpoints
servers:
- url: https://api.collaborator.komerce.id/user
  description: Production environment
- url: https://api-sandbox.collaborator.komerce.id/user
  description: Sandbox environment
security:
- ApiKeyAuth: []
tags:
- name: QRIS
paths:
  /api/v1/qrisly/upload-qris:
    post:
      operationId: uploadQris
      tags:
      - QRIS
      summary: Upload a QRIS image
      description: Upload a QRIS image with merchant details. The image is validated automatically and the returned qris_id is reused for every generation.
      requestBody:
        required: true
        content:
          multipart/form-data:
            schema:
              type: object
              required:
              - name
              - qris_image
              properties:
                name:
                  type: string
                  maxLength: 100
                  description: QRIS identity name.
                qris_image:
                  type: string
                  format: binary
                  description: QRIS image file, PNG or JPG, max 5MB.
      responses:
        '200':
          description: QRIS uploaded and validated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/UploadQrisResponse'
        '400':
          description: Invalid file format or file larger than 5MB
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '401':
          description: Invalid or missing API key
        '429':
          description: Rate limit exceeded
  /api/v1/qrisly/generate-qris:
    post:
      operationId: generateQris
      tags:
      - QRIS
      summary: Generate a dynamic QRIS
      description: Generate a dynamic QRIS string or image for a custom amount. Charged IDR 100 per generation. Default expiry is 15 minutes.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/GenerateQrisRequest'
      responses:
        '200':
          description: QRIS generated
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GenerateQrisResponse'
        '400':
          description: Invalid amount or invalid QRIS format
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorEnvelope'
        '401':
          description: Invalid or missing API key
        '404':
          description: QRIS not found
        '429':
          description: Rate limit exceeded
  /api/v1/qrisly/payment-status/{history_id}:
    get:
      operationId: getQrisPaymentStatus
      tags:
      - QRIS
      summary: Check QRIS payment status
      parameters:
      - name: history_id
        in: path
        required: true
        description: History id returned by generateQris.
        schema:
          type: integer
      responses:
        '200':
          description: Current payment status for the generated QRIS
        '401':
          description: Invalid or missing API key
        '404':
          description: QRIS or history id not found
        '429':
          description: Rate limit exceeded
components:
  schemas:
    ErrorEnvelope:
      type: object
      properties:
        success:
          type: boolean
        message:
          type: string
        code:
          type: integer
        status:
          type: string
        error_code:
          type: string
        details:
          type: object
    UploadQrisResponse:
      type: object
      properties:
        success:
          type: boolean
        message:
          type: string
        data:
          type: object
          properties:
            qris_id:
              type: string
            provider:
              type: string
            name:
              type: string
            merchant_name:
              type: string
            created_at:
              type: string
    GenerateQrisResponse:
      type: object
      properties:
        success:
          type: boolean
        message:
          type: string
        data:
          type: object
          properties:
            history_id:
              type: integer
            qris_string:
              type: string
            original_amount:
              type: integer
            final_amount:
              type: integer
            payment_status:
              type: string
            expiry_time:
              type: string
    GenerateQrisRequest:
      type: object
      required:
      - qris_id
      - amount
      - output_type
      - unique_amount
      properties:
        qris_id:
          type: integer
          description: QRIS id from the upload step.
        amount:
          type: integer
          description: Amount in Rupiah
          between 1000 and 100000000.: null
        output_type:
          type: string
          enum:
          - string
          - image
        unique_amount:
          type: boolean
          description: Add a unique identifier to the amount so identical payments can be distinguished. Default true.
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-API-Key
      description: QRISLY API key generated from the RajaOngkir Collaborator dashboard (Developer -> API Settings -> Generate New API Key).