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

# Get Billing Details

Returns the billing details for a team, including company information, address, and tax ID. Requires a verified email and is rate limited to 30 requests per minute.

<ParamField path="team" type="string" required>
  The UUID of the team.
</ParamField>

## Response

<ResponseField name="company_name" type="string">
  The company name on file.
</ResponseField>

<ResponseField name="email" type="string">
  The billing email address, or `null` if not set.
</ResponseField>

<ResponseField name="address" type="object">
  The billing address, or `null` if not set.

  <Expandable title="address properties">
    <ResponseField name="line1" type="string">
      Street address line.
    </ResponseField>

    <ResponseField name="city" type="string">
      City name.
    </ResponseField>

    <ResponseField name="postal_code" type="string">
      Postal or ZIP code.
    </ResponseField>

    <ResponseField name="country" type="string">
      Two-letter ISO country code.
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="tax_id" type="object">
  The tax ID on file, or `null` if not set.

  <Expandable title="tax_id properties">
    <ResponseField name="type" type="string">
      The type of tax ID (e.g., `eu_vat`).
    </ResponseField>

    <ResponseField name="value" type="string">
      The tax ID value.
    </ResponseField>
  </Expandable>
</ResponseField>

<ResponseField name="supported_countries" type="array">
  List of supported two-letter ISO country codes.
</ResponseField>
