Joinda Payments API
  1. Services
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
    • List All Services
      GET
    • Create Service Token
      POST
  • Ping
    GET
  • Authenticate
    POST
  • Get Service Details
    GET
  1. Services

List All Services

Developing
GET
/services

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************

Responses

🟢200OK
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://staging.api.joindapayments.com/services' \
--header 'Authorization: Bearer <token>'
Response Response Example
{
    "status": "success",
    "message": "Services retrieved successfully",
    "data": [
        {
            "id": "aa510f3f-296b-4c2e-86be-393fb73e1f69",
            "service_name": "local-dev",
            "webhook_endpoint": "http://localhost:8082/webhook",
            "is_active": true,
            "created_at": "2025-12-16T05:38:33.335605Z",
            "updated_at": "2025-12-16T05:38:33.335611Z"
        }
    ]
}
Modified at 2025-12-16 15:16:18
Previous
Get An Alert
Next
Create Service Token
Built with