MyFatoorah

MyFatoorah is a Kuwait-based online payment gateway and invoicing platform serving merchants across the GCC and wider MENA region (Kuwait, Saudi Arabia, UAE, Qatar, Egypt, Bahrain, Oman, and Jordan). Its REST API lets businesses create invoices and payment links, execute and direct-charge card payments, run embedded checkout sessions, issue refunds, manage recurring payments, onboard marketplace suppliers, calculate shipping, and receive webhook notifications. MyFatoorah aggregates regional and international payment methods including KNET, mada, Benefit, Meeza, OmanNet, Visa, Mastercard, American Express, Apple Pay, Google Pay, and STC Pay. The API is region-scoped - a shared test host plus per-country live hosts - and authenticated with a Bearer API token.

MyFatoorah publishes 9 APIs on the APIs.io network, including Invoicing API, Payment Status API, Payments API, and 6 more. Tagged areas include Payments, Payment Gateway, Kuwait, GCC, and MENA.

MyFatoorah’s developer surface includes authentication, documentation, and 8 more developer resources.

35.1/100 thin ▬ flat Agent 48/100 agent ready Full breakdown ↓
scored 2026-07-23 · rubric v0.5
AccessFreemiumSelf serve⚡ Free to try
9 APIs
PaymentsPayment GatewayKuwaitGCCMENAKNETmadaBenefitInvoicesCardsFintech

Kin Score

Kin Score Kin Score How this is scored →
scored 2026-07-23 · rubric v0.5
Composite quality — 35.1/100 · thin
Contract Quality 14.7 / 25
Developer Ergonomics 3.9 / 20
Commercial Clarity 7.9 / 20
Operational Transparency 3.4 / 13
Governance 0.0 / 12
Discoverability 6.8 / 10
Agent readiness — 48/100 · agent ready
Machine-Readable Contract 18 / 18
Agentic Access Contract 15 / 15
MCP Server 0 / 12
Machine-Readable Auth 10 / 10
Idempotency 0 / 9
Stable Error Semantics 0 / 8
Request/Response Examples 0 / 7
Rate-Limit Signaling 7 / 7
Typed Event Surface 0 / 6
Agent Skills 0 / 5
Well-Known Catalog 0 / 4
Consent & Bot Identity 0 / 3
Improve this rating by publishing the missing artifacts — every area above can be raised, and the full rubric is at apis.io/rating/. This rating is computed from github.com/api-evangelist/myfatoorah: open an issue to ask a question, or submit a pull request to add artifacts. Want it done for you? Prioritized profiling — $2,500 →

APIs 9

Individual APIs this provider publishes, each with its own machine-readable definition.

MyFatoorah Invoicing API

Create invoices and payment links.

MyFatoorah Payment Status API

Inquire on invoice and transaction status.

MyFatoorah Payments API

Discover payment methods and execute payments against a gateway.

MyFatoorah Recurring API

Recurring card payment management.

MyFatoorah Refunds API

Full and partial refunds.

MyFatoorah Sessions API

Embedded card-entry sessions and saved-card tokens.

MyFatoorah Shipping API

Shipping lookups, charges, and pickups.

MyFatoorah Suppliers API

Marketplace supplier onboarding and split settlement.

MyFatoorah Webhooks API

Retrieve webhook events triggered by MyFatoorah.

Scroll for all 9

Open Collections 1

Open, tool-agnostic API collections (OpenAPI-derived and Bruno).

MyFatoorah API

OPEN COLLECTION

Pricing Plans 1

Published pricing tiers and plan structures.

Rate Limits 1

Documented rate limits and quota policies.

Myfatoorah Rate Limits

2 limits

RATE LIMITS

FinOps 1

Cost, billing, and metering signals for API financial operations.

Security Posture 2

Authentication, domain security, vulnerability disclosure, and trust-center signals.

Myfatoorah Authentication

http · 1 scheme

SECURITY

Myfatoorah Domain Security

HSTS · DMARC

SECURITY

Agentic Access 1

Recommended x-agentic-access execution contracts for AI agents.

Myfatoorah Agentic Access

14 operations · 14 acting

14 operations · 14 acting

AGENTIC

Resources

Documentation 1

Reference material describing how the API behaves

Agent Surfaces 1

MCP servers, agent skills, and machine-readable catalogs

Build 1

SDKs, sample code, and the tooling you integrate with

Access & Security 2

Authentication, authorization, and security posture

Operate 1

Status, limits, changes, and where to get help

Commercial 2

Pricing, plans, and the legal terms of use

Company 2

The organization behind the API

Source (apis.yml)

apis.yml Raw ↑
opencollection: 1.0.0
info:
  name: MyFatoorah API
  version: '2.0'
request:
  auth:
    type: bearer
    token: '{{apiToken}}'
items:
- info:
    name: Payments
    type: folder
  items:
  - info:
      name: InitiatePayment
      type: http
    http:
      method: POST
      url: '{{baseUrl}}/InitiatePayment'
      body:
        type: json
        data: "{\n  \"InvoiceAmount\": 10,\n  \"CurrencyIso\": \"KWD\"\n}"
    docs: Returns enabled payment methods and their service charges for an amount/currency.
  - info:
      name: ExecutePayment
      type: http
    http:
      method: POST
      url: '{{baseUrl}}/ExecutePayment'
      body:
        type: json
        data: "{\n  \"PaymentMethodId\": 2,\n  \"InvoiceValue\": 10,\n  \"CallBackUrl\": \"https://example.com/success\",\n\
          \  \"ErrorUrl\": \"https://example.com/error\",\n  \"CustomerName\": \"Test Customer\"\n}"
    docs: Creates an invoice against a gateway and returns a hosted PaymentURL.
- info:
    name: Invoicing
    type: folder
  items:
  - info:
      name: SendPayment
      type: http
    http:
      method: POST
      url: '{{baseUrl}}/SendPayment'
      body:
        type: json
        data: "{\n  \"InvoiceValue\": 10,\n  \"CustomerName\": \"Test Customer\",\n  \"NotificationOption\": \"LNK\",\n  \"\
          DisplayCurrencyIso\": \"KWD\",\n  \"CallBackUrl\": \"https://example.com/success\",\n  \"ErrorUrl\": \"https://example.com/error\"\
          \n}"
    docs: Creates an invoice and generates a shareable payment link (InvoiceURL).
- info:
    name: Payment Status
    type: folder
  items:
  - info:
      name: GetPaymentStatus
      type: http
    http:
      method: POST
      url: '{{baseUrl}}/GetPaymentStatus'
      body:
        type: json
        data: "{\n  \"Key\": \"1234567\",\n  \"KeyType\": \"InvoiceId\"\n}"
    docs: Verifies whether an invoice was paid and returns its transactions.
- info:
    name: Refunds
    type: folder
  items:
  - info:
      name: MakeRefund
      type: http
    http:
      method: POST
      url: '{{baseUrl}}/MakeRefund'
      body:
        type: json
        data: "{\n  \"KeyType\": \"InvoiceId\",\n  \"Key\": \"1234567\",\n  \"Amount\": 5,\n  \"Comment\": \"Partial refund\"\
          \n}"
    docs: Issues a full or partial refund against a paid invoice or payment.
  - info:
      name: GetRefundStatus (modeled)
      type: http
    http:
      method: POST
      url: '{{baseUrl}}/GetRefundStatus'
      body:
        type: json
        data: "{\n  \"KeyType\": \"InvoiceId\",\n  \"Key\": \"1234567\"\n}"
    docs: 'MODELED: documented by name; request shape is representative. Tracks refund processing status.'
- info:
    name: Sessions (modeled)
    type: folder
  items:
  - info:
      name: InitiateSession
      type: http
    http:
      method: POST
      url: '{{baseUrl}}/InitiateSession'
      body:
        type: json
        data: '{}'
    docs: 'MODELED: creates an embedded card-entry session (SessionId, CountryCode).'
- info:
    name: Suppliers (modeled)
    type: folder
  items:
  - info:
      name: GetSuppliers
      type: http
    http:
      method: POST
      url: '{{baseUrl}}/GetSuppliers'
      body:
        type: json
        data: '{}'
    docs: 'MODELED: lists marketplace suppliers configured for split settlement.'
- info:
    name: Shipping (modeled)
    type: folder
  items:
  - info:
      name: GetCities
      type: http
    http:
      method: POST
      url: '{{baseUrl}}/GetCities'
      body:
        type: json
        data: "{\n  \"CountryCode\": \"KWT\",\n  \"ShippingMethod\": 1\n}"
    docs: 'MODELED: retrieves cities belonging to a country for shipping.'
- info:
    name: Recurring (modeled)
    type: folder
  items:
  - info:
      name: CancelRecurringPayment
      type: http
    http:
      method: POST
      url: '{{baseUrl}}/CancelRecurringPayment'
      body:
        type: json
        data: "{\n  \"RecurringId\": \"\"\n}"
    docs: 'MODELED: stops future cycles of a recurring card payment.'
- info:
    name: Webhooks (modeled)
    type: folder
  items:
  - info:
      name: GetWebhooks
      type: http
    http:
      method: POST
      url: '{{baseUrl}}/GetWebhooks'
      body:
        type: json
        data: '{}'
    docs: 'MODELED: returns webhook events MyFatoorah has triggered. Delivery is via HTTP POST callbacks, not WebSocket.'