Catálogo Nintendo Switch 🎮
Explora y busca tus packs de juegos al instante.
Página 1
🛒 2. Comprar Pack & Generar Enlace de Instalación
POST /api/v1/orders/buy
Descuenta saldo de tu cuenta mayorista, valida operatividad de la cuenta en Nintendo, retira el pack del catálogo y genera el enlace /instalar/{link_id} listo para entregar a tu cliente.
curl -X POST "https://switchaccount.store/api/v1/orders/buy" \
-H "x-api-key: TU_API_KEY" \
-H "Content-Type: application/json" \
-d '{"pack_id": "59612543", "client_reference": "PEDIDO-101", "buyer_name": "Carlos Gomez"}'
-H "x-api-key: TU_API_KEY" \
-H "Content-Type: application/json" \
-d '{"pack_id": "59612543", "client_reference": "PEDIDO-101", "buyer_name": "Carlos Gomez"}'
⚡ 3. API de Instalador (Enviar Código desde tu Bot)
POST /api/v1/installer/submit-code
Permite a tu Bot de Telegram o WhatsApp recibir el código de 8 dígitos de la consola del cliente y vincularlo directamente con Nintendo sin salir del chat.
curl -X POST "https://switchaccount.store/api/v1/installer/submit-code" \
-H "x-api-key: TU_API_KEY" \
-H "Content-Type: application/json" \
-d '{"link_id": "7c392f4e-...", "code": "ABCDEFGH"}'
-H "x-api-key: TU_API_KEY" \
-H "Content-Type: application/json" \
-d '{"link_id": "7c392f4e-...", "code": "ABCDEFGH"}'
💰 4. Consultar Saldo Mayorista
GET /api/v1/wallet/balance
curl -X GET "https://switchaccount.store/api/v1/wallet/balance" \
-H "x-api-key: TU_API_KEY"
-H "x-api-key: TU_API_KEY"