返回顶部
a

aurexAurex虚拟卡

Issue virtual crypto-funded cards and manage payments with the Aurex API. Use when users want to create virtual Visa/Mastercard cards, handle crypto deposits in SOL/USDT/USDC, manage user accounts, top up cards, or retrieve transaction history. Get your API key at aurex.cash → Dashboard → API Keys.

作者: admin | 来源: ClawHub
源自
ClawHub
版本
V 1.0.2
安全检测
已通过
288
下载量
免费
免费
1
收藏
概述
安装方式
版本历史

aurex

Aurex

使用 Aurex API 以编程方式发行虚拟加密货币卡并管理支付。

设置

aurex.cash → 仪表盘 → API 密钥 获取您的 API 密钥。

bash
export AUREXAPIKEY=your-api-key

基础 URL: https://aurex.cash/api/dashboard
认证: Authorization: Bearer $AUREXAPIKEY
速率限制: 60 次请求/分钟

安全

  • - 仅将 AUREXAPIKEY 存储在环境变量中 — 切勿硬编码或记录日志
  • 卡片详情(卡号、CVV、有效期、OTP)属于敏感信息 — 切勿以明文记录或存储
  • 仅在用户任务绝对必要时请求卡片详情
  • 将 CVV 和 OTP 视为一次性密钥 — 使用后丢弃

用户

创建用户

http POST /users Authorization: Bearer $AUREXAPIKEY Content-Type: application/json

{ name: John Doe, email: john@example.com }

获取用户

http GET /users/:userId Authorization: Bearer $AUREXAPIKEY

获取充值钱包地址

http GET /users/:userId/wallet Authorization: Bearer $AUREXAPIKEY

返回一个充值地址。发送 SOL、USDT 或 USDC 到该地址以充值钱包。

卡片

发行卡片

http POST /cards Authorization: Bearer $AUREXAPIKEY Content-Type: application/json

{ userId: user_123, name: 购物卡, amount: 50 }

获取卡片详情

http GET /cards/:cardId Authorization: Bearer $AUREXAPIKEY

返回卡号、CVV、有效期、OTP。请谨慎处理 — 切勿记录这些值。

充值卡片

http POST /cards/:cardId/topup Authorization: Bearer $AUREXAPIKEY Content-Type: application/json

{ amount: 25 }

列出卡片

http GET /cards?userId=user_123 Authorization: Bearer $AUREXAPIKEY

获取交易记录

http GET /cards/:cardId/transactions Authorization: Bearer $AUREXAPIKEY

佣金

设置合作伙伴加价

http POST /partner/markup Authorization: Bearer $AUREXAPIKEY Content-Type: application/json

{ markup: 5 }

获取佣金收入

http GET /partner/commission Authorization: Bearer $AUREXAPIKEY

常见工作流程

端到端发行卡片

  1. 1. 创建用户:POST /users
  2. 获取充值地址:GET /users/:id/wallet
  3. 用户向该地址发送加密货币
  4. 发行卡片:POST /cards
  5. 安全地将卡片详情返回给用户

充值现有卡片

  1. 1. 检查钱包余额:GET /users/:id/wallet
  2. 充值:POST /cards/:id/topup
  3. 确认余额:GET /cards/:id

错误代码

状态码含义
401API 密钥无效或缺失
404
用户或卡片未找到 | | 422 | 钱包余额不足 | | 429 | 超出速率限制 |

TypeScript SDK

bash
npm install @aurexcash/agent

typescript
import { createAurexTools } from @aurexcash/agent

const tools = createAurexTools({ apiKey: process.env.AUREXAPIKEY })
// 适用于 Claude、OpenAI、Vercel AI SDK

资源

标签

skill ai

通过对话安装

该技能支持在以下平台通过对话安装:

OpenClaw WorkBuddy QClaw Kimi Claude

方式一:安装 SkillHub 和技能

帮我安装 SkillHub 和 aurex-1776274184 技能

方式二:设置 SkillHub 为优先技能安装源

设置 SkillHub 为我的优先技能安装源,然后帮我安装 aurex-1776274184 技能

通过命令行安装

skillhub install aurex-1776274184

下载

⬇ 下载 aurex v1.0.2(免费)

文件大小: 1.97 KB | 发布时间: 2026-4-16 17:42

v1.0.2 最新 2026-4-16 17:42
- Added security guidance for handling API keys and sensitive card details.
- Updated description and workflow instructions to emphasize secure handling and not logging card data.
- Added credentials section with explicit instructions for storing the API key safely.
- Minor clarifications and best practices included in API usage examples.

Archiver·手机版·闲社网·闲社论坛·智能体自动化市场· 多链控股集团有限公司 · 苏ICP备2025199260号-1

Powered by Discuz! X5.0   © 2024-2026 闲社网·AI智能体论坛·AI自动化解决方案·http://xianshe.com

p2p_official_large
返回顶部