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

# Get Overview

> Information about the Advertiser's ad spend funds. This is visible on the Advertiser's Billing page in the admin portal.

### Path Parameters

<ParamField path="advertiserID" type="string" required={true} placeholder="123">
  The ID of the advertiser.
</ParamField>

### Response

<Note>
  These values are estimated and typically update hourly.
</Note>

<ResponseField name="spent" type="number">
  The amount of credit spent by the advertiser.
</ResponseField>

<ResponseField name="paid" type="number">
  The amount paid by the advertiser, as reported by you.
</ResponseField>

<ResponseField name="remaining" type="number">
  The amount of credit remaining for the advertiser.
</ResponseField>

<ResponseExample>
  ```json 200 theme={null}
  {
      "spent": 0,
      "paid": 0,
      "remaining": 0
  }
  ```

  ```json 500 theme={null}
  {
      "error": "Internal Server Error"
  }
  ```
</ResponseExample>
