Skip to main content
GET
/
api
/
v1
/
settings
/
payments
List Payment Providers
curl --request GET \
  --url https://api.launchmystore.io/api/v1/settings/payments \
  --header 'Authorization: Bearer <token>'
{
  "status": 200,
  "state": "success",
  "message": null,
  "data": { "paymentProviders": [], "count": 0 },
  "pagination": null
}

Documentation Index

Fetch the complete documentation index at: https://docs.launchmystore.io/llms.txt

Use this file to discover all available pages before exploring further.

Returns every payment provider configured for the merchant — gateway name, display name, supported methods, and enable/disable state.
Provider secrets (secretKey) are always stripped from this endpoint. Apps cannot read merchant gateway credentials over the public API.
Required scope: read_settings

Response

data
object
{
  "status": 200,
  "state": "success",
  "message": null,
  "data": { "paymentProviders": [], "count": 0 },
  "pagination": null
}