> ## 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_v1

Get billing history reports with advanced filtering and pagination.

## Signature

```python theme={null}
VastAI.show_invoices_v1(
    invoices: bool = False,
    invoice_type: Optional[List[str]] = None,
    charges: bool = False,
    charge_type: Optional[List[str]] = None,
    start_date: Optional[str] = None,
    end_date: Optional[str] = None,
    limit: int = 20,
    next_token: Optional[str] = None,
    format: str = "table",
    verbose: bool = False,
    latest_first: bool = False
) -> str
```

## Parameters

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

<ParamField path="invoice_type" type="Optional[List[str]]">
  invoice\_type
</ParamField>

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

<ParamField path="charge_type" type="Optional[List[str]]">
  charge\_type
</ParamField>

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

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

<ParamField path="limit" type="int" default="20">
  limit
</ParamField>

<ParamField path="next_token" type="Optional[str]">
  next\_token
</ParamField>

<ParamField path="format" type="str" default="&#x22;table&#x22;">
  format
</ParamField>

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

<ParamField path="latest_first" type="bool" default="False">
  latest\_first
</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_v1()
print(result)
```
