> ## Documentation Index
> Fetch the complete documentation index at: https://docs.ariacompute.com/llms.txt
> Use this file to discover all available pages before exploring further.

# GET /api/payments/providers — enabled payment channels

> Return which wallet top-up providers are enabled on this site, so the frontend can hide disabled channels and pick the right currency.

Return which wallet top-up providers are enabled on this site. The frontend uses the response to hide unavailable channels in the top-up form and pick the correct currency. Public endpoint; no authentication required.

**Method:** `GET` **Path:** `/api/payments/providers` **Auth:** None

## Response

<ResponseField name="providers" type="object[]">
  <Expandable title="provider">
    <ResponseField name="name" type="string">
      `stripe`, `wechat`, or `alipay`.
    </ResponseField>

    <ResponseField name="enabled" type="boolean">
      Whether credentials are configured on this site.
    </ResponseField>

    <ResponseField name="currency" type="string">
      `USD` for Stripe, `CNY` for WeChat and Alipay.
    </ResponseField>

    <ResponseField name="region" type="string">
      `intl` or `cn`.
    </ResponseField>
  </Expandable>
</ResponseField>

## Example

```bash theme={null}
curl https://ariacompute.com/api/payments/providers
```

```json theme={null}
{
  "providers": [
    { "name": "stripe", "enabled": true, "currency": "USD", "region": "intl" }
  ]
}
```

<Tip>
  `GET /api/billing/settings` returns similar information alongside wallet-specific UI configuration.
</Tip>


## Related topics

- [GET /api/billing/payments/{id} — get payment status](/api-reference/billing/payments-get.md)
- [GET /api/billing/payments — list wallet top-ups](/api-reference/billing/payments-list.md)
- [GET /api/billing/invoices/{paymentId}/download — download invoice](/api-reference/billing/invoice-download.md)
- [GET /api/billing/receipts/{paymentId}/download — download Stripe receipt](/api-reference/billing/receipt-download.md)
- [Prepaid wallet, top-ups, and usage billing](/concepts/wallet-billing.md)
