← 返回
开发者工具 Key 中文

Aurex

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...
通过Aurex API发行虚拟加密货币支付卡,管理支付。支持创建虚拟Visa/万事达卡、处理加密货币充值。
aurexcards
开发者工具 clawhub v1.0.2 1 版本 99850.3 Key: 需要
★ 1
Stars
📥 647
下载
💾 5
安装
1
版本
#cards#crypto#fintech#latest#payments

概述

Aurex

Issue virtual crypto-funded cards and manage payments programmatically using the Aurex API.

Setup

Get your API key at aurex.cash → Dashboard → API Keys.

export AUREX_API_KEY="your-api-key"

Base URL: https://aurex.cash/api/dashboard

Auth: Authorization: Bearer $AUREX_API_KEY

Rate limit: 60 requests/minute

Security

  • Store AUREX_API_KEY in environment variables only — never hardcode or log it
  • Card details (number, CVV, expiry, OTP) are sensitive — never log or store them in plaintext
  • Only request card details when strictly necessary for the user's task
  • Treat CVV and OTP as single-use secrets — discard after use

Users

Create a user

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

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

Get a user

GET /users/:userId
Authorization: Bearer $AUREX_API_KEY

Get wallet address for deposits

GET /users/:userId/wallet
Authorization: Bearer $AUREX_API_KEY

Returns a deposit address. Send SOL, USDT, or USDC to fund the wallet.

Cards

Issue a card

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

{ "userId": "user_123", "name": "Shopping Card", "amount": 50 }

Get card details

GET /cards/:cardId
Authorization: Bearer $AUREX_API_KEY

Returns card number, CVV, expiry, OTP. Handle with care — never log these values.

Top up a card

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

{ "amount": 25 }

List cards

GET /cards?userId=user_123
Authorization: Bearer $AUREX_API_KEY

Get transactions

GET /cards/:cardId/transactions
Authorization: Bearer $AUREX_API_KEY

Commission

Set partner markup

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

{ "markup": 5 }

Get commission earnings

GET /partner/commission
Authorization: Bearer $AUREX_API_KEY

Common Workflows

Issue a card end-to-end

  1. Create user: POST /users
  2. Get deposit address: GET /users/:id/wallet
  3. User sends crypto to that address
  4. Issue card: POST /cards
  5. Return card details to user securely

Top up an existing card

  1. Check wallet balance: GET /users/:id/wallet
  2. Top up: POST /cards/:id/topup
  3. Confirm balance: GET /cards/:id

Error Codes

StatusMeaning
-----------------
401Invalid or missing API key
404User or card not found
422Insufficient wallet balance
429Rate limit exceeded

TypeScript SDK

npm install @aurexcash/agent
import { createAurexTools } from '@aurexcash/agent'

const tools = createAurexTools({ apiKey: process.env.AUREX_API_KEY })
// Works with Claude, OpenAI, Vercel AI SDK

Resources

版本历史

共 1 个版本

  • v1.0.2 当前
    2026-03-30 11:23 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

developer-tools

CodeConductor.ai

larsonreever
AI驱动平台,提供快速全栈开发、智能体、工作流自动化及低代码AI集成的可扩展产品创建。
★ 68 📥 180,471
developer-tools

Agent Browser

matrixy
专为AI智能体优化的无头浏览器自动化CLI,支持无障碍树快照和基于引用的元素选择。
★ 427 📥 118,383
developer-tools

Github

steipete
使用 `gh` CLI 与 GitHub 交互,通过 `gh issue`、`gh pr`、`gh run` 和 `gh api` 管理议题、PR、CI 运行及高级查询。
★ 672 📥 324,522