GET
/
payment-providers
curl --request GET \
  --url https://api.live.paisr.tech/{version}/payment-providers \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "payment_providers": [
      {
        "name": "Paisr Pay",
        "description": "A fast and secure way to pay in the Caribbean.",
        "slug": "pcb",
        "logo": "https://paisr.tech/favicon.ico",
        "type": "wallet",
        "available": true,
        "built_in": true,
        "supported_currencies": [
          "SRD",
          "USD",
          "EUR"
        ]
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

200
application/json
Successfully retrieved the list of supported payment providers.
success
boolean
Example:

true

data
object