---
title: "Get Payment Method"
method: GET
path: "/v1/organizations/billing/payment-method"
tags: ["Organization Billing"]
---

# Get Payment Method

`GET /v1/organizations/billing/payment-method`

Get current payment method.

Returns the saved payment method details (last 4 digits, brand)
and auto-billing status.

**Requirements:**
- Read permission

**Example:**
```python
response = await client.get("/v1/organizations/billing/payment-method")
if response["has_payment_method"]:
    print(f"Card: {response['payment_method']['card_brand']} ****{response['payment_method']['card_last4']}")
```

## Response `200`

Successful Response

- GetPaymentMethodResponse — Response with current payment method.
  - `has_payment_method` boolean, required — Whether organization has a payment method saved
  - `payment_method` PaymentMethodInfo — Payment method details.
    - `payment_method_id` string, required — Stripe PaymentMethod ID
    - `type` string, required — Payment method type
    - `card_last4` string, required — Last 4 digits of card
    - `card_brand` string, required — Card brand
  - `auto_billing_enabled` boolean, required — Whether automatic billing is enabled

## Other responses

- `400` — Bad Request
- `401` — Unauthorized
- `403` — Forbidden
- `404` — Not Found
- `422` — Validation Error
- `500` — Internal Server Error

---

[API](https://skmtc.net/mixpeek/apis/mixpeek-api.md) · [All operations](https://skmtc.net/mixpeek/apis/mixpeek-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/mixpeek/mixpeek-api/revisions/220a3b263fda/schema)
