AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified MIT Self-run

Saudi Openbanking

skill-moshe-ship-hurmoz-saudi-openbanking · by Moshe-ship

الخدمات المصرفية المفتوحة السعودية -- إطار ساما وLean Technologies وبوابات البنوك

No reviews yet
0 installs
24 views
0.0% view→install

Install

$ agentstack add skill-moshe-ship-hurmoz-saudi-openbanking

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-moshe-ship-hurmoz-saudi-openbanking)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Saudi Openbanking? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

الخدمات المصرفية المفتوحة السعودية

> تنبيه: استخدم بيانات اختبار فقط. لا تستخدم هويات وطنية حقيقية أو توكنات دفع حية أثناء التجربة. استخدم بيئة الاختبار (sandbox) دائماً. احذف السجلات بعد الانتهاء.

دليل التكامل مع إطار الخدمات المصرفية المفتوحة في المملكة العربية السعودية (SAMA Open Banking).


إطار عمل البنك المركزي (SAMA Open Banking)

الموقع: https://openbanking.sa

أطلق البنك المركزي السعودي (ساما) إطار الخدمات المصرفية المفتوحة لتمكين مشاركة البيانات المالية بشكل آمن.

الخدمات الأساسية

| الخدمة | الاختصار | الوصف | |--------|----------|-------| | معلومات الحساب | AIS | الوصول لبيانات الحسابات والمعاملات | | بدء الدفع | PIS | تنفيذ عمليات الدفع نيابة عن العميل | | تأكيد الرصيد | CAF | التحقق من كفاية الرصيد دون كشف المبلغ |

آلية العمل

  1. التسجيل: الحصول على رخصة TSP من ساما
  2. الموافقة: العميل يوافق على مشاركة بياناته عبر البنك
  3. الوصول: استخدام Access Token للوصول للبيانات
  4. التجديد: تجديد الصلاحية عبر Refresh Token

Lean Technologies -- أول مزود خدمة مرخص

أول مزود خدمة طرف ثالث (TSP) مرخص من ساما.

التوثيق: https://docs.leantech.me/v2.0-KSA/ بيئة الاختبار: https://sandbox.sa.leantech.me

الإعداد

export LEAN_APP_TOKEN="your-lean-app-token"

المصادقة

جميع الطلبات تتطلب lean-app-token في الهيدر.

ربط حساب العميل (Link)

curl -X POST "https://sandbox.sa.leantech.me/v2/customers" \
  -H "lean-app-token: ${LEAN_APP_TOKEN}" \
  -H "Content-Type: application/json" \
  -d '{
    "app_user_id": "user-123"
  }'

جلب حسابات العميل

curl -X GET "https://sandbox.sa.leantech.me/v2/customers/{customer_id}/accounts" \
  -H "lean-app-token: ${LEAN_APP_TOKEN}" \
  -H "Content-Type: application/json"

الاستجابة:

{
  "accounts": [
    {
      "account_id": "acc_xxx",
      "iban": "SA0000000000000000000000",
      "currency": "SAR",
      "balance": 15000.50,
      "type": "current",
      "bank": "Al Rajhi Bank"
    }
  ]
}

جلب المعاملات

curl -X GET "https://sandbox.sa.leantech.me/v2/customers/{customer_id}/accounts/{account_id}/transactions?from_date=2025-01-01&to_date=2025-03-01" \
  -H "lean-app-token: ${LEAN_APP_TOKEN}" \
  -H "Content-Type: application/json"

التحقق من الهوية

curl -X GET "https://sandbox.sa.leantech.me/v2/customers/{customer_id}/identity" \
  -H "lean-app-token: ${LEAN_APP_TOKEN}" \
  -H "Content-Type: application/json"

الاستجابة:

{
  "full_name": "...",
  "national_id": "1000000000",
  "date_of_birth": "1990-01-01"
}

تنفيذ عملية دفع (Payouts)

curl -X POST "https://sandbox.sa.leantech.me/v2/payouts" \
  -H "lean-app-token: ${LEAN_APP_TOKEN}" \
  -H "Content-Type: application/json" \
  -d '{
    "source_account_id": "acc_xxx",
    "destination_iban": "SA0000000000000000000000",
    "amount": 500.00,
    "currency": "SAR",
    "description": "تحويل"
  }'

بوابات مطوري البنوك السعودية

بنك الراجحي (Al Rajhi Bank)

بوابة المطورين: https://developer.alrajhibank.com.sa/open-banking/

curl -X GET "https://api.alrajhibank.com.sa/open-banking/v1/accounts" \
  -H "Authorization: Bearer ${ALRAJHI_TOKEN}" \
  -H "Content-Type: application/json"

الخدمات: معلومات الحسابات، المعاملات، بدء الدفع

بنك الإنماء (Alinma Bank)

صفحة الخدمات المصرفية المفتوحة: https://alinma.com/en/Retail/Digital-Channels/Open-Banking

curl -X GET "https://api.alinma.com/open-banking/v1/accounts" \
  -H "Authorization: Bearer ${ALINMA_TOKEN}" \
  -H "Content-Type: application/json"

البنك العربي الوطني (ANB)

بوابة المطورين: https://developer.anb.com.sa

curl -X GET "https://api.anb.com.sa/open-banking/v1/accounts" \
  -H "Authorization: Bearer ${ANB_TOKEN}" \
  -H "Content-Type: application/json"

عرض النتيجة

بيانات مصرفية
البنك: {{ bankName }}
الحساب: {{ accountType }}
IBAN: {{ iban }}
الرصيد: {{ balance }} {{ currency }}
آخر تحديث: {{ lastUpdated }}

متى تستخدم

استخدم هذه المهارة عندما يسأل المستخدم عن:

  • واجهات مصرفية سعودية أو Open Banking
  • الوصول لبيانات الحسابات البنكية (AIS)
  • بدء عمليات الدفع (PIS)
  • Lean Technologies أو مزودي الخدمات المالية
  • بوابات مطوري البنوك السعودية (الراجحي، الإنماء، العربي الوطني)
  • إطار ساما للخدمات المصرفية المفتوحة
  • Saudi banking APIs or financial data access

المراجع

  • إطار ساما: https://openbanking.sa
  • توثيق Lean: https://docs.leantech.me/v2.0-KSA/
  • بيئة Lean التجريبية: https://sandbox.sa.leantech.me
  • الراجحي للمطورين: https://developer.alrajhibank.com.sa/open-banking/
  • الإنماء: https://alinma.com/en/Retail/Digital-Channels/Open-Banking
  • العربي الوطني: https://developer.anb.com.sa

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.