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

# Get Ad Account

> Get metadata for the connected OpenAI Ads account: name, URL, status, timezone, currency, brand review status, and the current negative keyword list

Get metadata for the connected OpenAI Ads account: name, URL, status, timezone, currency, brand review status, and the current negative keyword list.

|                      |                             |
| -------------------- | --------------------------- |
| **App**              | OpenAI Ads                  |
| **Operation ID**     | `openai_ads_get_ad_account` |
| **Type**             | Action                      |
| **Connection**       | `openai_ads` (required)     |
| **Credits per run**  | Free                        |
| **Agent / MCP tool** | Yes                         |

## Inputs

| Field | Type | Required | Default | Description |
| ----- | ---- | -------- | ------- | ----------- |

## Output

**Type**: `Dict`

Returns the ad account object exactly as returned by the OpenAI Ads API (id, name, url, status, timezone, currency\_code, negative\_keywords, review, account\_integrity\_review).

**Fields**: dynamic (depend on the inputs)

**Example**:

```json theme={"dark"}
{
  "id": "adacct_...",
  "name": "Acme",
  "status": "active",
  "timezone": "UTC",
  "currency_code": "USD",
  "review": {
    "status": "approved"
  }
}
```
