HitPay Account Status API

The Account Status API from HitPay — 1 operation(s) for account status.

Operations 1

GET /v1/account-status Get Account Status #

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/hitpay-account-status-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 email required.

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

OpenAPI Specification

hitpay-account-status-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: HitPay Account Status API
  description: 'Accept PayNow, FPX, QRIS, GrabPay, cards, and 40+ payment methods with a single API. Production base URL: https://api.hit-pay.com, Sandbox: https://api.sandbox.hit-pay.com'
  version: '1.0'
servers:
- url: https://api.hit-pay.com
  description: Production
- url: https://api.sandbox.hit-pay.com
  description: Sandbox
tags:
- name: Account Status
paths:
  /v1/account-status:
    get:
      summary: Get Account Status
      description: Get the account status
      operationId: get-account-status
      parameters:
      - name: X-BUSINESS-API-KEY
        in: header
        required: true
        style: simple
        explode: false
        schema:
          type: string
          example: b286daabf9921b5a01a4621f026c111e046f8911feba212996c92159b98427d
      responses:
        '200':
          description: '200'
          content:
            application/json:
              examples:
                Result:
                  value:
                    bank_account_status: completed
                    verification:
                      overall_status: completed
                      owner_verification: not_required
                      business_verification: completed
                    payment_providers:
                      airwallex_sg:
                        setup_status: completed
                      atome_sg:
                        setup_status: completed
                      dbs_sg:
                        setup_status: pending
                      fave_sg:
                        setup_status: completed
                      shopback_sg:
                        setup_status: completed
                      shopee_pay:
                        setup_status: completed
                      stripe_sg:
                        setup_status: completed
                        payment_enabled: true
                        payout_enabled: true
              schema:
                type: object
                properties:
                  bank_account_status:
                    type: string
                  verification:
                    type: object
                    properties:
                      overall_status:
                        type: string
                      owner_verification:
                        type: string
                      business_verification:
                        type: string
                    required:
                    - overall_status
                    - owner_verification
                    - business_verification
                  payment_providers:
                    type: object
                    properties: {}
      deprecated: false
      tags:
      - Account Status
x-readme:
  headers: []
  explorer-enabled: true
  proxy-enabled: true
  samples-enabled: true
x-readme-fauxas: true