---
title: "Get Billing Details"
description: "Returns billing information and payment methods for the organization in your authenticated session."
---

`GET /api/organization/billing`

## Example (cURL)

```bash
BASE_URL="https://uptimeify.io"
TOKEN="<your-api-token>"

curl -X GET "$BASE_URL/api/organization/billing" \
  -H "Authorization: Bearer $TOKEN" \
  -H "Accept: application/json"
```

Notes:

- The organization is derived automatically from your authenticated session or API token.
- The legacy route `GET /api/organizations/:organizationPublicId/billing` remains supported for compatibility.
- The plural org-less alias `GET /api/organizations/billing` is also supported.
- Global admins need an active organization context in the authenticated session for the org-less route.

## Response

```json
{
  "billingEmail": "billing@deinkunde.com",
  "paymentMethod": "mollie"
}
```

## Common errors

- `400 Organization ID is required in the authenticated session` when no organization can be derived from the current session/token
- `401 Unauthorized` when you are not logged in
- `403 Forbidden` when you cannot access the organization

