weavr-simulator

Use when testing Weavr integrations in sandbox - simulate deposits, card transactions, KYC/KYB verification, wire transfers, and 2FA challenges

$ インストール

git clone https://github.com/majiayu000/claude-skill-registry /tmp/claude-skill-registry && cp -r /tmp/claude-skill-registry/skills/testing/weavr-simulator ~/.claude/skills/claude-skill-registry

// tip: Run this command in your terminal to install the skill


name: weavr-simulator

prettier-ignore

description: Use when testing Weavr integrations in sandbox - simulate deposits, card transactions, KYC/KYB verification, wire transfers, and 2FA challenges

Weavr Simulator API

API Reference: https://weavr-simulator-api.redoc.ly/

Sandbox-only testing tool for simulating financial operations.

Quick Start

// Simulate account deposit - POST /accounts/{account_id}/deposit
// Header: api-key (API_Secret_Key)
{
  "depositAmount": { "currency": "GBP", "amount": 10000 },
  "senderName": "Test Sender",
  "reference": "Test deposit"
}
// Response: { "code": "COMPLETED" }

Core Endpoints

CategoryEndpointPurpose
AccountsPOST /accounts/{id}/depositSimulate incoming wire transfer
CardsPOST /cards/{id}/purchaseSimulate card transaction
CardsPOST /cards/{id}/merchant_refundSimulate refund
IdentityPOST /consumers/{id}/verifyAuto-verify consumer KYC
IdentityPOST /corporates/{id}/verifyAuto-verify corporate KYB
TransfersPOST /wiretransfers/outgoing/{id}/acceptComplete OWT
TransfersPOST /wiretransfers/outgoing/{id}/rejectReject OWT
2FAPOST /factors/{cred_id}/challenges/{id}/verify_successPass 2FA

Authentication

Header: api-key with your API Secret Key (not the regular api-key)

Reference Files

See references/endpoints.md for full endpoint details and request bodies.