GET
/
providers
curl --request GET \
  --url https://api.live.paisr.tech/{version}/providers \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "data": {
    "providers": [
      {
        "id": "bpc_123456",
        "name": "Paisr Pay",
        "description": "The fastest way to make payments in the Caribbean.",
        "logo": "<string>",
        "type": "wallet",
        "connector": {
          "status": "enabled",
          "slug": "pcb",
          "available": true,
          "built_in": true,
          "supported_currencies": [
            [
              "SRD",
              "USD",
              "EUR"
            ]
          ]
        },
        "metadata": {},
        "created_at": "2023-11-07T05:31:56Z"
      }
    ]
  }
}

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 providers.
success
boolean
Example:

true

data
object