Argentive Docs
Interfaces

API REST

Endpoints de wallet y cards para tu backend.

La API REST cubre dos dominios: wallet (/api/v1/wallet/*) y cards (/api/card/v1/*). Se autentica con la sesión del usuario (ver Autenticación).

Wallet — /api/v1/wallet

Método · RutaDescripción
GET /Wallet + balance
GET/POST /sub-walletsLista / crea agentes
GET/PATCH/DELETE /sub-wallets/{id}Detalle / edita / cierra un agente
POST /sub-wallets/{id}/allocateReasigna cap
GET/POST /sub-wallets/{id}/keysLista / crea agent keys
POST /sub-wallets/{id}/keys/{keyId}/rotateRota una key (24h gracia)
DELETE /sub-wallets/{id}/keys/{keyId}Revoca una key
GET/POST /payees, .../{id}Destinatarios
GET/POST /scheduled, .../{id}Pagos programados
POST /withdraw · GET /fund-info · POST /fundRetiro / fondeo
GET /history · POST /reconcileMovimientos / conciliación

Cards — /api/card/v1

Método · RutaDescripción
GET /cardholders/meCardholder del usuario
POST /kyc/start · GET /kyc/statusKYC (widget de verificación)
GET/POST /cardsLista / emite cards
GET /cards/{id} · .../details · .../reveal · .../shareDetalle y datos sensibles

Los montos en REST son enteros en centavos. Las respuestas de colección devuelven { "data": [...] }; los errores, { "error": "..." } con el código HTTP. Ver Errores.

La API REST asume sesión hoy — no hay bearer token público por endpoint. El acceso con token vive en el MCP.

On this page