diff --git a/docs/hub/jobs-pricing.md b/docs/hub/jobs-pricing.md
index 264ab0508..12c73bfda 100644
--- a/docs/hub/jobs-pricing.md
+++ b/docs/hub/jobs-pricing.md
@@ -81,6 +81,33 @@ hf jobs run --namespace my-org-name ...
In this case the Job runs under the organization account, and you can see it in your organization Jobs page (organization page > settings > Jobs).
+### Bill to a resource group
+
+> [!WARNING]
+> This feature is part of the Enterprise plan and above.
+
+If your organization has [Resource Groups](./security-resource-groups) set up, you can attribute job costs to a specific resource group. To do so:
+
+1. You must be a member of the resource group.
+2. Pass the resource group's ID as the `namespace` when running the job.
+
+You can find the resource group's ID in your organization's Resource Groups settings page.
+
+```bash
+hf jobs run --namespace ...
+```
+
+In Python:
+
+```python
+>>> from huggingface_hub import run_job
+>>> run_job(
+... image="python:3.12",
+... command=["python", "-c", "print('Hello!')"],
+... namespace="",
+... )
+```
+
### View current compute usage
You can look at your current billing information for Jobs in in your [Billing](https://huggingface.co/settings/billing) page, under the "Compute Usage" section:
diff --git a/docs/hub/security-resource-groups.md b/docs/hub/security-resource-groups.md
index ef22ed4f7..63e445e29 100644
--- a/docs/hub/security-resource-groups.md
+++ b/docs/hub/security-resource-groups.md
@@ -96,6 +96,18 @@ The available options are:
When a non-admin member creates a Resource Group through the UI, they are automatically added as an **admin** of that newly created group. Through the API, this does not happen automatically, since API callers may be creating groups on behalf of others. Non-admin API callers must include at least one user with the admin role in the group's initial member list.
+## Cost attribution
+
+> [!WARNING]
+> This feature is part of the Enterprise plan and above.
+
+Resource Groups also serve as a cost attribution unit for compute services. When compute is billed to a resource group, costs are tracked separately per group, making it easier to understand spending across teams.
+
+- **Spaces**: cost is automatically attributed to the resource group the Space belongs to.
+- **Jobs**: pass the resource group's ID as the `namespace` when creating a job. See [Bill to a resource group](./jobs-pricing#bill-to-a-resource-group).
+- **Inference Providers**: pass the resource group's ID via the `X-HF-Bill-To` header (or `bill_to` parameter in the SDK). See [Billing for Team and Enterprise organizations](/docs/inference-providers/pricing#billing-for-team-and-enterprise-organizations).
+- **Inference Endpoints**: cost is automatically attributed to the resource group the model repository belongs to. Endpoints instantiated directly from the built-in Inference Endpoints catalog aren't supported at this time.
+
## Resource Groups API
You can list resource groups and add users to them (or change a member's org role and resource group assignments) via the Hub API. For the full reference, examples, and batch workflows, see the [Programmatic User Access Control Management](./programmatic-user-access-control) guide.
diff --git a/docs/inference-providers/pricing.md b/docs/inference-providers/pricing.md
index 26a4995be..bbdf50e53 100644
--- a/docs/inference-providers/pricing.md
+++ b/docs/inference-providers/pricing.md
@@ -87,6 +87,8 @@ As of July 2025, hf-inference focuses mostly on CPU inference (e.g. embedding, t
For Team & Enterprise organizations, it is possible to centralize billing for all of your users. Each user still uses their own User Access Token but the requests are billed to your organization. This can be done by passing `"X-HF-Bill-To: my-org-name"` as a header in your HTTP requests.
+Enterprise organizations with [Resource Groups](/docs/hub/security-resource-groups) set up can also attribute inference costs to a specific resource group by passing the resource group's ID instead of the org name: `"X-HF-Bill-To: "`. The user's token must be a member of the resource group.
+
Team & Enterprise organizations receive a pool of free usage credits based on the number of seats in the subscription. Inference Providers usage can be tracked on the organization's billing page. Team & Enterprise organization administrators can also set a spending limit and disable a set of Inference Providers from the organization's settings.