Joinda Payments API
  1. Wallets
Joinda Payments API
  • Wallets
    • Generate Wallet
      POST
    • Get All Wallets
      GET
    • Get Wallet Details
      GET
    • Get Wallet Transactions
      GET
  • Transactions
    • Create New Transaction
      POST
    • Get All Transactions
      GET
    • Get Transaction Details
      GET
  • Networks
    • Validate Wallet Address
      GET
    • Get Supported Networks
      GET
  • Data Access
    • Wallets
      • Get All Wallets
      • Get A Wallet
      • Delete A Wallet
      • Get All System Wallets
      • Get A System Wallet
    • Transactions
      • Get All Transactions
      • Get A Transaction
    • Webhooks
      • Get All Webhook Jobs
      • Get A Webhook Job
      • Update a Webhook Job
      • Get All Webhook Logs
      • Get a Webhook Log
    • Alerts
      • Get All Alert Channels
      • Create An Alert Channel
      • Get An Alert Channel
      • Update an Alert Channel
      • Get All Alert Recipients
      • Create An Alert Recipient
      • Get An Alert Recipient
      • Update An Alert Recipient
      • Get All Alerts
      • Get An Alert
  • Services
  • Ping
    GET
  • Authenticate
    POST
  1. Wallets

Generate Wallet

Developing
POST
/wallets

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

🟠401Unauthorized API Access
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://staging.api.joindapayments.com/wallets' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "username": "user1",
    "network": "solana"
}'
Response Response Example
200 - Success
{
    "status": "success",
    "message": "Wallet generated successfully",
    "data": {
        "wallet_address": "DqWPfiG1Ua89FXTLMZsezFBFQ1HptYvG6AbEkf9pcVUe",
        "username": "user9",
        "user_id": "8668603d-cf2f-4646-a36a-a1720efd6190"
    }
}
Modified at 2025-12-16 08:46:18
Next
Get All Wallets
Built with