---
title: "List payment methods"
method: GET
path: "/v1/payment-methods"
tags: ["Payments"]
---

# List payment methods

`GET /v1/payment-methods`

Get all available payment methods and their supported currencies. Use this to determine which payment options to show customers.

## Response `200`

Success

- PaymentMethodsResponse — Response containing supported payment methods.
  - `payment_methods` object[], required — List of payment methods available to the authenticated organization in the current environment.
    - `id` string, required — Payment method identifier.
    - `display_name` string, required — Human-readable payment method name.
    - `icon` string, required — Icon or token representing the method.
    - `description` string, required — Developer-facing payment method description.
    - `type` string, required — Method type (for example `fiat` or `crypto`).
    - `enabled_by_default` boolean, required — Whether enabled by default for organizations.
    - `currencies` string[], required — Currencies supported for this method.

## Other responses

- `400` — Bad Request - Validation errors or invalid request format. Check the `details` object for field-specific validation errors. Common causes: missing required fields, invalid data types, values outside allowed ranges, or invalid formats.
- `401` — Unauthorized - Invalid, missing, or expired API key. Verify your API key is correctly formatted and included in the Authorization header as `Bearer sk_sandbox_...` or `Bearer sk_live_...`. Check that your key hasn't been revoked.
- `403` — Forbidden - API key does not have permission for the requested resource. Verify you're using the correct organization's API key and that you're not trying to access another organization's data.
- `404` — Not Found - The requested resource does not exist. Verify the resource ID is correct and that it belongs to your organization.
- `429` — Too Many Requests - Rate limit exceeded. Standard tier allows 100 requests per minute per API key. Wait a few seconds before retrying. Check X-RateLimit-Reset header for when the window resets.
- `500` — Internal Server Error - An unexpected error occurred while processing the request. Retry with exponential backoff. If the issue persists, contact support with your request context.

---

[API](https://skmtc.dev/bachs/apis/bachs-api.md) · [All operations](https://skmtc.dev/bachs/apis/bachs-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/bachs/bachs-api/revisions/f29efa8a22df/schema)
