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

# VastAI.show_invoices

Show invoice details.

## Signature

```python theme={null}
VastAI.show_invoices(
    quiet: bool = False,
    start_date: Optional[str] = None,
    end_date: Optional[str] = None,
    only_charges: bool = False,
    only_credits: bool = False,
    instance_label: Optional[str] = None
) -> str
```

## Parameters

<ParamField path="quiet" type="bool" default="False">
  quiet
</ParamField>

<ParamField path="start_date" type="Optional[str]">
  start\_date
</ParamField>

<ParamField path="end_date" type="Optional[str]">
  end\_date
</ParamField>

<ParamField path="only_charges" type="bool" default="False">
  only\_charges
</ParamField>

<ParamField path="only_credits" type="bool" default="False">
  only\_credits
</ParamField>

<ParamField path="instance_label" type="Optional[str]">
  instance\_label
</ParamField>

## Returns

`str`, Result from the API call.

## Example

```python theme={null}
from vastai import VastAI

client = VastAI(api_key="YOUR_API_KEY")
result = client.show_invoices()
print(result)
```
