Reachware Inc. Cards API

Card save / tokenization flows

Operations 1

POST /pay/RequestSaveCard Save Cards #

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/reachware-inc-cards-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

reachware-inc-cards-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Reach Pay Cards API
  description: Reach Pay is Reachware's payment API for Saudi Arabia payment gateways. It provides a hosted checkout (Request Payment), payment status retrieval (Payment Details), refunds, and card-save (tokenization) flows. Reach Pay does not store card information; sensitive card data is handled by the underlying payment gateway. This specification was generated by the API Evangelist enrichment pipeline from Reach Pay's published API reference at https://docs.reachware.com — it captures the documented operations, request and response fields verbatim; it is not the provider's own machine-readable spec.
  version: '1.0'
  x-generated-by: api-evangelist-enrichment
  x-source: https://docs.reachware.com/api-reference
  contact:
    name: Reach Pay Support
    email: support@reachware.com
    url: https://docs.reachware.com
servers:
- url: https://api.reachware.com
  description: Sandbox (production base URL provided after integration verification)
security:
- bearerAuth: []
tags:
- name: Cards
  description: Card save / tokenization flows
paths:
  /pay/RequestSaveCard:
    post:
      operationId: requestSaveCard
      tags:
      - Cards
      summary: Save Cards
      description: Start a card save (tokenization) flow and receive a hosted card registration URL to redirect the payer to.
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
              - client_id
              - request_id
              - return_url
              properties:
                client_id:
                  type: string
                request_id:
                  type: string
                return_url:
                  type: string
                  format: uri
      responses:
        '200':
          description: Card save flow initiated
          content:
            application/json:
              schema:
                type: object
                properties:
                  request_id:
                    type: string
                  card_gateway_url:
                    type: string
                    format: uri
        '400':
          description: Bad request (e.g. return_url missing)
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorFlag'
        '404':
          description: Config not found for client id
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorFlag'
components:
  schemas:
    ErrorFlag:
      type: object
      properties:
        error:
          type: boolean
        message:
          type: string
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
      description: 'Merchant API token: Authorization: Bearer {reachToken}'