weavr-simulator
Use when testing Weavr integrations in sandbox - simulate deposits, card transactions, KYC/KYB verification, wire transfers, and 2FA challenges
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Use when testing Weavr integrations in sandbox - simulate deposits, card transactions, KYC/KYB verification, wire transfers, and 2FA challenges
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Use when making Weavr API calls for corporates, consumers, cards, accounts, transfers, or KYC/KYB
Use when building applications with Weavr for payments, cards, accounts, and identity verification. Covers both API integration and secure UI components.
Use when implementing Weavr UI components for secure payment flows, authentication (password/passcode), KYC/KYB verification, or card display
| name | weavr-simulator |
| description | Use when testing Weavr integrations in sandbox - simulate deposits, card transactions, KYC/KYB verification, wire transfers, and 2FA challenges |
API Reference: https://weavr-simulator-api.redoc.ly/
Sandbox-only testing tool for simulating financial operations.
// 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" }
| Category | Endpoint | Purpose |
|---|---|---|
| Accounts | POST /accounts/{id}/deposit | Simulate incoming wire transfer |
| Cards | POST /cards/{id}/purchase | Simulate card transaction |
| Cards | POST /cards/{id}/merchant_refund | Simulate refund |
| Identity | POST /consumers/{id}/verify | Auto-verify consumer KYC |
| Identity | POST /corporates/{id}/verify | Auto-verify corporate KYB |
| Transfers | POST /wiretransfers/outgoing/{id}/accept | Complete OWT |
| Transfers | POST /wiretransfers/outgoing/{id}/reject | Reject OWT |
| 2FA | POST /factors/{cred_id}/challenges/{id}/verify_success | Pass 2FA |
Header: api-key with your API Secret Key (not the regular api-key)
See references/endpoints.md for full endpoint details and request bodies.