BOG Payment Gateway

Bank of Georgia payment API reference: OAuth, orders, receipts and refunds

Tested · Works

Test report

Verdict
Tested · Works
Score
8.8/10
Tested
Aug 7, 2026
Environment
Claude Code 2.x (agent harness)

Checked the skill's endpoints against the live Bank of Georgia API instead of trusting the file: the token URL matches the bank's own OpenID discovery document byte for byte, and POSTing the skill's exact order payload reached HTTP 401 Unauthorized, meaning the request body passed schema validation and only lacked credentials. The no-skill baseline, written from memory of the older iPay API, aimed at ipay.bog.ge, which is now NXDOMAIN, and its payload was rejected with 'Invalid parameter: callback_url'. Order creation, receipt lookup and refund paths all answer 401 or 405 while a fabricated path answers 404, so three of four documented endpoints are provably real. The exception is the pre-auth capture endpoint: the documented POST /payments/v1/payment/capture/{order_id} returns 404, while /payments/v1/payment/authorization/approve/{order_id} returns 401, so that one path is stale. Nothing beyond the endpoint set can be exercised without merchant credentials.

Scored on four weighted criteria — install, triggering, output vs. baseline, docs. How scoring works

  • Installs cleanly 5/5
  • Triggers reliably 5/5
  • Output vs. baseline 8/10
  • Docs & honesty 4/5

What BOG Payment Gateway does

Reference sheet for integrating the Bank of Georgia (BOG) Online Payment API: OAuth 2.0 client-credentials auth, e-commerce order creation, receipt lookup, refunds and callback handling, plus TypeScript types and the full response-code table. Triggers on mentions of BOG, Bank of Georgia, ipay.ge or payment gateway work for Georgian merchants.

How to install BOG Payment Gateway

git clone https://github.com/sepivip/claude-skill-bog-payment-gateway.git
mkdir -p ~/.claude/skills
cd claude-skill-bog-payment-gateway && cp -r skills/bog-payment-gateway ~/.claude/skills/bog-payment-gateway

Skills live in ~/.claude/skills/ (global) or .claude/skills/ (per-project). Restart Claude Code after installing.

Commands — how to trigger BOG Payment Gateway

  • /bog-payment-gateway Bank of Georgia payment API reference: OAuth, orders, receipts and refunds

It also activates on plain-language prompts like these:

  • Get an OAuth token from BOG's payment API using client credentials
  • Create a Bank of Georgia e-commerce order with a basket and redirects
  • Look up this ipay.ge payment by order id and check its status

Frequently asked questions

Is the BOG Payment Gateway skill free?
Yes. The skill itself is free from sepivip/claude-skill-bog-payment-gateway. SkillProof publishes the install command and an independent test verdict at no cost.
Does BOG Payment Gateway work with Claude Code?
We tested it with Claude Code 2.x (agent harness) on Aug 7, 2026. Verdict: Tested · Works. Checked the skill's endpoints against the live Bank of Georgia API instead of trusting the file: the token URL matches the bank's own OpenID discovery document byte for byte, and POSTing the skill's exact order payload reached HTTP 401 Unauthorized, meaning the request body passed schema validation and only lacked credentials. The no-skill baseline, written from memory of the older iPay API, aimed at ipay.bog.ge, which is now NXDOMAIN, and its payload was rejected with 'Invalid parameter: callback_url'. Order creation, receipt lookup and refund paths all answer 401 or 405 while a fabricated path answers 404, so three of four documented endpoints are provably real. The exception is the pre-auth capture endpoint: the documented POST /payments/v1/payment/capture/{order_id} returns 404, while /payments/v1/payment/authorization/approve/{order_id} returns 401, so that one path is stale. Nothing beyond the endpoint set can be exercised without merchant credentials.
What is the BOG Payment Gateway SkillProof Score?
8.8/10 — installs cleanly 5/5, triggers reliably 5/5, output vs. baseline 8/10, docs & honesty 4/5.
How do I install BOG Payment Gateway?
Copy the install command from this page, run it in your terminal, and restart Claude Code. Skills live in ~/.claude/skills/ (global) or .claude/skills/ inside a project.
Can I use BOG Payment Gateway with Cursor, Copilot, Gemini CLI, Codex or other AI tools?
The SKILL.md format is native to Claude (Claude Code, Desktop, claude.ai). The instructions inside adapt to other assistants: Cursor rules, GitHub Copilot instructions, Windsurf rules, Custom GPTs, AGENTS.md for OpenAI Codex, and GEMINI.md for Google Gemini CLI — our conversion guides cover each, and the free converter on the tools page does the wrapping for you.