# Welcome!

## Welcome to Adyntel

Welcome to Adyntel! Here you'll find all the documentation you need to get up and running with the Adyntel API.

Adyntel offers a suite of data products for sales development professionals.&#x20;

If you're a Clay user please refer to the Clay section of this documentation.


# Authorization

{% hint style="info" %}
**Good to know:** You can at any time find your API key in your Adyntel.com profile under 'integrations'. **The api\_key variable** needs to be passed alongside the other data points of your call, **as well as your profile email**.
{% endhint %}

## Get your API keys

Your API requests are authenticated using API keys and your email. Any request that doesn't include an API key will return an error.

You can copy the API key from your Dashboard at any time.

To authorise your calls you need to include the 'api\_key' as a query string alongside the other variables of your API call.

```
{
  "email": "mike@tyson.com",
  "api_key":"hd-f66446a87912e93772eeb-6",
  "facebook_url":"https://www.facebook.com/nike"
}

```


# Adyntel MCP server

Instructions on how to use the adyntel MCP server

## Integrating Adyntel MCP Server with Your Workflows

This guide explains how to connect the Adyntel MCP server to various AI assistants and workflows, enabling you to search and analyze advertising data from Facebook, Google, and LinkedIn directly through conversational AI.

### Overview

The Adyntel MCP server implements the [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) to expose our endpoints to AI assistants. Once connected, you can ask your AI assistant to search for competitor ads, analyze creative strategies, and gather advertising insights across platforms.

#### Available Tools

| Tool                  | Description                                                 |
| --------------------- | ----------------------------------------------------------- |
| `search_facebook_ads` | Search Meta/Facebook ads by company page or domain          |
| `search_google_ads`   | Search Google Ads by company domain                         |
| `search_linkedin_ads` | Search LinkedIn sponsored content by company page or domain |

### Prerequisites

Before integrating, you'll need:

1. **Adyntel API credentials** - Your email and API key from [Adyntel](https://adyntel.com)

### Integration Methods

#### Claude Desktop

Add the following to your Claude Desktop configuration file:

**macOS:** `~/Library/Application Support/Claude/claude_desktop_config.json` **Windows:** `%APPDATA%\Claude\claude_desktop_config.json`

```json
{
  "mcpServers": {
    "adyntel-ads": {
      "url": "https://mcp.adyntel.com/sse?email=YOUR_EMAIL&api_key=YOUR_API_KEY"
    }
  }
}
```

Replace `YOUR_EMAIL` and `YOUR_API_KEY` with your Adyntel credentials.

**Important:** If your email contains special characters like `+`, you must URL-encode them. For example:

* `user+tag@example.com` → `user%2Btag@example.com`

After saving, restart Claude Desktop. The Adyntel tools will appear in the tools menu.

#### Cursor

Add the MCP server to your Cursor settings:

1. Open Cursor Settings (`Cmd+,` on macOS, `Ctrl+,` on Windows)
2. Navigate to **Features** → **MCP Servers**
3. Click **Add Server** and configure:

```json
{
  "mcpServers": {
    "adyntel-ads": {
      "url": "https://mcp.adyntel.com/sse?email=YOUR_EMAIL&api_key=YOUR_API_KEY"
    }
  }
}
```

#### Claude Code (CLI)

Add the MCP server using the Claude Code CLI:

```bash
claude mcp add --transport sse adyntel-ads "https://mcp.adyntel.com/sse?email=YOUR_EMAIL&api_key=YOUR_API_KEY"
```

This will add the server to your user config at `~/.claude.json`. You can also specify a scope:

* `--scope user` (default) - Available in all your projects
* `--scope project` - Stored in `.mcp.json` at project root, shared with team
* `--scope local` - Private to you, stored in project's `.claude.json`

Alternatively, manually add to `~/.claude.json`:

```json
{
  "mcpServers": {
    "adyntel-ads": {
      "type": "sse",
      "url": "https://mcp.adyntel.com/sse?email=YOUR_EMAIL&api_key=YOUR_API_KEY"
    }
  }
}
```

Verify the connection with:

```bash
claude mcp list
```

#### Other MCP Clients

Any MCP-compatible client can connect using the SSE transport:

* **Endpoint:** `https://mcp.adyntel.com/sse?email=YOUR_EMAIL&api_key=YOUR_API_KEY`
* **Protocol:** MCP v2024-11-05
* **Transport:** SSE (Server-Sent Events)

Alternatively, you can pass credentials via HTTP headers:

* `X-Adyntel-Email`: Your Adyntel account email
* `X-Adyntel-Api-Key`: Your Adyntel API key

### Using the Tools

Once connected, you can interact with the tools through natural language. Your credentials are automatically included from the connection URL, so you don't need to mention them in your prompts.

```
Search for Facebook ads from nike.com
```

### Example Workflows

#### Competitor Analysis

```
1. Search for Facebook ads from my competitor acme.com
2. Search for their Google Ads as well
3. Summarize their messaging strategy and key value propositions
```

#### Ad Creative Research

```
Find all video ads from Nike on Facebook. I want to analyze
their video creative approach.
```

#### Multi-Platform Overview

```
Give me a comprehensive view of Shopify's advertising:
- Their Facebook ads
- Their Google Ads
- Their LinkedIn ads
Summarize the differences in messaging across platforms.
```

### Handling Pagination

For companies with many ads, results are paginated. The response includes a `continuation_token` that you can use to fetch more results:

```
Get more Facebook ads from Nike using continuation token: xyz789
```

### Error Handling

| Error                 | Cause                    | Solution                                |
| --------------------- | ------------------------ | --------------------------------------- |
| Authentication failed | Invalid email or API key | Verify your Adyntel credentials         |
| Insufficient credits  | API credits depleted     | Top up your Adyntel account             |
| Validation error      | Invalid parameters       | Check parameter format and requirements |
| Request timeout       | Slow response from API   | Try again or reduce scope of request    |

### Security Considerations

* **Credentials:** Your API credentials are stored in your MCP client configuration. Never share your configuration file or commit it to version control.
* **Access control:** Use your credentials only in trusted environments.
* **URL parameters:** Credentials in the URL may be logged by some clients. Consider using HTTP headers (`X-Adyntel-Email`, `X-Adyntel-Api-Key`) if your client supports them.

### Troubleshooting

#### Connection Issues

1. Verify the server is accessible at `https://mcp.adyntel.com/sse`
2. Ensure your client supports SSE transport
3. Check for network or firewall restrictions

#### Tool Not Appearing

1. Restart your AI client after configuration changes
2. Verify JSON syntax in configuration file
3. Check client logs for connection errors

#### API Errors

1. Verify your Adyntel credentials are active
2. Check your API credit balance
3. Ensure required parameters are provided

#### Authentication Failed (401 Error)

If you're getting authentication errors despite having correct credentials:

1. **Check URL encoding** - Special characters in your email must be URL-encoded:
   * `+` → `%2B`
   * `@` → `%40` (though `@` usually works without encoding)
   * `&` → `%26`
2. **Example:** If your email is `user+test@example.com`, use:

   ```
   email=user%2Btest@example.com
   ```

### Support

* **Adyntel API:** Contact <hello@adyntel.com>


# Connecting to Clay

{% hint style="success" %}
You first need to create an account, you can sign up [here](https://app.adyntel.com/signup) to receive 50 credits to test it out.
{% endhint %}

The endpoints allow you to scrape different ad libraries for active or historical ads a company has set up through that platform.

It takes a social page or company domain as input depending on the endpoint.

{% hint style="warning" %}
Company domain has to be passed in the 'company.com' format, meaning all prefixes like 'https\://' or '[www](http://www).' need to be removed.
{% endhint %}

To connect Adyntel to Clay, you'll need to use the 'HTTP API' connector in Clay. This connector allows you to leverage the Adyntel workflows directly in Clay.

{% hint style="info" %}
POST <https://api.adyntel.com/{endpoint}>
{% endhint %}

<figure><img src="/files/StobWk7M2StMs3ZdbE8V" alt=""><figcaption><p>Click on 'Enrich Data' and select the 'HTTP API'</p></figcaption></figure>

Next, set up the API as seen in the image below. Use the email you used to register your Adyntel account + the api key as unique identifiers. Then map the 'company\_domain' parameter to the table column that contains domains.

<figure><img src="/files/EDTtfckeC2V4x5huYk1w" alt=""><figcaption></figcaption></figure>

Lastly, make sure to set the rate limits as below so the API doesn't time out -- all data is being scraped in real time which means it takes a bit longer for the API to return a response to Clay.

<figure><img src="/files/HjgK0aa1IO2l1gxyTcRn" alt=""><figcaption></figcaption></figure>

Hit 'save' or 'save and run' and you're good to go.


# Using adyntel in Slack

{% hint style="success" %}
You first need to create an account, you can sign up [here](https://app.adyntel.com/signup) to receive 50 credits to test it out.
{% endhint %}

Monitor competitor ads directly from Slack. Get daily reports on new Facebook, LinkedIn, and Google ads without leaving your workspace.

### Install the App

Visit [integrations.adyntel.com/slack/install](https://integrations.adyntel.com/slack/install), select your workspace, and click **Allow** to grant the app permission to post messages and respond to commands.

You'll see a confirmation page — the app is now installed in your workspace.

### Link Your adyntel Account

Before using any commands, you need to connect your Slack identity to your adyntel account.

In any Slack channel or DM, type:

```
/adyntel login your@email.com your-api-key
```

Use the email and API key from your adyntel account. You'll see a confirmation message once it's linked.

You can see all the available commands by typing

```
/adyntel
```

### Enable Notifications

When you create a tracking job from Slack, the channel you're in is automatically subscribed to receive reports after each run.    &#x20;

### Receive Reports

Tracking runs automatically at 3 AM UTC each day (or weekly/monthly depending on your frequency setting).

After each run, subscribed channels receive a report that includes the advertiser profile for each tracked domain, new ads detected per platform since the last scan, and direct links to each ad in the platform's ad library.

No action needed — reports appear automatically.

###

### Start Tracking a Competitor

You can create a tracking job to monitor a competitor's ads:

```
/adyntel track add competitor.com facebook daily
```

This tracks ads on  on a daily basis.

Available platforms: `facebook`, `linkedin`, `google` (comma-separated, no spaces)

Available frequencies: `daily`, `weekly`, `monthly`

Once the job is created, the bot will show the platforms scanned, how many ads were found in the initial scan, and the job ID (you'll need this for other commands).

###

### Quick Ad Lookup

You can check a competitor's ads without setting up ongoing tracking using the `check` command:

```
/adyntel check clay.com google
```

This performs a single lookup and shows current ads — no job is created, no notifications, no recurring scans. Platform must be specified for one-off checks: `facebook`, `linkedin`, or `google`.

###

### Managing Your Jobs

You can see all your tracking jobs by running:

```
/adyntel track list
```

To pause a job (stops scanning but keeps all historical data):

```
/adyntel track pause <job_id>
```

To permanently delete a job:

```
/adyntel track delete <job_id>
```

###

### All Available Commands

| Command                                               | Description                               |
| ----------------------------------------------------- | ----------------------------------------- |
| `/adyntel login <email> <api_key>`                    | Link your Adyntel account to Slack        |
| `/adyntel logout`                                     | Unlink your account                       |
| `/adyntel track add <domain> [platforms] [frequency]` | Start tracking a competitor               |
| `/adyntel track list`                                 | View all your tracking jobs               |
| `/adyntel track results <job_id>`                     | View latest results for a job             |
| `/adyntel track notify <job_id>`                      | Subscribe this channel to a job's reports |
| `/adyntel track pause <job_id>`                       | Pause a tracking job                      |
| `/adyntel track delete <job_id>`                      | Delete a tracking job                     |
| `/adyntel check <domain> <platform>`                  | One-off ad lookup (no job created)        |
| `/adyntel help`                                       | Show help text                            |

### Troubleshooting

**The bot isn't responding to my commands** — Make sure you've linked your account with `/adyntel login`. If that doesn't help, check that the app is still installed in your workspace.

**Can't get notifications in a private channel** — The Adyntel bot must be invited to the private channel first. Add it by typing `/invite @Adyntel` in the channel.


# Using adyntel in HubSpot

{% hint style="success" %}
You first need to create an account, you can sign up [here](https://app.adyntel.com/signup) to receive 50 credits to test it out.
{% endhint %}

Enrich your HubSpot companies with competitor ad data. See how many ads any company is running on LinkedIn, Google, and Facebook — directly on the company record or add adyntel inside your HubSpot workflows.

#### Install the App

Visit [hubspot.adyntel.com/oauth/install](https://hubspot.adyntel.com/oauth/install) to start connecting your Adyntel account to HubSpot.

**1. Create or sign in to HubSpot**

Choose **Create a new HubSpot account** or **Sign in to your HubSpot account** to log in.

![Connecting your Adyntel account to HubSpot](/files/6joVpdsEU9RzklsnkF5x)

**2. Choose your account**

Select the HubSpot account you want to connect Adyntel to, then click **Choose Account**.

![Selecting a HubSpot account to connect](/files/rhlZaiHQE2ZVzmKyk1Nm)

**3. Accept the unverified app warning**

Adyntel is not yet a HubSpot-verified app, so HubSpot shows a **Connecting an unverified app** warning. This is expected. To continue, type `I accept the risk` in the box, then click **Connect**.

![HubSpot unverified app warning](/files/SG2jcBaEVFeeQheBQbos)

**4. Confirm the connection**

You'll see a confirmation page — Adyntel is now connected to your HubSpot account.

![HubSpot is connected to Adyntel](/files/NEOZqkaQ4Hn6wvWodOgI)

**5. Add your Adyntel credentials**

The connection isn't finished until Adyntel knows which account to pull data for. Click **Go to installed apps**, open the Adyntel app, and go to **Settings → General**.

Under **Update credentials**, fill in:

* **Adyntel Email** — the email associated with your Adyntel account
* **Adyntel API Key** — your secret API key

Then click **Update Credentials**. Once saved, the current values appear under **Current credentials**, with the API key partially masked.

![Adyntel configuration in HubSpot app settings](/files/vgjKMg1rO9vtMzl7t4oU)

{% hint style="warning" %}
Skip this step and the app installs successfully but returns no data. If your ad counts stay empty, check here first.
{% endhint %}

#### What Gets Added to HubSpot

Once connected, Adyntel adds three company properties — one for each platform:

* **Adyntel Total LinkedIn Ads** — total number of ads the company is running on LinkedIn
* **Adyntel Total Google Ads** — total number of ads the company is running on Google
* **Adyntel Total Meta Ads** — total number of ads the company is running on Facebook

Each property is populated by its own action, so the three platforms are **controlled independently**. You can enrich just LinkedIn, just Google, just Facebook, or any combination — you're never forced to pull all three.

#### What It Costs

Each successful platform lookup costs **1 credit**. Because the three platforms run separately, enriching one company across all three costs 3 credits — and enriching only the platforms you care about costs proportionally less.

Failed or empty lookups are not charged.

#### Enrich from a Company Record

Adyntel adds a card called **Adyntel Ad Library** to the company (organization) record. Open any company in HubSpot and find it in the right-hand sidebar.

The card lists each platform with its current ad count, the time it was **Last checked**, and a **Refresh** button:

* **Meta Ads** — Facebook ad count
* **LinkedIn Ads** — LinkedIn ad count
* **Google Ads** — Google ad count

Click **Refresh** on a platform to pull the latest count for that platform only. Use **Last checked** to tell how current a number is before you act on it.

![Adyntel Ad Library card on a HubSpot company record](/files/8LNNGbvkpJ8uYmWxkyWD)

#### Enrich with a Workflow

Adyntel is also available as a set of workflow actions, so companies can be enriched automatically instead of one at a time.

In a company-based workflow, click to add an action, type `adyntel` in the search box, and pick one of the three actions under **Integrated apps**:

* **Get LinkedIn Ads (Adyntel)**
* **Get Google Ads (Adyntel)**
* **Get Meta Ads (Adyntel)**

![Adyntel actions in the HubSpot workflow action picker](/files/FwMyggJEnKSF3ntqOwMK)

A common setup is to enroll companies on **Record created** so every new company is enriched as it lands in your CRM. You can also add enrollment conditions to enrich only the companies that matter — for example, only companies above a certain employee count.

Because each platform is a separate action, add only the platforms you care about to a given workflow. That keeps credit usage down on high-volume workflows.

#### Troubleshooting

**I don't see the Adyntel Ad Library card on my company records** — Make sure the installation completed and the app is authorized in your HubSpot account. Reconnect at [hubspot.adyntel.com/oauth/install](https://hubspot.adyntel.com/oauth/install) if needed.

**The ad counts didn't update** — Enrichment runs per platform. Confirm the platform you're expecting was actually included in the enrichment (card **Refresh** or workflow step), and check **Last checked** on the card to see whether a lookup ran at all.


# Extracting LinkedIn page id

You can find the LinkedIn page id needed for the LinkedIn endpoint by enriching the company in Clay.&#x20;

You can do that by going to "Add enrichment" and then searching for "Enrich company."

<figure><img src="/files/F4HzY1JqtKajnoNzc6WO" alt=""><figcaption></figcaption></figure>

Once the column has ran, it should look like this. You need to locate the Org Id field and add is as a column.&#x20;

<figure><img src="/files/aYXg0uZa7ycF7m5nYB2P" alt=""><figcaption></figcaption></figure>

Then you can use that new column containing the "Org Id" value as a varible for the "linkedin\_page\_id" parameter.&#x20;


# Meta

{% hint style="success" %}
You first need to create an account, you can sign up [here](https://app.adyntel.com/signup) to receive 50 credits to test it out.
{% endhint %}

The Facebook & Instagram endpoint allows you find all Facebook and Instagram ads for a given company.

It takes a Facebook page or a company domain as input.

{% hint style="warning" %}
Company domain has to be passed in the 'company.com' format, meaning all prefixes like 'https\://' or '[www](http://www).' need to be removed.
{% endhint %}

##

## API endpoint

<mark style="color:green;">`POST`</mark> `api.adyntel.com/facebook`

*See which Facebook or Instagram ads a company is running by providing their website or Facebook page as input.*

## Headers

<table><thead><tr><th width="404">Name</th><th width="232">Value</th><th data-type="checkbox">Required</th></tr></thead><tbody><tr><td>Content-Type</td><td><code>application/json</code></td><td>true</td></tr></tbody></table>

## Body

<table><thead><tr><th width="204">Name</th><th width="97">Type</th><th width="324">Description</th><th data-type="checkbox">Required</th></tr></thead><tbody><tr><td><code>api_key</code></td><td>string</td><td>Adyntel API key</td><td>true</td></tr><tr><td><code>email</code></td><td>number</td><td>Adyntel account email</td><td>true</td></tr><tr><td><code>facebook_url</code></td><td>string</td><td>Facebook page url (needs to start with https://)<br><br><em>Either this or company_domain is required.</em></td><td>true</td></tr><tr><td><code>company_domain</code></td><td>string</td><td>Company website<br><br><em>Either this or facebook_url is required.</em></td><td>true</td></tr><tr><td><code>webhook_url</code></td><td>string</td><td>Webhook URL where the data will be returned</td><td>false</td></tr><tr><td><code>continuation_token</code></td><td>string</td><td>Token used to grab the next set of ads</td><td>false</td></tr><tr><td><code>media_type</code></td><td>string</td><td>Parameter used to filter results for a specific type of media.<br><br>Possible values: <code>image</code>, <code>meme</code>, <code>image_and_meme</code>, <code>video</code></td><td>false</td></tr><tr><td><code>country_code</code></td><td>string</td><td>Parameter used to filter results for a specific country.<br><br>See possible list of values below.</td><td>false</td></tr><tr><td><code>active_status</code></td><td>string</td><td>This filters the search in the ad library  by active, inactive or all ads. If this is not added the endpoint returns, by default, just active ads. <br><br>Possible values: <code>inactive</code> (to get just the inactive ads) and <code>all</code> (to get both the active and inactive ads)</td><td>false</td></tr><tr><td><code>all_ads</code></td><td>boolean</td><td>This will automatically use the <code>continuation_token</code> and scrape all the pages, returning all available ads.<br><br>Works only with a <code>webhook_url</code> as it needs a place to send each page, one by one. <br><br><em><mark style="color:$danger;"><strong>Warning</strong></mark>: use this cautiously because there is no way of stopping it. If you use this on a domain that runs 10000 ads, it will try to scrape all the ads and it will use the credits (one page = one credit)</em> </td><td>false</td></tr><tr><td><code>check_ugc</code></td><td>boolean</td><td><p>When true, each video ad is ran through a classifier and a parameter called is_ugc_video (boolean) is added to the final response.</p><p></p><p><em>Works only together with</em> <code>media_type</code> <em>set to video</em> </p></td><td>false</td></tr></tbody></table>

<details>

<summary>List of possible values for the <code>country_code</code> parameter: </summary>

AL | DZ | AS | AD | AO | AQ | AG | AR | AM | AU | AT | AZ | BH | BD | BB | BY | BE | BZ | BJ | BT | BO | BA | BW | BR | BN | BG | BF | BI | KH | CM | CA | CV | BQ | CF | TD | CL | CN | CX | CC | CO | KM | CK | CR | CI | HR | CW | CY | CZ | CD | DK | DJ | DM | DO | EC | EG | SV | GQ | ER | EE | SZ | ET | FM | FJ | FI | FR | PF | TF | GA | GE | DE | GH | GR | GD | GU | GT | GG | GN | GW | GY | HT | HM | HN | HU | IS | IN | ID | IQ | IE | IL | IT | JM | JP | JE | JO | KZ | KE | KI | KW | KG | LA | LV | LB | LS | LR | LY | LI | LT | LU | MG | MW | MY | MV | MT | ML | MH | MR | MU | MX | MD | MC | MN | ME | MA | MZ | MM | NA | NR | NP | NL | NC | NZ | NI | NE | NG | NU | NF | MK | MP | NO | OM | PK | PW | PA | PG | PY | PE | PH | PN | PL | PT | QA | CG | RO | RW | SH | KN | LC | PM | VC | WS | SM | ST | SA | SN | SC | SL | SG | SX | SK | SI | SB | SO | ZA | GS | KR | ES | LK | SR | CH | SE | TJ | TZ | TH | BS | GM | TL | TG | TK | TO | TT | TN | TR | TM | TV | UG | UA | AE | GB | US | UY | UZ | VU | VA | VE | VN | YE | ZM | ZW | BM | BV | IO | VG | IC | KY | TW | YT | FO | FK | GF | PS | GI | GL | GP | HK | IM | MO | MQ | MS | AW | PR | RE | AI | EH | MF | SJ | TC | UM | VI | WF

</details>

## Example request

* Request made using company\_domain:

```
{
    "api_key": "your_api_key",
    "email": "your_email",
    "company_domain": "zoom.com"
}
```

* Request made using facebook\_url:

```
{
    "api_key": "your_api_key",
    "email": "your_email",
    "facebook_url": "https://facebook.com./zoom"
}
```

* Request made using webhooks (works with both company\_domain and facebook\_url):

```
{
    "api_key": "your_api_key",
    "email": "your_email",
    "webhook_url": "your_webhook_url",
    "facebook_url": "https://facebook.com./zoom"
}
```

When you're using webhooks the data will be sent to the webhook URL and you will receive a different response to your call:

```
{
    "chunk_count": 5,
    "message": "Data sent in chunks"
}
```

* Request made using continuation\_token. You receive this token in the first call you make, but only if there are more ads than we were able to retrieve (usually we get the first 30 ads). If you use this in your next call we will give you the next set of ads (next 30) and, if there are more ads, you will receive another continuation\_token that you can use to grab the next set of ads etc. This continues until the last page of ads where the response you get will have a "null" continuation\_token.

```
{
    "api_key": "your_api_key",
    "email": "your_email",
    "company_domain: "monday.com",
    "continuation_token" : "q5SkUA7x8o2JxQiyxYGGoDWoyecu46Bxq-5"
}
```

## Possible responses

### 204

There are multiple situations in which the response code will be 204 with no message. This happens when:

* the domain provided returns a HTML response different than 200. That usually happens if the website could be loaded, it is not available, domain is expired etc.
* we scrape the domain provided but there is no Facebook URL on it so there is no way to move to the next step
* we scraped the Facebook URL but the page is not publicly available so it cannot be scraped

*You are not charged when you receive this response code.*&#x20;

### Full response, with ads

\
Example response

```
{
    "page_id": "7172307686",
    "country_code": "ALL",
    "continuation_token": "AQHSxHvUKdkvgxfh6ESFEPpsUrDsh2rC206kS2Rw4kvD1DpX8R_Qk7zpIEiVAZ_L95Y3",
    "platform": [
        "facebook",
        "instagram"
    ],
    "media_types": "all",
    "sort_data": "SORT_BY_TOTAL_IMPRESSIONS",
    "active_status": "active",
    "is_result_complete": false,
    "number_of_ads": 32,
    "count_landing_pages": 24,
    "unique_landing_pages": [
        "https://www.zappos.com/",
        "https://www.zappos.com/running-shoes/CK_XARC81wEY0O4B4gIEMAECA4IDA_vzAQ.zso",
        "https://www.zappos.com/running-shoes/CK_XARC81wEY0O4B4gIEMAECA4IDA-HyAQ.zso",
        "https://www.zappos.com/product/7165047/color/72",
        "https://www.zappos.com/null/4gIBMIIDA_LzAQ.zso",
        "https://www.zappos.com/product/7165047/color/17887",
        "https://www.zappos.com/product/7190382/color/3",
        "https://www.zappos.com/product/7182725/color/3",
        "https://www.zappos.com/product/102181/color/115",
        "https://www.zappos.com/men-sandals/CK_XARC51wHAAQLiAgMBAhg.zso",
        "https://www.zappos.com/product/101191/color/3",
        "https://www.zappos.com/hoka-women-shoes/CK_XAWIClxrAAQHiAgMBDBg.zso",
        "https://www.zappos.com/null/4gIBMIIDA_TzAQ.zso",
        "https://www.zappos.com/null/4gIBMIIDA-vzAQ.zso",
        "https://www.zappos.com/women-sandals/CK_XARC51wHAAQHiAgMBAhg.zso",
        "https://www.zappos.com/hoka-men-shoes/CK_XAWIClxrAAQLiAgMBDBg.zso",
        "https://www.zappos.com/on-men-shoes/CK_XAWICxh_AAQLiAgMBDBg.zso",
        "https://www.zappos.com/product/7158233/color/28",
        "https://www.zappos.com/shoes/CK_XAeICAjABggMDzfMB.zso",
        "https://www.zappos.com/shoes/CK_XAeICAjABggMD-vMB.zso",
        "https://www.zappos.com/product/101026/color/3",
        "https://www.zappos.com/null/4AEB4gIBHA.zso",
        "https://www.zappos.com/product/102179/color/3",
        "https://www.zappos.com/product/7212450/color/6"
    ],
    "start_min_date": null,
    "start_max_date": null,
    "results": [
        [
            {
                "ad_archive_id": "1856457768340957",
                "page_id": "7172307686",
                "snapshot": {
                    "page_id": "7172307686",
                    "page_profile_uri": "https://facebook.com/zappos",
                    "page_name": "Zappos.com",
                    "page_profile_picture_url": "https://scontent-iad3-1.xx.fbcdn.net/v/t39.35426-6/605229556_1264083579073773_276540164055197950_n.jpg?stp=dst-jpg_s60x60_tt6&_nc_cat=107&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=e5KNf6wr9y0Q7kNvwERYJOq&_nc_oc=Adlg1aQ9JNq37HXi9taAUvrOnjmNuIkXxF-PjSyDNqAuY7SRN4u9C325vT9XKiZu71I&_nc_zt=14&_nc_ht=scontent-iad3-1.xx&_nc_gid=V776smK2QZNFRXZ9H9kS6w&_nc_ss=8&oh=00_AfygILxqU2DARZex4ZagUSLz5lCp_AJw41e6vg0sROGYAg&oe=69B7CCF0",
                    "body": {
                        "text": "This season's must haves, only at Zappos. \ud83d\udc62"
                    },
                    "caption": "zappos.com",
                    "cards": [
                        {
                            "body": "This season's must haves, only at Zappos. \ud83d\udc62",
                            "caption": "zappos.com",
                            "cta_text": "Shop Now",
                            "cta_type": "SHOP_NOW",
                            "image_crops": [],
                            "link_description": "Fast, FREE shipping on just-landed sneakers, boots, heels & more from your favorite brands. Now that's a win.",
                            "link_url": "https://www.zappos.com/product/7165047/color/72",
                            "original_image_url": "https://scontent-iad3-2.xx.fbcdn.net/v/t39.35426-6/603869031_834904779519512_2011076685899997798_n.jpg?_nc_cat=106&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=xxFE2xDErBEQ7kNvwEnnxq_&_nc_oc=Adks6s8JAN7HcjgRSt2mvvSJMDXd7qWdvOkWj03fX-ZX7_uK3DA49wez8w-ocehryRM&_nc_zt=14&_nc_ht=scontent-iad3-2.xx&_nc_gid=V776smK2QZNFRXZ9H9kS6w&_nc_ss=8&oh=00_AfwpbThY9L_wORO2GZEx3KIE5gvJbnW7gvg_QG_o5RcGgQ&oe=69B7D13F",
                            "resized_image_url": "https://scontent-iad3-2.xx.fbcdn.net/v/t39.35426-6/603869031_834904779519512_2011076685899997798_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=106&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=xxFE2xDErBEQ7kNvwEnnxq_&_nc_oc=Adks6s8JAN7HcjgRSt2mvvSJMDXd7qWdvOkWj03fX-ZX7_uK3DA49wez8w-ocehryRM&_nc_zt=14&_nc_ht=scontent-iad3-2.xx&_nc_gid=V776smK2QZNFRXZ9H9kS6w&_nc_ss=8&oh=00_AfzrOqTwo6ly7XCDkYB6hOOJh-nu7n0AsmFTPPXJwpE6nQ&oe=69B7D13F",
                            "watermarked_resized_image_url": "",
                            "title": "Frye Campus 14L Cowboy Women's Boots Black Leather : 8 B - Medium",
                            "video_hd_url": null,
                            "video_preview_image_url": null,
                            "video_sd_url": null,
                            "watermarked_video_hd_url": null,
                            "watermarked_video_sd_url": null
                        },
                        {
                            "body": "This season's must haves, only at Zappos. \ud83d\udc62",
                            "caption": "zappos.com",
                            "cta_text": "Shop Now",
                            "cta_type": "SHOP_NOW",
                            "image_crops": [],
                            "link_description": "Fast, FREE shipping on just-landed sneakers, boots, heels & more from your favorite brands. Now that's a win.",
                            "link_url": "https://www.zappos.com/product/7165047/color/72",
                            "original_image_url": "https://scontent-iad3-1.xx.fbcdn.net/v/t39.35426-6/604506190_1937110337225638_3416990426222524573_n.jpg?_nc_cat=110&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=G-KHcw_FReoQ7kNvwGDxp5n&_nc_oc=Adkt2IlC3ETQ6mggVIf0SgisIMIxSGklUFFd1i84FOnipE0eAwqqKJChZ81-cSUYNe8&_nc_zt=14&_nc_ht=scontent-iad3-1.xx&_nc_gid=V776smK2QZNFRXZ9H9kS6w&_nc_ss=8&oh=00_Afyei4-qj-YuWrA1AHGyzPfJoC8GZJHOesYcIcec5Esv5A&oe=69B7D1BF",
                            "resized_image_url": "https://scontent-iad3-1.xx.fbcdn.net/v/t39.35426-6/604506190_1937110337225638_3416990426222524573_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=110&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=G-KHcw_FReoQ7kNvwGDxp5n&_nc_oc=Adkt2IlC3ETQ6mggVIf0SgisIMIxSGklUFFd1i84FOnipE0eAwqqKJChZ81-cSUYNe8&_nc_zt=14&_nc_ht=scontent-iad3-1.xx&_nc_gid=V776smK2QZNFRXZ9H9kS6w&_nc_ss=8&oh=00_Afy-WGnmgyU1AbGVIKkBQRwgh6z_rFW2w1-xNgJvq-EknA&oe=69B7D1BF",
                            "watermarked_resized_image_url": "",
                            "title": "Frye Campus 14L Cowboy Women's Boots Black Leather : 7.5 B - Medium",
                            "video_hd_url": null,
                            "video_preview_image_url": null,
                            "video_sd_url": null,
                            "watermarked_video_hd_url": null,
                            "watermarked_video_sd_url": null
                        },
                        {
                            "body": "This season's must haves, only at Zappos. \ud83d\udc62",
                            "caption": "zappos.com",
                            "cta_text": "Shop Now",
                            "cta_type": "SHOP_NOW",
                            "image_crops": [],
                            "link_description": "Fast, FREE shipping on just-landed sneakers, boots, heels & more from your favorite brands. Now that's a win.",
                            "link_url": "https://www.zappos.com/product/7165047/color/17887",
                            "original_image_url": "https://scontent-iad3-1.xx.fbcdn.net/v/t39.35426-6/603777404_1532684781131116_8161911598105432427_n.jpg?_nc_cat=108&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=wq4SjUTE9UkQ7kNvwGm9APs&_nc_oc=AdkWzZWJVrTpW-xNLDquVuJr4omn2VI_5IdIuU4k8Pdo-EQeXWoZ_iLoDc4uZCrrAC4&_nc_zt=14&_nc_ht=scontent-iad3-1.xx&_nc_gid=V776smK2QZNFRXZ9H9kS6w&_nc_ss=8&oh=00_AfyFr1ARJptqUAQbAB5xriXPFpveXlI1NoSDV5F4w21sWA&oe=69B7CFE4",
                            "resized_image_url": "https://scontent-iad3-1.xx.fbcdn.net/v/t39.35426-6/603777404_1532684781131116_8161911598105432427_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=108&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=wq4SjUTE9UkQ7kNvwGm9APs&_nc_oc=AdkWzZWJVrTpW-xNLDquVuJr4omn2VI_5IdIuU4k8Pdo-EQeXWoZ_iLoDc4uZCrrAC4&_nc_zt=14&_nc_ht=scontent-iad3-1.xx&_nc_gid=V776smK2QZNFRXZ9H9kS6w&_nc_ss=8&oh=00_AfxNHDkAgfSX_8xo3fdlsMWImtzxjeH-s3YOfDAUOVWjfg&oe=69B7CFE4",
                            "watermarked_resized_image_url": "",
                            "title": "Frye Campus 14L Cowboy Women's Boots Banana Leather : 9 B - Medium",
                            "video_hd_url": null,
                            "video_preview_image_url": null,
                            "video_sd_url": null,
                            "watermarked_video_hd_url": null,
                            "watermarked_video_sd_url": null
                        },
                        {
                            "body": "This season's must haves, only at Zappos. \ud83d\udc62",
                            "caption": "zappos.com",
                            "cta_text": "Shop Now",
                            "cta_type": "SHOP_NOW",
                            "image_crops": [],
                            "link_description": "Fast, FREE shipping on just-landed sneakers, boots, heels & more from your favorite brands. Now that's a win.",
                            "link_url": "https://www.zappos.com/product/7165047/color/72",
                            "original_image_url": "https://scontent-iad3-2.xx.fbcdn.net/v/t39.35426-6/605746162_2101525827330702_7761824356649108330_n.jpg?_nc_cat=100&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=wOw6JRvk__oQ7kNvwFivgEx&_nc_oc=Adl9qDt-8ZrjmBm3I_HGRbCwL8qqshPSMYID2L_GC72kz2XI0S3UdA9H6UzxKsb2itc&_nc_zt=14&_nc_ht=scontent-iad3-2.xx&_nc_gid=V776smK2QZNFRXZ9H9kS6w&_nc_ss=8&oh=00_AfwZslL3P-yoKoIY9QjT21egNx7cRs8W_KO2S9XDIbQMiQ&oe=69B7A13C",
                            "resized_image_url": "https://scontent-iad3-2.xx.fbcdn.net/v/t39.35426-6/605746162_2101525827330702_7761824356649108330_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=100&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=wOw6JRvk__oQ7kNvwFivgEx&_nc_oc=Adl9qDt-8ZrjmBm3I_HGRbCwL8qqshPSMYID2L_GC72kz2XI0S3UdA9H6UzxKsb2itc&_nc_zt=14&_nc_ht=scontent-iad3-2.xx&_nc_gid=V776smK2QZNFRXZ9H9kS6w&_nc_ss=8&oh=00_AfyqhbCsAzqdH3i6Ij2WNLwk5JrHJl8iUz1cEodvLd455A&oe=69B7A13C",
                            "watermarked_resized_image_url": "",
                            "title": "Frye Campus 14L Cowboy Women's Boots Black Leather : 8.5 B - Medium",
                            "video_hd_url": null,
                            "video_preview_image_url": null,
                            "video_sd_url": null,
                            "watermarked_video_hd_url": null,
                            "watermarked_video_sd_url": null
                        },
                        {
                            "body": "This season's must haves, only at Zappos. \ud83d\udc62",
                            "caption": "zappos.com",
                            "cta_text": "Shop Now",
                            "cta_type": "SHOP_NOW",
                            "image_crops": [],
                            "link_description": "Fast, FREE shipping on just-landed sneakers, boots, heels & more from your favorite brands. Now that's a win.",
                            "link_url": "https://www.zappos.com/product/7212450/color/6",
                            "original_image_url": "https://scontent-iad3-2.xx.fbcdn.net/v/t39.35426-6/606030225_1978627696015554_6947333413865638655_n.jpg?_nc_cat=103&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=6lNnzA-zy58Q7kNvwFhnzfN&_nc_oc=AdkgqqMOwf9XBBhdSi7dC-pfvaCscyufCNgmqFgQq1wsbLeabV8Y7OoZN3kNfkQYz2o&_nc_zt=14&_nc_ht=scontent-iad3-2.xx&_nc_gid=V776smK2QZNFRXZ9H9kS6w&_nc_ss=8&oh=00_AfwHHmYXB21sV4aIn8A4yobDciauaBkHmXaW0tRqsciYYQ&oe=69B79A65",
                            "resized_image_url": "https://scontent-iad3-2.xx.fbcdn.net/v/t39.35426-6/606030225_1978627696015554_6947333413865638655_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=103&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=6lNnzA-zy58Q7kNvwFhnzfN&_nc_oc=AdkgqqMOwf9XBBhdSi7dC-pfvaCscyufCNgmqFgQq1wsbLeabV8Y7OoZN3kNfkQYz2o&_nc_zt=14&_nc_ht=scontent-iad3-2.xx&_nc_gid=V776smK2QZNFRXZ9H9kS6w&_nc_ss=8&oh=00_Afx6YElS3rhecLset47zySG7FCcfbWxe4VXjuyJIVZmhqA&oe=69B79A65",
                            "watermarked_resized_image_url": "",
                            "title": "Sperry Authentic Original A/O 2 Eye Women's Slip on Shoes Brown : 5.5 M (B)",
                            "video_hd_url": null,
                            "video_preview_image_url": null,
                            "video_sd_url": null,
                            "watermarked_video_hd_url": null,
                            "watermarked_video_sd_url": null
                        },
                        {
                            "body": "This season's must haves, only at Zappos. \ud83d\udc62",
                            "caption": "zappos.com",
                            "cta_text": "Shop Now",
                            "cta_type": "SHOP_NOW",
                            "image_crops": [],
                            "link_description": "Fast, FREE shipping on just-landed sneakers, boots, heels & more from your favorite brands. Now that's a win.",
                            "link_url": "https://www.zappos.com/product/101191/color/3",
                            "original_image_url": "https://scontent-iad3-2.xx.fbcdn.net/v/t39.35426-6/605824241_861296499839984_6268405533763314506_n.jpg?_nc_cat=111&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=L6srOtXftjcQ7kNvwExmBNs&_nc_oc=AdmmJ4RcQBMAvEhPe_HqD6Gmqg_-RBBTwVM34XvjKTw21mxnaIuW1RyRR8WLdwUpvFU&_nc_zt=14&_nc_ht=scontent-iad3-2.xx&_nc_gid=V776smK2QZNFRXZ9H9kS6w&_nc_ss=8&oh=00_AfxbG27iF1npsaH7ziPf4v8jmY53YSNPNNGcOyJsQp1ehw&oe=69B7CE2A",
                            "resized_image_url": "https://scontent-iad3-2.xx.fbcdn.net/v/t39.35426-6/605824241_861296499839984_6268405533763314506_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=111&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=L6srOtXftjcQ7kNvwExmBNs&_nc_oc=AdmmJ4RcQBMAvEhPe_HqD6Gmqg_-RBBTwVM34XvjKTw21mxnaIuW1RyRR8WLdwUpvFU&_nc_zt=14&_nc_ht=scontent-iad3-2.xx&_nc_gid=V776smK2QZNFRXZ9H9kS6w&_nc_ss=8&oh=00_AfwjUfIwnGzfVdsZHtX1iWKRfXI67LCq2u5ACQS2q_Gx3A&oe=69B7CE2A",
                            "watermarked_resized_image_url": "",
                            "title": "Frye Harness 12R Women's Pull-on Boots Black : 8.5 B - Medium, Leather",
                            "video_hd_url": null,
                            "video_preview_image_url": null,
                            "video_sd_url": null,
                            "watermarked_video_hd_url": null,
                            "watermarked_video_sd_url": null
                        }
                    ],
                    "cta_text": "Shop now",
                    "cta_type": "SHOP_NOW",
                    "current_page_name": "Zappos.com",
                    "display_format": "DPA",
                    "images": [],
                    "link_description": null,
                    "link_url": "http://www.zappos.com/",
                    "page_categories": [
                        "Clothing"
                    ],
                    "page_entity_type": "PERSON_PROFILE",
                    "page_is_profile_page": false,
                    "page_like_count": 2303104,
                    "title": "{{product.name}}",
                    "videos": [],
                    "extra_images": [],
                    "extra_links": [],
                    "extra_texts": [],
                    "extra_videos": []
                },
                "is_active": true,
                "page_name": "Zappos.com",
                "categories": [
                    "UNKNOWN"
                ],
                "collation_id": null,
                "end_date": 1773212400,
                "entity_type": "PERSON_PROFILE",
                "publisher_platform": [
                    "FACEBOOK",
                    "INSTAGRAM",
                    "AUDIENCE_NETWORK",
                    "MESSENGER"
                ],
                "start_date": 1767254400,
                "total_active_time": null
            }
        ],
        [
            {
                "ad_archive_id": "1231322172213193",
                "page_id": "7172307686",
                "snapshot": {
                    "page_id": "7172307686",
                    "page_profile_uri": "https://facebook.com/zappos",
                    "page_name": "Zappos.com",
                    "page_profile_picture_url": "https://scontent-iad3-1.xx.fbcdn.net/v/t39.35426-6/602370494_1207795221475005_6706753680988415534_n.jpg?stp=dst-jpg_s60x60_tt6&_nc_cat=109&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=lGYSMVC3wkAQ7kNvwFvgRIy&_nc_oc=AdlOc4TW_7OcnjgM4iy4bt6hh-yZhQV3gOt7yycty82ICKkifFd1thAQUYwouBEl0WA&_nc_zt=14&_nc_ht=scontent-iad3-1.xx&_nc_gid=V776smK2QZNFRXZ9H9kS6w&_nc_ss=8&oh=00_Afw4Um_yICj_AAeMi5JnScBm2Ugj1zerwiktrnMQ4GSjCg&oe=69B7BF98",
                    "body": {
                        "text": "They're still in stock \ud83d\ude4c (but not for long...)"
                    },
                    "caption": "zappos.com",
                    "cards": [
                        {
                            "body": "They're still in stock \ud83d\ude4c (but not for long...)",
                            "caption": "zappos.com",
                            "cta_text": "Shop Now",
                            "cta_type": "SHOP_NOW",
                            "image_crops": [],
                            "link_description": "Fast, FREE shipping on just-landed sneakers, boots, heels & more from your favorite brands. Now that's a win.",
                            "link_url": "https://www.zappos.com/product/7165047/color/72",
                            "original_image_url": "https://scontent-iad3-2.xx.fbcdn.net/v/t39.35426-6/603873612_1212349004110494_8264676367644039873_n.jpg?_nc_cat=103&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=BvRuTgVltVUQ7kNvwG_76gI&_nc_oc=Adkf2L9LWKWcWLoHblkTFpc7HyKDIwqNMxjLtrxjkx8VRDIxbeiQICTQuZor-MaSplM&_nc_zt=14&_nc_ht=scontent-iad3-2.xx&_nc_gid=V776smK2QZNFRXZ9H9kS6w&_nc_ss=8&oh=00_AfxsqOo4Ae_O4npaxMbirRpKJzv80KJQ1fJze6lCBGGhfQ&oe=69B7A708",
                            "resized_image_url": "https://scontent-iad3-2.xx.fbcdn.net/v/t39.35426-6/603873612_1212349004110494_8264676367644039873_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=103&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=BvRuTgVltVUQ7kNvwG_76gI&_nc_oc=Adkf2L9LWKWcWLoHblkTFpc7HyKDIwqNMxjLtrxjkx8VRDIxbeiQICTQuZor-MaSplM&_nc_zt=14&_nc_ht=scontent-iad3-2.xx&_nc_gid=V776smK2QZNFRXZ9H9kS6w&_nc_ss=8&oh=00_Afyj73X0VpO42_SMi1rkUr3kNFshBLZpI415nXXpBXc4aA&oe=69B7A708",
                            "watermarked_resized_image_url": "",
                            "title": "Frye Campus 14L Cowboy Women's Boots Black Leather : 8.5 B - Medium",
                            "video_hd_url": null,
                            "video_preview_image_url": null,
                            "video_sd_url": null,
                            "watermarked_video_hd_url": null,
                            "watermarked_video_sd_url": null
                        },
                        {
                            "body": "They're still in stock \ud83d\ude4c (but not for long...)",
                            "caption": "zappos.com",
                            "cta_text": "Shop Now",
                            "cta_type": "SHOP_NOW",
                            "image_crops": [],
                            "link_description": "Fast, FREE shipping on just-landed sneakers, boots, heels & more from your favorite brands. Now that's a win.",
                            "link_url": "https://www.zappos.com/product/7158233/color/28",
                            "original_image_url": "https://scontent-iad3-1.xx.fbcdn.net/v/t39.35426-6/604492826_755362380244308_344710104185694486_n.jpg?_nc_cat=102&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=L0LQVnoFSLoQ7kNvwFfKJOc&_nc_oc=AdlIeQxvmJg52fbdXz5pXkNXkTttyeAOFMWRuXxuph8YSq1-4YzFgIdttXfkZ5pOtGk&_nc_zt=14&_nc_ht=scontent-iad3-1.xx&_nc_gid=V776smK2QZNFRXZ9H9kS6w&_nc_ss=8&oh=00_Afyij-nkIrJw_w4ojiFRXv_3y0OzvHBT8HR6ZOAVjKD2TA&oe=69B7AE6F",
                            "resized_image_url": "https://scontent-iad3-1.xx.fbcdn.net/v/t39.35426-6/604492826_755362380244308_344710104185694486_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=102&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=L0LQVnoFSLoQ7kNvwFfKJOc&_nc_oc=AdlIeQxvmJg52fbdXz5pXkNXkTttyeAOFMWRuXxuph8YSq1-4YzFgIdttXfkZ5pOtGk&_nc_zt=14&_nc_ht=scontent-iad3-1.xx&_nc_gid=V776smK2QZNFRXZ9H9kS6w&_nc_ss=8&oh=00_AfyVtmwsKKkMmWSDdlsZqfwx_4elG_l2A-uO-JK4vXymlg&oe=69B7AE6F",
                            "watermarked_resized_image_url": "",
                            "title": "Sperry Authentic Original Men's Lace up casual Shoes Amaretto : 7 M (D), Leather",
                            "video_hd_url": null,
                            "video_preview_image_url": null,
                            "video_sd_url": null,
                            "watermarked_video_hd_url": null,
                            "watermarked_video_sd_url": null
                        },
                        {
                            "body": "They're still in stock \ud83d\ude4c (but not for long...)",
                            "caption": "zappos.com",
                            "cta_text": "Shop Now",
                            "cta_type": "SHOP_NOW",
                            "image_crops": [],
                            "link_description": "Fast, FREE shipping on just-landed sneakers, boots, heels & more from your favorite brands. Now that's a win.",
                            "link_url": "https://www.zappos.com/product/7165047/color/17887",
                            "original_image_url": "https://scontent-iad3-2.xx.fbcdn.net/v/t39.35426-6/602380633_1288793019944987_2523672124418723055_n.jpg?_nc_cat=100&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=jrBUVuj_UP0Q7kNvwH3IcGS&_nc_oc=Adl-9ixI4fO7jg3POX06PrDtrEt2fJHVQ64McXPIR4zAUV2V1Ir_RUTxzx6i82KMRtk&_nc_zt=14&_nc_ht=scontent-iad3-2.xx&_nc_gid=V776smK2QZNFRXZ9H9kS6w&_nc_ss=8&oh=00_AfwifVhP3LJVnm2Dg4ovQK7L_-NONaNyVTSu_lC_T7zywg&oe=69B7D079",
                            "resized_image_url": "https://scontent-iad3-2.xx.fbcdn.net/v/t39.35426-6/602380633_1288793019944987_2523672124418723055_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=100&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=jrBUVuj_UP0Q7kNvwH3IcGS&_nc_oc=Adl-9ixI4fO7jg3POX06PrDtrEt2fJHVQ64McXPIR4zAUV2V1Ir_RUTxzx6i82KMRtk&_nc_zt=14&_nc_ht=scontent-iad3-2.xx&_nc_gid=V776smK2QZNFRXZ9H9kS6w&_nc_ss=8&oh=00_Afz7hDakL20YO9098biBhcrpRFIbSLw2QJ5eUh4J1SgxyQ&oe=69B7D079",
                            "watermarked_resized_image_url": "",
                            "title": "Frye Campus 14L Cowboy Women's Boots Banana Leather : 9 B - Medium",
                            "video_hd_url": null,
                            "video_preview_image_url": null,
                            "video_sd_url": null,
                            "watermarked_video_hd_url": null,
                            "watermarked_video_sd_url": null
                        },
                        {
                            "body": "They're still in stock \ud83d\ude4c (but not for long...)",
                            "caption": "zappos.com",
                            "cta_text": "Shop Now",
                            "cta_type": "SHOP_NOW",
                            "image_crops": [],
                            "link_description": "Fast, FREE shipping on just-landed sneakers, boots, heels & more from your favorite brands. Now that's a win.",
                            "link_url": "https://www.zappos.com/product/101026/color/3",
                            "original_image_url": "https://scontent-iad3-2.xx.fbcdn.net/v/t39.35426-6/605154663_1519584152491841_88983479715780873_n.jpg?_nc_cat=100&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=mJnNdaLrCwMQ7kNvwHwy0qb&_nc_oc=AdmZmUw587x6StmMKxSGwki2aY7xKmJRP5xuM_TN3cdGfGrQPhVe6-D8RyVgjgdfjs8&_nc_zt=14&_nc_ht=scontent-iad3-2.xx&_nc_gid=V776smK2QZNFRXZ9H9kS6w&_nc_ss=8&oh=00_AfyiJhO22hoXDguQNrU6RmrLvJX66cxQNlpG8ILiRzfEqw&oe=69B7A1C9",
                            "resized_image_url": "https://scontent-iad3-2.xx.fbcdn.net/v/t39.35426-6/605154663_1519584152491841_88983479715780873_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=100&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=mJnNdaLrCwMQ7kNvwHwy0qb&_nc_oc=AdmZmUw587x6StmMKxSGwki2aY7xKmJRP5xuM_TN3cdGfGrQPhVe6-D8RyVgjgdfjs8&_nc_zt=14&_nc_ht=scontent-iad3-2.xx&_nc_gid=V776smK2QZNFRXZ9H9kS6w&_nc_ss=8&oh=00_AfyVZBXVtSb9ywaQ8EEDoAoydAeS3ha_iTcu6gq1sKKEdA&oe=69B7A1C9",
                            "watermarked_resized_image_url": "",
                            "title": "Durango DB510 Cowboy Boots Black : 14 EE - Wide, Leather",
                            "video_hd_url": null,
                            "video_preview_image_url": null,
                            "video_sd_url": null,
                            "watermarked_video_hd_url": null,
                            "watermarked_video_sd_url": null
                        },
                        {
                            "body": "They're still in stock \ud83d\ude4c (but not for long...)",
                            "caption": "zappos.com",
                            "cta_text": "Shop Now",
                            "cta_type": "SHOP_NOW",
                            "image_crops": [],
                            "link_description": "Fast, FREE shipping on just-landed sneakers, boots, heels & more from your favorite brands. Now that's a win.",
                            "link_url": "https://www.zappos.com/product/102179/color/3",
                            "original_image_url": "https://scontent-iad3-1.xx.fbcdn.net/v/t39.35426-6/602341825_1439657727835445_2578473176556032842_n.jpg?_nc_cat=101&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=JMnjJvTqxHkQ7kNvwGYsx8c&_nc_oc=AdnYEcR7hAvKWIwdsW89Vm9CD38RFYOszDgaopfjXk7bKVcjTYQSDQ9ggzkW7yiz9KM&_nc_zt=14&_nc_ht=scontent-iad3-1.xx&_nc_gid=V776smK2QZNFRXZ9H9kS6w&_nc_ss=8&oh=00_AfywWQov2RA9uZBddnXVTPVUX_JYYaysaK2KhcXfKCRF0Q&oe=69B7CB2C",
                            "resized_image_url": "https://scontent-iad3-1.xx.fbcdn.net/v/t39.35426-6/602341825_1439657727835445_2578473176556032842_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=101&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=JMnjJvTqxHkQ7kNvwGYsx8c&_nc_oc=AdnYEcR7hAvKWIwdsW89Vm9CD38RFYOszDgaopfjXk7bKVcjTYQSDQ9ggzkW7yiz9KM&_nc_zt=14&_nc_ht=scontent-iad3-1.xx&_nc_gid=V776smK2QZNFRXZ9H9kS6w&_nc_ss=8&oh=00_AfzxwA-zL4oc1N2azZNfiHDsJDzMputQd2-Z_bktU1pukg&oe=69B7CB2C",
                            "watermarked_resized_image_url": "",
                            "title": "Stacy Adams Madison Boot Men's Shoes Black : 12 E, Leather",
                            "video_hd_url": null,
                            "video_preview_image_url": null,
                            "video_sd_url": null,
                            "watermarked_video_hd_url": null,
                            "watermarked_video_sd_url": null
                        },
                        {
                            "body": "They're still in stock \ud83d\ude4c (but not for long...)",
                            "caption": "zappos.com",
                            "cta_text": "Shop Now",
                            "cta_type": "SHOP_NOW",
                            "image_crops": [],
                            "link_description": "Fast, FREE shipping on just-landed sneakers, boots, heels & more from your favorite brands. Now that's a win.",
                            "link_url": "https://www.zappos.com/product/7165047/color/72",
                            "original_image_url": "https://scontent-iad3-1.xx.fbcdn.net/v/t39.35426-6/605736596_1616686063033887_7130851488544097711_n.jpg?_nc_cat=109&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=k4vdAqoOBzYQ7kNvwH1Umza&_nc_oc=AdkwjxS1TYRhq0iC5w5_bmXHyPnhrOPV_2bUcIV5e_JZiZR5ErX_xEeMaOC03H2JQsc&_nc_zt=14&_nc_ht=scontent-iad3-1.xx&_nc_gid=V776smK2QZNFRXZ9H9kS6w&_nc_ss=8&oh=00_Afw90vwx8Hkktr0iGSiKafMJPual4TT499BZe0lPmNOFmw&oe=69B7D17F",
                            "resized_image_url": "https://scontent-iad3-1.xx.fbcdn.net/v/t39.35426-6/605736596_1616686063033887_7130851488544097711_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=109&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=k4vdAqoOBzYQ7kNvwH1Umza&_nc_oc=AdkwjxS1TYRhq0iC5w5_bmXHyPnhrOPV_2bUcIV5e_JZiZR5ErX_xEeMaOC03H2JQsc&_nc_zt=14&_nc_ht=scontent-iad3-1.xx&_nc_gid=V776smK2QZNFRXZ9H9kS6w&_nc_ss=8&oh=00_AfwO0mVRoHFZZuPS3JvPtB1m42QtabW5swe9GZs67M7CDw&oe=69B7D17F",
                            "watermarked_resized_image_url": "",
                            "title": "Frye Campus 14L Cowboy Women's Boots Black Leather : 7.5 B - Medium",
                            "video_hd_url": null,
                            "video_preview_image_url": null,
                            "video_sd_url": null,
                            "watermarked_video_hd_url": null,
                            "watermarked_video_sd_url": null
                        }
                    ],
                    "cta_text": "Shop now",
                    "cta_type": "SHOP_NOW",
                    "current_page_name": "Zappos.com",
                    "display_format": "DPA",
                    "images": [],
                    "link_description": null,
                    "link_url": "http://www.zappos.com/",
                    "page_categories": [
                        "Clothing"
                    ],
                    "page_entity_type": "PERSON_PROFILE",
                    "page_is_profile_page": false,
                    "page_like_count": 2303104,
                    "title": "{{product.name}}",
                    "videos": [],
                    "extra_images": [],
                    "extra_links": [],
                    "extra_texts": [],
                    "extra_videos": []
                },
                "is_active": true,
                "page_name": "Zappos.com",
                "categories": [
                    "UNKNOWN"
                ],
                "collation_id": null,
                "end_date": 1773212400,
                "entity_type": "PERSON_PROFILE",
                "publisher_platform": [
                    "FACEBOOK",
                    "INSTAGRAM",
                    "AUDIENCE_NETWORK",
                    "MESSENGER"
                ],
                "start_date": 1767340800,
                "total_active_time": null
            }
        ],
        [
            continues with data for the next ad...
            
                "is_active": true,
                "page_name": "Zappos.com",
                "categories": [
                    "UNKNOWN"
                ],
                "collation_id": "820837320439411",
                "end_date": 1773212400,
                "entity_type": "PERSON_PROFILE",
                "publisher_platform": [
                    "FACEBOOK",
                    "INSTAGRAM",
                    "AUDIENCE_NETWORK",
                    "MESSENGER"
                ],
                "start_date": 1772697600,
                "total_active_time": null
            }
        ],
        [
            {
                "ad_archive_id": "1601360074416902",
                "page_id": "7172307686",
                "snapshot": {
                    "page_id": "7172307686",
                    "page_profile_uri": "https://facebook.com/zappos",
                    "page_name": "Zappos.com",
                    "page_profile_picture_url": "https://scontent-iad3-2.xx.fbcdn.net/v/t39.35426-6/606014795_722597810922330_3257166960274048046_n.jpg?stp=dst-jpg_s60x60_tt6&_nc_cat=103&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=shPYfvbVpBkQ7kNvwHdT70x&_nc_oc=AdnjS0ScTEtBoDTNN47JbOdUOqsdFMXtOg8Oslh1-Xg3d1KyPjVALcQch13xs8xpSso&_nc_zt=14&_nc_ht=scontent-iad3-2.xx&_nc_gid=V776smK2QZNFRXZ9H9kS6w&_nc_ss=8&oh=00_Afy3FMJtLGn3P2ldW_w4qxJmxPggMjwDRYG545Bw2MPuNg&oe=69B7C7F9",
                    "body": {
                        "text": "Your fave shoes \u2795 on sale \ud83d\udff0 add to bag \ud83d\udecd\ufe0f (it's easy math)"
                    },
                    
                            "body": "This season's must haves, only at Zappos \ud83d\udc62",
                            "caption": "zappos.com",
                            "cta_text": "Shop Now",
                            "cta_type": "SHOP_NOW",
                            "image_crops": [],
                            "link_description": "Fast, FREE shipping on just-landed sneakers, boots, heels & more from your favorite brands. Now that's a win.",
                            "link_url": "https://www.zappos.com/product/7165047/color/17887",
                            "
                "reachEstimate": null,
                "reportCount": null,
                "snapshot": {
                    "ad_creative_id": "120212385658810641",
                    "additional_info": null,
                    "body": {
                        "callerHash": "8bbb848338fe7cfec97f12d5de027b3e",
                        "context": {},
                        "markup": {
                            "__html": "&#123;&#123;product.brand&#125;&#125;"
                        }
                    },
                    "body_translations": {},
                    "branded_content": null,
                    "brazil_tax_id": null,
                    "byline": null,
                    "caption": "fb.me",
                    "cards": [
                        {
                            "body": "Building a standout style guide, avoiding key-naming pitfalls, and leveraging glossaries and translation memories effectively.\n\nHear from Tom Franc, a 20+ year industry expert and consultant, and one of our very own customers, Adisiti Halwa, who’s become a pro at crafting best-in-class style guides.\n\nDon’t miss this chance to learn from the experts and elevate your localization approach. Save your spot now for November 27th at 10 am EST!",
                            "caption": null,
                            "cta_text": "Sign Up",
                            "cta_type": "SIGN_UP",
                            "image_crops": null,
                            "link_description": " ",
                            "link_url": "http://fb.me/",
                            "original_image_url": "https://scontent-sea1-1.xx.fbcdn.net/v/t39.35426-6/466392706_493126450422472_2944481750212089878_n.jpg?_nc_cat=107&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=MlprU-FJTr4Q7kNvgHZd3en&_nc_zt=14&_nc_ht=scontent-sea1-1.xx&_nc_gid=AoMoSb0LO9iwHEwM852BAJS&oh=00_AYAoNK4IVnKMLTs5osDiVHbVo9iOHeMx08uOBCM0e8Dpuw&oe=674BF541",
                            "resized_image_url": "https://scontent-sea1-1.xx.fbcdn.net/v/t39.35426-6/466733342_1845563509184930_6165722491538502179_n.jpg?stp=dst-jpg_s600x600&_nc_cat=104&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=OQ8xElhHt7sQ7kNvgHCD-XG&_nc_zt=14&_nc_ht=scontent-sea1-1.xx&_nc_gid=AoMoSb0LO9iwHEwM852BAJS&oh=00_AYCeokpveQOWMTc2mhrIftPMP7k_9_uJC1f8mtiSBFaHvA&oe=674C0C01",
                            "title": "[Webinar] Localization FAQs, answered",
                            "video_hd_url": null,
                            "video_preview_image_url": null,
                            "video_sd_url": null,
                            "watermarked_resized_image_url": "",
                            "watermarked_video_hd_url": null,
                            "watermarked_video_sd_url": null
                        },
                        {
                            "body": "Building a standout style guide, avoiding key-naming pitfalls, and leveraging glossaries and translation memories effectively.\n\nHear from Tom Franc, a 20+ year industry expert and consultant, and one of our very own customers, Adisiti Halwa, who’s become a pro at crafting best-in-class style guides.\n\nDon’t miss this chance to learn from the experts and elevate your localization approach. Save your spot now for November 27th at 10 am EST!",
                            "caption": null,
                            "cta_text": "Sign Up",
                            "cta_type": "SIGN_UP",
                            "image_crops": null,
                            "link_description": " ",
                            "link_url": "http://fb.me/",
                            "original_image_url": "https://scontent-sea1-1.xx.fbcdn.net/v/t39.35426-6/466383773_583252434192187_2420524003210310063_n.jpg?_nc_cat=104&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=KbL2-LsEiwQQ7kNvgHbYM2D&_nc_zt=14&_nc_ht=scontent-sea1-1.xx&_nc_gid=AoMoSb0LO9iwHEwM852BAJS&oh=00_AYDpUk9GcuF80MiubXfPGqhatADshrBqePFG0hDUmwYUVQ&oe=674C13BB",
                            "resized_image_url": "https://scontent-sea1-1.xx.fbcdn.net/v/t39.35426-6/466384784_1111025263789923_4713569497465211748_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=111&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=Nz5ggEq9GZoQ7kNvgGNThBk&_nc_zt=14&_nc_ht=scontent-sea1-1.xx&_nc_gid=AoMoSb0LO9iwHEwM852BAJS&oh=00_AYBinRnCb46MUon1S89X19exPncS5h6NWFxNS_C0_pHhHg&oe=674C01C3",
                            "title": "[Webinar] Localization FAQs, answered",
                            "video_hd_url": null,
                            "video_preview_image_url": null,
                            "video_sd_url": null,
                            "watermarked_resized_image_url": "",
                            "watermarked_video_hd_url": null,
                            "watermarked_video_sd_url": null
                        },
                        {
                            "body": "Building a standout style guide, avoiding key-naming pitfalls, and leveraging glossaries and translation memories effectively.\n\nHear from Tom Franc, a 20+ year industry expert and consultant, and one of our very own customers, Adisiti Halwa, who’s become a pro at crafting best-in-class style guides.\n\nDon’t miss this chance to learn from the experts and elevate your localization approach. Save your spot now for November 27th at 10 am EST!",
                            "caption": null,
                            "cta_text": "Sign Up",
                            "cta_type": "SIGN_UP",
                            "image_crops": null,
                            "link_description": " ",
                            "link_url": "http://fb.me/",
                            "original_image_url": "https://scontent-sea1-1.xx.fbcdn.net/v/t39.35426-6/466417112_1616382679227385_3579255785725166441_n.jpg?_nc_cat=103&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=F7Se_sS3moIQ7kNvgHVGNkQ&_nc_zt=14&_nc_ht=scontent-sea1-1.xx&_nc_gid=AoMoSb0LO9iwHEwM852BAJS&oh=00_AYBCNonYrlTAhBLrtD6PIWTrgWIri_pJX4d38OePWQnyAw&oe=674C1F8A",
                            "resized_image_url": "https://scontent-sea1-1.xx.fbcdn.net/v/t39.35426-6/466377225_1256997738884864_6039355383035798424_n.jpg?stp=dst-jpg_s600x600&_nc_cat=105&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=hsLWmyyQBYYQ7kNvgFZPi4d&_nc_zt=14&_nc_ht=scontent-sea1-1.xx&_nc_gid=AoMoSb0LO9iwHEwM852BAJS&oh=00_AYDE7c7jPFQCiBoCozA9-Qv09hGP22prHucfPalMsj1POA&oe=674BF762",
                            "title": "[Webinar] Localization FAQs, answered",
                            "video_hd_url": null,
                            "video_preview_image_url": null,
                            "video_sd_url": null,
                            "watermarked_resized_image_url": "",
                            "watermarked_video_hd_url": null,
                            "watermarked_video_sd_url": null
                        }
                    ],
                    "country_iso_code": null,
                    "creation_time": 1731410930,
                    "cta_text": "Sign up",
                    "cta_type": "SIGN_UP",
                    "current_page_name": "Lokalise",
                    "disclaimer_label": null,
                    "display_format": "dco",
                    "dynamic_item_flags": {},
                    "dynamic_versions": null,
                    "ec_certificates": null,
                    "edited_snapshots": [],
                    "effective_authorization_category": "NONE",
                    "event": [],
                    "extra_images": [],
                    "extra_links": [
                        "https://learn.lokalise.com/design-led-localization-thank-you.html",
                        "https://lokalise.com/privacy-policy",
                        "https://learn.lokalise.com/design-led-localization-thank-you.html"
                    ],
                    "extra_texts": [
                        {
                            "text": "[Webinar] Expert Tips & Tricks for Localization Success"
                        },
                        {
                            "text": "How do you get code ready for localization? What are the best practices for creating naming conventions for translation keys? How do I keep my glossary updated at all times? Tom Franc, Localization Consultant with more than 20 years of industry experience, and Adisti Halawa, Localization Manager at Sitetracker, walk you through their tips & tricks. Sign up now!"
                        },
                        {
                            "text": "We'll use your information to keep you up to date with our latest news."
                        },
                        {
                            "text": "First name"
                        },
                        {
                            "text": "Last name"
                        },
                        {
                            "text": "Work email"
                        },
                        {
                            "text": "Company name"
                        },
                        {
                            "text": "Country"
                        },
                        {
                            "text": "Disclaimer"
                        },
                        {
                            "text": "We'll send this information to Lokalise | Hiring remotely, subject to the company's privacy policy"
                        },
                        {
                            "text": "Yes, I would like to receive the latest insights about the Lokalise product, thought leadership, events & webinars and the Lokalise blog to learn more about localization best practices. I can unsubscribe at any time."
                        },
                        {
                            "text": "Privacy Policy"
                        },
                        {
                            "text": "Thank you!"
                        },
                        {
                            "text": "You're in! \nYou'll receive a confirmation email shortly. To get in touch, email us at webinars@lokalise.com"
                        }
                    ],
                    "extra_videos": [],
                    "images": [],
                    "instagram_actor_name": "Lokalise",
                    "instagram_branded_content": null,
                    "instagram_handle": "",
                    "instagram_profile_pic_url": "https://scontent-sea1-1.xx.fbcdn.net/v/t39.35426-6/466488254_1070717624749967_8897098996429516501_n.jpg?_nc_cat=109&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=rFh6oZ2kK7IQ7kNvgFxo6z-&_nc_zt=14&_nc_ht=scontent-sea1-1.xx&_nc_gid=AoMoSb0LO9iwHEwM852BAJS&oh=00_AYDjNLaCKQ8trh1j3i2XgDxwAbytnXxxH38k0MTthZffKw&oe=674C201E",
                    "instagram_shopping_products": [],
                    "instagram_url": "",
                    "is_reshared": false,
                    "link_description": "{{product.description}}",
                    "link_url": "http://fb.me/",
                    "page_categories": {
                        "1065597503495311": "Business"
                    },
                    "page_entity_type": "person_profile",
                    "page_id": 219810892023535,
                    "page_is_deleted": false,
                    "page_is_profile_page": false,
                    "page_like_count": 2196,
                    "page_name": "Lokalise",
                    "page_profile_picture_url": "https://scontent-sea1-1.xx.fbcdn.net/v/t39.35426-6/466348816_587479360508172_4436102733376226869_n.jpg?stp=dst-jpg_s60x60_tt6&_nc_cat=106&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=gSjrsUJApoUQ7kNvgEhhUQP&_nc_zt=14&_nc_ht=scontent-sea1-1.xx&_nc_gid=AoMoSb0LO9iwHEwM852BAJS&oh=00_AYASJwNZCZzFCgJMxvhj45LFueLRD2Z35_lkSTc_yrKu3A&oe=674C257C",
                    "page_profile_uri": "https://facebook.com/lokalise",
                    "page_welcome_message": null,
                    "root_reshared_post": null,
                    "title": "{{product.name}}",
                    "version": 3,
                    "videos": []
                },
                "spend": null,
                "startDate": 1731398400,
                "stateMediaRunLabel": null,
                "totalActiveTime": null
            }
        ],
        [
            {
                "ad_archive_id": "4440148016264075",
                "page_id": "7172307686",
                "snapshot": {
                    "page_id": "1922846577947953",
                    "page_profile_uri": "https://facebook.com/100044179101943",
                    "page_name": "Trevor Franklin",
                    "page_profile_picture_url": "https://scontent-iad3-2.xx.fbcdn.net/v/t39.35426-6/639156705_1230374289237563_1294962469108296875_n.jpg?stp=dst-jpg_s60x60_tt6&_nc_cat=100&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=lmESKCFLgWAQ7kNvwEPKrNV&_nc_oc=AdmPKJlw91G_OSORmrm4qM36c2FjqG4D5T-gKLDudoU1wcZYtaOpNrGOac10dqMOnlc&_nc_zt=14&_nc_ht=scontent-iad3-2.xx&_nc_gid=V776smK2QZNFRXZ9H9kS6w&_nc_ss=8&oh=00_AfzEdWa_hzolCvKqC7MT2fl62tZS3Koa5zXQRV7S06aojw&oe=69B7AF24",
                    "body": {
                        "text": "In my bone bruise recovery era:\n* fewer miles\n* more lifts\n* better shoes\n* All done as a @zappos VIP member\n\n#ad #zappospartner"
                    },
                    "caption": "www.zappos.com",
                    "cards": [],
                    "cta_text": "Shop now",
                    "cta_type": "SHOP_NOW",
                    "current_page_name": "Trevor Franklin",
                    "display_format": "VIDEO",
                    "images": [],
                    "link_description": null,
                    "link_url": "https://www.zappos.com/shoes/CK_XAeICAjABggMDzfMB.zso?si=6629250,6555814,6605359,661[\u2026],6554926,6621822,6423866,6606684,6554476,6555076,6555075&sy=1",
                    "page_categories": [
                        "Blogger"
                    ],
                    "page_entity_type": "PERSON_PROFILE",
                    "page_is_profile_page": false,
                    "page_like_count": 1010,
                    "title": null,
                    "videos": [
                        {
                            "video_hd_url": "https://video-iad3-2.xx.fbcdn.net/o1/v/t2/f2/m367/AQND4zoiwqoY4R4TMVc5aW9wzw4Hpj2KA5X3RXPz2hcJRTXPN3uj7-YlGWn3KoJtEyChx1-VpdO7d9QTuMxZOZuZtzUFhmuHhVg3kPU4dQ.mp4?_nc_cat=100&_nc_sid=8bf8fe&_nc_ht=video-iad3-2.xx.fbcdn.net&_nc_ohc=lq-y-J4qjOMQ7kNvwG-H_Nl&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5WSV9VU0VDQVNFX1BST0RVQ1RfVFlQRS4uQzMuNzIwLnByb2dyZXNzaXZlX2gyNjQtYmFzaWMtZ2VuMl83MjBwIiwieHB2X2Fzc2V0X2lkIjoxNzk0MDA2NDc5NDExOTc0OSwiYXNzZXRfYWdlX2RheXMiOjI4LCJ2aV91c2VjYXNlX2lkIjoxMDA5OSwiZHVyYXRpb25fcyI6MzYsInVybGdlbl9zb3VyY2UiOiJ3d3cifQ%3D%3D&ccb=17-1&_nc_gid=V776smK2QZNFRXZ9H9kS6w&_nc_ss=8&_nc_zt=28&oh=00_AfyhbiBd3XX_d68BdC0LSyMrk5yqBt3NQNeQ0XNzdSmF3w&oe=69B7BDA2",
                            "video_preview_image_url": "https://scontent-iad3-2.xx.fbcdn.net/v/t39.35426-6/637937789_884116107748250_5029087265181365138_n.jpg?_nc_cat=100&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=lcOHS89hesMQ7kNvwFwQGWO&_nc_oc=AdnJZfhyh0dxRS_RnZI4TvJHvB4Hx53cBg6SfLhCdMQjlVCn8Fqk4-pnpg-EGWn6QBs&_nc_zt=14&_nc_ht=scontent-iad3-2.xx&_nc_gid=V776smK2QZNFRXZ9H9kS6w&_nc_ss=8&oh=00_AfyWc6gY1tPkjPNdTSSBGP0o8IXGslY4zrIephgolT1T4g&oe=69B7A871",
                            "video_sd_url": "https://video-iad3-2.xx.fbcdn.net/o1/v/t2/f2/m367/AQOXrzQFMLmDNdKKHOFNpEQAceWsOH2YlqbMgmkd9YzwniZRzwEJvT9kzDbiVU4wfyLTar6V0ln1PtRaPi7lLG92CdbQQTsnCL51kydoLg.mp4?_nc_cat=100&_nc_sid=8bf8fe&_nc_ht=video-iad3-2.xx.fbcdn.net&_nc_ohc=srwDjD7ZfMMQ7kNvwFt7JMR&efg=eyJ2ZW5jb2RlX3RhZyI6Inhwdl9wcm9ncmVzc2l2ZS5WSV9VU0VDQVNFX1BST0RVQ1RfVFlQRS4uQzMuMzYwLnByb2dyZXNzaXZlX2gyNjQtYmFzaWMtZ2VuMl8zNjBwIiwieHB2X2Fzc2V0X2lkIjoxNzk0MDA2NDc5NDExOTc0OSwiYXNzZXRfYWdlX2RheXMiOjI4LCJ2aV91c2VjYXNlX2lkIjoxMDA5OSwiZHVyYXRpb25fcyI6MzYsInVybGdlbl9zb3VyY2UiOiJ3d3cifQ%3D%3D&ccb=17-1&_nc_gid=V776smK2QZNFRXZ9H9kS6w&_nc_ss=8&_nc_zt=28&oh=00_Afzfan0qs1Lc0ocmU_KLK0ZIXSuoBKKF-3d_f0e0aNa-Cg&oe=69B7C0B2",
                            "watermarked_video_hd_url": null,
                            "watermarked_video_sd_url": null
                        }
                    ],
                    "extra_images": [],
                    "extra_links": [],
                    "extra_texts": [],
                    "extra_videos": []
                },
                "is_active": true,
                "page_name": "Zappos.com",
                "categories": [
                    "UNKNOWN"
                ],
                "collation_id": "903628362519426",
                "end_date": 1773212400,
                "entity_type": "PERSON_PROFILE",
                "publisher_platform": [
                    "FACEBOOK",
                    "INSTAGRAM",
                    "AUDIENCE_NETWORK",
                    "MESSENGER"
                ],
                "start_date": 1771660800,
                "total_active_time": null
            }
        ],
        [
            {
                // continues with the next ad
            }
        ]
  ]
}
```

### Attributes

* active\_status (string)\
  Indicates whether the ad campaign is currently active.
* continuation\_token (nullable string)\
  Token used for pagination to retrieve the next set of results, if applicable.
* country\_code (string)\
  The ISO code of the country where the ads are displayed.
* is\_result\_complete (boolean)\
  Indicates if the result set is complete or if more data is available.
* media\_types (string)\
  Types of media included in the ads, such as images or videos.
* number\_of\_ads (integer)\
  Total number of ads returned in the response.
* page\_id (string)\
  Unique identifier for the Facebook page associated with the ads.
* platform (array of strings)\
  Platforms where the ads are running, e.g., Facebook, Instagram.
* results (array of objects)\
  Contains detailed information about each ad.
* adArchiveID (string)\
  Unique identifier for the ad in the archive.
* adid (string)\
  Identifier for the ad itself.
* archiveTypes (array)\
  Types of archives associated with the ad, if any.
* categories (array of integers)\
  Categories assigned to the ad for classification purposes.
* collationCount (integer)\
  Number of times this ad has been collated or grouped with others.
* collationID (integer)\
  Identifier for the collation group this ad belongs to.
* containsDigitallyCreatedMedia (boolean)\
  Indicates if the ad contains digitally created media content.
* containsSensitiveContent (boolean)\
  Indicates if the ad contains sensitive content that may require special handling.
* currency (string)\
  Currency used in any financial data related to the ad, if applicable.
* endDate (integer)\
  Unix timestamp representing when the ad campaign ends.
* entityType (string)\
  Type of entity associated with the ad, such as a person or business profile.
* fevInfo (nullable object)\
  Additional information related to Facebook's ad review process.
* finServAdData (object)\
  Contains information about financial service advertisements.
* gatedType (string)\
  Eligibility status of the ad for certain features or audiences.
* hasUserReported (boolean)\
  Indicates if any users have reported this ad for review or issues.
* hiddenSafetyData (boolean)\
  Indicates if there is any safety data that is hidden from view.
* hideDataStatus (string)\
  Status indicating whether any data related to this ad is hidden from public view.
* impressionsWithIndex (object)\
  Contains information about ad impressions.
* isAAAEligible (boolean)\
  Indicates eligibility for AAA (Audience and Ad Analysis) features.
* isActive (boolean)\
  Indicates whether the ad is currently active and running.
* isAdAccountActioned (boolean)\
  Indicates if any actions have been taken on this ad by account administrators.
* isProfilePage (boolean)\
  Indicates if this ad is associated with a profile page rather than a business page.
* menuItems (array)\
  Array of menu items associated with this ad's context or placement.
* pageID (string)\
  Identifier for the Facebook page that owns this ad.
* pageInfo (nullable object)\
  Additional information about the page associated with the ad.
* pageIsDeleted (boolean)\
  Indicates whether the page associated with this ad has been deleted.
* pageName (string)\
  Name of the Facebook page associated with this ad.
* politicalCountries (array)\
  List of countries where this ad is classified as political content.
* publisherPlatform (array of strings)\
  Platforms where this ad is published and visible to users.
* reachEstimate (nullable object)\
  Estimated reach of this ad in terms of audience size or demographics, if available.
* reportCount (nullable integer)\
  Number of reports or complaints filed against this ad by users or moderators.
* snapshot (object)\
  Contains detailed information about the ad creative, including body, images, and call-to-action details.
* spend (nullable object)\
  Financial spend data related to this ad campaign, if available.
* startDate (integer)\
  Unix timestamp representing when the ad campaign starts or started running.
* stateMediaRunLabel (nullable string) Label indicating media run state or status for regulatory purposes, if applicable.
* totalActiveTime (nullable integer) Total active time duration for which this ad has been running since its start date.


# Meta ad search

{% hint style="success" %}
You first need to create an account, you can sign up [here](https://app.adyntel.com/signup) to receive 50 credits to test it out.
{% endhint %}

The Meta ad search endpoint allows you to do a search in the ad library.

It takes a keyword as an input and you can provide a country\_code if you want to limit the results of your search.

## API endpoint

<mark style="color:green;">`POST`</mark> `api.adyntel.com/facebook_ad_search`

*Find ads in the ad library based on a keyword.*

## Headers

<table><thead><tr><th width="404">Name</th><th width="232">Value</th><th data-type="checkbox">Required</th></tr></thead><tbody><tr><td>Content-Type</td><td><code>application/json</code></td><td>true</td></tr></tbody></table>

##

## Body

<table><thead><tr><th width="237">Name</th><th>Type</th><th width="217">Description</th><th data-type="checkbox">Required</th></tr></thead><tbody><tr><td><code>api_key</code></td><td>string</td><td>Adyntel API key</td><td>true</td></tr><tr><td><code>email</code></td><td>string</td><td>Adyntel account email</td><td>true</td></tr><tr><td><code>keyword</code></td><td>string</td><td>The keyword you want to use in your search</td><td>true</td></tr><tr><td><code>country_code</code></td><td>string</td><td>To limit results to one specific country</td><td>false</td></tr></tbody></table>

## Example request

* Request made with a country\_code

```
{
    "api_key": "your_api_key",
    "email": "your_email",
    "keyword": "webinar",
    "country_code": "US"
}
```

### Full response, with ads

This is the response what you would get for the above call.&#x20;

```
{
  "active_status": "all",
  "ad_type": "all",
  "continuation_token": "AQHRpfWC3j0LHeIhUWEz9ASnhiepWqURP9SFHR24o1aI07WYi4PboxWvPMqXbMoIBTS7",
  "country_code": "US",
  "is_result_complete": false,
  "media_types": "all",
  "number_of_ads": 50001,
  "platform": [
    "ALL"
  ],
  "query": "webinar",
  "results": [
    [
      {
        "adArchiveID": "540995951781259",
        "adid": "0",
        "archiveTypes": [],
        "categories": [
          0
        ],
        "collationCount": null,
        "collationID": null,
        "containsDigitallyCreatedMedia": false,
        "containsSensitiveContent": false,
        "currency": "",
        "endDate": 1729753200,
        "entityType": "person_profile",
        "fevInfo": null,
        "finServAdData": {
          "is_deemed_finserv": false,
          "is_limited_delivery": false
        },
        "gatedType": "eligible",
        "hasUserReported": false,
        "hiddenSafetyData": false,
        "hideDataStatus": "NONE",
        "impressionsWithIndex": {
          "impressionsIndex": -1,
          "impressionsText": null
        },
        "isAAAEligible": true,
        "isActive": false,
        "isAdAccountActioned": false,
        "isProfilePage": false,
        "menuItems": [],
        "pageID": "271789181870",
        "pageInfo": null,
        "pageIsDeleted": false,
        "pageName": "Current Electric",
        "politicalCountries": [],
        "publisherPlatform": [
          "facebook",
          "instagram",
          "audience_network"
        ],
        "reachEstimate": null,
        "regionalRegulationData": {
          "finserv": {
            "is_deemed_finserv": false,
            "is_limited_delivery": false
          },
          "tw_anti_scam": {
            "is_limited_delivery": false
          }
        },
        "reportCount": null,
        "snapshot": {
          "ad_creative_id": "120212710546180071",
          "additional_info": null,
          "body": {
            "callerHash": "1b73237f3c35d1c21cc1454501372314",
            "context": {},
            "markup": {
              "__html": "Live Webinar – Unlock the Economic Benefits of Solar Power for Your Commercial Building"
            }
          },
          "body_translations": {},
          "branded_content": null,
          "brazil_tax_id": null,
          "byline": null,
          "caption": "mailchi.mp",
          "cards": [],
          "country_iso_code": null,
          "creation_time": 1727426258,
          "cta_text": "Learn more",
          "cta_type": "LEARN_MORE",
          "current_page_name": "Current Electric",
          "disclaimer_label": null,
          "display_format": "image",
          "dynamic_item_flags": {},
          "dynamic_versions": null,
          "ec_certificates": null,
          "edited_snapshots": [],
          "effective_authorization_category": "NONE",
          "event": [],
          "extra_images": [],
          "extra_links": [],
          "extra_texts": [],
          "extra_videos": [],
          "images": [
            {
              "image_crops": {},
              "original_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/461541157_1587252155333244_4791875348061648141_n.jpg?_nc_cat=102&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=d8DKZt5mE0AQ7kNvgFCwNJu&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYAuRuURQ3UKBJCHyqbD5JWnOdH0FtMYx7Dalwa0pXAJKA&oe=6795E05E",
              "resized_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/461340034_514782954586856_4392395584090470909_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=102&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=3lQ5pssMuXMQ7kNvgGoyHcc&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCScpl8VFNFCw0YoYjb06hqws7iMfLXCHzIbjHg2ozaHg&oe=6795C40C",
              "watermarked_resized_image_url": ""
            }
          ],
          "instagram_actor_name": "Current Electric Company",
          "instagram_branded_content": null,
          "instagram_handle": "",
          "instagram_profile_pic_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/461334341_1095261821955207_7568900365683849713_n.jpg?_nc_cat=103&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=MMQGY1GsRLsQ7kNvgGXvugB&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYB27HkWoW0GEksgkx4b0nsiyub_Xt-AwNwwoJvTRTDkfw&oe=6795C29C",
          "instagram_shopping_products": [],
          "instagram_url": "",
          "is_reshared": false,
          "link_description": "Maximize your ROI",
          "link_url": "https://mailchi.mp/99b549ef4050/commercial-solar-webinar",
          "page_categories": {
            "199182823425834": "Electrician"
          },
          "page_entity_type": "person_profile",
          "page_id": 271789181870,
          "page_is_deleted": false,
          "page_is_profile_page": false,
          "page_like_count": 5559,
          "page_name": "Current Electric",
          "page_profile_picture_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/461341701_550797144283826_3497153708007665976_n.jpg?stp=dst-jpg_s60x60_tt6&_nc_cat=110&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=hbP2Eu-EalkQ7kNvgESub-u&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYC7QYluGrv1LGkeAEV-IuniYlNqjjcmK-DIDsPei6-1PA&oe=6795CF89",
          "page_profile_uri": "https://facebook.com/CurrentElectricCompany",
          "page_welcome_message": null,
          "root_reshared_post": null,
          "title": "Boost your commercial value with solar",
          "version": 3,
          "videos": []
        },
        "spend": null,
        "startDate": 1727766000,
        "stateMediaRunLabel": null,
        "targetedOrReachedCountries": [],
        "totalActiveTime": null
      }
    ],
    [
      {
        "adArchiveID": "545702775098498",
        "adid": "0",
        "archiveTypes": [],
        "categories": [
          0
        ],
        "collationCount": null,
        "collationID": null,
        "containsDigitallyCreatedMedia": false,
        "containsSensitiveContent": false,
        "currency": "",
        "endDate": 1737446400,
        "entityType": "person_profile",
        "fevInfo": null,
        "finServAdData": {
          "is_deemed_finserv": false,
          "is_limited_delivery": false
        },
        "gatedType": "eligible",
        "hasUserReported": false,
        "hiddenSafetyData": false,
        "hideDataStatus": "NONE",
        "impressionsWithIndex": {
          "impressionsIndex": -1,
          "impressionsText": null
        },
        "isAAAEligible": true,
        "isActive": false,
        "isAdAccountActioned": false,
        "isProfilePage": false,
        "menuItems": [],
        "pageID": "147638235251862",
        "pageInfo": null,
        "pageIsDeleted": false,
        "pageName": "The Sacred Science",
        "politicalCountries": [],
        "publisherPlatform": [
          "facebook",
          "instagram"
        ],
        "reachEstimate": null,
        "regionalRegulationData": {
          "finserv": {
            "is_deemed_finserv": false,
            "is_limited_delivery": false
          },
          "tw_anti_scam": {
            "is_limited_delivery": false
          }
        },
        "reportCount": null,
        "snapshot": {
          "ad_creative_id": "120214955625280412",
          "additional_info": null,
          "body": {
            "callerHash": "1b73237f3c35d1c21cc1454501372314",
            "context": {},
            "markup": {
              "__html": "⚡ 🔥 FREE Online Virtual Event 🔥 ⚡<br /> Sandra Ingerman, one of the most respected teachers of shamanism, will show you how to travel to hidden non-ordinary realms and meet with helping spirits who can provide healing and guidance.<br /> <br /> In this special presentation, you will learn:<br /> <br /> ✅ Why shamanism is such an essential part of our human existence and how it can be used to heal our lives, both physically and spiritually.<br /> <br /> ✅ How to communicate with compassionate spirits for guidance and healing. These formless beings volunteer themselves and can take the form of power animals, the wind, earth, water, the sun, trees, other guardian spirits, as well as teachers that appear in human form.<br /> <br /> ✅ The art of creating a personal ceremony in your own home, on your own terms, to connect with the higher realms.<br /> <br /> ✅ How to harness this ancient shamanic technology to bring balance, wellness and illumination into your life.<br /> <br /> ✅ Join us for an hour of inner exploration and soul healing with renowned shamanic practitioner Sandra Ingerman!"
            }
          },
          "body_translations": {},
          "branded_content": null,
          "brazil_tax_id": null,
          "byline": "",
          "caption": "shamanicjourneying.thesacredscience.com",
          "cards": [],
          "country_iso_code": null,
          "creation_time": 1735931386,
          "cta_text": "Learn more",
          "cta_type": "LEARN_MORE",
          "current_page_name": "The Sacred Science",
          "disclaimer_label": null,
          "display_format": "image",
          "dynamic_item_flags": {},
          "dynamic_versions": null,
          "ec_certificates": null,
          "edited_snapshots": [],
          "effective_authorization_category": "NONE",
          "event": [],
          "extra_images": [],
          "extra_links": [],
          "extra_texts": [],
          "extra_videos": [],
          "images": [
            {
              "original_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/472420396_1104052511050380_658373724499988343_n.jpg?_nc_cat=110&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=c3iYOU9H7joQ7kNvgF46hRP&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCRQzzrnFoCbUENLjZaPeIohf-HVLyGe9WGtwcCfRLHQQ&oe=6795E7D0",
              "resized_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/472337873_948465766842491_2221535587900371144_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=102&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=NwjjLipKHmoQ7kNvgG0Ys7I&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYDCF8cKb2DLMIWT5GbZNu0_ch_qefeoUuETKCGU4FzT5Q&oe=6795E679",
              "watermarked_resized_image_url": ""
            }
          ],
          "instagram_actor_name": "The Sacred Science",
          "instagram_branded_content": null,
          "instagram_handle": "",
          "instagram_profile_pic_url": "https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/472337801_1973258243183313_6352454284779880950_n.jpg?_nc_cat=101&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=w3q8EezH7rcQ7kNvgE8DyoP&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYAPyHFxBcdooF4LyyFJ6VvruYBUAx8nWOTU_Qn4a5PomQ&oe=6795C870",
          "instagram_shopping_products": [],
          "instagram_url": "",
          "is_reshared": false,
          "link_description": "In this FREE online talk, Sandra Ingerman, one of the most respected teachers of shamanism, will show you how to travel to hidden non-ordinary realms and meet with helping spirits who can provide healing and guidance. Through shamanic journeying you will meet a variety of allies, such as power anima...",
          "link_url": "https://shamanicjourneying.thesacredscience.com/webinar-registration/?a_aid=shant&a_bid=9ea287f4&utm_source=Meta&utm_medium=ad&utm_campaign=EG_SJ",
          "page_categories": {
            "2707": "Health & wellness website"
          },
          "page_entity_type": "person_profile",
          "page_id": 147638235251862,
          "page_is_deleted": false,
          "page_is_profile_page": false,
          "page_like_count": 637060,
          "page_name": "The Sacred Science",
          "page_profile_picture_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/472170205_1768725010527814_3225580781758609266_n.jpg?stp=dst-jpg_s60x60_tt6&_nc_cat=102&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=p5PXBEFS1YkQ7kNvgE1eqYz&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYAKv_cYLTWym68nErQW7EsDOQdSctTO45jc3a6cuoSIYw&oe=6795CA72",
          "page_profile_uri": "https://facebook.com/thesacredscience",
          "page_welcome_message": null,
          "root_reshared_post": null,
          "title": "Accessing The Invisible Realms For Guidance & Healing",
          "version": 3,
          "videos": []
        },
        "spend": null,
        "startDate": 1737014400,
        "stateMediaRunLabel": null,
        "targetedOrReachedCountries": [],
        "totalActiveTime": null
      }
    ],
    [
      {
        "adArchiveID": "931452862420092",
        "adid": "0",
        "archiveTypes": [],
        "categories": [
          0
        ],
        "collationCount": null,
        "collationID": null,
        "containsDigitallyCreatedMedia": false,
        "containsSensitiveContent": false,
        "currency": "",
        "endDate": 1737446400,
        "entityType": "person_profile",
        "fevInfo": null,
        "finServAdData": {
          "is_deemed_finserv": false,
          "is_limited_delivery": false
        },
        "gatedType": "eligible",
        "hasUserReported": false,
        "hiddenSafetyData": false,
        "hideDataStatus": "NONE",
        "impressionsWithIndex": {
          "impressionsIndex": -1,
          "impressionsText": null
        },
        "isAAAEligible": true,
        "isActive": false,
        "isAdAccountActioned": false,
        "isProfilePage": false,
        "menuItems": [],
        "pageID": "147638235251862",
        "pageInfo": null,
        "pageIsDeleted": false,
        "pageName": "The Sacred Science",
        "politicalCountries": [],
        "publisherPlatform": [
          "facebook",
          "instagram"
        ],
        "reachEstimate": null,
        "regionalRegulationData": {
          "finserv": {
            "is_deemed_finserv": false,
            "is_limited_delivery": false
          },
          "tw_anti_scam": {
            "is_limited_delivery": false
          }
        },
        "reportCount": null,
        "snapshot": {
          "ad_creative_id": "120214955625660412",
          "additional_info": null,
          "body": {
            "callerHash": "1b73237f3c35d1c21cc1454501372314",
            "context": {},
            "markup": {
              "__html": "⚡ 🔥 FREE Online Virtual Event 🔥 ⚡<br /> Sandra Ingerman, one of the most respected teachers of shamanism, will show you how to travel to hidden non-ordinary realms and meet with helping spirits who can provide healing and guidance.<br /> <br /> In this special presentation, you will learn:<br /> <br /> ✅ Why shamanism is such an essential part of our human existence and how it can be used to heal our lives, both physically and spiritually.<br /> <br /> ✅ How to communicate with compassionate spirits for guidance and healing. These formless beings volunteer themselves and can take the form of power animals, the wind, earth, water, the sun, trees, other guardian spirits, as well as teachers that appear in human form.<br /> <br /> ✅ The art of creating a personal ceremony in your own home, on your own terms, to connect with the higher realms.<br /> <br /> ✅ How to harness this ancient shamanic technology to bring balance, wellness and illumination into your life.<br /> <br /> ✅ Join us for an hour of inner exploration and soul healing with renowned shamanic practitioner Sandra Ingerman!"
            }
          },
          "body_translations": {},
          "branded_content": null,
          "brazil_tax_id": null,
          "byline": "",
          "caption": "shamanicjourneying.thesacredscience.com",
          "cards": [],
          "country_iso_code": null,
          "creation_time": 1735931388,
          "cta_text": "Learn more",
          "cta_type": "LEARN_MORE",
          "current_page_name": "The Sacred Science",
          "disclaimer_label": null,
          "display_format": "image",
          "dynamic_item_flags": {},
          "dynamic_versions": null,
          "ec_certificates": null,
          "edited_snapshots": [],
          "effective_authorization_category": "NONE",
          "event": [],
          "extra_images": [],
          "extra_links": [],
          "extra_texts": [],
          "extra_videos": [],
          "images": [
            {
              "original_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/472324015_1258747982018188_9069477865230361346_n.jpg?_nc_cat=105&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=9OerIPM2IDwQ7kNvgGtbZ17&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYB-3kBZFBbcZ76unJmOK6FOSlIWWVrFVXlZHZ2QDUnV2g&oe=6795D0EA",
              "resized_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/472158272_1308850293876320_841261797569084791_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=105&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=agDHiFZVVU0Q7kNvgGhFsQN&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCcxoLB_eGOWTBaSsB7xDhw1-48EX_KurgNboi9_DY4Jw&oe=6795F18C",
              "watermarked_resized_image_url": ""
            }
          ],
          "instagram_actor_name": "The Sacred Science",
          "instagram_branded_content": null,
          "instagram_handle": "",
          "instagram_profile_pic_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/472715492_1271268964161888_1418565453998447282_n.jpg?_nc_cat=100&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=OT_MTXi-nd8Q7kNvgHrgBe1&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBCXpkr9xsBgjWO5A1VZyjakUgLbHr8lG17gpgfYY0uzg&oe=6795F0FA",
          "instagram_shopping_products": [],
          "instagram_url": "",
          "is_reshared": false,
          "link_description": "In this FREE online talk, Sandra Ingerman, one of the most respected teachers of shamanism, will show you how to travel to hidden non-ordinary realms and meet with helping spirits who can provide healing and guidance. Through shamanic journeying you will meet a variety of allies, such as power anima...",
          "link_url": "https://shamanicjourneying.thesacredscience.com/webinar-registration/?a_aid=shant&a_bid=9ea287f4&utm_source=Meta&utm_medium=ad&utm_campaign=EG_SJ",
          "page_categories": {
            "2707": "Health & wellness website"
          },
          "page_entity_type": "person_profile",
          "page_id": 147638235251862,
          "page_is_deleted": false,
          "page_is_profile_page": false,
          "page_like_count": 637060,
          "page_name": "The Sacred Science",
          "page_profile_picture_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/472036338_1721712345083494_6772347548239279404_n.jpg?stp=dst-jpg_s60x60_tt6&_nc_cat=100&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=_iHynMZd3BAQ7kNvgE28uWc&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCLYiwGGkJRQ9CNwTvNuW--n8DXZ32DGF3CKRTzQMLMqw&oe=6795F21E",
          "page_profile_uri": "https://facebook.com/thesacredscience",
          "page_welcome_message": null,
          "root_reshared_post": null,
          "title": "Accessing The Invisible Realms For Guidance & Healing",
          "version": 3,
          "videos": []
        },
        "spend": null,
        "startDate": 1737014400,
        "stateMediaRunLabel": null,
        "targetedOrReachedCountries": [],
        "totalActiveTime": null
      }
    ],
    [
      {
        "adArchiveID": "1575612996398959",
        "adid": "0",
        "archiveTypes": [],
        "categories": [
          0
        ],
        "collationCount": null,
        "collationID": null,
        "containsDigitallyCreatedMedia": false,
        "containsSensitiveContent": false,
        "currency": "",
        "endDate": 1737446400,
        "entityType": "person_profile",
        "fevInfo": null,
        "finServAdData": {
          "is_deemed_finserv": false,
          "is_limited_delivery": false
        },
        "gatedType": "eligible",
        "hasUserReported": false,
        "hiddenSafetyData": false,
        "hideDataStatus": "NONE",
        "impressionsWithIndex": {
          "impressionsIndex": -1,
          "impressionsText": null
        },
        "isAAAEligible": true,
        "isActive": false,
        "isAdAccountActioned": false,
        "isProfilePage": false,
        "menuItems": [],
        "pageID": "147638235251862",
        "pageInfo": null,
        "pageIsDeleted": false,
        "pageName": "The Sacred Science",
        "politicalCountries": [],
        "publisherPlatform": [
          "facebook",
          "instagram"
        ],
        "reachEstimate": null,
        "regionalRegulationData": {
          "finserv": {
            "is_deemed_finserv": false,
            "is_limited_delivery": false
          },
          "tw_anti_scam": {
            "is_limited_delivery": false
          }
        },
        "reportCount": null,
        "snapshot": {
          "ad_creative_id": "120214955625790412",
          "additional_info": null,
          "body": {
            "callerHash": "1b73237f3c35d1c21cc1454501372314",
            "context": {},
            "markup": {
              "__html": "⚡ 🔥 FREE Online Virtual Event 🔥 ⚡<br /> Sandra Ingerman, one of the most respected teachers of shamanism, will show you how to travel to hidden non-ordinary realms and meet with helping spirits who can provide healing and guidance.<br /> <br /> In this special presentation, you will learn:<br /> <br /> ✅ Why shamanism is such an essential part of our human existence and how it can be used to heal our lives, both physically and spiritually.<br /> <br /> ✅ How to communicate with compassionate spirits for guidance and healing. These formless beings volunteer themselves and can take the form of power animals, the wind, earth, water, the sun, trees, other guardian spirits, as well as teachers that appear in human form.<br /> <br /> ✅ The art of creating a personal ceremony in your own home, on your own terms, to connect with the higher realms.<br /> <br /> ✅ How to harness this ancient shamanic technology to bring balance, wellness and illumination into your life.<br /> <br /> ✅ Join us for an hour of inner exploration and soul healing with renowned shamanic practitioner Sandra Ingerman!"
            }
          },
          "body_translations": {},
          "branded_content": null,
          "brazil_tax_id": null,
          "byline": "",
          "caption": "shamanicjourneying.thesacredscience.com",
          "cards": [],
          "country_iso_code": null,
          "creation_time": 1735931387,
          "cta_text": "Learn more",
          "cta_type": "LEARN_MORE",
          "current_page_name": "The Sacred Science",
          "disclaimer_label": null,
          "display_format": "image",
          "dynamic_item_flags": {},
          "dynamic_versions": null,
          "ec_certificates": null,
          "edited_snapshots": [],
          "effective_authorization_category": "NONE",
          "event": [],
          "extra_images": [],
          "extra_links": [],
          "extra_texts": [],
          "extra_videos": [],
          "images": [
            {
              "original_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/472670295_1118554419877710_4626227195046547170_n.jpg?_nc_cat=107&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=KvF7cG44wqgQ7kNvgFCIe8p&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYB4g4Fj-pZf2_FRHl5pCKOIMBBbowcquEzBo7LmIw-NsA&oe=6795E9C9",
              "resized_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/472526190_2975860889231394_8634154148299633991_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=100&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=vLoVjGijj-EQ7kNvgFLLmah&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYA3wWY3T3wL8jK4g4qqSzM0dDLDk-R87a4J-1X_FaIZHQ&oe=6795CF3C",
              "watermarked_resized_image_url": ""
            }
          ],
          "instagram_actor_name": "The Sacred Science",
          "instagram_branded_content": null,
          "instagram_handle": "",
          "instagram_profile_pic_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/472211174_503603982184365_8521103820553418980_n.jpg?_nc_cat=103&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=2RUZ4E2JrBcQ7kNvgGfricv&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCwFu7uXdPjfCk844v0xhGNfbEec-EvSz1q-v83LeAuqQ&oe=6795E4D2",
          "instagram_shopping_products": [],
          "instagram_url": "",
          "is_reshared": false,
          "link_description": "In this FREE online talk, Sandra Ingerman, one of the most respected teachers of shamanism, will show you how to travel to hidden non-ordinary realms and meet with helping spirits who can provide healing and guidance. Through shamanic journeying you will meet a variety of allies, such as power anima...",
          "link_url": "https://shamanicjourneying.thesacredscience.com/webinar-registration/?a_aid=shant&a_bid=9ea287f4&utm_source=Meta&utm_medium=ad&utm_campaign=EG_SJ",
          "page_categories": {
            "2707": "Health & wellness website"
          },
          "page_entity_type": "person_profile",
          "page_id": 147638235251862,
          "page_is_deleted": false,
          "page_is_profile_page": false,
          "page_like_count": 637060,
          "page_name": "The Sacred Science",
          "page_profile_picture_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/472210424_620536970480485_1565540913716997131_n.jpg?stp=dst-jpg_s60x60_tt6&_nc_cat=105&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=nXG8cCJEWIgQ7kNvgFpVOdv&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYAiREyRZpd7W4efN0zvFZO1YiRd3I7sPw6lGNzqP03eqA&oe=6795E39A",
          "page_profile_uri": "https://facebook.com/thesacredscience",
          "page_welcome_message": null,
          "root_reshared_post": null,
          "title": "Accessing The Invisible Realms For Guidance & Healing",
          "version": 3,
          "videos": []
        },
        "spend": null,
        "startDate": 1737014400,
        "stateMediaRunLabel": null,
        "targetedOrReachedCountries": [],
        "totalActiveTime": null
      }
    ],
    [
      {
        "adArchiveID": "1146678846410043",
        "adid": "0",
        "archiveTypes": [],
        "categories": [
          0
        ],
        "collationCount": null,
        "collationID": null,
        "containsDigitallyCreatedMedia": false,
        "containsSensitiveContent": false,
        "currency": "",
        "endDate": 1724050800,
        "entityType": "person_profile",
        "fevInfo": null,
        "finServAdData": {
          "is_deemed_finserv": false,
          "is_limited_delivery": false
        },
        "gatedType": "eligible",
        "hasUserReported": false,
        "hiddenSafetyData": false,
        "hideDataStatus": "NONE",
        "impressionsWithIndex": {
          "impressionsIndex": -1,
          "impressionsText": null
        },
        "isAAAEligible": true,
        "isActive": false,
        "isAdAccountActioned": false,
        "isProfilePage": false,
        "menuItems": [],
        "pageID": "271789181870",
        "pageInfo": null,
        "pageIsDeleted": false,
        "pageName": "Current Electric",
        "politicalCountries": [],
        "publisherPlatform": [
          "facebook",
          "instagram",
          "audience_network"
        ],
        "reachEstimate": null,
        "regionalRegulationData": {
          "finserv": {
            "is_deemed_finserv": false,
            "is_limited_delivery": false
          },
          "tw_anti_scam": {
            "is_limited_delivery": false
          }
        },
        "reportCount": null,
        "snapshot": {
          "ad_creative_id": "120211401698010071",
          "additional_info": null,
          "body": {
            "callerHash": "1b73237f3c35d1c21cc1454501372314",
            "context": {},
            "markup": {
              "__html": "Live Webinar - Home Solar Power in SE Wisconsin: The Good, the Great, and the Meh."
            }
          },
          "body_translations": {},
          "branded_content": null,
          "brazil_tax_id": null,
          "byline": null,
          "caption": "mailchi.mp",
          "cards": [],
          "country_iso_code": null,
          "creation_time": 1722317329,
          "cta_text": "Learn more",
          "cta_type": "LEARN_MORE",
          "current_page_name": "Current Electric",
          "disclaimer_label": null,
          "display_format": "image",
          "dynamic_item_flags": {},
          "dynamic_versions": null,
          "ec_certificates": null,
          "edited_snapshots": [],
          "effective_authorization_category": "NONE",
          "event": [],
          "extra_images": [],
          "extra_links": [],
          "extra_texts": [],
          "extra_videos": [],
          "images": [
            {
              "image_crops": {},
              "original_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/453262776_1464711420828703_4788617084567761705_n.jpg?_nc_cat=100&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=n1tEVzQOwOkQ7kNvgEGeVDI&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYDsxufOTVJXLxPapQoJAhId-t9lbOw8a7cmhF0ddg0uoA&oe=6795E3F3",
              "resized_image_url": "https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/453436202_498573146051019_6207609639848360690_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=108&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=PRD1o09EvH8Q7kNvgGZWDHV&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYDHEC6_Xzvc8Hcurs0XviIwqPH4g81J39oz5LDLFBh64w&oe=6795D5BD",
              "watermarked_resized_image_url": ""
            }
          ],
          "instagram_actor_name": "Current Electric Company",
          "instagram_branded_content": null,
          "instagram_handle": "",
          "instagram_profile_pic_url": "https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/453406895_491583340030749_2678211306121213819_n.jpg?_nc_cat=101&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=xvoRGUTbUfgQ7kNvgGgRSoo&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYA_IJvRsC73Fx1U2WCvnM4I7-rqlGNvQFiKT7IPC9YGiw&oe=6795C7BE",
          "instagram_shopping_products": [],
          "instagram_url": "",
          "is_reshared": false,
          "link_description": "An honest discussion about costs and benefits of solar. Learn about financial incentives, installation and more.",
          "link_url": "https://mailchi.mp/786428e71a0b/solar",
          "page_categories": {
            "199182823425834": "Electrician"
          },
          "page_entity_type": "person_profile",
          "page_id": 271789181870,
          "page_is_deleted": false,
          "page_is_profile_page": false,
          "page_like_count": 5559,
          "page_name": "Current Electric",
          "page_profile_picture_url": "https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/453222752_798863409070671_8063915074720849329_n.jpg?stp=dst-jpg_s60x60_tt6&_nc_cat=101&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=dzN_679CV5sQ7kNvgHL8nfh&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCcD4Hn80bqVBdJk-XEPplMJPd8dpD9pOyByOzB90R7Jw&oe=6795CA40",
          "page_profile_uri": "https://facebook.com/CurrentElectricCompany",
          "page_welcome_message": null,
          "root_reshared_post": null,
          "title": "Learn more about solar!",
          "version": 3,
          "videos": []
        },
        "spend": null,
        "startDate": 1722841200,
        "stateMediaRunLabel": null,
        "targetedOrReachedCountries": [],
        "totalActiveTime": null
      }
    ],
    [
      {
        "adArchiveID": "937229741903656",
        "adid": "0",
        "archiveTypes": [],
        "categories": [
          0
        ],
        "collationCount": 1,
        "collationID": 596370126482683,
        "containsDigitallyCreatedMedia": false,
        "containsSensitiveContent": false,
        "currency": "",
        "endDate": 1737446400,
        "entityType": "person_profile",
        "fevInfo": null,
        "finServAdData": {
          "is_deemed_finserv": false,
          "is_limited_delivery": false
        },
        "gatedType": "eligible",
        "hasUserReported": false,
        "hiddenSafetyData": false,
        "hideDataStatus": "NONE",
        "impressionsWithIndex": {
          "impressionsIndex": -1,
          "impressionsText": null
        },
        "isAAAEligible": true,
        "isActive": true,
        "isAdAccountActioned": false,
        "isProfilePage": false,
        "menuItems": [],
        "pageID": "98036363958",
        "pageInfo": null,
        "pageIsDeleted": false,
        "pageName": "ESMT Berlin",
        "politicalCountries": [],
        "publisherPlatform": [
          "instagram"
        ],
        "reachEstimate": null,
        "regionalRegulationData": {
          "finserv": {
            "is_deemed_finserv": false,
            "is_limited_delivery": false
          },
          "tw_anti_scam": {
            "is_limited_delivery": false
          }
        },
        "reportCount": null,
        "snapshot": {
          "ad_creative_id": 1333947764296121,
          "additional_info": null,
          "body": {
            "callerHash": "1b73237f3c35d1c21cc1454501372314",
            "context": {},
            "markup": {
              "__html": "&#123;&#123;product.brand&#125;&#125;"
            }
          },
          "body_translations": {},
          "branded_content": null,
          "brazil_tax_id": null,
          "byline": null,
          "caption": "https://landing.esmt.berlin/en-us/mba-bites-januar...",
          "cards": [
            {
              "body": "Learn from Prof. David Ronayne in this bite-sized lecture series. A key researcher in consumer behavioral economics focusing on price.",
              "caption": "https://landing.esmt.berlin/en-us/mba-bites-january-2025?utm_source=meta&utm_medium=paid-social&utm_campaign=MMG24_FTMBA+Bites+-+January+23+2025&utm_term=Traffic",
              "cta_text": "Sign Up",
              "cta_type": "SIGN_UP",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://landing.esmt.berlin/en-us/mba-bites-january-2025?utm_source=meta&utm_medium=paid-social&utm_campaign=MMG24_FTMBA+Bites+-+January+23+2025&utm_term=Traffic",
              "original_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474140858_1162192752278053_6998379293240435682_n.jpg?_nc_cat=111&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=R-Y56WQgHScQ7kNvgESLXE0&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBCx9BOLxi2P2lyebQo0YNUrz1M3gDn57LsGIe7IFkZQA&oe=6795ECE9",
              "resized_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474163174_994260056082409_2062648818947440816_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=109&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=D4BtifUle6IQ7kNvgGKMTXl&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYARzi2xM6BN5BlfHGAbMhcAVFzsnta2HirQgDvZuJ0ugA&oe=6795F428",
              "title": "Get ready for more MBA bite-sized lectures",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            },
            {
              "body": "Learn from Prof. David Ronayne in this bite-sized lecture series. A key researcher in consumer behavioral economics focusing on price.",
              "caption": "https://landing.esmt.berlin/en-us/mba-bites-january-2025?utm_source=meta&utm_medium=paid-social&utm_campaign=MMG24_FTMBA+Bites+-+January+23+2025&utm_term=Traffic",
              "cta_text": "Sign Up",
              "cta_type": "SIGN_UP",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://landing.esmt.berlin/en-us/mba-bites-january-2025?utm_source=meta&utm_medium=paid-social&utm_campaign=MMG24_FTMBA+Bites+-+January+23+2025&utm_term=Traffic",
              "original_image_url": "https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/474105741_1327173981636818_2679687972667619851_n.jpg?_nc_cat=108&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=9opCaasn3bYQ7kNvgF2HL8m&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYAOAGSPpHAIjau1TUVOgw_OS1ROm56w-4rG5RM42-RDPA&oe=6795C9C0",
              "resized_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474579188_966955715355059_6055966145609396927_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=104&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=Y0XX4MyTAEAQ7kNvgEwcsgu&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBHDUnKGM1jtFcX1NtY8cgDMfJyv0_XvbhccBh6BldhyQ&oe=6795E91E",
              "title": "Get ready for more MBA bite-sized lectures",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            }
          ],
          "country_iso_code": null,
          "creation_time": 1737386578,
          "cta_text": "Sign up",
          "cta_type": "SIGN_UP",
          "current_page_name": "ESMT Berlin",
          "disclaimer_label": null,
          "display_format": "dco",
          "dynamic_item_flags": {},
          "dynamic_versions": null,
          "ec_certificates": null,
          "edited_snapshots": [],
          "effective_authorization_category": "NONE",
          "event": [],
          "extra_images": [],
          "extra_links": [],
          "extra_texts": [],
          "extra_videos": [],
          "images": [],
          "instagram_actor_name": "ESMT Berlin",
          "instagram_branded_content": null,
          "instagram_handle": "",
          "instagram_profile_pic_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/473784008_898717738800078_3171409936858016039_n.jpg?_nc_cat=100&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=nDdJQACk_V0Q7kNvgG_gCbv&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYC06JZg2gYGJY78-jD65p6oWWcTKsTAYGdbphO0m01i1Q&oe=6795C500",
          "instagram_shopping_products": [],
          "instagram_url": "",
          "is_reshared": false,
          "link_description": null,
          "link_url": "https://landing.esmt.berlin/en-us/mba-bites-january-2025?utm_source=meta&utm_medium=paid-social&utm_campaign=MMG24_FTMBA+Bites+-+January+23+2025&utm_term=Traffic",
          "page_categories": {
            "216161991738736": "Building"
          },
          "page_entity_type": "person_profile",
          "page_id": 98036363958,
          "page_is_deleted": false,
          "page_is_profile_page": false,
          "page_like_count": 18816,
          "page_name": "ESMT Berlin",
          "page_profile_picture_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474130513_919170836967775_4905077676846090225_n.jpg?stp=dst-jpg_s60x60_tt6&_nc_cat=106&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=g9YAa1CfengQ7kNvgE7QsUO&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYDsmqAZ4bPaGbNLrpvXexzQvuwuWbsClu9H8aoIwD15GQ&oe=6795EE5D",
          "page_profile_uri": "https://facebook.com/ESMTBerlin.org",
          "page_welcome_message": null,
          "root_reshared_post": null,
          "title": null,
          "version": 3,
          "videos": []
        },
        "spend": null,
        "startDate": 1737360000,
        "stateMediaRunLabel": null,
        "targetedOrReachedCountries": [],
        "totalActiveTime": null
      }
    ],
    [
      {
        "adArchiveID": "1423327335719148",
        "adid": "0",
        "archiveTypes": [],
        "categories": [
          0
        ],
        "collationCount": 1,
        "collationID": 1233939317706028,
        "containsDigitallyCreatedMedia": false,
        "containsSensitiveContent": false,
        "currency": "",
        "endDate": 1737446400,
        "entityType": "person_profile",
        "fevInfo": null,
        "finServAdData": {
          "is_deemed_finserv": false,
          "is_limited_delivery": false
        },
        "gatedType": "eligible",
        "hasUserReported": false,
        "hiddenSafetyData": false,
        "hideDataStatus": "NONE",
        "impressionsWithIndex": {
          "impressionsIndex": -1,
          "impressionsText": null
        },
        "isAAAEligible": true,
        "isActive": true,
        "isAdAccountActioned": false,
        "isProfilePage": false,
        "menuItems": [],
        "pageID": "98036363958",
        "pageInfo": null,
        "pageIsDeleted": false,
        "pageName": "ESMT Berlin",
        "politicalCountries": [],
        "publisherPlatform": [
          "instagram"
        ],
        "reachEstimate": null,
        "regionalRegulationData": {
          "finserv": {
            "is_deemed_finserv": false,
            "is_limited_delivery": false
          },
          "tw_anti_scam": {
            "is_limited_delivery": false
          }
        },
        "reportCount": null,
        "snapshot": {
          "ad_creative_id": "9099091803507683",
          "additional_info": null,
          "body": {
            "callerHash": "1b73237f3c35d1c21cc1454501372314",
            "context": {},
            "markup": {
              "__html": "&#123;&#123;product.brand&#125;&#125;"
            }
          },
          "body_translations": {},
          "branded_content": null,
          "brazil_tax_id": null,
          "byline": null,
          "caption": "https://landing.esmt.berlin/en-us/mba-bites-januar...",
          "cards": [
            {
              "body": "Join the lecture by behavioral economist, Prof. David Ronayne, to get a glimpse of the learning experience at Germany's leading business school.",
              "caption": "https://landing.esmt.berlin/en-us/mba-bites-january-2025?utm_source=meta&utm_medium=paid-social&utm_campaign=MMG24_FTMBA+Bites+-+January+23+2025&utm_term=Traffic",
              "cta_text": "Sign Up",
              "cta_type": "SIGN_UP",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://landing.esmt.berlin/en-us/mba-bites-january-2025?utm_source=meta&utm_medium=paid-social&utm_campaign=MMG24_FTMBA+Bites+-+January+23+2025&utm_term=Traffic",
              "original_image_url": "https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/474047078_466356903021977_7191637837899640746_n.jpg?_nc_cat=101&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=smAqjpX0mF0Q7kNvgEUAXN2&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCJ5Ya5iM5RPiDXc2nzV8fFuPEVx2DjdIcYqGuYGNjI4Q&oe=6795C6DE",
              "resized_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474381972_1644873676107725_4823971107996708411_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=100&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=AgoU8-VI5VgQ7kNvgGcAKKm&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBcNJlQgTUKH6ajJ2cBWqiWMJzX3Psrr4mxjt9PrnZe7Q&oe=6795DF4A",
              "title": "Join an MBA lecture online",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            },
            {
              "body": "Join the lecture by behavioral economist, Prof. David Ronayne, to get a glimpse of the learning experience at Germany's leading business school.",
              "caption": "https://landing.esmt.berlin/en-us/mba-bites-january-2025?utm_source=meta&utm_medium=paid-social&utm_campaign=MMG24_FTMBA+Bites+-+January+23+2025&utm_term=Traffic",
              "cta_text": "Sign Up",
              "cta_type": "SIGN_UP",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://landing.esmt.berlin/en-us/mba-bites-january-2025?utm_source=meta&utm_medium=paid-social&utm_campaign=MMG24_FTMBA+Bites+-+January+23+2025&utm_term=Traffic",
              "original_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474457161_1041590481336513_5861300354882910558_n.jpg?_nc_cat=103&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=tKWjdqbP0dcQ7kNvgGjcmbJ&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCp9M9oXmfZxl0Uz2llWZgEy3ozAwB-0CDijqpDX1eoDA&oe=6795D6B4",
              "resized_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474557852_1627458221541293_2684572059527825776_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=100&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=Q1lzu3uiCWAQ7kNvgEVyssF&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCOQrgsAu1TRmiHBW3-74BfZI1kLluc4cSVL5DIIiArRA&oe=6795CAB4",
              "title": "Join an MBA lecture online",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            }
          ],
          "country_iso_code": null,
          "creation_time": 1737386615,
          "cta_text": "Sign up",
          "cta_type": "SIGN_UP",
          "current_page_name": "ESMT Berlin",
          "disclaimer_label": null,
          "display_format": "dco",
          "dynamic_item_flags": {},
          "dynamic_versions": null,
          "ec_certificates": null,
          "edited_snapshots": [],
          "effective_authorization_category": "NONE",
          "event": [],
          "extra_images": [],
          "extra_links": [],
          "extra_texts": [],
          "extra_videos": [],
          "images": [],
          "instagram_actor_name": "ESMT Berlin",
          "instagram_branded_content": null,
          "instagram_handle": "",
          "instagram_profile_pic_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474378393_2803399093175629_217610826876715005_n.jpg?_nc_cat=105&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=ed5LatoxiXUQ7kNvgHighrn&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYDZXjPASMlzMFi0mvy-N-2vJqIBAMy67ptmM1IEnyN-wg&oe=6795D202",
          "instagram_shopping_products": [],
          "instagram_url": "",
          "is_reshared": false,
          "link_description": null,
          "link_url": "https://landing.esmt.berlin/en-us/mba-bites-january-2025?utm_source=meta&utm_medium=paid-social&utm_campaign=MMG24_FTMBA+Bites+-+January+23+2025&utm_term=Traffic",
          "page_categories": {
            "216161991738736": "Building"
          },
          "page_entity_type": "person_profile",
          "page_id": 98036363958,
          "page_is_deleted": false,
          "page_is_profile_page": false,
          "page_like_count": 18816,
          "page_name": "ESMT Berlin",
          "page_profile_picture_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474444874_596643602974922_1707959357939227713_n.jpg?stp=dst-jpg_s60x60_tt6&_nc_cat=107&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=1fUTh9mKTJQQ7kNvgH7iBvK&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBnJwfg2Z9acTlIREufmlce3YMYazHfgNSMrE569i0wYQ&oe=6795EC2E",
          "page_profile_uri": "https://facebook.com/ESMTBerlin.org",
          "page_welcome_message": null,
          "root_reshared_post": null,
          "title": null,
          "version": 3,
          "videos": []
        },
        "spend": null,
        "startDate": 1737360000,
        "stateMediaRunLabel": null,
        "targetedOrReachedCountries": [],
        "totalActiveTime": null
      }
    ],
    [
      {
        "adArchiveID": "1428279558132226",
        "adid": "0",
        "archiveTypes": [],
        "categories": [
          0
        ],
        "collationCount": 1,
        "collationID": 475860078653021,
        "containsDigitallyCreatedMedia": false,
        "containsSensitiveContent": false,
        "currency": "",
        "endDate": 1737446400,
        "entityType": "person_profile",
        "fevInfo": null,
        "finServAdData": {
          "is_deemed_finserv": false,
          "is_limited_delivery": false
        },
        "gatedType": "eligible",
        "hasUserReported": false,
        "hiddenSafetyData": false,
        "hideDataStatus": "NONE",
        "impressionsWithIndex": {
          "impressionsIndex": -1,
          "impressionsText": null
        },
        "isAAAEligible": true,
        "isActive": true,
        "isAdAccountActioned": false,
        "isProfilePage": false,
        "menuItems": [],
        "pageID": "98036363958",
        "pageInfo": null,
        "pageIsDeleted": false,
        "pageName": "ESMT Berlin",
        "politicalCountries": [],
        "publisherPlatform": [
          "instagram"
        ],
        "reachEstimate": null,
        "regionalRegulationData": {
          "finserv": {
            "is_deemed_finserv": false,
            "is_limited_delivery": false
          },
          "tw_anti_scam": {
            "is_limited_delivery": false
          }
        },
        "reportCount": null,
        "snapshot": {
          "ad_creative_id": 2855088684667250,
          "additional_info": null,
          "body": {
            "callerHash": "1b73237f3c35d1c21cc1454501372314",
            "context": {},
            "markup": {
              "__html": "&#123;&#123;product.brand&#125;&#125;"
            }
          },
          "body_translations": {},
          "branded_content": null,
          "brazil_tax_id": null,
          "byline": null,
          "caption": "https://landing.esmt.berlin/en-us/mba-bites-januar...",
          "cards": [
            {
              "body": "This month's MBA Bites lecture features Prof. David Ronayne, an industrial and behavioral economist using game theory and experimental methods in consumer research. Join us and learn more about the ESMT MBA teaching portfolio.",
              "caption": "https://landing.esmt.berlin/en-us/mba-bites-january-2025?utm_source=meta&utm_medium=paid-social&utm_campaign=MMG24_FTMBA+Bites+-+January+23+2025&utm_term=Traffic",
              "cta_text": "Sign Up",
              "cta_type": "SIGN_UP",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://landing.esmt.berlin/en-us/mba-bites-january-2025?utm_source=meta&utm_medium=paid-social&utm_campaign=MMG24_FTMBA+Bites+-+January+23+2025&utm_term=Traffic",
              "original_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/473813648_588808960584030_5167497945927589244_n.jpg?_nc_cat=102&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=AV88UoaSf9MQ7kNvgEjBb_U&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYA0_Fa2YYhVEHqyBu6svYU4w4dbmTZHTvFYxvWIX4TmTQ&oe=6795F8A2",
              "resized_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/473809135_3716696588551037_4163814411712403148_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=102&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=Aj0_U3Zk5G8Q7kNvgEp4Fv-&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCbJDUQBbzpMfGhCE569-cJa29UgOnQU3H8d3zXohUpuA&oe=6795D4CE",
              "title": "Start 2025 off right with our MBA Bites online webinar series",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            },
            {
              "body": "This month's MBA Bites lecture features Prof. David Ronayne, an industrial and behavioral economist using game theory and experimental methods in consumer research. Join us and learn more about the ESMT MBA teaching portfolio.",
              "caption": "https://landing.esmt.berlin/en-us/mba-bites-january-2025?utm_source=meta&utm_medium=paid-social&utm_campaign=MMG24_FTMBA+Bites+-+January+23+2025&utm_term=Traffic",
              "cta_text": "Sign Up",
              "cta_type": "SIGN_UP",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://landing.esmt.berlin/en-us/mba-bites-january-2025?utm_source=meta&utm_medium=paid-social&utm_campaign=MMG24_FTMBA+Bites+-+January+23+2025&utm_term=Traffic",
              "original_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/473836250_540439925697659_8949538062409777439_n.jpg?_nc_cat=109&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=6m_VY2hbRagQ7kNvgHY1auy&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYDjoa9IR-QF1I8dBRH2wB4455R4Q896SjSx_DGbku4WuQ&oe=6795E2FE",
              "resized_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/473801997_2357193904639968_4899259001006418733_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=109&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=4fdu1xJjb0AQ7kNvgFJKD5V&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYA67zWtGf4qLLGm9v5S7v89OB3-FiWnfgcxnp24Xw-MhQ&oe=6795D553",
              "title": "Start 2025 off right with our MBA Bites online webinar series",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            }
          ],
          "country_iso_code": null,
          "creation_time": 1737386581,
          "cta_text": "Sign up",
          "cta_type": "SIGN_UP",
          "current_page_name": "ESMT Berlin",
          "disclaimer_label": null,
          "display_format": "dco",
          "dynamic_item_flags": {},
          "dynamic_versions": null,
          "ec_certificates": null,
          "edited_snapshots": [],
          "effective_authorization_category": "NONE",
          "event": [],
          "extra_images": [],
          "extra_links": [],
          "extra_texts": [],
          "extra_videos": [],
          "images": [],
          "instagram_actor_name": "ESMT Berlin",
          "instagram_branded_content": null,
          "instagram_handle": "",
          "instagram_profile_pic_url": "https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/473801260_621534256919208_5411129497007645231_n.jpg?_nc_cat=108&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=0FcU84dibfwQ7kNvgEXGSta&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYD2nQ7JdnoyL5iiX2CUlcQlHKPmQV_XC5UMZuSmJmTIyQ&oe=6795E55E",
          "instagram_shopping_products": [],
          "instagram_url": "",
          "is_reshared": false,
          "link_description": null,
          "link_url": "https://landing.esmt.berlin/en-us/mba-bites-january-2025?utm_source=meta&utm_medium=paid-social&utm_campaign=MMG24_FTMBA+Bites+-+January+23+2025&utm_term=Traffic",
          "page_categories": {
            "216161991738736": "Building"
          },
          "page_entity_type": "person_profile",
          "page_id": 98036363958,
          "page_is_deleted": false,
          "page_is_profile_page": false,
          "page_like_count": 18816,
          "page_name": "ESMT Berlin",
          "page_profile_picture_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474653026_2952989494911676_8720517501429455426_n.jpg?stp=dst-jpg_s60x60_tt6&_nc_cat=107&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=y1wLdnw4ATgQ7kNvgHHSjg0&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCtWL9xVqopj91ZBlD9nrjN173Vh0AwCLoM1rJ-yH9bpg&oe=6795C160",
          "page_profile_uri": "https://facebook.com/ESMTBerlin.org",
          "page_welcome_message": null,
          "root_reshared_post": null,
          "title": null,
          "version": 3,
          "videos": []
        },
        "spend": null,
        "startDate": 1737360000,
        "stateMediaRunLabel": null,
        "targetedOrReachedCountries": [],
        "totalActiveTime": null
      }
    ],
    [
      {
        "adArchiveID": "1563839981051240",
        "adid": "0",
        "archiveTypes": [],
        "categories": [
          0
        ],
        "collationCount": 1,
        "collationID": 2273407576361339,
        "containsDigitallyCreatedMedia": false,
        "containsSensitiveContent": false,
        "currency": "",
        "endDate": 1737446400,
        "entityType": "person_profile",
        "fevInfo": null,
        "finServAdData": {
          "is_deemed_finserv": false,
          "is_limited_delivery": false
        },
        "gatedType": "eligible",
        "hasUserReported": false,
        "hiddenSafetyData": false,
        "hideDataStatus": "NONE",
        "impressionsWithIndex": {
          "impressionsIndex": -1,
          "impressionsText": null
        },
        "isAAAEligible": true,
        "isActive": true,
        "isAdAccountActioned": false,
        "isProfilePage": false,
        "menuItems": [],
        "pageID": "98036363958",
        "pageInfo": null,
        "pageIsDeleted": false,
        "pageName": "ESMT Berlin",
        "politicalCountries": [],
        "publisherPlatform": [
          "instagram"
        ],
        "reachEstimate": null,
        "regionalRegulationData": {
          "finserv": {
            "is_deemed_finserv": false,
            "is_limited_delivery": false
          },
          "tw_anti_scam": {
            "is_limited_delivery": false
          }
        },
        "reportCount": null,
        "snapshot": {
          "ad_creative_id": 1709670222921361,
          "additional_info": null,
          "body": {
            "callerHash": "1b73237f3c35d1c21cc1454501372314",
            "context": {},
            "markup": {
              "__html": "&#123;&#123;product.brand&#125;&#125;"
            }
          },
          "body_translations": {},
          "branded_content": null,
          "brazil_tax_id": null,
          "byline": null,
          "caption": "https://landing.esmt.berlin/en-us/mba-bites-januar...",
          "cards": [
            {
              "body": "Watch a lecture by Prof. David Ronayne and learn more about the triple-accredited ESMT MBA curriculum offerings.",
              "caption": "https://landing.esmt.berlin/en-us/mba-bites-january-2025?utm_source=meta&utm_medium=paid-social&utm_campaign=MMG24_FTMBA+Bites+-+January+23+2025&utm_term=Traffic",
              "cta_text": "Sign Up",
              "cta_type": "SIGN_UP",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://landing.esmt.berlin/en-us/mba-bites-january-2025?utm_source=meta&utm_medium=paid-social&utm_campaign=MMG24_FTMBA+Bites+-+January+23+2025&utm_term=Traffic",
              "original_image_url": "https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/474625458_1762632111190468_4743056540954596472_n.jpg?_nc_cat=101&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=rezZ47Yx63QQ7kNvgGsb_BP&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYDA3Pt-72HOAJq9aGIXJQhSYfYFlzkSQz87dBJ6hKDB1g&oe=6795EDAF",
              "resized_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/473739331_634111612416327_4230040396445867400_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=104&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=tKp7Aer4uPcQ7kNvgE5MZHQ&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYAMeUZWoQBjGXBSb8ZeUz61dbZTE6tQAkhOSB4OASvFBg&oe=6795F46D",
              "title": "MBA bite-sized lecture",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            },
            {
              "body": "Watch a lecture by Prof. David Ronayne and learn more about the triple-accredited ESMT MBA curriculum offerings.",
              "caption": "https://landing.esmt.berlin/en-us/mba-bites-january-2025?utm_source=meta&utm_medium=paid-social&utm_campaign=MMG24_FTMBA+Bites+-+January+23+2025&utm_term=Traffic",
              "cta_text": "Sign Up",
              "cta_type": "SIGN_UP",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://landing.esmt.berlin/en-us/mba-bites-january-2025?utm_source=meta&utm_medium=paid-social&utm_campaign=MMG24_FTMBA+Bites+-+January+23+2025&utm_term=Traffic",
              "original_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474365623_1142698324226240_3847572528253140590_n.jpg?_nc_cat=105&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=8EkC3fv0PCwQ7kNvgGkttj6&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYDV_O0_44TZAbP60a_JmpUdKuQEGnNIn3VFaFT07o4xpA&oe=6795CE7F",
              "resized_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474260002_953441396343496_1084588634133672900_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=106&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=6F3bZgvkwisQ7kNvgGRcjHj&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCLb5L35NW2JM6mGyyo-XrDhCMgFIRhas43rt5nB4m7nA&oe=6795CE34",
              "title": "MBA bite-sized lecture",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            }
          ],
          "country_iso_code": null,
          "creation_time": 1737386602,
          "cta_text": "Sign up",
          "cta_type": "SIGN_UP",
          "current_page_name": "ESMT Berlin",
          "disclaimer_label": null,
          "display_format": "dco",
          "dynamic_item_flags": {},
          "dynamic_versions": null,
          "ec_certificates": null,
          "edited_snapshots": [],
          "effective_authorization_category": "NONE",
          "event": [],
          "extra_images": [],
          "extra_links": [],
          "extra_texts": [],
          "extra_videos": [],
          "images": [],
          "instagram_actor_name": "ESMT Berlin",
          "instagram_branded_content": null,
          "instagram_handle": "",
          "instagram_profile_pic_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474390359_1337464690604725_1468380414456205982_n.jpg?_nc_cat=103&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=B2TUufgu0jwQ7kNvgH3jdbB&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBX18vvRmnD-Rn-PuO1s-4ledXhq48bzaDhNi5MBcH2uw&oe=6795DDE4",
          "instagram_shopping_products": [],
          "instagram_url": "",
          "is_reshared": false,
          "link_description": null,
          "link_url": "https://landing.esmt.berlin/en-us/mba-bites-january-2025?utm_source=meta&utm_medium=paid-social&utm_campaign=MMG24_FTMBA+Bites+-+January+23+2025&utm_term=Traffic",
          "page_categories": {
            "216161991738736": "Building"
          },
          "page_entity_type": "person_profile",
          "page_id": 98036363958,
          "page_is_deleted": false,
          "page_is_profile_page": false,
          "page_like_count": 18816,
          "page_name": "ESMT Berlin",
          "page_profile_picture_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/473856699_3840086916259755_4898662213450905619_n.jpg?stp=dst-jpg_s60x60_tt6&_nc_cat=100&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=LzCtNDdgOdgQ7kNvgEA9sb2&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBrFl6fmnfb4LDHKbumUEPhxSjYOtmeCLMriffm9WCWQw&oe=6795CB11",
          "page_profile_uri": "https://facebook.com/ESMTBerlin.org",
          "page_welcome_message": null,
          "root_reshared_post": null,
          "title": null,
          "version": 3,
          "videos": []
        },
        "spend": null,
        "startDate": 1737360000,
        "stateMediaRunLabel": null,
        "targetedOrReachedCountries": [],
        "totalActiveTime": null
      }
    ],
    [
      {
        "adArchiveID": "424985347361573",
        "adid": "0",
        "archiveTypes": [],
        "categories": [
          0
        ],
        "collationCount": null,
        "collationID": null,
        "containsDigitallyCreatedMedia": false,
        "containsSensitiveContent": false,
        "currency": "",
        "endDate": 1737446400,
        "entityType": "person_profile",
        "fevInfo": null,
        "finServAdData": {
          "is_deemed_finserv": false,
          "is_limited_delivery": false
        },
        "gatedType": "eligible",
        "hasUserReported": false,
        "hiddenSafetyData": false,
        "hideDataStatus": "NONE",
        "impressionsWithIndex": {
          "impressionsIndex": -1,
          "impressionsText": null
        },
        "isAAAEligible": false,
        "isActive": true,
        "isAdAccountActioned": false,
        "isProfilePage": false,
        "menuItems": [],
        "pageID": "103183491353355",
        "pageInfo": null,
        "pageIsDeleted": false,
        "pageName": "USA Medicare 101",
        "politicalCountries": [],
        "publisherPlatform": [
          "facebook",
          "instagram"
        ],
        "reachEstimate": null,
        "regionalRegulationData": {
          "finserv": {
            "is_deemed_finserv": false,
            "is_limited_delivery": false
          },
          "tw_anti_scam": {
            "is_limited_delivery": false
          }
        },
        "reportCount": null,
        "snapshot": {
          "ad_creative_id": "120215906709520700",
          "additional_info": null,
          "body": {
            "callerHash": "1b73237f3c35d1c21cc1454501372314",
            "context": {},
            "markup": {
              "__html": "&#123;&#123;product.brand&#125;&#125;"
            }
          },
          "body_translations": {},
          "branded_content": null,
          "brazil_tax_id": null,
          "byline": null,
          "caption": "usamedi.care",
          "cards": [
            {
              "body": "Turning 65 soon and feeling a bit lost?🔎\nMedicare can be confusing, but don't worry! We have all the answers you need!\n  \nOur comprehensive FREE online workshop will make sure you understand your Medicare options and are prepared for retirement.👨‍🏫️\n  \nTap SIGN UP to get started today!👇👇👇",
              "caption": "usamedi.care",
              "cta_text": "Sign Up",
              "cta_type": "SIGN_UP",
              "image_crops": null,
              "link_description": "",
              "link_url": "https://usamedi.care/seminar/usa-ali/",
              "original_image_url": null,
              "resized_image_url": null,
              "title": "Medicare 101 Webinar: Everything You Need To Know",
              "video_hd_url": "https://video-ord5-1.xx.fbcdn.net/v/t42.1790-2/471838473_424985374028237_7440937946798934840_n.?_nc_cat=108&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=hM6Zuz8viYUQ7kNvgFxf_iN&_nc_zt=28&_nc_ht=video-ord5-1.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCZ_EN4mtz__dxf3CWUY5YBx81ULcyTLhErJt-vEY121Q&oe=6795E45C",
              "video_preview_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/472759391_1373688753617849_7178283025078618795_n.jpg?_nc_cat=102&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=AULJ-qxN3xAQ7kNvgHNyo2i&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCqu98J0z8n4iPVPbtxp3FlGv3KjieLADzGKLLTFjUNOg&oe=6795F896",
              "video_sd_url": "https://video-ord5-3.xx.fbcdn.net/v/t42.1790-2/279601121_410420627588436_3193332883860661008_n.mp4?_nc_cat=107&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=hV6vsK-zTuAQ7kNvgGrn9Wd&_nc_zt=28&_nc_ht=video-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCLOtiT-peUrL0JqG22aQJXrFXVS7qmNUArRvcyq80Y4g&oe=6795D37B",
              "watermarked_resized_image_url": null,
              "watermarked_video_hd_url": "",
              "watermarked_video_sd_url": ""
            },
            {
              "body": "⏰Time is running out! If you want the inside scoop on Medicare and how it can work for you, join our FREE online workshop.\n  \nWe will teach you everything you need to know plus tips & tricks to get the most out of your plan.🤓\n  \nTap SIGN UP to get started today!👇👇👇",
              "caption": "usamedi.care",
              "cta_text": "Sign Up",
              "cta_type": "SIGN_UP",
              "image_crops": null,
              "link_description": "",
              "link_url": "https://usamedi.care/seminar/usa-ali/",
              "original_image_url": null,
              "resized_image_url": null,
              "title": "Medicare made simple! Join our free online workshop today!",
              "video_hd_url": "https://video-ord5-1.xx.fbcdn.net/v/t42.1790-2/471838473_424985374028237_7440937946798934840_n.?_nc_cat=108&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=hM6Zuz8viYUQ7kNvgFxf_iN&_nc_zt=28&_nc_ht=video-ord5-1.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCZ_EN4mtz__dxf3CWUY5YBx81ULcyTLhErJt-vEY121Q&oe=6795E45C",
              "video_preview_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/472759391_1373688753617849_7178283025078618795_n.jpg?_nc_cat=102&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=AULJ-qxN3xAQ7kNvgHNyo2i&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCqu98J0z8n4iPVPbtxp3FlGv3KjieLADzGKLLTFjUNOg&oe=6795F896",
              "video_sd_url": "https://video-ord5-3.xx.fbcdn.net/v/t42.1790-2/279601121_410420627588436_3193332883860661008_n.mp4?_nc_cat=107&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=hV6vsK-zTuAQ7kNvgGrn9Wd&_nc_zt=28&_nc_ht=video-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCLOtiT-peUrL0JqG22aQJXrFXVS7qmNUArRvcyq80Y4g&oe=6795D37B",
              "watermarked_resized_image_url": null,
              "watermarked_video_hd_url": "",
              "watermarked_video_sd_url": ""
            },
            {
              "body": "🎉Congratulations if you're turning 65!🎊\nNow that it's time to enroll in Medicare, you need to find the right plan for you. We know it can be confusing, which is why we want to help make the process as easy as possible. \n  \nThat's why we're offering a FREE online workshop where you can learn everything you need to know about Medicare!\n  \nTap SIGN UP to get started today!👇👇👇",
              "caption": "usamedi.care",
              "cta_text": "Sign Up",
              "cta_type": "SIGN_UP",
              "image_crops": null,
              "link_description": "",
              "link_url": "https://usamedi.care/seminar/usa-ali/",
              "original_image_url": null,
              "resized_image_url": null,
              "title": "Medicare is confusing. Are you ready? Join the FREE WEBINAR!",
              "video_hd_url": "https://video-ord5-1.xx.fbcdn.net/v/t42.1790-2/471838473_424985374028237_7440937946798934840_n.?_nc_cat=108&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=hM6Zuz8viYUQ7kNvgFxf_iN&_nc_zt=28&_nc_ht=video-ord5-1.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCZ_EN4mtz__dxf3CWUY5YBx81ULcyTLhErJt-vEY121Q&oe=6795E45C",
              "video_preview_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/472759391_1373688753617849_7178283025078618795_n.jpg?_nc_cat=102&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=AULJ-qxN3xAQ7kNvgHNyo2i&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCqu98J0z8n4iPVPbtxp3FlGv3KjieLADzGKLLTFjUNOg&oe=6795F896",
              "video_sd_url": "https://video-ord5-3.xx.fbcdn.net/v/t42.1790-2/279601121_410420627588436_3193332883860661008_n.mp4?_nc_cat=107&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=hV6vsK-zTuAQ7kNvgGrn9Wd&_nc_zt=28&_nc_ht=video-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCLOtiT-peUrL0JqG22aQJXrFXVS7qmNUArRvcyq80Y4g&oe=6795D37B",
              "watermarked_resized_image_url": null,
              "watermarked_video_hd_url": "",
              "watermarked_video_sd_url": ""
            },
            {
              "body": "🚩 Attention USA Residents: You Are Invited To Attend A Special Webinar Exclusively on Medicare 🚩\n \nYou are cordially invited to join us for a special webinar as we discuss important topics for those who are approaching age 65. Medicare 101 is a complimentary 45-minute online, informational workshop for the community brought to you by USA Medicare 101. You won't want to miss this event!\n \n➡️ 45-minute online, informational webinar.\n➡️ Virtual seats are limited.\n➡️ Reserve your spot today!",
              "caption": "usamedi.care",
              "cta_text": "Sign Up",
              "cta_type": "SIGN_UP",
              "image_crops": null,
              "link_description": "",
              "link_url": "https://usamedi.care/seminar/usa-ali/",
              "original_image_url": null,
              "resized_image_url": null,
              "title": "America's #1 Stay at Home Online Medicare Workshop for 2025!",
              "video_hd_url": "https://video-ord5-1.xx.fbcdn.net/v/t42.1790-2/471838473_424985374028237_7440937946798934840_n.?_nc_cat=108&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=hM6Zuz8viYUQ7kNvgFxf_iN&_nc_zt=28&_nc_ht=video-ord5-1.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCZ_EN4mtz__dxf3CWUY5YBx81ULcyTLhErJt-vEY121Q&oe=6795E45C",
              "video_preview_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/472759391_1373688753617849_7178283025078618795_n.jpg?_nc_cat=102&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=AULJ-qxN3xAQ7kNvgHNyo2i&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCqu98J0z8n4iPVPbtxp3FlGv3KjieLADzGKLLTFjUNOg&oe=6795F896",
              "video_sd_url": "https://video-ord5-3.xx.fbcdn.net/v/t42.1790-2/279601121_410420627588436_3193332883860661008_n.mp4?_nc_cat=107&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=hV6vsK-zTuAQ7kNvgGrn9Wd&_nc_zt=28&_nc_ht=video-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCLOtiT-peUrL0JqG22aQJXrFXVS7qmNUArRvcyq80Y4g&oe=6795D37B",
              "watermarked_resized_image_url": null,
              "watermarked_video_hd_url": "",
              "watermarked_video_sd_url": ""
            },
            {
              "body": "🚩 Attention USA Residents Turning 65 🚩\n \nYou are cordially invited to join us for a special webinar as we discuss important topics for those who are approaching age 65. Medicare 101 is a complimentary 45-minute online, informational workshop for the community brought to you by USA Medicare 101. You won't want to miss this event!\n \n➡️ 45-minute online, informational webinar.\n➡️ Virtual seats are limited.\n➡️ Reserve your spot today!",
              "caption": "usamedi.care",
              "cta_text": "Sign Up",
              "cta_type": "SIGN_UP",
              "image_crops": null,
              "link_description": "",
              "link_url": "https://usamedi.care/seminar/usa-ali/",
              "original_image_url": null,
              "resized_image_url": null,
              "title": "2025 FREE MEDICARE WEBINAR: Maximize your Medicare Today!",
              "video_hd_url": "https://video-ord5-1.xx.fbcdn.net/v/t42.1790-2/471838473_424985374028237_7440937946798934840_n.?_nc_cat=108&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=hM6Zuz8viYUQ7kNvgFxf_iN&_nc_zt=28&_nc_ht=video-ord5-1.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCZ_EN4mtz__dxf3CWUY5YBx81ULcyTLhErJt-vEY121Q&oe=6795E45C",
              "video_preview_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/472759391_1373688753617849_7178283025078618795_n.jpg?_nc_cat=102&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=AULJ-qxN3xAQ7kNvgHNyo2i&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCqu98J0z8n4iPVPbtxp3FlGv3KjieLADzGKLLTFjUNOg&oe=6795F896",
              "video_sd_url": "https://video-ord5-3.xx.fbcdn.net/v/t42.1790-2/279601121_410420627588436_3193332883860661008_n.mp4?_nc_cat=107&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=hV6vsK-zTuAQ7kNvgGrn9Wd&_nc_zt=28&_nc_ht=video-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCLOtiT-peUrL0JqG22aQJXrFXVS7qmNUArRvcyq80Y4g&oe=6795D37B",
              "watermarked_resized_image_url": null,
              "watermarked_video_hd_url": "",
              "watermarked_video_sd_url": ""
            }
          ],
          "country_iso_code": null,
          "creation_time": 1736289957,
          "cta_text": "Sign up",
          "cta_type": "SIGN_UP",
          "current_page_name": "USA Medicare 101",
          "disclaimer_label": null,
          "display_format": "dco",
          "dynamic_item_flags": {},
          "dynamic_versions": null,
          "ec_certificates": null,
          "edited_snapshots": [],
          "effective_authorization_category": "NONE",
          "event": [],
          "extra_images": [],
          "extra_links": [],
          "extra_texts": [],
          "extra_videos": [],
          "images": [],
          "instagram_actor_name": "USA Medicare 101",
          "instagram_branded_content": null,
          "instagram_handle": "",
          "instagram_profile_pic_url": "https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/472788321_2021726791645639_2094197751273347251_n.jpg?_nc_cat=108&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=R_G9tYALIsgQ7kNvgFg08iA&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCzX2FqA_ijcHe3NxDvP7tdI0O1gZTxLGRHg8DttSd6Fg&oe=6795D459",
          "instagram_shopping_products": [],
          "instagram_url": "",
          "is_reshared": false,
          "link_description": "{{product.description}}",
          "link_url": "https://usamedi.care/seminar/usa-ali/",
          "page_categories": {
            "2250": "Education"
          },
          "page_entity_type": "person_profile",
          "page_id": 103183491353355,
          "page_is_deleted": false,
          "page_is_profile_page": false,
          "page_like_count": 532,
          "page_name": "USA Medicare 101",
          "page_profile_picture_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/471986172_599773789315556_6515908435271072739_n.jpg?stp=dst-jpg_s60x60_tt6&_nc_cat=109&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=qfvw87SFyNUQ7kNvgF76OwO&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCZAdMwEf9VUOY3xddKdopbd8YCFHg3tn7Oic0vm-i50A&oe=6795E6E5",
          "page_profile_uri": "https://facebook.com/USAMedicare101",
          "page_welcome_message": null,
          "root_reshared_post": null,
          "title": "{{product.name}}",
          "version": 3,
          "videos": []
        },
        "spend": null,
        "startDate": 1736496000,
        "stateMediaRunLabel": null,
        "targetedOrReachedCountries": [],
        "totalActiveTime": null
      }
    ],
    [
      {
        "adArchiveID": "447194735132348",
        "adid": "0",
        "archiveTypes": [],
        "categories": [
          0
        ],
        "collationCount": null,
        "collationID": null,
        "containsDigitallyCreatedMedia": false,
        "containsSensitiveContent": false,
        "currency": "",
        "endDate": 1737360000,
        "entityType": "person_profile",
        "fevInfo": null,
        "finServAdData": {
          "is_deemed_finserv": false,
          "is_limited_delivery": false
        },
        "gatedType": "eligible",
        "hasUserReported": false,
        "hiddenSafetyData": false,
        "hideDataStatus": "NONE",
        "impressionsWithIndex": {
          "impressionsIndex": -1,
          "impressionsText": null
        },
        "isAAAEligible": false,
        "isActive": true,
        "isAdAccountActioned": false,
        "isProfilePage": false,
        "menuItems": [],
        "pageID": "103183491353355",
        "pageInfo": null,
        "pageIsDeleted": false,
        "pageName": "USA Medicare 101",
        "politicalCountries": [],
        "publisherPlatform": [
          "facebook",
          "instagram"
        ],
        "reachEstimate": null,
        "regionalRegulationData": {
          "finserv": {
            "is_deemed_finserv": false,
            "is_limited_delivery": false
          },
          "tw_anti_scam": {
            "is_limited_delivery": false
          }
        },
        "reportCount": null,
        "snapshot": {
          "ad_creative_id": "120215906710490700",
          "additional_info": null,
          "body": {
            "callerHash": "1b73237f3c35d1c21cc1454501372314",
            "context": {},
            "markup": {
              "__html": "&#123;&#123;product.brand&#125;&#125;"
            }
          },
          "body_translations": {},
          "branded_content": null,
          "brazil_tax_id": null,
          "byline": null,
          "caption": "usamedi.care",
          "cards": [
            {
              "body": "Turning 65 soon and feeling a bit lost?🔎\nMedicare can be confusing, but don't worry! We have all the answers you need!\n  \nOur comprehensive FREE online workshop will make sure you understand your Medicare options and are prepared for retirement.👨‍🏫️\n  \nTap SIGN UP to get started today!👇👇👇",
              "caption": "usamedi.care",
              "cta_text": "Sign Up",
              "cta_type": "SIGN_UP",
              "image_crops": null,
              "link_description": "",
              "link_url": "https://usamedi.care/seminar/usa-ali/",
              "original_image_url": null,
              "resized_image_url": null,
              "title": "Medicare 101 Webinar: Everything You Need To Know",
              "video_hd_url": "https://video-ord5-2.xx.fbcdn.net/v/t42.1790-2/471980368_447194761799012_5505952186006962108_n.?_nc_cat=102&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=FkOX6tqff6oQ7kNvgHaKgVN&_nc_zt=28&_nc_ht=video-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBWpA8e9lqFe4Oxu_FC54WWPLSP_p1DFEzBy-ps7_10IQ&oe=6795E7B9",
              "video_preview_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/472708352_560600686794695_6692272659265968009_n.jpg?_nc_cat=106&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=LuRt8LYAaCYQ7kNvgHJu9mP&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCcvFP5JS-9jbe02SnjwR9dooTzXBTEk8oLV5EVC255dg&oe=6795E18B",
              "video_sd_url": "https://video-ord5-3.xx.fbcdn.net/v/t42.1790-2/290212123_163601226205892_1935475227003654686_n.mp4?_nc_cat=106&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=I6VerhX2b3oQ7kNvgFsKuLD&_nc_zt=28&_nc_ht=video-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBXuLLNH-tCZ49mlnDZqgaDGJnnOPbllPA5UfG3TyG_Rw&oe=6795F1C2",
              "watermarked_resized_image_url": null,
              "watermarked_video_hd_url": "",
              "watermarked_video_sd_url": ""
            },
            {
              "body": "⏰Time is running out! If you want the inside scoop on Medicare and how it can work for you, join our FREE online workshop.\n  \nWe will teach you everything you need to know plus tips & tricks to get the most out of your plan.🤓\n  \nTap SIGN UP to get started today!👇👇👇",
              "caption": "usamedi.care",
              "cta_text": "Sign Up",
              "cta_type": "SIGN_UP",
              "image_crops": null,
              "link_description": "",
              "link_url": "https://usamedi.care/seminar/usa-ali/",
              "original_image_url": null,
              "resized_image_url": null,
              "title": "Medicare made simple! Join our free online workshop today!",
              "video_hd_url": "https://video-ord5-2.xx.fbcdn.net/v/t42.1790-2/471980368_447194761799012_5505952186006962108_n.?_nc_cat=102&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=FkOX6tqff6oQ7kNvgHaKgVN&_nc_zt=28&_nc_ht=video-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBWpA8e9lqFe4Oxu_FC54WWPLSP_p1DFEzBy-ps7_10IQ&oe=6795E7B9",
              "video_preview_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/472708352_560600686794695_6692272659265968009_n.jpg?_nc_cat=106&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=LuRt8LYAaCYQ7kNvgHJu9mP&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCcvFP5JS-9jbe02SnjwR9dooTzXBTEk8oLV5EVC255dg&oe=6795E18B",
              "video_sd_url": "https://video-ord5-3.xx.fbcdn.net/v/t42.1790-2/290212123_163601226205892_1935475227003654686_n.mp4?_nc_cat=106&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=I6VerhX2b3oQ7kNvgFsKuLD&_nc_zt=28&_nc_ht=video-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBXuLLNH-tCZ49mlnDZqgaDGJnnOPbllPA5UfG3TyG_Rw&oe=6795F1C2",
              "watermarked_resized_image_url": null,
              "watermarked_video_hd_url": "",
              "watermarked_video_sd_url": ""
            },
            {
              "body": "🎉Congratulations if you're turning 65!🎊\nNow that it's time to enroll in Medicare, you need to find the right plan for you. We know it can be confusing, which is why we want to help make the process as easy as possible. \n  \nThat's why we're offering a FREE online workshop where you can learn everything you need to know about Medicare!\n  \nTap SIGN UP to get started today!👇👇👇",
              "caption": "usamedi.care",
              "cta_text": "Sign Up",
              "cta_type": "SIGN_UP",
              "image_crops": null,
              "link_description": "",
              "link_url": "https://usamedi.care/seminar/usa-ali/",
              "original_image_url": null,
              "resized_image_url": null,
              "title": "Medicare is confusing. Are you ready? Join the FREE WEBINAR!",
              "video_hd_url": "https://video-ord5-2.xx.fbcdn.net/v/t42.1790-2/471980368_447194761799012_5505952186006962108_n.?_nc_cat=102&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=FkOX6tqff6oQ7kNvgHaKgVN&_nc_zt=28&_nc_ht=video-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBWpA8e9lqFe4Oxu_FC54WWPLSP_p1DFEzBy-ps7_10IQ&oe=6795E7B9",
              "video_preview_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/472708352_560600686794695_6692272659265968009_n.jpg?_nc_cat=106&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=LuRt8LYAaCYQ7kNvgHJu9mP&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCcvFP5JS-9jbe02SnjwR9dooTzXBTEk8oLV5EVC255dg&oe=6795E18B",
              "video_sd_url": "https://video-ord5-3.xx.fbcdn.net/v/t42.1790-2/290212123_163601226205892_1935475227003654686_n.mp4?_nc_cat=106&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=I6VerhX2b3oQ7kNvgFsKuLD&_nc_zt=28&_nc_ht=video-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBXuLLNH-tCZ49mlnDZqgaDGJnnOPbllPA5UfG3TyG_Rw&oe=6795F1C2",
              "watermarked_resized_image_url": null,
              "watermarked_video_hd_url": "",
              "watermarked_video_sd_url": ""
            },
            {
              "body": "🚩 Attention USA Residents: You Are Invited To Attend A Special Webinar Exclusively on Medicare 🚩\n \nYou are cordially invited to join us for a special webinar as we discuss important topics for those who are approaching age 65. Medicare 101 is a complimentary 45-minute online, informational workshop for the community brought to you by USA Medicare 101. You won't want to miss this event!\n \n➡️ 45-minute online, informational webinar.\n➡️ Virtual seats are limited.\n➡️ Reserve your spot today!",
              "caption": "usamedi.care",
              "cta_text": "Sign Up",
              "cta_type": "SIGN_UP",
              "image_crops": null,
              "link_description": "",
              "link_url": "https://usamedi.care/seminar/usa-ali/",
              "original_image_url": null,
              "resized_image_url": null,
              "title": "America's #1 Stay at Home Online Medicare Workshop for 2025!",
              "video_hd_url": "https://video-ord5-2.xx.fbcdn.net/v/t42.1790-2/471980368_447194761799012_5505952186006962108_n.?_nc_cat=102&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=FkOX6tqff6oQ7kNvgHaKgVN&_nc_zt=28&_nc_ht=video-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBWpA8e9lqFe4Oxu_FC54WWPLSP_p1DFEzBy-ps7_10IQ&oe=6795E7B9",
              "video_preview_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/472708352_560600686794695_6692272659265968009_n.jpg?_nc_cat=106&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=LuRt8LYAaCYQ7kNvgHJu9mP&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCcvFP5JS-9jbe02SnjwR9dooTzXBTEk8oLV5EVC255dg&oe=6795E18B",
              "video_sd_url": "https://video-ord5-3.xx.fbcdn.net/v/t42.1790-2/290212123_163601226205892_1935475227003654686_n.mp4?_nc_cat=106&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=I6VerhX2b3oQ7kNvgFsKuLD&_nc_zt=28&_nc_ht=video-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBXuLLNH-tCZ49mlnDZqgaDGJnnOPbllPA5UfG3TyG_Rw&oe=6795F1C2",
              "watermarked_resized_image_url": null,
              "watermarked_video_hd_url": "",
              "watermarked_video_sd_url": ""
            },
            {
              "body": "🚩 Attention USA Residents Turning 65 🚩\n \nYou are cordially invited to join us for a special webinar as we discuss important topics for those who are approaching age 65. Medicare 101 is a complimentary 45-minute online, informational workshop for the community brought to you by USA Medicare 101. You won't want to miss this event!\n \n➡️ 45-minute online, informational webinar.\n➡️ Virtual seats are limited.\n➡️ Reserve your spot today!",
              "caption": "usamedi.care",
              "cta_text": "Sign Up",
              "cta_type": "SIGN_UP",
              "image_crops": null,
              "link_description": "",
              "link_url": "https://usamedi.care/seminar/usa-ali/",
              "original_image_url": null,
              "resized_image_url": null,
              "title": "2025 FREE MEDICARE WEBINAR: Maximize your Medicare Today!",
              "video_hd_url": "https://video-ord5-2.xx.fbcdn.net/v/t42.1790-2/471980368_447194761799012_5505952186006962108_n.?_nc_cat=102&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=FkOX6tqff6oQ7kNvgHaKgVN&_nc_zt=28&_nc_ht=video-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBWpA8e9lqFe4Oxu_FC54WWPLSP_p1DFEzBy-ps7_10IQ&oe=6795E7B9",
              "video_preview_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/472708352_560600686794695_6692272659265968009_n.jpg?_nc_cat=106&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=LuRt8LYAaCYQ7kNvgHJu9mP&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCcvFP5JS-9jbe02SnjwR9dooTzXBTEk8oLV5EVC255dg&oe=6795E18B",
              "video_sd_url": "https://video-ord5-3.xx.fbcdn.net/v/t42.1790-2/290212123_163601226205892_1935475227003654686_n.mp4?_nc_cat=106&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=I6VerhX2b3oQ7kNvgFsKuLD&_nc_zt=28&_nc_ht=video-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBXuLLNH-tCZ49mlnDZqgaDGJnnOPbllPA5UfG3TyG_Rw&oe=6795F1C2",
              "watermarked_resized_image_url": null,
              "watermarked_video_hd_url": "",
              "watermarked_video_sd_url": ""
            }
          ],
          "country_iso_code": null,
          "creation_time": 1736289881,
          "cta_text": "Sign up",
          "cta_type": "SIGN_UP",
          "current_page_name": "USA Medicare 101",
          "disclaimer_label": null,
          "display_format": "dco",
          "dynamic_item_flags": {},
          "dynamic_versions": null,
          "ec_certificates": null,
          "edited_snapshots": [],
          "effective_authorization_category": "NONE",
          "event": [],
          "extra_images": [],
          "extra_links": [],
          "extra_texts": [],
          "extra_videos": [],
          "images": [],
          "instagram_actor_name": "USA Medicare 101",
          "instagram_branded_content": null,
          "instagram_handle": "",
          "instagram_profile_pic_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/473041671_952008243131906_9106134268520291577_n.jpg?_nc_cat=106&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=9mHox7iM0wEQ7kNvgFlnlsx&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYAHL5q6XQcwhtSLE48VkWh3VGgYVcRwroNx7YXb1FlESg&oe=6795F7CD",
          "instagram_shopping_products": [],
          "instagram_url": "",
          "is_reshared": false,
          "link_description": "{{product.description}}",
          "link_url": "https://usamedi.care/seminar/usa-ali/",
          "page_categories": {
            "2250": "Education"
          },
          "page_entity_type": "person_profile",
          "page_id": 103183491353355,
          "page_is_deleted": false,
          "page_is_profile_page": false,
          "page_like_count": 532,
          "page_name": "USA Medicare 101",
          "page_profile_picture_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/472912892_1670406753547996_86505205680400731_n.jpg?stp=dst-jpg_s60x60_tt6&_nc_cat=110&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=rEiynVphfn4Q7kNvgFKRxv7&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYDYsprk0kxIbEDkfC-jUQReTyi71WNyBJURosJZ7lysfQ&oe=6795F57A",
          "page_profile_uri": "https://facebook.com/USAMedicare101",
          "page_welcome_message": null,
          "root_reshared_post": null,
          "title": "{{product.name}}",
          "version": 3,
          "videos": []
        },
        "spend": null,
        "startDate": 1736409600,
        "stateMediaRunLabel": null,
        "targetedOrReachedCountries": [],
        "totalActiveTime": null
      }
    ],
    [
      {
        "adArchiveID": "1151859189847584",
        "adid": "0",
        "archiveTypes": [],
        "categories": [
          0
        ],
        "collationCount": null,
        "collationID": null,
        "containsDigitallyCreatedMedia": false,
        "containsSensitiveContent": false,
        "currency": "",
        "endDate": 1737360000,
        "entityType": "person_profile",
        "fevInfo": null,
        "finServAdData": {
          "is_deemed_finserv": false,
          "is_limited_delivery": false
        },
        "gatedType": "eligible",
        "hasUserReported": false,
        "hiddenSafetyData": false,
        "hideDataStatus": "NONE",
        "impressionsWithIndex": {
          "impressionsIndex": -1,
          "impressionsText": null
        },
        "isAAAEligible": false,
        "isActive": true,
        "isAdAccountActioned": false,
        "isProfilePage": false,
        "menuItems": [],
        "pageID": "103183491353355",
        "pageInfo": null,
        "pageIsDeleted": false,
        "pageName": "USA Medicare 101",
        "politicalCountries": [],
        "publisherPlatform": [
          "facebook",
          "instagram"
        ],
        "reachEstimate": null,
        "regionalRegulationData": {
          "finserv": {
            "is_deemed_finserv": false,
            "is_limited_delivery": false
          },
          "tw_anti_scam": {
            "is_limited_delivery": false
          }
        },
        "reportCount": null,
        "snapshot": {
          "ad_creative_id": "120215906710300700",
          "additional_info": null,
          "body": {
            "callerHash": "1b73237f3c35d1c21cc1454501372314",
            "context": {},
            "markup": {
              "__html": "&#123;&#123;product.brand&#125;&#125;"
            }
          },
          "body_translations": {},
          "branded_content": null,
          "brazil_tax_id": null,
          "byline": null,
          "caption": "usamedi.care",
          "cards": [
            {
              "body": "Turning 65 soon and feeling a bit lost?🔎\nMedicare can be confusing, but don't worry! We have all the answers you need!\n  \nOur comprehensive FREE online workshop will make sure you understand your Medicare options and are prepared for retirement.👨‍🏫️\n  \nTap SIGN UP to get started today!👇👇👇",
              "caption": "usamedi.care",
              "cta_text": "Sign Up",
              "cta_type": "SIGN_UP",
              "image_crops": null,
              "link_description": "",
              "link_url": "https://usamedi.care/seminar/usa-ali/",
              "original_image_url": null,
              "resized_image_url": null,
              "title": "Medicare 101 Webinar: Everything You Need To Know",
              "video_hd_url": "https://video-ord5-2.xx.fbcdn.net/v/t42.1790-2/471833139_1151859213180915_2156587410107659299_n.?_nc_cat=105&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=b_36kfzbI3MQ7kNvgF2-3Iu&_nc_zt=28&_nc_ht=video-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBgPd8bmsYNAA6cg0iuCtvE2FbewWozxK1c0bjWc0DTug&oe=6795F24E",
              "video_preview_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/472669253_1325030808671833_2194448143190907078_n.jpg?_nc_cat=102&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=bHAx4fzW0LsQ7kNvgHd7KNp&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCXyNHuHi55doDZX_sfK97daz9dQj4lQ30P6qoQmQ79Rw&oe=6795D9C7",
              "video_sd_url": "https://video-ord5-3.xx.fbcdn.net/v/t42.1790-2/290774313_551312443333621_3971667185481222227_n.mp4?_nc_cat=106&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=Ed2KEPi3dzQQ7kNvgG10CUk&_nc_zt=28&_nc_ht=video-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYAmGqwKkBuauIDqsHqitcSyvVEO04yBLET8R0NrWXADRw&oe=6795F7DE",
              "watermarked_resized_image_url": null,
              "watermarked_video_hd_url": "",
              "watermarked_video_sd_url": ""
            },
            {
              "body": "⏰Time is running out! If you want the inside scoop on Medicare and how it can work for you, join our FREE online workshop.\n  \nWe will teach you everything you need to know plus tips & tricks to get the most out of your plan.🤓\n  \nTap SIGN UP to get started today!👇👇👇",
              "caption": "usamedi.care",
              "cta_text": "Sign Up",
              "cta_type": "SIGN_UP",
              "image_crops": null,
              "link_description": "",
              "link_url": "https://usamedi.care/seminar/usa-ali/",
              "original_image_url": null,
              "resized_image_url": null,
              "title": "Medicare made simple! Join our free online workshop today!",
              "video_hd_url": "https://video-ord5-2.xx.fbcdn.net/v/t42.1790-2/471833139_1151859213180915_2156587410107659299_n.?_nc_cat=105&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=b_36kfzbI3MQ7kNvgF2-3Iu&_nc_zt=28&_nc_ht=video-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBgPd8bmsYNAA6cg0iuCtvE2FbewWozxK1c0bjWc0DTug&oe=6795F24E",
              "video_preview_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/472669253_1325030808671833_2194448143190907078_n.jpg?_nc_cat=102&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=bHAx4fzW0LsQ7kNvgHd7KNp&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCXyNHuHi55doDZX_sfK97daz9dQj4lQ30P6qoQmQ79Rw&oe=6795D9C7",
              "video_sd_url": "https://video-ord5-3.xx.fbcdn.net/v/t42.1790-2/290774313_551312443333621_3971667185481222227_n.mp4?_nc_cat=106&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=Ed2KEPi3dzQQ7kNvgG10CUk&_nc_zt=28&_nc_ht=video-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYAmGqwKkBuauIDqsHqitcSyvVEO04yBLET8R0NrWXADRw&oe=6795F7DE",
              "watermarked_resized_image_url": null,
              "watermarked_video_hd_url": "",
              "watermarked_video_sd_url": ""
            },
            {
              "body": "🎉Congratulations if you're turning 65!🎊\nNow that it's time to enroll in Medicare, you need to find the right plan for you. We know it can be confusing, which is why we want to help make the process as easy as possible. \n  \nThat's why we're offering a FREE online workshop where you can learn everything you need to know about Medicare!\n  \nTap SIGN UP to get started today!👇👇👇",
              "caption": "usamedi.care",
              "cta_text": "Sign Up",
              "cta_type": "SIGN_UP",
              "image_crops": null,
              "link_description": "",
              "link_url": "https://usamedi.care/seminar/usa-ali/",
              "original_image_url": null,
              "resized_image_url": null,
              "title": "Medicare is confusing. Are you ready? Join the FREE WEBINAR!",
              "video_hd_url": "https://video-ord5-2.xx.fbcdn.net/v/t42.1790-2/471833139_1151859213180915_2156587410107659299_n.?_nc_cat=105&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=b_36kfzbI3MQ7kNvgF2-3Iu&_nc_zt=28&_nc_ht=video-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBgPd8bmsYNAA6cg0iuCtvE2FbewWozxK1c0bjWc0DTug&oe=6795F24E",
              "video_preview_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/472669253_1325030808671833_2194448143190907078_n.jpg?_nc_cat=102&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=bHAx4fzW0LsQ7kNvgHd7KNp&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCXyNHuHi55doDZX_sfK97daz9dQj4lQ30P6qoQmQ79Rw&oe=6795D9C7",
              "video_sd_url": "https://video-ord5-3.xx.fbcdn.net/v/t42.1790-2/290774313_551312443333621_3971667185481222227_n.mp4?_nc_cat=106&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=Ed2KEPi3dzQQ7kNvgG10CUk&_nc_zt=28&_nc_ht=video-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYAmGqwKkBuauIDqsHqitcSyvVEO04yBLET8R0NrWXADRw&oe=6795F7DE",
              "watermarked_resized_image_url": null,
              "watermarked_video_hd_url": "",
              "watermarked_video_sd_url": ""
            },
            {
              "body": "🚩 Attention USA Residents: You Are Invited To Attend A Special Webinar Exclusively on Medicare 🚩\n \nYou are cordially invited to join us for a special webinar as we discuss important topics for those who are approaching age 65. Medicare 101 is a complimentary 45-minute online, informational workshop for the community brought to you by USA Medicare 101. You won't want to miss this event!\n \n➡️ 45-minute online, informational webinar.\n➡️ Virtual seats are limited.\n➡️ Reserve your spot today!",
              "caption": "usamedi.care",
              "cta_text": "Sign Up",
              "cta_type": "SIGN_UP",
              "image_crops": null,
              "link_description": "",
              "link_url": "https://usamedi.care/seminar/usa-ali/",
              "original_image_url": null,
              "resized_image_url": null,
              "title": "America's #1 Stay at Home Online Medicare Workshop for 2025!",
              "video_hd_url": "https://video-ord5-2.xx.fbcdn.net/v/t42.1790-2/471833139_1151859213180915_2156587410107659299_n.?_nc_cat=105&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=b_36kfzbI3MQ7kNvgF2-3Iu&_nc_zt=28&_nc_ht=video-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBgPd8bmsYNAA6cg0iuCtvE2FbewWozxK1c0bjWc0DTug&oe=6795F24E",
              "video_preview_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/472669253_1325030808671833_2194448143190907078_n.jpg?_nc_cat=102&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=bHAx4fzW0LsQ7kNvgHd7KNp&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCXyNHuHi55doDZX_sfK97daz9dQj4lQ30P6qoQmQ79Rw&oe=6795D9C7",
              "video_sd_url": "https://video-ord5-3.xx.fbcdn.net/v/t42.1790-2/290774313_551312443333621_3971667185481222227_n.mp4?_nc_cat=106&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=Ed2KEPi3dzQQ7kNvgG10CUk&_nc_zt=28&_nc_ht=video-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYAmGqwKkBuauIDqsHqitcSyvVEO04yBLET8R0NrWXADRw&oe=6795F7DE",
              "watermarked_resized_image_url": null,
              "watermarked_video_hd_url": "",
              "watermarked_video_sd_url": ""
            },
            {
              "body": "🚩 Attention USA Residents Turning 65 🚩\n \nYou are cordially invited to join us for a special webinar as we discuss important topics for those who are approaching age 65. Medicare 101 is a complimentary 45-minute online, informational workshop for the community brought to you by USA Medicare 101. You won't want to miss this event!\n \n➡️ 45-minute online, informational webinar.\n➡️ Virtual seats are limited.\n➡️ Reserve your spot today!",
              "caption": "usamedi.care",
              "cta_text": "Sign Up",
              "cta_type": "SIGN_UP",
              "image_crops": null,
              "link_description": "",
              "link_url": "https://usamedi.care/seminar/usa-ali/",
              "original_image_url": null,
              "resized_image_url": null,
              "title": "2025 FREE MEDICARE WEBINAR: Maximize your Medicare Today!",
              "video_hd_url": "https://video-ord5-2.xx.fbcdn.net/v/t42.1790-2/471833139_1151859213180915_2156587410107659299_n.?_nc_cat=105&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=b_36kfzbI3MQ7kNvgF2-3Iu&_nc_zt=28&_nc_ht=video-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBgPd8bmsYNAA6cg0iuCtvE2FbewWozxK1c0bjWc0DTug&oe=6795F24E",
              "video_preview_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/472669253_1325030808671833_2194448143190907078_n.jpg?_nc_cat=102&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=bHAx4fzW0LsQ7kNvgHd7KNp&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCXyNHuHi55doDZX_sfK97daz9dQj4lQ30P6qoQmQ79Rw&oe=6795D9C7",
              "video_sd_url": "https://video-ord5-3.xx.fbcdn.net/v/t42.1790-2/290774313_551312443333621_3971667185481222227_n.mp4?_nc_cat=106&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=Ed2KEPi3dzQQ7kNvgG10CUk&_nc_zt=28&_nc_ht=video-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYAmGqwKkBuauIDqsHqitcSyvVEO04yBLET8R0NrWXADRw&oe=6795F7DE",
              "watermarked_resized_image_url": null,
              "watermarked_video_hd_url": "",
              "watermarked_video_sd_url": ""
            }
          ],
          "country_iso_code": null,
          "creation_time": 1736289907,
          "cta_text": "Sign up",
          "cta_type": "SIGN_UP",
          "current_page_name": "USA Medicare 101",
          "disclaimer_label": null,
          "display_format": "dco",
          "dynamic_item_flags": {},
          "dynamic_versions": null,
          "ec_certificates": null,
          "edited_snapshots": [],
          "effective_authorization_category": "NONE",
          "event": [],
          "extra_images": [],
          "extra_links": [],
          "extra_texts": [],
          "extra_videos": [],
          "images": [],
          "instagram_actor_name": "USA Medicare 101",
          "instagram_branded_content": null,
          "instagram_handle": "",
          "instagram_profile_pic_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/473188149_1806838390067960_3411628866737021448_n.jpg?_nc_cat=100&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=fO6_uHy8RfUQ7kNvgGjaWq9&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCY-RDERuCsxH4yOexcNyWARHa6IbIS49LfNyPT8QMY1g&oe=6795F592",
          "instagram_shopping_products": [],
          "instagram_url": "",
          "is_reshared": false,
          "link_description": "{{product.description}}",
          "link_url": "https://usamedi.care/seminar/usa-ali/",
          "page_categories": {
            "2250": "Education"
          },
          "page_entity_type": "person_profile",
          "page_id": 103183491353355,
          "page_is_deleted": false,
          "page_is_profile_page": false,
          "page_like_count": 532,
          "page_name": "USA Medicare 101",
          "page_profile_picture_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/472767013_585691357682515_1213487332225058613_n.jpg?stp=dst-jpg_s60x60_tt6&_nc_cat=105&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=oiOZsIZw0kcQ7kNvgESM6eF&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBOCGjelKgRV7CikHZotYqc9sdPBzAv51e3YDzzZ1amrQ&oe=6795F781",
          "page_profile_uri": "https://facebook.com/USAMedicare101",
          "page_welcome_message": null,
          "root_reshared_post": null,
          "title": "{{product.name}}",
          "version": 3,
          "videos": []
        },
        "spend": null,
        "startDate": 1736582400,
        "stateMediaRunLabel": null,
        "targetedOrReachedCountries": [],
        "totalActiveTime": null
      }
    ],
    [
      {
        "adArchiveID": "1244625689970630",
        "adid": "0",
        "archiveTypes": [],
        "categories": [
          0
        ],
        "collationCount": 1,
        "collationID": 599180669516979,
        "containsDigitallyCreatedMedia": false,
        "containsSensitiveContent": false,
        "currency": "",
        "endDate": 1737446400,
        "entityType": "person_profile",
        "fevInfo": null,
        "finServAdData": {
          "is_deemed_finserv": false,
          "is_limited_delivery": false
        },
        "gatedType": "eligible",
        "hasUserReported": false,
        "hiddenSafetyData": false,
        "hideDataStatus": "NONE",
        "impressionsWithIndex": {
          "impressionsIndex": -1,
          "impressionsText": null
        },
        "isAAAEligible": false,
        "isActive": true,
        "isAdAccountActioned": false,
        "isProfilePage": false,
        "menuItems": [],
        "pageID": "114590975023625",
        "pageInfo": null,
        "pageIsDeleted": false,
        "pageName": "Kris McCullough",
        "politicalCountries": [],
        "publisherPlatform": [
          "facebook",
          "instagram",
          "audience_network",
          "messenger"
        ],
        "reachEstimate": null,
        "regionalRegulationData": {
          "finserv": {
            "is_deemed_finserv": false,
            "is_limited_delivery": false
          },
          "tw_anti_scam": {
            "is_limited_delivery": false
          }
        },
        "reportCount": null,
        "snapshot": {
          "ad_creative_id": 967371228626227,
          "additional_info": null,
          "body": {
            "callerHash": "1b73237f3c35d1c21cc1454501372314",
            "context": {},
            "markup": {
              "__html": "Are you ready to turn your dream of homeownership into reality?<br /> <br /> 🏡 Join us for an exclusive webinar that will guide you through the entire process of building your dream home—from finding the perfect piece of land to securing financing with a One-Time Close Construction Loan, and working with trusted builders and agents.<br /> <br /> In this webinar, you’ll learn:<br /> ✅ How to finance and plan for your dream home using One-Time Close Construction Loans.<br /> ✅ The differences between manufactured and stick-built homes and how to choose what’s right for you.<br /> ✅ Step-by-step guidance on land selection, budgeting, and construction.<br /> ✅ Insider tips to make the process smooth and stress-free.<br /> ✅ How to connect with expert builders, agents, and resources to bring your vision to life.<br /> <br /> This webinar is perfect for first-time homebuyers, veterans, retirees, and anyone dreaming of creating their own space. Whether you’re just getting started or ready to dive in, this session is packed with valuable insights to help you succeed.<br /> <br /> 🗓 Date: January 30th, 2025<br /> 🕒 Time: 6pm to 730pm<br /> 📍 Location: Online (Zoom Webinar)<br /> <br /> Your dream home isn’t just a possibility—it’s achievable. Let’s make it happen together!<br /> <br /> REGISTER:<br /> <a href=\"https://l.facebook.com/l.php?u=https%3A%2F%2Fbit.ly%2FBuildYourDreamHomeSignUp&amp;h=AT1-N0wVkKRznqfoTDx9wElVs1s3gJzEZht5tshwGw5xf16bYNszbCU9oydxcWHvrozCVi-FTJELSaCGMN3sjzfhwu-256n0RvIxpgvtZFgMaEvbxpGkCqWAl3zGp-p-b7vofHk0syBWabce0CDwLoGUfig\" rel=\"nofollow noreferrer\" target=\"_blank\" data-lynx-mode=\"asynclazy\">https://bit.ly/BuildYourDreamHomeSignUp</a>"
            }
          },
          "body_translations": {},
          "branded_content": null,
          "brazil_tax_id": null,
          "byline": null,
          "caption": "us06web.zoom.us",
          "cards": [],
          "country_iso_code": null,
          "creation_time": 1737485642,
          "cta_text": "Sign up",
          "cta_type": "SIGN_UP",
          "current_page_name": "Kris McCullough",
          "disclaimer_label": null,
          "display_format": "image",
          "dynamic_item_flags": {},
          "dynamic_versions": null,
          "ec_certificates": null,
          "edited_snapshots": [],
          "effective_authorization_category": "NONE",
          "event": [],
          "extra_images": [],
          "extra_links": [],
          "extra_texts": [],
          "extra_videos": [],
          "images": [
            {
              "image_crops": {},
              "original_image_url": "https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/474744362_619453387133384_7519471298943472248_n.jpg?_nc_cat=108&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=AEDf8moDz54Q7kNvgEoFYVb&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYA80gEmPVyIe7QRsh1vAr1uG2_9z-59PeXFsJ0RP60fjQ&oe=6795DAE0",
              "resized_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474606753_1137355040675888_1351085747410696187_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=107&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=cochYSESZpUQ7kNvgFBoleJ&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCBc-wgrHFyRn4rIwmfqVES_DB7WK_hAChu0JhVgHvRxQ&oe=6795DE01",
              "watermarked_resized_image_url": ""
            }
          ],
          "instagram_actor_name": "Kris McCullough",
          "instagram_branded_content": null,
          "instagram_handle": "",
          "instagram_profile_pic_url": "https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/474092275_510353464867746_4010277697218215755_n.jpg?_nc_cat=101&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=CAToUxkbfnEQ7kNvgFl9qH-&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYD4QoXXPytPDJ7p_Uy9Kw3YW0U29u8hk2VTxSy1sM3cbg&oe=6795C88F",
          "instagram_shopping_products": [],
          "instagram_url": "",
          "is_reshared": false,
          "link_description": "Are you ready to turn your dream of homeownership into reality? - Join us for an exclusive webinar that will guide you through the entire process of building your dream home—from finding the perfect piece of land to securing financing with a One-Time Close Construction Loan, and working with trust...",
          "link_url": "https://bit.ly/BuildYourDreamHomeSignUp",
          "page_categories": {
            "1617": "Entrepreneur"
          },
          "page_entity_type": "person_profile",
          "page_id": 114590975023625,
          "page_is_deleted": false,
          "page_is_profile_page": false,
          "page_like_count": 1217,
          "page_name": "Kris McCullough",
          "page_profile_picture_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474442492_1141190377587110_4662768113096619184_n.jpg?stp=dst-jpg_s60x60_tt6&_nc_cat=109&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=LpdpAaNIlKQQ7kNvgHJ7AIc&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBR914VwZdu3zDo0dNwUPn0c4JbDDLBaXH1ZvxFmJb-XQ&oe=6795D278",
          "page_profile_uri": "https://facebook.com/ksakrism",
          "page_welcome_message": null,
          "root_reshared_post": null,
          "title": "Build Your Dream Home",
          "version": 3,
          "videos": []
        },
        "spend": null,
        "startDate": 1737446400,
        "stateMediaRunLabel": null,
        "targetedOrReachedCountries": [],
        "totalActiveTime": 7026
      }
    ],
    [
      {
        "adArchiveID": "1150826379739604",
        "adid": "0",
        "archiveTypes": [],
        "categories": [
          0
        ],
        "collationCount": 1,
        "collationID": 1579727042747817,
        "containsDigitallyCreatedMedia": false,
        "containsSensitiveContent": false,
        "currency": "",
        "endDate": 1737446400,
        "entityType": "person_profile",
        "fevInfo": null,
        "finServAdData": {
          "is_deemed_finserv": false,
          "is_limited_delivery": false
        },
        "gatedType": "eligible",
        "hasUserReported": false,
        "hiddenSafetyData": false,
        "hideDataStatus": "NONE",
        "impressionsWithIndex": {
          "impressionsIndex": -1,
          "impressionsText": null
        },
        "isAAAEligible": false,
        "isActive": true,
        "isAdAccountActioned": false,
        "isProfilePage": false,
        "menuItems": [],
        "pageID": "91581269165",
        "pageInfo": null,
        "pageIsDeleted": false,
        "pageName": "Washington Montessori School",
        "politicalCountries": [],
        "publisherPlatform": [
          "facebook",
          "instagram",
          "audience_network",
          "messenger"
        ],
        "reachEstimate": null,
        "regionalRegulationData": {
          "finserv": {
            "is_deemed_finserv": false,
            "is_limited_delivery": false
          },
          "tw_anti_scam": {
            "is_limited_delivery": false
          }
        },
        "reportCount": null,
        "snapshot": {
          "ad_creative_id": 1159188782436389,
          "additional_info": null,
          "body": {
            "callerHash": "1b73237f3c35d1c21cc1454501372314",
            "context": {},
            "markup": {
              "__html": "WMS graduates have garnered a reputation for being self-motivated, confident, and curious thinkers, well-prepared to take on the challenges of a rapidly changing world. But you don&#039;t have to take our word for it! On January 28th at 7:30 PM, we invite you to attend a virtual webinar to hear about the strengths of a WMS education from a panel of experts — including local educators Peter Becker (Taft School) and Suzanne Day (Frederick Gunn School), and two WMS alumni. <br /> <br /> To attend, register here and you will receive a Zoom link via email ahead of the webinar: <a href=\"https://l.facebook.com/l.php?u=https%3A%2F%2Fdocs.google.com%2Fforms%2Fd%2Fe%2F1FAIpQLScBttW9u-hcMJsy_0qEKBsrtvzNILCw48TIWqRSgNgFyIXu3w%2Fviewform&amp;h=AT1DjkVjc0Axdao_T8xpI_kGPDNqonUOMBrQPp-af5Pr7_10Kz7WQyu5OTuIciBtswm7f_a91UNManSvLltmqaU4zI32M1MBhlm6imtprWVGYK8Et2jfvUXpqMn3h6vMMk5-vaJmTMh0quvnUjGypf_vmxs\" rel=\"nofollow noreferrer\" target=\"_blank\" data-lynx-mode=\"asynclazy\">https://docs.google.com/forms/d/e/1FAIpQLScBttW9u-hcMJsy_0qEKBsrtvzNILCw48TIWqRSgNgFyIXu3w/viewform</a><br /> <br /> If you have questions or topics that you want to make sure our panel covers, please feel free to DM us or send an email to Laura Martin (lmartin&#064;washingtonmontessori.org) by Monday, January 27. We hope to see you there!<br /> <br /> #webinar #montessori #montessorischool #montessorieducation #montessorigraduates #WMSpossibility #thisisWMS"
            }
          },
          "body_translations": {},
          "branded_content": null,
          "brazil_tax_id": null,
          "byline": null,
          "caption": "washingtonmontessori.org",
          "cards": [],
          "country_iso_code": null,
          "creation_time": 1737485089,
          "cta_text": "Learn more",
          "cta_type": "LEARN_MORE",
          "current_page_name": "Washington Montessori School",
          "disclaimer_label": null,
          "display_format": "image",
          "dynamic_item_flags": {},
          "dynamic_versions": null,
          "ec_certificates": null,
          "edited_snapshots": [],
          "effective_authorization_category": "NONE",
          "event": [],
          "extra_images": [],
          "extra_links": [],
          "extra_texts": [],
          "extra_videos": [],
          "images": [
            {
              "original_image_url": "https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/473822716_1673829493562223_4588658583713381437_n.jpg?_nc_cat=108&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=Npdfw-tHk-QQ7kNvgEWTYlo&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYDQELDGolFio9dHTgWLZk3LwG9rGrZf5D9AjMm3VoSa7g&oe=6795D4D4",
              "resized_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474089978_1131950328329765_7122073705136674732_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=111&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=wJFeZfMQ5awQ7kNvgH1HnM3&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYAx0Qvtl1q41kGQSpWDvTJq0r_MhG_bhiaKFwuvukq_rg&oe=6795DBF6",
              "watermarked_resized_image_url": ""
            }
          ],
          "instagram_actor_name": "Washington Montessori School",
          "instagram_branded_content": null,
          "instagram_handle": "",
          "instagram_profile_pic_url": "https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/474210508_1557620644823828_1851529003853622770_n.jpg?_nc_cat=108&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=CZyEXgqooHIQ7kNvgGv75Kz&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBL3Gj_aM34rlV9o0TM8HVlRkAx_y7E-1wyizlLl5Rg8w&oe=6795DF03",
          "instagram_shopping_products": [],
          "instagram_url": "",
          "is_reshared": false,
          "link_description": "Stay updated on important community events at Washington Montessori School.",
          "link_url": "https://washingtonmontessori.org/community/community-events/",
          "page_categories": {
            "2637": "Middle School"
          },
          "page_entity_type": "person_profile",
          "page_id": 91581269165,
          "page_is_deleted": false,
          "page_is_profile_page": false,
          "page_like_count": 1265,
          "page_name": "Washington Montessori School",
          "page_profile_picture_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474210097_2490495514629707_2536027071922024330_n.jpg?stp=dst-jpg_s60x60_tt6&_nc_cat=104&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=N0XbYbGXAooQ7kNvgEsWZrI&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYAvWl2HYRP5SPfmWqUOASzhnN2JiOMdTygFMfrqCVqGiA&oe=6795C8D2",
          "page_profile_uri": "https://facebook.com/WashingtonMontessoriSchool",
          "page_welcome_message": null,
          "root_reshared_post": null,
          "title": "Community Events | Washington Montessori School",
          "version": 3,
          "videos": []
        },
        "spend": null,
        "startDate": 1737446400,
        "stateMediaRunLabel": null,
        "targetedOrReachedCountries": [],
        "totalActiveTime": 7358
      }
    ],
    [
      {
        "adArchiveID": "1618647659047509",
        "adid": "0",
        "archiveTypes": [],
        "categories": [
          0
        ],
        "collationCount": 1,
        "collationID": 1046446357495104,
        "containsDigitallyCreatedMedia": false,
        "containsSensitiveContent": false,
        "currency": "",
        "endDate": 1737446400,
        "entityType": "person_profile",
        "fevInfo": null,
        "finServAdData": {
          "is_deemed_finserv": false,
          "is_limited_delivery": false
        },
        "gatedType": "eligible",
        "hasUserReported": false,
        "hiddenSafetyData": false,
        "hideDataStatus": "NONE",
        "impressionsWithIndex": {
          "impressionsIndex": -1,
          "impressionsText": null
        },
        "isAAAEligible": false,
        "isActive": true,
        "isAdAccountActioned": false,
        "isProfilePage": false,
        "menuItems": [],
        "pageID": "443356352451227",
        "pageInfo": null,
        "pageIsDeleted": false,
        "pageName": "Ob Hospitalist Group",
        "politicalCountries": [],
        "publisherPlatform": [
          "facebook",
          "instagram",
          "audience_network",
          "messenger"
        ],
        "reachEstimate": null,
        "regionalRegulationData": {
          "finserv": {
            "is_deemed_finserv": false,
            "is_limited_delivery": false
          },
          "tw_anti_scam": {
            "is_limited_delivery": false
          }
        },
        "reportCount": null,
        "snapshot": {
          "ad_creative_id": 578012098377869,
          "additional_info": null,
          "body": {
            "callerHash": "1b73237f3c35d1c21cc1454501372314",
            "context": {},
            "markup": {
              "__html": "&#123;&#123;product.brand&#125;&#125;"
            }
          },
          "body_translations": {},
          "branded_content": null,
          "brazil_tax_id": null,
          "byline": null,
          "caption": "ob-hospitalist-group.webinar",
          "cards": [
            {
              "body": "In an exclusive one-hour webinar, Dr. Colton, Dr. Davis, and Dr. Natour will explore the critical role of OB hospitalists in enhancing maternal safety during labor and delivery. Gain insights on how OB hospitalists act as maternal safety champions, improving outcomes for mothers and babies.",
              "caption": "ob-hospitalist-group.webinar",
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": "With Dr. Eric Colton, Dr. Wesley Davis, & Dr. Nahille Natour",
              "link_url": "https://ob-hospitalist-group.webinargeek.com/ob-hospitalists-as-maternal-safety-champions-of-labor-and-delivery-with-dr-colton-dr-davis-and-dr-natour",
              "original_image_url": "https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/474198510_1820327648794568_6580574028488392379_n.jpg?_nc_cat=108&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=-1zbH9BBmtgQ7kNvgHugF-l&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYDMQMhjNeARJ1nPWPZ4tvbv1PMYmdkWNkcxlV5JrwB8bA&oe=6795E635",
              "resized_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474701962_1280470293003224_5338869827336857188_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=109&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=dgnYtfZaZb4Q7kNvgGjUC4Q&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYDqRqBjh4Ajo2BIRAJaFx27llWg8ibkUpsZHMFYXDhUYA&oe=6795DCD3",
              "title": "OB hospitalists as maternal safety champions of labor and delivery",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            },
            {
              "body": "In an exclusive one-hour webinar, Dr. Colton, Dr. Davis, and Dr. Natour will explore the critical role of OB hospitalists in enhancing maternal safety during labor and delivery. Gain insights on how OB hospitalists act as maternal safety champions, improving outcomes for mothers and babies.",
              "caption": "ob-hospitalist-group.webinar",
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": "With Dr. Eric Colton, Dr. Wesley Davis, & Dr. Nahille Natour",
              "link_url": "https://ob-hospitalist-group.webinargeek.com/ob-hospitalists-as-maternal-safety-champions-of-labor-and-delivery-with-dr-colton-dr-davis-and-dr-natour",
              "original_image_url": "https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/474113311_1169654158030674_4406255404307574020_n.jpg?_nc_cat=108&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=FY8FUPa1oycQ7kNvgG2lM8z&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCqWXTQb31NS9Y_4Bt2ZukUvSbrauD6zP9_OKwkywnnag&oe=6795C23F",
              "resized_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474487119_959088689525632_8633391054680946970_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=104&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=ltPzsLNd_gwQ7kNvgERZzh4&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYAzwkuL7AdAbcH9Qr4bLMMxdr7DIiynNfdcPAfaI24-Sg&oe=6795F445",
              "title": "OB hospitalists as maternal safety champions of labor and delivery",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            },
            {
              "body": "In an exclusive one-hour webinar, Dr. Colton, Dr. Davis, and Dr. Natour will explore the critical role of OB hospitalists in enhancing maternal safety during labor and delivery. Gain insights on how OB hospitalists act as maternal safety champions, improving outcomes for mothers and babies.",
              "caption": "ob-hospitalist-group.webinar",
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": "With Dr. Eric Colton, Dr. Wesley Davis, & Dr. Nahille Natour",
              "link_url": "https://ob-hospitalist-group.webinargeek.com/ob-hospitalists-as-maternal-safety-champions-of-labor-and-delivery-with-dr-colton-dr-davis-and-dr-natour",
              "original_image_url": "https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/474198510_1820327648794568_6580574028488392379_n.jpg?_nc_cat=108&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=-1zbH9BBmtgQ7kNvgHugF-l&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYDMQMhjNeARJ1nPWPZ4tvbv1PMYmdkWNkcxlV5JrwB8bA&oe=6795E635",
              "resized_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474701962_1280470293003224_5338869827336857188_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=109&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=dgnYtfZaZb4Q7kNvgGjUC4Q&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYDqRqBjh4Ajo2BIRAJaFx27llWg8ibkUpsZHMFYXDhUYA&oe=6795DCD3",
              "title": "OB hospitalists as maternal safety champions of labor and delivery",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            }
          ],
          "country_iso_code": null,
          "creation_time": 1737471842,
          "cta_text": "Learn more",
          "cta_type": "LEARN_MORE",
          "current_page_name": "Ob Hospitalist Group",
          "disclaimer_label": null,
          "display_format": "dco",
          "dynamic_item_flags": {},
          "dynamic_versions": null,
          "ec_certificates": null,
          "edited_snapshots": [],
          "effective_authorization_category": "NONE",
          "event": [],
          "extra_images": [],
          "extra_links": [],
          "extra_texts": [],
          "extra_videos": [],
          "images": [],
          "instagram_actor_name": "Ob Hospitalist Group",
          "instagram_branded_content": null,
          "instagram_handle": "",
          "instagram_profile_pic_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474563092_533224056434278_4691705776691445652_n.jpg?_nc_cat=100&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=UD4SZAS6mGkQ7kNvgGUMfYt&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYC4okRGoLY7_DI6o61I-F0U7AIDhs-Dy8IqyX-Il64iwQ&oe=6795C753",
          "instagram_shopping_products": [],
          "instagram_url": "",
          "is_reshared": false,
          "link_description": "{{product.description}}",
          "link_url": "https://ob-hospitalist-group.webinargeek.com/ob-hospitalists-as-maternal-safety-champions-of-labor-and-delivery-with-dr-colton-dr-davis-and-dr-natour",
          "page_categories": {
            "1154837367920704": "Medical Service"
          },
          "page_entity_type": "person_profile",
          "page_id": 443356352451227,
          "page_is_deleted": false,
          "page_is_profile_page": false,
          "page_like_count": 2335,
          "page_name": "Ob Hospitalist Group",
          "page_profile_picture_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474635800_872089351568144_6451615212299040303_n.jpg?stp=dst-jpg_s60x60_tt6&_nc_cat=100&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=RP9K3n4r31cQ7kNvgF6QTfm&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYC6qaDN4z-aOlVpVXDUjSPcXKjM6J7DHsmoQLep8mxBDg&oe=6795D99E",
          "page_profile_uri": "https://facebook.com/ObHospitalistGroup",
          "page_welcome_message": null,
          "root_reshared_post": null,
          "title": "{{product.name}}",
          "version": 3,
          "videos": []
        },
        "spend": null,
        "startDate": 1737446400,
        "stateMediaRunLabel": null,
        "targetedOrReachedCountries": [],
        "totalActiveTime": 8053
      }
    ],
    [
      {
        "adArchiveID": "1097221425217947",
        "adid": "0",
        "archiveTypes": [],
        "categories": [
          0
        ],
        "collationCount": 1,
        "collationID": 1274937973769441,
        "containsDigitallyCreatedMedia": false,
        "containsSensitiveContent": false,
        "currency": "",
        "endDate": 1737446400,
        "entityType": "person_profile",
        "fevInfo": null,
        "finServAdData": {
          "is_deemed_finserv": false,
          "is_limited_delivery": false
        },
        "gatedType": "eligible",
        "hasUserReported": false,
        "hiddenSafetyData": false,
        "hideDataStatus": "NONE",
        "impressionsWithIndex": {
          "impressionsIndex": -1,
          "impressionsText": null
        },
        "isAAAEligible": false,
        "isActive": true,
        "isAdAccountActioned": false,
        "isProfilePage": false,
        "menuItems": [],
        "pageID": "546141992193058",
        "pageInfo": null,
        "pageIsDeleted": false,
        "pageName": "WebinarJam",
        "politicalCountries": [],
        "publisherPlatform": [
          "facebook",
          "instagram",
          "audience_network",
          "messenger"
        ],
        "reachEstimate": null,
        "regionalRegulationData": {
          "finserv": {
            "is_deemed_finserv": false,
            "is_limited_delivery": false
          },
          "tw_anti_scam": {
            "is_limited_delivery": false
          }
        },
        "reportCount": null,
        "snapshot": {
          "ad_creative_id": 2892613784231124,
          "additional_info": null,
          "body": {
            "callerHash": "1b73237f3c35d1c21cc1454501372314",
            "context": {},
            "markup": {
              "__html": "&#123;&#123;product.brand&#125;&#125;"
            }
          },
          "body_translations": {},
          "branded_content": null,
          "brazil_tax_id": null,
          "byline": null,
          "caption": "home.webinarjam.com",
          "cards": [
            {
              "body": "Stop overpaying for a webinar software! WebinarJam is the most affordable solution, giving you the lowest cost per attendee without compromising on features. Host bigger webinars, reach a wider audience, and close more sales—all while keeping your costs under control.",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474058292_1151631449702536_8312428401149488459_n.jpg?_nc_cat=111&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=E97be_ll4KIQ7kNvgF9Z7cG&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYB8-Ueq65Of2rlYmSG2yOSxfi8tUzctU1ebPpHsJxUdBg&oe=6795C801",
              "resized_image_url": "https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/474465075_613455347896713_5330268948026985685_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=108&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=mg-1VPS8xrAQ7kNvgFod9oV&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYAwmm0T1mKNIpk3aoNJ9SyeEw4ktVnirrwzsTZwesIj-A&oe=6795D93B",
              "title": "Affordable. Powerful. WebinarJam",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            },
            {
              "body": "Stop overpaying for a webinar software! WebinarJam is the most affordable solution, giving you the lowest cost per attendee without compromising on features. Host bigger webinars, reach a wider audience, and close more sales—all while keeping your costs under control.",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474059601_1254207929207253_8195581853226520032_n.jpg?_nc_cat=111&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=NGVrOmznHowQ7kNvgHkWFXj&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYD87pJyFf7oIUVzjktwvzkApHV1ra2vlOLBlL3eZr_8ow&oe=6795E4BE",
              "resized_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474215430_1120955572653334_2422320626786163223_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=107&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=OzLONIrbssYQ7kNvgF1ZB13&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYA_Kir2F-LdoFWV6FiJbwv8eToxuIsXfsGP3nty0tWzHA&oe=6795DFE8",
              "title": "Affordable. Powerful. WebinarJam",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            },
            {
              "body": "Stop overpaying for a webinar software! WebinarJam is the most affordable solution, giving you the lowest cost per attendee without compromising on features. Host bigger webinars, reach a wider audience, and close more sales—all while keeping your costs under control.",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474028221_471668652656548_2983833061357531634_n.jpg?_nc_cat=109&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=dldzcgiwfTUQ7kNvgEben3L&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYAwrq9au7nqywKdTPD1dkl5_S2vZl-a90_URWm0j2nx1w&oe=6795C4CF",
              "resized_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474339380_1334117067596886_9015485834639830514_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=103&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=1qNgW66vtpQQ7kNvgErOiOR&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYA0nbHpv-skyCE92GfL9m8RXphnHB0q5UFWLBgkdqkqRA&oe=6795DC97",
              "title": "Affordable. Powerful. WebinarJam",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            }
          ],
          "country_iso_code": null,
          "creation_time": 1737484526,
          "cta_text": "Learn more",
          "cta_type": "LEARN_MORE",
          "current_page_name": "WebinarJam",
          "disclaimer_label": null,
          "display_format": "dco",
          "dynamic_item_flags": {},
          "dynamic_versions": null,
          "ec_certificates": null,
          "edited_snapshots": [],
          "effective_authorization_category": "NONE",
          "event": [],
          "extra_images": [],
          "extra_links": [],
          "extra_texts": [],
          "extra_videos": [],
          "images": [],
          "instagram_actor_name": "WebinarJam",
          "instagram_branded_content": null,
          "instagram_handle": "",
          "instagram_profile_pic_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474071788_8159784344057961_5774862155067853071_n.jpg?_nc_cat=107&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=YyrqrxujEdEQ7kNvgHfrMeJ&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYDLI9GptpxKwNCC5RtO7hRMuYvfNtRsF7G1xhyy828HYA&oe=6795ED8D",
          "instagram_shopping_products": [],
          "instagram_url": "",
          "is_reshared": false,
          "link_description": "{{product.description}}",
          "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
          "page_categories": {
            "2211": "Software"
          },
          "page_entity_type": "person_profile",
          "page_id": 546141992193058,
          "page_is_deleted": false,
          "page_is_profile_page": false,
          "page_like_count": 9686,
          "page_name": "WebinarJam",
          "page_profile_picture_url": "https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/474147332_575854422021254_8080348432500521096_n.jpg?stp=dst-jpg_s60x60_tt6&_nc_cat=101&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=OIdXG1I_IaoQ7kNvgHFeFc0&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYDLS6LDw1bOUp9YlRx7DQlBF_6jd2raR7lyKbiW3iDAeQ&oe=6795CCC9",
          "page_profile_uri": "https://facebook.com/WebinarJamOfficial",
          "page_welcome_message": null,
          "root_reshared_post": null,
          "title": "{{product.name}}",
          "version": 3,
          "videos": []
        },
        "spend": null,
        "startDate": 1737446400,
        "stateMediaRunLabel": null,
        "targetedOrReachedCountries": [],
        "totalActiveTime": 8570
      }
    ],
    [
      {
        "adArchiveID": "2167533420383636",
        "adid": "0",
        "archiveTypes": [],
        "categories": [
          0
        ],
        "collationCount": 1,
        "collationID": 803289291979396,
        "containsDigitallyCreatedMedia": false,
        "containsSensitiveContent": false,
        "currency": "",
        "endDate": 1737446400,
        "entityType": "person_profile",
        "fevInfo": null,
        "finServAdData": {
          "is_deemed_finserv": false,
          "is_limited_delivery": false
        },
        "gatedType": "eligible",
        "hasUserReported": false,
        "hiddenSafetyData": false,
        "hideDataStatus": "NONE",
        "impressionsWithIndex": {
          "impressionsIndex": -1,
          "impressionsText": null
        },
        "isAAAEligible": false,
        "isActive": true,
        "isAdAccountActioned": false,
        "isProfilePage": false,
        "menuItems": [],
        "pageID": "546141992193058",
        "pageInfo": null,
        "pageIsDeleted": false,
        "pageName": "WebinarJam",
        "politicalCountries": [],
        "publisherPlatform": [
          "facebook",
          "instagram",
          "audience_network",
          "messenger"
        ],
        "reachEstimate": null,
        "regionalRegulationData": {
          "finserv": {
            "is_deemed_finserv": false,
            "is_limited_delivery": false
          },
          "tw_anti_scam": {
            "is_limited_delivery": false
          }
        },
        "reportCount": null,
        "snapshot": {
          "ad_creative_id": 1308640800179920,
          "additional_info": null,
          "body": {
            "callerHash": "1b73237f3c35d1c21cc1454501372314",
            "context": {},
            "markup": {
              "__html": "&#123;&#123;product.brand&#125;&#125;"
            }
          },
          "body_translations": {},
          "branded_content": null,
          "brazil_tax_id": null,
          "byline": null,
          "caption": "home.webinarjam.com",
          "cards": [
            {
              "body": "Don’t overspend on webinars! WebinarJam combines low costs with high performance to grow your business.",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474465732_1550988029025555_8261185763063495804_n.jpg?_nc_cat=104&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=qNwy5iRdjjoQ7kNvgG4Llob&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBO1CTJ96mtDROj40BkSvnctG3PkKaX5r6bNi_COlUh_Q&oe=6795E9B3",
              "resized_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474726458_612104691765535_1866769279061288811_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=103&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=VazP3ILat8QQ7kNvgFzmWzo&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYAfPHS_LUY3TJ5k7-OeXS4WYY-dDSvkbh-nGZCmwVvXTg&oe=6795CEC7",
              "title": "Host more attendees, close more sales without the hefty price tag",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            },
            {
              "body": "Don’t overspend on webinars! WebinarJam combines low costs with high performance to grow your business.",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474442500_1073905088110502_3641617858436730523_n.jpg?_nc_cat=110&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=cTA_aYUdQkMQ7kNvgH3Z7QA&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYD-JbpJjQwbrWs6tKZB5nKHcBowS1ic2rW469P2XoCFlQ&oe=6795F8A2",
              "resized_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474506243_1567972803842336_2446704477511053237_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=102&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=X20qyPhCSrcQ7kNvgEpmwKf&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYC8vFR_VQW2lUGYebuK8pYziaIy2NOfcOKfJ3PQY5458Q&oe=6795DC61",
              "title": "Host more attendees, close more sales without the hefty price tag",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            },
            {
              "body": "Don’t overspend on webinars! WebinarJam combines low costs with high performance to grow your business.",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474060821_9163455730415395_4189269702893507548_n.jpg?_nc_cat=109&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=ztB1JudzY0cQ7kNvgGAE4Fu&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBrq0CFGDpXLCTdh2ihNFVJyhDeujo07P662xKFItJbJw&oe=6795D60D",
              "resized_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474255720_585442907591130_1771015234578696209_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=110&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=ym0zrU4PsLAQ7kNvgEH8wif&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYDNbXHSN7faTV7WxU0nheYuGxTLw6ktv_PAYMTkfg6qsQ&oe=6795F03F",
              "title": "Host more attendees, close more sales without the hefty price tag",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            }
          ],
          "country_iso_code": null,
          "creation_time": 1737484834,
          "cta_text": "Learn more",
          "cta_type": "LEARN_MORE",
          "current_page_name": "WebinarJam",
          "disclaimer_label": null,
          "display_format": "dco",
          "dynamic_item_flags": {},
          "dynamic_versions": null,
          "ec_certificates": null,
          "edited_snapshots": [],
          "effective_authorization_category": "NONE",
          "event": [],
          "extra_images": [],
          "extra_links": [],
          "extra_texts": [],
          "extra_videos": [],
          "images": [],
          "instagram_actor_name": "WebinarJam",
          "instagram_branded_content": null,
          "instagram_handle": "",
          "instagram_profile_pic_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474464524_1645416976183066_3000146772333204786_n.jpg?_nc_cat=105&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=zryTN-4I_3cQ7kNvgFDR6GO&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYAACEvmKjvULHQzUAd1DLgWUeHpZzDhMdSfF8g3y6bG4w&oe=6795DCD6",
          "instagram_shopping_products": [],
          "instagram_url": "",
          "is_reshared": false,
          "link_description": "{{product.description}}",
          "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
          "page_categories": {
            "2211": "Software"
          },
          "page_entity_type": "person_profile",
          "page_id": 546141992193058,
          "page_is_deleted": false,
          "page_is_profile_page": false,
          "page_like_count": 9686,
          "page_name": "WebinarJam",
          "page_profile_picture_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474592975_2051014485345773_2418685535790181987_n.jpg?stp=dst-jpg_s60x60_tt6&_nc_cat=109&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=1OKfVNEuh_sQ7kNvgHBzf8K&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBdICkar_xXQZhdgNt4J-NBQpzYwAIhlxxWAKIgHRrtYw&oe=6795E992",
          "page_profile_uri": "https://facebook.com/WebinarJamOfficial",
          "page_welcome_message": null,
          "root_reshared_post": null,
          "title": "{{product.name}}",
          "version": 3,
          "videos": []
        },
        "spend": null,
        "startDate": 1737446400,
        "stateMediaRunLabel": null,
        "targetedOrReachedCountries": [],
        "totalActiveTime": 8263
      }
    ],
    [
      {
        "adArchiveID": "1168851534607283",
        "adid": "0",
        "archiveTypes": [],
        "categories": [
          0
        ],
        "collationCount": 1,
        "collationID": 974219857957155,
        "containsDigitallyCreatedMedia": false,
        "containsSensitiveContent": false,
        "currency": "",
        "endDate": 1737446400,
        "entityType": "person_profile",
        "fevInfo": null,
        "finServAdData": {
          "is_deemed_finserv": false,
          "is_limited_delivery": false
        },
        "gatedType": "eligible",
        "hasUserReported": false,
        "hiddenSafetyData": false,
        "hideDataStatus": "NONE",
        "impressionsWithIndex": {
          "impressionsIndex": -1,
          "impressionsText": null
        },
        "isAAAEligible": false,
        "isActive": true,
        "isAdAccountActioned": false,
        "isProfilePage": false,
        "menuItems": [],
        "pageID": "546141992193058",
        "pageInfo": null,
        "pageIsDeleted": false,
        "pageName": "WebinarJam",
        "politicalCountries": [],
        "publisherPlatform": [
          "facebook",
          "instagram",
          "audience_network",
          "messenger"
        ],
        "reachEstimate": null,
        "regionalRegulationData": {
          "finserv": {
            "is_deemed_finserv": false,
            "is_limited_delivery": false
          },
          "tw_anti_scam": {
            "is_limited_delivery": false
          }
        },
        "reportCount": null,
        "snapshot": {
          "ad_creative_id": 1558928368107954,
          "additional_info": null,
          "body": {
            "callerHash": "1b73237f3c35d1c21cc1454501372314",
            "context": {},
            "markup": {
              "__html": "&#123;&#123;product.brand&#125;&#125;"
            }
          },
          "body_translations": {},
          "branded_content": null,
          "brazil_tax_id": null,
          "byline": null,
          "caption": "home.webinarjam.com",
          "cards": [
            {
              "body": "Don’t overspend on webinars! WebinarJam combines low costs with high performance to grow your business.",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474385613_1771122876979127_9209607886563798961_n.jpg?_nc_cat=104&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=yLd7onr1F2IQ7kNvgE4vQ9X&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCAsVb26FCCXLXTReynkunVPvvU1iy9wLdB9zdtxoyB8A&oe=6795EA32",
              "resized_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474229430_1374820173482865_4945841828264379459_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=104&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=ufIDqIEbeNUQ7kNvgEEwKqS&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYDG46XPummpj4jZka3whdMcHcy4tgy-RVYWfwvVE16B6A&oe=6795C762",
              "title": "Host more attendees, close more sales without the hefty price tag",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            },
            {
              "body": "Don’t overspend on webinars! WebinarJam combines low costs with high performance to grow your business.",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/474760109_607754788512153_6503736352671975999_n.jpg?_nc_cat=108&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=tImVlr08OJQQ7kNvgF4lhe1&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBiCQoAbh3tBl5P_Xv5v_cQTAv3hnDN2h8BPQvdFvXfPQ&oe=6795EDD7",
              "resized_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474734332_1138763453831405_2094592148059339097_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=110&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=2-7iXBUXJoQQ7kNvgFJqbbh&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBhLLIqHgYzg_2W2Ss957uKmrprP21XuYPB0kKXgSyaIg&oe=6795DDED",
              "title": "Host more attendees, close more sales without the hefty price tag",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            },
            {
              "body": "Don’t overspend on webinars! WebinarJam combines low costs with high performance to grow your business.",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474452309_920871630258107_4566581141928676371_n.jpg?_nc_cat=107&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=vDsCFcO1kEoQ7kNvgEtAiV-&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBerNGCHMZ8KHvyO8Y_x9rUDkikr0UXuf6nUmiEkGljig&oe=6795E271",
              "resized_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474485414_1253944383113458_8511959623850710433_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=109&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=F8aAzikEcHwQ7kNvgH-HnLl&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYDoCrhh-ImFVlJmEsEbEsG_qOFPiWEVbWqpqIrrDnr-fA&oe=6795C9F6",
              "title": "Host more attendees, close more sales without the hefty price tag",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            }
          ],
          "country_iso_code": null,
          "creation_time": 1737484524,
          "cta_text": "Learn more",
          "cta_type": "LEARN_MORE",
          "current_page_name": "WebinarJam",
          "disclaimer_label": null,
          "display_format": "dco",
          "dynamic_item_flags": {},
          "dynamic_versions": null,
          "ec_certificates": null,
          "edited_snapshots": [],
          "effective_authorization_category": "NONE",
          "event": [],
          "extra_images": [],
          "extra_links": [],
          "extra_texts": [],
          "extra_videos": [],
          "images": [],
          "instagram_actor_name": "WebinarJam",
          "instagram_branded_content": null,
          "instagram_handle": "",
          "instagram_profile_pic_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474269320_957626965863500_3113170983437230955_n.jpg?_nc_cat=105&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=SjkNjVqKCkMQ7kNvgHnKQOC&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBwjUxFVS6kJcDCJdbOJ5GNDJIV2Epnbz4yzVaH6whwxg&oe=6795C4B8",
          "instagram_shopping_products": [],
          "instagram_url": "",
          "is_reshared": false,
          "link_description": "{{product.description}}",
          "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
          "page_categories": {
            "2211": "Software"
          },
          "page_entity_type": "person_profile",
          "page_id": 546141992193058,
          "page_is_deleted": false,
          "page_is_profile_page": false,
          "page_like_count": 9686,
          "page_name": "WebinarJam",
          "page_profile_picture_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474562309_1259272488486588_989127271262857928_n.jpg?stp=dst-jpg_s60x60_tt6&_nc_cat=105&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=6yaOSw2MlHkQ7kNvgGGmXzB&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYD5-_nQ55-GUcHb2c4ic3LQY6ItiSxIQnUZp2EHvJjqJQ&oe=6795F5C0",
          "page_profile_uri": "https://facebook.com/WebinarJamOfficial",
          "page_welcome_message": null,
          "root_reshared_post": null,
          "title": "{{product.name}}",
          "version": 3,
          "videos": []
        },
        "spend": null,
        "startDate": 1737446400,
        "stateMediaRunLabel": null,
        "targetedOrReachedCountries": [],
        "totalActiveTime": 8584
      }
    ],
    [
      {
        "adArchiveID": "1324646198723676",
        "adid": "0",
        "archiveTypes": [],
        "categories": [
          0
        ],
        "collationCount": 1,
        "collationID": 1120455729774525,
        "containsDigitallyCreatedMedia": false,
        "containsSensitiveContent": false,
        "currency": "",
        "endDate": 1737446400,
        "entityType": "person_profile",
        "fevInfo": null,
        "finServAdData": {
          "is_deemed_finserv": false,
          "is_limited_delivery": false
        },
        "gatedType": "eligible",
        "hasUserReported": false,
        "hiddenSafetyData": false,
        "hideDataStatus": "NONE",
        "impressionsWithIndex": {
          "impressionsIndex": -1,
          "impressionsText": null
        },
        "isAAAEligible": false,
        "isActive": true,
        "isAdAccountActioned": false,
        "isProfilePage": false,
        "menuItems": [],
        "pageID": "546141992193058",
        "pageInfo": null,
        "pageIsDeleted": false,
        "pageName": "WebinarJam",
        "politicalCountries": [],
        "publisherPlatform": [
          "facebook",
          "instagram",
          "audience_network",
          "messenger"
        ],
        "reachEstimate": null,
        "regionalRegulationData": {
          "finserv": {
            "is_deemed_finserv": false,
            "is_limited_delivery": false
          },
          "tw_anti_scam": {
            "is_limited_delivery": false
          }
        },
        "reportCount": null,
        "snapshot": {
          "ad_creative_id": 1418729032267127,
          "additional_info": null,
          "body": {
            "callerHash": "1b73237f3c35d1c21cc1454501372314",
            "context": {},
            "markup": {
              "__html": "&#123;&#123;product.brand&#125;&#125;"
            }
          },
          "body_translations": {},
          "branded_content": null,
          "brazil_tax_id": null,
          "byline": null,
          "caption": "home.webinarjam.com",
          "cards": [
            {
              "body": "WebinarJam makes hosting webinars easy, affordable, and impactful! 🚀\n\n✅ Lowest cost per attendee. Save more while scaling.\n✅ Powerful engagement tools like live chat and polls.\n✅ Seamless setup, go live in minutes.\n\nTry WebinarJam today for only $1!",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/473831622_516289454805447_8038700390242570156_n.jpg?_nc_cat=110&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=6EKP60QMKp0Q7kNvgEgG0DB&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBDBzNanRNqn_vfxcDUIX7X0hygzS0k1TEgP2JOq6kUAw&oe=6795DE6A",
              "resized_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474711036_1361252351655617_7192118411469295795_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=111&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=GmGG5XSHpqEQ7kNvgGzeTPg&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYABnuZpGWdVXSf8hGr4BBCmGj-pE6Lp8biwgVe8ydAwqA&oe=6795CDBD",
              "title": "Discover the power of WebinarJam today",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            },
            {
              "body": "WebinarJam makes hosting webinars easy, affordable, and impactful! 🚀\n\n✅ Lowest cost per attendee. Save more while scaling.\n✅ Powerful engagement tools like live chat and polls.\n✅ Seamless setup, go live in minutes.\n\nTry WebinarJam today for only $1!",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474192642_675421771547426_1721995460011839676_n.jpg?_nc_cat=105&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=TTRZ_aKx3xEQ7kNvgFAQU19&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYA7aCiNTesZWhFN75_-0PnxQhKs2Q2q42VlvoJ6hevv4Q&oe=6795CCAF",
              "resized_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/473593510_1164323781937666_1841567653973347709_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=111&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=TyQXS7neWKwQ7kNvgFMkHTy&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBJKDtWxZHrILJkd-SRz_o1L1jOa87X1f1XdC_SnCtt1Q&oe=6795F591",
              "title": "Discover the power of WebinarJam today",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            },
            {
              "body": "WebinarJam makes hosting webinars easy, affordable, and impactful! 🚀\n\n✅ Lowest cost per attendee. Save more while scaling.\n✅ Powerful engagement tools like live chat and polls.\n✅ Seamless setup, go live in minutes.\n\nTry WebinarJam today for only $1!",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/473821822_1327931778528243_3644506666309332692_n.jpg?_nc_cat=110&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=Il8iJD7xacYQ7kNvgEfB0rJ&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYAsKEd-3j0uz-bCm_-xrG5OIp2QvBTZAWjZ60liR67dsg&oe=6795DF62",
              "resized_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/473814257_3995038684093028_2628704327920250885_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=100&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=ZldjJlSIPzgQ7kNvgEARDV0&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYAM30IZk3nW1UikZb42A9ZIdV4UPFKCbwOuo3vbJZamYQ&oe=6795E640",
              "title": "Discover the power of WebinarJam today",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            }
          ],
          "country_iso_code": null,
          "creation_time": 1737484524,
          "cta_text": "Learn more",
          "cta_type": "LEARN_MORE",
          "current_page_name": "WebinarJam",
          "disclaimer_label": null,
          "display_format": "dco",
          "dynamic_item_flags": {},
          "dynamic_versions": null,
          "ec_certificates": null,
          "edited_snapshots": [],
          "effective_authorization_category": "NONE",
          "event": [],
          "extra_images": [],
          "extra_links": [],
          "extra_texts": [],
          "extra_videos": [],
          "images": [],
          "instagram_actor_name": "WebinarJam",
          "instagram_branded_content": null,
          "instagram_handle": "",
          "instagram_profile_pic_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/473755223_1665633757681215_7447373390934859767_n.jpg?_nc_cat=104&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=_6pRJv9Z-zoQ7kNvgF55mW4&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYAPte18zOApZ2LVDHapeFlbumJfYvz6UpfeLnDEeUUNrw&oe=6795D9B3",
          "instagram_shopping_products": [],
          "instagram_url": "",
          "is_reshared": false,
          "link_description": "{{product.description}}",
          "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
          "page_categories": {
            "2211": "Software"
          },
          "page_entity_type": "person_profile",
          "page_id": 546141992193058,
          "page_is_deleted": false,
          "page_is_profile_page": false,
          "page_like_count": 9686,
          "page_name": "WebinarJam",
          "page_profile_picture_url": "https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/474018818_605823392091475_82654152821952638_n.jpg?stp=dst-jpg_s60x60_tt6&_nc_cat=101&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=HK7WTcdv37gQ7kNvgHeHshg&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYDZycCqK8rJ8RDF4JlSWTBg-z81NPdQ4cjdnVUGykFbLQ&oe=6795DF66",
          "page_profile_uri": "https://facebook.com/WebinarJamOfficial",
          "page_welcome_message": null,
          "root_reshared_post": null,
          "title": "{{product.name}}",
          "version": 3,
          "videos": []
        },
        "spend": null,
        "startDate": 1737446400,
        "stateMediaRunLabel": null,
        "targetedOrReachedCountries": [],
        "totalActiveTime": 8498
      }
    ],
    [
      {
        "adArchiveID": "1343516553486746",
        "adid": "0",
        "archiveTypes": [],
        "categories": [
          0
        ],
        "collationCount": 1,
        "collationID": 1828985804509348,
        "containsDigitallyCreatedMedia": false,
        "containsSensitiveContent": false,
        "currency": "",
        "endDate": 1737446400,
        "entityType": "person_profile",
        "fevInfo": null,
        "finServAdData": {
          "is_deemed_finserv": false,
          "is_limited_delivery": false
        },
        "gatedType": "eligible",
        "hasUserReported": false,
        "hiddenSafetyData": false,
        "hideDataStatus": "NONE",
        "impressionsWithIndex": {
          "impressionsIndex": -1,
          "impressionsText": null
        },
        "isAAAEligible": false,
        "isActive": true,
        "isAdAccountActioned": false,
        "isProfilePage": false,
        "menuItems": [],
        "pageID": "546141992193058",
        "pageInfo": null,
        "pageIsDeleted": false,
        "pageName": "WebinarJam",
        "politicalCountries": [],
        "publisherPlatform": [
          "facebook",
          "instagram",
          "audience_network",
          "messenger"
        ],
        "reachEstimate": null,
        "regionalRegulationData": {
          "finserv": {
            "is_deemed_finserv": false,
            "is_limited_delivery": false
          },
          "tw_anti_scam": {
            "is_limited_delivery": false
          }
        },
        "reportCount": null,
        "snapshot": {
          "ad_creative_id": 4110270792629819,
          "additional_info": null,
          "body": {
            "callerHash": "1b73237f3c35d1c21cc1454501372314",
            "context": {},
            "markup": {
              "__html": "&#123;&#123;product.brand&#125;&#125;"
            }
          },
          "body_translations": {},
          "branded_content": null,
          "brazil_tax_id": null,
          "byline": null,
          "caption": "home.webinarjam.com",
          "cards": [
            {
              "body": "Are you tired of overpaying for a webinar software? WebinarJam is designed to deliver the lowest cost per attendee while equipping you with all the tools you need to boost engagement and maximize sales.",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/474080405_971673711488975_2023928111836360167_n.jpg?_nc_cat=101&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=hkbCz2DIn4sQ7kNvgEk7yH6&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYB8qogozz6Q3NjMoBCsLT5Gdu20ZD6aR1sXCfJ54e2dSw&oe=6795F7DD",
              "resized_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474758656_588433543968062_1220614944556523261_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=106&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=OD3ZblDrHC4Q7kNvgHDS5jf&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBcRMR2LrbFT2HEA0L_M2Mm_t_Gk-mTD1NYOQrpsT2RUg&oe=6795EB20",
              "title": "Host bigger webinars, reach a wider audience",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            },
            {
              "body": "Are you tired of overpaying for a webinar software? WebinarJam is designed to deliver the lowest cost per attendee while equipping you with all the tools you need to boost engagement and maximize sales.",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/473448312_1247797936288649_2381780803873578224_n.jpg?_nc_cat=110&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=C69rQTgwn5UQ7kNvgEW1XZc&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYAYrFho9wxfHv8ueAvj6SOdffgmSrEpJPuizfaKCr_IvA&oe=6795E3BA",
              "resized_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/473811624_1736201210275812_2206528617830741620_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=105&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=kmvM7L1h468Q7kNvgE5X4nD&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCqyAiYQwUj-ILrKd09HOQn4X2yhmRGcIFgNnzhOYp8RA&oe=6795F3A3",
              "title": "Host bigger webinars, reach a wider audience",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            },
            {
              "body": "Are you tired of overpaying for a webinar software? WebinarJam is designed to deliver the lowest cost per attendee while equipping you with all the tools you need to boost engagement and maximize sales.",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474217468_646150434511015_3794214026971951601_n.jpg?_nc_cat=109&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=nRoRw_bKqr4Q7kNvgEK4QhF&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYD-IvExcBKIDvOy7BoLXnCZSj18WYZHVc_boTkd3DMksQ&oe=6795F073",
              "resized_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/473538588_957426815950911_5552249028645156687_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=104&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=0fmo6U3NSWEQ7kNvgHBJKRP&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBAaqrZUjf7-bv_6sHcZ0XElCGhj_LPAeruT26CseaXrw&oe=6795C62F",
              "title": "Host bigger webinars, reach a wider audience",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            }
          ],
          "country_iso_code": null,
          "creation_time": 1737484524,
          "cta_text": "Learn more",
          "cta_type": "LEARN_MORE",
          "current_page_name": "WebinarJam",
          "disclaimer_label": null,
          "display_format": "dco",
          "dynamic_item_flags": {},
          "dynamic_versions": null,
          "ec_certificates": null,
          "edited_snapshots": [],
          "effective_authorization_category": "NONE",
          "event": [],
          "extra_images": [],
          "extra_links": [],
          "extra_texts": [],
          "extra_videos": [],
          "images": [],
          "instagram_actor_name": "WebinarJam",
          "instagram_branded_content": null,
          "instagram_handle": "",
          "instagram_profile_pic_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474741384_1279623923251024_3976788511878921322_n.jpg?_nc_cat=100&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=0kQfy3jxSVIQ7kNvgG4ig7m&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBwp54Hr2ZfjqQ0ekNdAdCewAF-e0UAJ43b9UNUJEHMow&oe=6795DA82",
          "instagram_shopping_products": [],
          "instagram_url": "",
          "is_reshared": false,
          "link_description": "{{product.description}}",
          "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
          "page_categories": {
            "2211": "Software"
          },
          "page_entity_type": "person_profile",
          "page_id": 546141992193058,
          "page_is_deleted": false,
          "page_is_profile_page": false,
          "page_like_count": 9686,
          "page_name": "WebinarJam",
          "page_profile_picture_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/473518182_910993924355967_1295882778771009158_n.jpg?stp=dst-jpg_s60x60_tt6&_nc_cat=111&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=MIl6txSupAQQ7kNvgHJ88uR&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCEoofQAsvx3XQnKrfXt9ZADeZ_PsM54kWdud9xxMl_Tw&oe=6795EBAE",
          "page_profile_uri": "https://facebook.com/WebinarJamOfficial",
          "page_welcome_message": null,
          "root_reshared_post": null,
          "title": "{{product.name}}",
          "version": 3,
          "videos": []
        },
        "spend": null,
        "startDate": 1737446400,
        "stateMediaRunLabel": null,
        "targetedOrReachedCountries": [],
        "totalActiveTime": 8154
      }
    ],
    [
      {
        "adArchiveID": "1725939787954847",
        "adid": "0",
        "archiveTypes": [],
        "categories": [
          0
        ],
        "collationCount": 1,
        "collationID": 629733832910804,
        "containsDigitallyCreatedMedia": false,
        "containsSensitiveContent": false,
        "currency": "",
        "endDate": 1737446400,
        "entityType": "person_profile",
        "fevInfo": null,
        "finServAdData": {
          "is_deemed_finserv": false,
          "is_limited_delivery": false
        },
        "gatedType": "eligible",
        "hasUserReported": false,
        "hiddenSafetyData": false,
        "hideDataStatus": "NONE",
        "impressionsWithIndex": {
          "impressionsIndex": -1,
          "impressionsText": null
        },
        "isAAAEligible": false,
        "isActive": true,
        "isAdAccountActioned": false,
        "isProfilePage": false,
        "menuItems": [],
        "pageID": "546141992193058",
        "pageInfo": null,
        "pageIsDeleted": false,
        "pageName": "WebinarJam",
        "politicalCountries": [],
        "publisherPlatform": [
          "facebook",
          "instagram",
          "audience_network",
          "messenger"
        ],
        "reachEstimate": null,
        "regionalRegulationData": {
          "finserv": {
            "is_deemed_finserv": false,
            "is_limited_delivery": false
          },
          "tw_anti_scam": {
            "is_limited_delivery": false
          }
        },
        "reportCount": null,
        "snapshot": {
          "ad_creative_id": 1672714686646389,
          "additional_info": null,
          "body": {
            "callerHash": "1b73237f3c35d1c21cc1454501372314",
            "context": {},
            "markup": {
              "__html": "&#123;&#123;product.brand&#125;&#125;"
            }
          },
          "body_translations": {},
          "branded_content": null,
          "brazil_tax_id": null,
          "byline": null,
          "caption": "home.webinarjam.com",
          "cards": [
            {
              "body": "Are you tired of overpaying for a webinar software? WebinarJam is designed to deliver the lowest cost per attendee while equipping you with all the tools you need to boost engagement and maximize sales.",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474556747_1290637885499550_9124460613024635631_n.jpg?_nc_cat=110&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=j5CdZspT7PkQ7kNvgGl1JEU&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBkuduBWc4A_T--Bula6et-VIRQMmLG928F3DSoTJCBig&oe=6795EE12",
              "resized_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474455678_499401882755554_4145612940345121933_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=100&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=xEF8TNTzy78Q7kNvgHZmnS-&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYDMU63ZPHSyoxV0cXSksHY0dALkMDiaM9o6nCBCwr-kkw&oe=6795D786",
              "title": "Host bigger webinars, reach a wider audience",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            },
            {
              "body": "Are you tired of overpaying for a webinar software? WebinarJam is designed to deliver the lowest cost per attendee while equipping you with all the tools you need to boost engagement and maximize sales.",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474013203_1587804122108101_1590742825343913349_n.jpg?_nc_cat=110&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=5AAKD3eGU3sQ7kNvgFJcxak&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBhafu-jAjMwzZCKtiXA7HHVri0_owvY0HfQjHgqBX4Fw&oe=6795F0E8",
              "resized_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474736559_1363934654966988_1520162197996554024_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=102&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=d5xXQfSr7mIQ7kNvgEOVZLZ&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCxOqwnTm8axoeoaoreEHq5SpNHMQUPA6hbfiOSZ_9Azg&oe=6795F7FA",
              "title": "Host bigger webinars, reach a wider audience",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            },
            {
              "body": "Are you tired of overpaying for a webinar software? WebinarJam is designed to deliver the lowest cost per attendee while equipping you with all the tools you need to boost engagement and maximize sales.",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474319491_1189028699467738_3447125744168125025_n.jpg?_nc_cat=100&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=WmnmhxpbrB8Q7kNvgEUvoRc&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYAfDZZlz3HpvzmKmqrP2QQnj6suzez5sRqC8Gsg4fv2DQ&oe=6795F349",
              "resized_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474778577_551104924577964_6235016124651740491_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=110&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=Rt8vMI9EKYUQ7kNvgGVvT_S&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCfHFfhWyeHJfOwOylMgI-HihLNBNThCHEfnbNPhc4hGw&oe=6795C551",
              "title": "Host bigger webinars, reach a wider audience",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            }
          ],
          "country_iso_code": null,
          "creation_time": 1737484522,
          "cta_text": "Learn more",
          "cta_type": "LEARN_MORE",
          "current_page_name": "WebinarJam",
          "disclaimer_label": null,
          "display_format": "dco",
          "dynamic_item_flags": {},
          "dynamic_versions": null,
          "ec_certificates": null,
          "edited_snapshots": [],
          "effective_authorization_category": "NONE",
          "event": [],
          "extra_images": [],
          "extra_links": [],
          "extra_texts": [],
          "extra_videos": [],
          "images": [],
          "instagram_actor_name": "WebinarJam",
          "instagram_branded_content": null,
          "instagram_handle": "",
          "instagram_profile_pic_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474384964_617649017332489_437095330103065538_n.jpg?_nc_cat=106&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=Q7juRWqVQYgQ7kNvgGD_QMy&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCkXXsIr4fLPu8LfKz9LrOtLCo-YS7q1ZNtY3YNHcDMaA&oe=6795CF3F",
          "instagram_shopping_products": [],
          "instagram_url": "",
          "is_reshared": false,
          "link_description": "{{product.description}}",
          "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
          "page_categories": {
            "2211": "Software"
          },
          "page_entity_type": "person_profile",
          "page_id": 546141992193058,
          "page_is_deleted": false,
          "page_is_profile_page": false,
          "page_like_count": 9686,
          "page_name": "WebinarJam",
          "page_profile_picture_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474071356_541855435566888_9198486157806399674_n.jpg?stp=dst-jpg_s60x60_tt6&_nc_cat=105&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=TgHtiguukfAQ7kNvgGNkfLb&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYDAbA8huifOdhMy_edXJMoto3uKBNHHtXzaaFiFZQ4wiQ&oe=6795C990",
          "page_profile_uri": "https://facebook.com/WebinarJamOfficial",
          "page_welcome_message": null,
          "root_reshared_post": null,
          "title": "{{product.name}}",
          "version": 3,
          "videos": []
        },
        "spend": null,
        "startDate": 1737446400,
        "stateMediaRunLabel": null,
        "targetedOrReachedCountries": [],
        "totalActiveTime": 8576
      }
    ],
    [
      {
        "adArchiveID": "1770296150370079",
        "adid": "0",
        "archiveTypes": [],
        "categories": [
          0
        ],
        "collationCount": 1,
        "collationID": 2334053766953354,
        "containsDigitallyCreatedMedia": false,
        "containsSensitiveContent": false,
        "currency": "",
        "endDate": 1737446400,
        "entityType": "person_profile",
        "fevInfo": null,
        "finServAdData": {
          "is_deemed_finserv": false,
          "is_limited_delivery": false
        },
        "gatedType": "eligible",
        "hasUserReported": false,
        "hiddenSafetyData": false,
        "hideDataStatus": "NONE",
        "impressionsWithIndex": {
          "impressionsIndex": -1,
          "impressionsText": null
        },
        "isAAAEligible": false,
        "isActive": true,
        "isAdAccountActioned": false,
        "isProfilePage": false,
        "menuItems": [],
        "pageID": "546141992193058",
        "pageInfo": null,
        "pageIsDeleted": false,
        "pageName": "WebinarJam",
        "politicalCountries": [],
        "publisherPlatform": [
          "facebook",
          "instagram",
          "audience_network",
          "messenger"
        ],
        "reachEstimate": null,
        "regionalRegulationData": {
          "finserv": {
            "is_deemed_finserv": false,
            "is_limited_delivery": false
          },
          "tw_anti_scam": {
            "is_limited_delivery": false
          }
        },
        "reportCount": null,
        "snapshot": {
          "ad_creative_id": 630360126032787,
          "additional_info": null,
          "body": {
            "callerHash": "1b73237f3c35d1c21cc1454501372314",
            "context": {},
            "markup": {
              "__html": "&#123;&#123;product.brand&#125;&#125;"
            }
          },
          "body_translations": {},
          "branded_content": null,
          "brazil_tax_id": null,
          "byline": null,
          "caption": "home.webinarjam.com",
          "cards": [
            {
              "body": "Stop overpaying for a webinar software! WebinarJam is the most affordable solution, giving you the lowest cost per attendee without compromising on features. Host bigger webinars, reach a wider audience, and close more sales—all while keeping your costs under control.",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474168360_584216221111645_3231855682183712002_n.jpg?_nc_cat=100&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=VSQ1z8DSbIgQ7kNvgEXc70p&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBeOgdgfpZ6mypUe3sw2HT-5yEx9UtMo63Z4Y7FwlnyRQ&oe=6795E534",
              "resized_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474465498_1667047524243443_5025587167476608781_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=107&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=3Sn6iDmyxNkQ7kNvgGgdv9c&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYDDxFBlq0dMX9xsCN4ew4PfSMxOqQa4l1gkNYfgJLqZYg&oe=6795D4A3",
              "title": "Affordable. Powerful. WebinarJam",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            },
            {
              "body": "Stop overpaying for a webinar software! WebinarJam is the most affordable solution, giving you the lowest cost per attendee without compromising on features. Host bigger webinars, reach a wider audience, and close more sales—all while keeping your costs under control.",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474597881_975104637881241_7843865841914259247_n.jpg?_nc_cat=105&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=RBq0YVzMnM0Q7kNvgE_vMYA&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBYilkeukMU7a1qlCed0ZiEvshgM_n3aDjhuyB_ikKiFQ&oe=6795E356",
              "resized_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474481890_615982480918092_1493164495291629683_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=111&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=xfRF9U-i828Q7kNvgFg9Q2w&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYASJLTS6IPJepLGgpWXrSJQMK8Ln8hqEsyIXTFjKezv0g&oe=6795C7E0",
              "title": "Affordable. Powerful. WebinarJam",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            },
            {
              "body": "Stop overpaying for a webinar software! WebinarJam is the most affordable solution, giving you the lowest cost per attendee without compromising on features. Host bigger webinars, reach a wider audience, and close more sales—all while keeping your costs under control.",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474201150_958068622485887_7401643232381215660_n.jpg?_nc_cat=105&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=7GisfqlC4vYQ7kNvgHysilq&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYD10eGEYzftNfm7orTk3W8e_1zb0b1V4kyApaAx4ZlXxw&oe=6795F7E7",
              "resized_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474447679_3792371327742158_8905313968139756912_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=103&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=Sh3_G2mP6v0Q7kNvgE2G1Hd&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBmeKpvTT3DWMqMetW1mMzUJvrVW8yk3gOqWznFVh2wkw&oe=6795C7BF",
              "title": "Affordable. Powerful. WebinarJam",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            }
          ],
          "country_iso_code": null,
          "creation_time": 1737484521,
          "cta_text": "Learn more",
          "cta_type": "LEARN_MORE",
          "current_page_name": "WebinarJam",
          "disclaimer_label": null,
          "display_format": "dco",
          "dynamic_item_flags": {},
          "dynamic_versions": null,
          "ec_certificates": null,
          "edited_snapshots": [],
          "effective_authorization_category": "NONE",
          "event": [],
          "extra_images": [],
          "extra_links": [],
          "extra_texts": [],
          "extra_videos": [],
          "images": [],
          "instagram_actor_name": "WebinarJam",
          "instagram_branded_content": null,
          "instagram_handle": "",
          "instagram_profile_pic_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474559064_487344661069394_8037855927995372184_n.jpg?_nc_cat=109&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=UGjiGKXaPi4Q7kNvgFssNbT&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYAXsh-iQaVMixgx7Fd0Cv5GStV5M6YnZBYF0k3ZEmYV-g&oe=6795D1B8",
          "instagram_shopping_products": [],
          "instagram_url": "",
          "is_reshared": false,
          "link_description": "{{product.description}}",
          "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
          "page_categories": {
            "2211": "Software"
          },
          "page_entity_type": "person_profile",
          "page_id": 546141992193058,
          "page_is_deleted": false,
          "page_is_profile_page": false,
          "page_like_count": 9686,
          "page_name": "WebinarJam",
          "page_profile_picture_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474451988_1581266596600371_3719737023227503824_n.jpg?stp=dst-jpg_s60x60_tt6&_nc_cat=107&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=1UZtrZMtKr0Q7kNvgEiAVs3&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCH2x3YN0rCTn5ZFRoEY2GYdUi5bbwSLinjQE63RO4v0w&oe=6795D9CF",
          "page_profile_uri": "https://facebook.com/WebinarJamOfficial",
          "page_welcome_message": null,
          "root_reshared_post": null,
          "title": "{{product.name}}",
          "version": 3,
          "videos": []
        },
        "spend": null,
        "startDate": 1737446400,
        "stateMediaRunLabel": null,
        "targetedOrReachedCountries": [],
        "totalActiveTime": 8263
      }
    ],
    [
      {
        "adArchiveID": "1904780716995403",
        "adid": "0",
        "archiveTypes": [],
        "categories": [
          0
        ],
        "collationCount": 1,
        "collationID": 1965988370561002,
        "containsDigitallyCreatedMedia": false,
        "containsSensitiveContent": false,
        "currency": "",
        "endDate": 1737446400,
        "entityType": "person_profile",
        "fevInfo": null,
        "finServAdData": {
          "is_deemed_finserv": false,
          "is_limited_delivery": false
        },
        "gatedType": "eligible",
        "hasUserReported": false,
        "hiddenSafetyData": false,
        "hideDataStatus": "NONE",
        "impressionsWithIndex": {
          "impressionsIndex": -1,
          "impressionsText": null
        },
        "isAAAEligible": false,
        "isActive": true,
        "isAdAccountActioned": false,
        "isProfilePage": false,
        "menuItems": [],
        "pageID": "546141992193058",
        "pageInfo": null,
        "pageIsDeleted": false,
        "pageName": "WebinarJam",
        "politicalCountries": [],
        "publisherPlatform": [
          "facebook",
          "instagram",
          "audience_network",
          "messenger"
        ],
        "reachEstimate": null,
        "regionalRegulationData": {
          "finserv": {
            "is_deemed_finserv": false,
            "is_limited_delivery": false
          },
          "tw_anti_scam": {
            "is_limited_delivery": false
          }
        },
        "reportCount": null,
        "snapshot": {
          "ad_creative_id": 2350595505295438,
          "additional_info": null,
          "body": {
            "callerHash": "1b73237f3c35d1c21cc1454501372314",
            "context": {},
            "markup": {
              "__html": "&#123;&#123;product.brand&#125;&#125;"
            }
          },
          "body_translations": {},
          "branded_content": null,
          "brazil_tax_id": null,
          "byline": null,
          "caption": "home.webinarjam.com",
          "cards": [
            {
              "body": "WebinarJam makes hosting webinars easy, affordable, and impactful! 🚀\n\n✅ Lowest cost per attendee. Save more while scaling.\n✅ Powerful engagement tools like live chat and polls.\n✅ Seamless setup, go live in minutes.\n\nTry WebinarJam today for only $1!",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/473814562_924227306446464_8222198903699697392_n.jpg?_nc_cat=110&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=fsW6DHIVyn4Q7kNvgEgBn-V&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBIUVSgs8hvB-_XitB1x86xWvDJQFCSSXx77X_EhB2XHw&oe=6795F70A",
              "resized_image_url": "https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/473537616_1321927178821356_3360550892134550964_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=108&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=hwjDPlzA5g4Q7kNvgGQewlR&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYDAXNYI-ggGEtyKuzb7ckCWtYYx4zbLq_u1mPiUqfVseg&oe=6795F3A1",
              "title": "Discover the power of WebinarJam today",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            },
            {
              "body": "WebinarJam makes hosting webinars easy, affordable, and impactful! 🚀\n\n✅ Lowest cost per attendee. Save more while scaling.\n✅ Powerful engagement tools like live chat and polls.\n✅ Seamless setup, go live in minutes.\n\nTry WebinarJam today for only $1!",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/473810961_596626712997130_7032993658904719076_n.jpg?_nc_cat=101&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=wn-7T5P5GOsQ7kNvgFhi4i0&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCdWZGjmgusR7BgHexKfRn4aISJkxRfeGYUjtPkh_dEwg&oe=6795D476",
              "resized_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474762087_1733217547246217_5261986029059516933_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=110&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=LAeRduDxr1wQ7kNvgFT-iiN&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCu1dv0vsjDBPci_ysWhxIkTy7nc-p04PA-IOpC3EnYng&oe=6795DA8F",
              "title": "Discover the power of WebinarJam today",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            },
            {
              "body": "WebinarJam makes hosting webinars easy, affordable, and impactful! 🚀\n\n✅ Lowest cost per attendee. Save more while scaling.\n✅ Powerful engagement tools like live chat and polls.\n✅ Seamless setup, go live in minutes.\n\nTry WebinarJam today for only $1!",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474564424_2033625577082384_8415800699218427585_n.jpg?_nc_cat=104&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=KCtN7sk92FsQ7kNvgHVBv5L&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYAGEfxfMJQPDH50KGnMRgkYXMpwNFI3V2aI747fW7vrOg&oe=6795D5BF",
              "resized_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/473527467_472040979063340_5229774106415332427_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=111&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=osttw_f71kQQ7kNvgGbxqXO&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYA5wDrLT4xaCfDLvwJrtRA6OYC9wt2c3w10dlmAns7T1A&oe=6795E3F3",
              "title": "Discover the power of WebinarJam today",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            }
          ],
          "country_iso_code": null,
          "creation_time": 1737484524,
          "cta_text": "Learn more",
          "cta_type": "LEARN_MORE",
          "current_page_name": "WebinarJam",
          "disclaimer_label": null,
          "display_format": "dco",
          "dynamic_item_flags": {},
          "dynamic_versions": null,
          "ec_certificates": null,
          "edited_snapshots": [],
          "effective_authorization_category": "NONE",
          "event": [],
          "extra_images": [],
          "extra_links": [],
          "extra_texts": [],
          "extra_videos": [],
          "images": [],
          "instagram_actor_name": "WebinarJam",
          "instagram_branded_content": null,
          "instagram_handle": "",
          "instagram_profile_pic_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/473528848_523520294074185_4856073510074581500_n.jpg?_nc_cat=109&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=mcPaWfMpeMgQ7kNvgGGKBij&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYB2VeVJKqr0tXb_G-5IHDZuUAnpsqnEMAh7z52TLDPFAA&oe=6795D9A1",
          "instagram_shopping_products": [],
          "instagram_url": "",
          "is_reshared": false,
          "link_description": "{{product.description}}",
          "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
          "page_categories": {
            "2211": "Software"
          },
          "page_entity_type": "person_profile",
          "page_id": 546141992193058,
          "page_is_deleted": false,
          "page_is_profile_page": false,
          "page_like_count": 9686,
          "page_name": "WebinarJam",
          "page_profile_picture_url": "https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/473807805_3882309365368123_7325692820290788471_n.jpg?stp=dst-jpg_s60x60_tt6&_nc_cat=108&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=sY1kDlQmm6UQ7kNvgGNZKvW&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBTvB8MxV8XXrqO9aDeZCqK2kIu67ZhhvTD4KyS-7yEtw&oe=6795DD3E",
          "page_profile_uri": "https://facebook.com/WebinarJamOfficial",
          "page_welcome_message": null,
          "root_reshared_post": null,
          "title": "{{product.name}}",
          "version": 3,
          "videos": []
        },
        "spend": null,
        "startDate": 1737446400,
        "stateMediaRunLabel": null,
        "targetedOrReachedCountries": [],
        "totalActiveTime": 8190
      }
    ],
    [
      {
        "adArchiveID": "1285896482465143",
        "adid": "0",
        "archiveTypes": [],
        "categories": [
          0
        ],
        "collationCount": 1,
        "collationID": 1143005410786500,
        "containsDigitallyCreatedMedia": false,
        "containsSensitiveContent": false,
        "currency": "",
        "endDate": 1737446400,
        "entityType": "person_profile",
        "fevInfo": null,
        "finServAdData": {
          "is_deemed_finserv": false,
          "is_limited_delivery": false
        },
        "gatedType": "eligible",
        "hasUserReported": false,
        "hiddenSafetyData": false,
        "hideDataStatus": "NONE",
        "impressionsWithIndex": {
          "impressionsIndex": -1,
          "impressionsText": null
        },
        "isAAAEligible": false,
        "isActive": true,
        "isAdAccountActioned": false,
        "isProfilePage": false,
        "menuItems": [],
        "pageID": "546141992193058",
        "pageInfo": null,
        "pageIsDeleted": false,
        "pageName": "WebinarJam",
        "politicalCountries": [],
        "publisherPlatform": [
          "facebook",
          "instagram",
          "audience_network",
          "messenger"
        ],
        "reachEstimate": null,
        "regionalRegulationData": {
          "finserv": {
            "is_deemed_finserv": false,
            "is_limited_delivery": false
          },
          "tw_anti_scam": {
            "is_limited_delivery": false
          }
        },
        "reportCount": null,
        "snapshot": {
          "ad_creative_id": 3984478158499837,
          "additional_info": null,
          "body": {
            "callerHash": "1b73237f3c35d1c21cc1454501372314",
            "context": {},
            "markup": {
              "__html": "&#123;&#123;product.brand&#125;&#125;"
            }
          },
          "body_translations": {},
          "branded_content": null,
          "brazil_tax_id": null,
          "byline": null,
          "caption": "home.webinarjam.com",
          "cards": [
            {
              "body": "Stop overpaying for a webinar software! WebinarJam is the most affordable solution, giving you the lowest cost per attendee without compromising on features. Host bigger webinars, reach a wider audience, and close more sales—all while keeping your costs under control.",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474637220_619475463933701_3008303276148103740_n.jpg?_nc_cat=104&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=7ZEfyNGVUi8Q7kNvgEQtjeI&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYA46ALsv0mDJVNQ7-dhSMrk9itzi6i1CzZ7ckKeQMkb6A&oe=6795ED18",
              "resized_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474475089_2128109337644663_3226192490902748267_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=100&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=FUmuz2iP2ZQQ7kNvgEbWLdP&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYDvCu1edzVMQdiBAexJiHzr86lus61zvdMkjDo_wKyzrw&oe=6795C6A7",
              "title": "Affordable. Powerful. WebinarJam",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            },
            {
              "body": "Stop overpaying for a webinar software! WebinarJam is the most affordable solution, giving you the lowest cost per attendee without compromising on features. Host bigger webinars, reach a wider audience, and close more sales—all while keeping your costs under control.",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474507261_975694727818199_5689577127935389498_n.jpg?_nc_cat=102&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=k_WarDGyaqIQ7kNvgF3ErCN&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBHy7DBwHLKX4asqp0Y03lJSnS2eTu8qO9K6DaGM9MToA&oe=6795EEAD",
              "resized_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474641781_603228819117230_9169440039289504631_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=104&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=Zx4ENAmJ6EgQ7kNvgFDzDTl&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBSSS1eG95yNwIqDS8n7iPb2FFqfTRsKrAUjMuZY6R1pQ&oe=6795DAC5",
              "title": "Affordable. Powerful. WebinarJam",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            },
            {
              "body": "Stop overpaying for a webinar software! WebinarJam is the most affordable solution, giving you the lowest cost per attendee without compromising on features. Host bigger webinars, reach a wider audience, and close more sales—all while keeping your costs under control.",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/474546307_28363121596669117_2399856978451242956_n.jpg?_nc_cat=108&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=VIjHqASeIZwQ7kNvgGDXQga&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBLclgQAb1-SuC443PhkhGO0oVpeap0dYAp4cBGIkbOxg&oe=6795F626",
              "resized_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474746364_2729335003935394_8066738091853543416_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=107&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=jP5-NbwInJ4Q7kNvgEL1GFg&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYD0ZYgn3FIyM1ah-FMvFbqUk0AmF1SMd3tyYV_mW2tsqQ&oe=6795DBC0",
              "title": "Affordable. Powerful. WebinarJam",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            }
          ],
          "country_iso_code": null,
          "creation_time": 1737484518,
          "cta_text": "Learn more",
          "cta_type": "LEARN_MORE",
          "current_page_name": "WebinarJam",
          "disclaimer_label": null,
          "display_format": "dco",
          "dynamic_item_flags": {},
          "dynamic_versions": null,
          "ec_certificates": null,
          "edited_snapshots": [],
          "effective_authorization_category": "NONE",
          "event": [],
          "extra_images": [],
          "extra_links": [],
          "extra_texts": [],
          "extra_videos": [],
          "images": [],
          "instagram_actor_name": "WebinarJam",
          "instagram_branded_content": null,
          "instagram_handle": "",
          "instagram_profile_pic_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474104488_903684101929046_5549592471984828605_n.jpg?_nc_cat=105&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=QTcX1rugQUMQ7kNvgGRnvYi&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYD0kf91nDcXf3n80j-STD7P7JHiu-RDQVPlpUucuCpy6Q&oe=6795E6F3",
          "instagram_shopping_products": [],
          "instagram_url": "",
          "is_reshared": false,
          "link_description": "{{product.description}}",
          "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
          "page_categories": {
            "2211": "Software"
          },
          "page_entity_type": "person_profile",
          "page_id": 546141992193058,
          "page_is_deleted": false,
          "page_is_profile_page": false,
          "page_like_count": 9686,
          "page_name": "WebinarJam",
          "page_profile_picture_url": "https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/474448017_962615609125949_8634087951751017154_n.jpg?stp=dst-jpg_s60x60_tt6&_nc_cat=101&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=GgUqno7jJcAQ7kNvgGDgxXC&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCv3YMlLZWveY4PF8JUH0sHCMmlrEMT4NgqQZHzOVFdTg&oe=6795DD91",
          "page_profile_uri": "https://facebook.com/WebinarJamOfficial",
          "page_welcome_message": null,
          "root_reshared_post": null,
          "title": "{{product.name}}",
          "version": 3,
          "videos": []
        },
        "spend": null,
        "startDate": 1737446400,
        "stateMediaRunLabel": null,
        "targetedOrReachedCountries": [],
        "totalActiveTime": 8579
      }
    ],
    [
      {
        "adArchiveID": "1758176821694683",
        "adid": "0",
        "archiveTypes": [],
        "categories": [
          0
        ],
        "collationCount": 1,
        "collationID": 1766847544158977,
        "containsDigitallyCreatedMedia": false,
        "containsSensitiveContent": false,
        "currency": "",
        "endDate": 1737446400,
        "entityType": "person_profile",
        "fevInfo": null,
        "finServAdData": {
          "is_deemed_finserv": false,
          "is_limited_delivery": false
        },
        "gatedType": "eligible",
        "hasUserReported": false,
        "hiddenSafetyData": false,
        "hideDataStatus": "NONE",
        "impressionsWithIndex": {
          "impressionsIndex": -1,
          "impressionsText": null
        },
        "isAAAEligible": false,
        "isActive": true,
        "isAdAccountActioned": false,
        "isProfilePage": false,
        "menuItems": [],
        "pageID": "546141992193058",
        "pageInfo": null,
        "pageIsDeleted": false,
        "pageName": "WebinarJam",
        "politicalCountries": [],
        "publisherPlatform": [
          "facebook",
          "instagram",
          "audience_network",
          "messenger"
        ],
        "reachEstimate": null,
        "regionalRegulationData": {
          "finserv": {
            "is_deemed_finserv": false,
            "is_limited_delivery": false
          },
          "tw_anti_scam": {
            "is_limited_delivery": false
          }
        },
        "reportCount": null,
        "snapshot": {
          "ad_creative_id": 1246741709757322,
          "additional_info": null,
          "body": {
            "callerHash": "1b73237f3c35d1c21cc1454501372314",
            "context": {},
            "markup": {
              "__html": "&#123;&#123;product.brand&#125;&#125;"
            }
          },
          "body_translations": {},
          "branded_content": null,
          "brazil_tax_id": null,
          "byline": null,
          "caption": "home.webinarjam.com",
          "cards": [
            {
              "body": "WebinarJam makes hosting webinars easy, affordable, and impactful! 🚀\n\n✅ Lowest cost per attendee. Save more while scaling.\n✅ Powerful engagement tools like live chat and polls.\n✅ Seamless setup, go live in minutes.\n\nTry WebinarJam today for only $1!",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474474206_1132337201938274_7557333683163935837_n.jpg?_nc_cat=110&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=9MSY_tj5jtwQ7kNvgGirstu&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYD0FSAgS69w_M_FvHU9zM4-Y9kaRhdulWprbdL2vHb8_w&oe=6795E0EB",
              "resized_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474433076_1128663239044366_6874985839490108883_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=105&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=aOiFbwXlxZMQ7kNvgGzF-NN&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYAVLYVJk1YmPe-hwzZPovrqL8vDBzGck6_W6SCWVo6rag&oe=6795F638",
              "title": "Discover the power of WebinarJam today",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            },
            {
              "body": "WebinarJam makes hosting webinars easy, affordable, and impactful! 🚀\n\n✅ Lowest cost per attendee. Save more while scaling.\n✅ Powerful engagement tools like live chat and polls.\n✅ Seamless setup, go live in minutes.\n\nTry WebinarJam today for only $1!",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474447197_574673872387226_2234276031166264954_n.jpg?_nc_cat=103&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=ljIkGb0Kh4YQ7kNvgGEdPpS&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBDX9fVpMnS6P_lWONwQAXdtzus5-b8v_yFQ58ZkhwGOA&oe=6795C511",
              "resized_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474444935_1340663326947960_3376831523205649310_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=102&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=fdlu3YZjl4sQ7kNvgEGo_F3&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYC5Kw0Oe62Bhm-DGBq3SBzMuNJSxfj2Sl_QDeMRG-7igw&oe=6795F533",
              "title": "Discover the power of WebinarJam today",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            },
            {
              "body": "WebinarJam makes hosting webinars easy, affordable, and impactful! 🚀\n\n✅ Lowest cost per attendee. Save more while scaling.\n✅ Powerful engagement tools like live chat and polls.\n✅ Seamless setup, go live in minutes.\n\nTry WebinarJam today for only $1!",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474690301_638562852080597_4098209573979475756_n.jpg?_nc_cat=109&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=MKIBoD9A4nIQ7kNvgGTOFr8&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYDCFraPkiU9B3dDw34op9nBjk7LK7g5TiKVf64zNzImgQ&oe=6795C70D",
              "resized_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474497101_642481571458772_1339382696137588347_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=103&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=lmxxIDOfbzYQ7kNvgF4D2cY&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBCr6qTaUVbG7hWsWDiKSHYl8wprdeZb5okayvc7dxMTA&oe=6795D411",
              "title": "Discover the power of WebinarJam today",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            }
          ],
          "country_iso_code": null,
          "creation_time": 1737484521,
          "cta_text": "Learn more",
          "cta_type": "LEARN_MORE",
          "current_page_name": "WebinarJam",
          "disclaimer_label": null,
          "display_format": "dco",
          "dynamic_item_flags": {},
          "dynamic_versions": null,
          "ec_certificates": null,
          "edited_snapshots": [],
          "effective_authorization_category": "NONE",
          "event": [],
          "extra_images": [],
          "extra_links": [],
          "extra_texts": [],
          "extra_videos": [],
          "images": [],
          "instagram_actor_name": "WebinarJam",
          "instagram_branded_content": null,
          "instagram_handle": "",
          "instagram_profile_pic_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474367828_1270584510878954_2904380974673328508_n.jpg?_nc_cat=106&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=fgwcBflXJywQ7kNvgFUcQTq&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYB94eiw3xp8XbqTheusmX2sGnBHd-UGxQgZDlyB0AXigw&oe=6795DE56",
          "instagram_shopping_products": [],
          "instagram_url": "",
          "is_reshared": false,
          "link_description": "{{product.description}}",
          "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
          "page_categories": {
            "2211": "Software"
          },
          "page_entity_type": "person_profile",
          "page_id": 546141992193058,
          "page_is_deleted": false,
          "page_is_profile_page": false,
          "page_like_count": 9686,
          "page_name": "WebinarJam",
          "page_profile_picture_url": "https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/474601210_1115061946610452_8561707622403266762_n.jpg?stp=dst-jpg_s60x60_tt6&_nc_cat=101&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=E45xestNqc0Q7kNvgFxe-sZ&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYAOnZsJ0bz-pP1k2Xsn9lFgIfk5vKyqwjbxWU3toN68pQ&oe=6795D782",
          "page_profile_uri": "https://facebook.com/WebinarJamOfficial",
          "page_welcome_message": null,
          "root_reshared_post": null,
          "title": "{{product.name}}",
          "version": 3,
          "videos": []
        },
        "spend": null,
        "startDate": 1737446400,
        "stateMediaRunLabel": null,
        "targetedOrReachedCountries": [],
        "totalActiveTime": 8489
      }
    ],
    [
      {
        "adArchiveID": "579783201876787",
        "adid": "0",
        "archiveTypes": [],
        "categories": [
          0
        ],
        "collationCount": 1,
        "collationID": "9432459333440367",
        "containsDigitallyCreatedMedia": false,
        "containsSensitiveContent": false,
        "currency": "",
        "endDate": 1737446400,
        "entityType": "person_profile",
        "fevInfo": null,
        "finServAdData": {
          "is_deemed_finserv": false,
          "is_limited_delivery": false
        },
        "gatedType": "eligible",
        "hasUserReported": false,
        "hiddenSafetyData": false,
        "hideDataStatus": "NONE",
        "impressionsWithIndex": {
          "impressionsIndex": -1,
          "impressionsText": null
        },
        "isAAAEligible": false,
        "isActive": true,
        "isAdAccountActioned": false,
        "isProfilePage": false,
        "menuItems": [],
        "pageID": "546141992193058",
        "pageInfo": null,
        "pageIsDeleted": false,
        "pageName": "WebinarJam",
        "politicalCountries": [],
        "publisherPlatform": [
          "facebook",
          "instagram",
          "audience_network",
          "messenger"
        ],
        "reachEstimate": null,
        "regionalRegulationData": {
          "finserv": {
            "is_deemed_finserv": false,
            "is_limited_delivery": false
          },
          "tw_anti_scam": {
            "is_limited_delivery": false
          }
        },
        "reportCount": null,
        "snapshot": {
          "ad_creative_id": 1447945689943382,
          "additional_info": null,
          "body": {
            "callerHash": "1b73237f3c35d1c21cc1454501372314",
            "context": {},
            "markup": {
              "__html": "&#123;&#123;product.brand&#125;&#125;"
            }
          },
          "body_translations": {},
          "branded_content": null,
          "brazil_tax_id": null,
          "byline": null,
          "caption": "home.webinarjam.com",
          "cards": [
            {
              "body": "Are you tired of overpaying for a webinar software? WebinarJam is designed to deliver the lowest cost per attendee while equipping you with all the tools you need to boost engagement and maximize sales.",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474463644_673163665034910_103794989764072563_n.jpg?_nc_cat=105&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=GJ8PGkCPZQAQ7kNvgG0pMa0&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYDsjjie0R2jJeYyprmyfg9_lfDl2ok2sFPQ-J5Nxzf5oA&oe=6795F901",
              "resized_image_url": "https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/474200269_624579870049071_4463671670868272168_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=101&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=gGdvlaIfu34Q7kNvgFGUkOV&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYDugoqI5LegXsVTmh5WYMo1pWjw2-4Vb0pttR-1RVuFRA&oe=6795E9CA",
              "title": "Host bigger webinars, reach a wider audience",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            },
            {
              "body": "Are you tired of overpaying for a webinar software? WebinarJam is designed to deliver the lowest cost per attendee while equipping you with all the tools you need to boost engagement and maximize sales.",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474661524_947470164166663_6384283875176088108_n.jpg?_nc_cat=111&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=RWg82xi36LIQ7kNvgF78r7p&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYAJ6xhVa2g7zgpUYRPzQbnSRSBR39nJjbodoQrAAk385A&oe=6795D671",
              "resized_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474379107_914194614027869_1966720494716649082_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=110&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=7xGw86uwoL4Q7kNvgEsmQUf&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYApbdApyKdNIfGZgZQKFlIkLinmqC_URmKqw2Nfngno5Q&oe=6795CF8A",
              "title": "Host bigger webinars, reach a wider audience",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            },
            {
              "body": "Are you tired of overpaying for a webinar software? WebinarJam is designed to deliver the lowest cost per attendee while equipping you with all the tools you need to boost engagement and maximize sales.",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474259488_963947481931724_5928176082364564371_n.jpg?_nc_cat=105&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=5xnQqcgaf-EQ7kNvgGTn-5A&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYA-uRVT_OcTDvhpA1arGUWMs0tJSesWyMTomLnXL643XQ&oe=6795DBB9",
              "resized_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474730214_879538480780189_7032158532390942443_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=111&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=nUNBqhuI7NYQ7kNvgEpiH1w&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCJVQs6AmyzXIP6j78pMx2SHRKwtxKhMC3hI_2VJRchjw&oe=6795E8AB",
              "title": "Host bigger webinars, reach a wider audience",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            }
          ],
          "country_iso_code": null,
          "creation_time": 1737484511,
          "cta_text": "Learn more",
          "cta_type": "LEARN_MORE",
          "current_page_name": "WebinarJam",
          "disclaimer_label": null,
          "display_format": "dco",
          "dynamic_item_flags": {},
          "dynamic_versions": null,
          "ec_certificates": null,
          "edited_snapshots": [],
          "effective_authorization_category": "NONE",
          "event": [],
          "extra_images": [],
          "extra_links": [],
          "extra_texts": [],
          "extra_videos": [],
          "images": [],
          "instagram_actor_name": "WebinarJam",
          "instagram_branded_content": null,
          "instagram_handle": "",
          "instagram_profile_pic_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/473790511_987587286550421_1446325257969035753_n.jpg?_nc_cat=103&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=oxm0F_1kSRcQ7kNvgFBmQaa&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYD0bE0DXYPDKMteKmT-_0yTR2apiRa8MEk8XnBhkmw-NQ&oe=6795DB96",
          "instagram_shopping_products": [],
          "instagram_url": "",
          "is_reshared": false,
          "link_description": "{{product.description}}",
          "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
          "page_categories": {
            "2211": "Software"
          },
          "page_entity_type": "person_profile",
          "page_id": 546141992193058,
          "page_is_deleted": false,
          "page_is_profile_page": false,
          "page_like_count": 9686,
          "page_name": "WebinarJam",
          "page_profile_picture_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474492470_642042351698025_7007349820314623190_n.jpg?stp=dst-jpg_s60x60_tt6&_nc_cat=102&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=I_BM55qZXMcQ7kNvgGIDteE&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCCKur9Mzy5zhPRYjvNZMddjzxgLQ3CL5YhiFTBsZrq8g&oe=6795D970",
          "page_profile_uri": "https://facebook.com/WebinarJamOfficial",
          "page_welcome_message": null,
          "root_reshared_post": null,
          "title": "{{product.name}}",
          "version": 3,
          "videos": []
        },
        "spend": null,
        "startDate": 1737446400,
        "stateMediaRunLabel": null,
        "targetedOrReachedCountries": [],
        "totalActiveTime": 8095
      }
    ],
    [
      {
        "adArchiveID": "976299714368318",
        "adid": "0",
        "archiveTypes": [],
        "categories": [
          0
        ],
        "collationCount": 1,
        "collationID": 1067951505020506,
        "containsDigitallyCreatedMedia": false,
        "containsSensitiveContent": false,
        "currency": "",
        "endDate": 1737446400,
        "entityType": "person_profile",
        "fevInfo": null,
        "finServAdData": {
          "is_deemed_finserv": false,
          "is_limited_delivery": false
        },
        "gatedType": "eligible",
        "hasUserReported": false,
        "hiddenSafetyData": false,
        "hideDataStatus": "NONE",
        "impressionsWithIndex": {
          "impressionsIndex": -1,
          "impressionsText": null
        },
        "isAAAEligible": false,
        "isActive": true,
        "isAdAccountActioned": false,
        "isProfilePage": false,
        "menuItems": [],
        "pageID": "546141992193058",
        "pageInfo": null,
        "pageIsDeleted": false,
        "pageName": "WebinarJam",
        "politicalCountries": [],
        "publisherPlatform": [
          "facebook",
          "instagram",
          "audience_network",
          "messenger"
        ],
        "reachEstimate": null,
        "regionalRegulationData": {
          "finserv": {
            "is_deemed_finserv": false,
            "is_limited_delivery": false
          },
          "tw_anti_scam": {
            "is_limited_delivery": false
          }
        },
        "reportCount": null,
        "snapshot": {
          "ad_creative_id": 526730856460110,
          "additional_info": null,
          "body": {
            "callerHash": "1b73237f3c35d1c21cc1454501372314",
            "context": {},
            "markup": {
              "__html": "&#123;&#123;product.brand&#125;&#125;"
            }
          },
          "body_translations": {},
          "branded_content": null,
          "brazil_tax_id": null,
          "byline": null,
          "caption": "home.webinarjam.com",
          "cards": [
            {
              "body": "Don’t overspend on webinars! WebinarJam combines low costs with high performance to grow your business.",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/473448087_1227246209058301_3328691561026993365_n.jpg?_nc_cat=101&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=lh8Gy4OG6JoQ7kNvgGl7XOm&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBbesb0lmH7slP7iQOwE75jdFASTuzZj0VvrXy-grDhTA&oe=6795CAC0",
              "resized_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/473813850_1275247410367016_777967646247536160_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=100&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=ih0bGuqnnDgQ7kNvgHQJJHX&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYB1-DrFMsSGpAB1QC5WgDaTmezkhRlbSLq3038a1TDjWg&oe=6795F867",
              "title": "Host more attendees, close more sales without the hefty price tag",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            },
            {
              "body": "Don’t overspend on webinars! WebinarJam combines low costs with high performance to grow your business.",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/473537061_594609569982307_3108143379049706367_n.jpg?_nc_cat=109&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=cok2769RTsYQ7kNvgEhOZCs&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYDZFDeYzT4mgH5vB7n0yShQVO05KhLY7LqaDrJ4ojpftA&oe=6795D828",
              "resized_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/473808170_2877701735740988_2175846421359951442_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=107&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=cOXD3AnTRFQQ7kNvgH35uYi&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYAyJZ4fCVtX5EiQr-TxNBiBjTykccAQiNbI-ehn68J4wA&oe=6795E4A3",
              "title": "Host more attendees, close more sales without the hefty price tag",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            },
            {
              "body": "Don’t overspend on webinars! WebinarJam combines low costs with high performance to grow your business.",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474709516_953343666367872_8822352036324985802_n.jpg?_nc_cat=106&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=QCW27papdf0Q7kNvgGMjX_z&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCMfWPa2z99F6nHhD2FHUwjjWgRwDJedR4JIGO1Jcznkw&oe=6795DD60",
              "resized_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474695089_946933800837376_2921621462684438995_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=109&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=HdNhJ0ZCUMEQ7kNvgEwGBv3&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYDeRuRDGOu9kJhiNkoyIgWITxty0LwWJ9mJkOPwCA8-iQ&oe=6795CC06",
              "title": "Host more attendees, close more sales without the hefty price tag",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            }
          ],
          "country_iso_code": null,
          "creation_time": 1737484819,
          "cta_text": "Learn more",
          "cta_type": "LEARN_MORE",
          "current_page_name": "WebinarJam",
          "disclaimer_label": null,
          "display_format": "dco",
          "dynamic_item_flags": {},
          "dynamic_versions": null,
          "ec_certificates": null,
          "edited_snapshots": [],
          "effective_authorization_category": "NONE",
          "event": [],
          "extra_images": [],
          "extra_links": [],
          "extra_texts": [],
          "extra_videos": [],
          "images": [],
          "instagram_actor_name": "WebinarJam",
          "instagram_branded_content": null,
          "instagram_handle": "",
          "instagram_profile_pic_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/473528498_2152610131824450_384177597151578314_n.jpg?_nc_cat=109&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=6Xt8s_6ngYkQ7kNvgG67Q-P&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBgdfnA8ZJN3bxf9coDMm8BNLbTgCz4tBtJ-nIzIDgeGQ&oe=6795D694",
          "instagram_shopping_products": [],
          "instagram_url": "",
          "is_reshared": false,
          "link_description": "{{product.description}}",
          "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
          "page_categories": {
            "2211": "Software"
          },
          "page_entity_type": "person_profile",
          "page_id": 546141992193058,
          "page_is_deleted": false,
          "page_is_profile_page": false,
          "page_like_count": 9686,
          "page_name": "WebinarJam",
          "page_profile_picture_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474080325_533941556330386_3482605721956522457_n.jpg?stp=dst-jpg_s60x60_tt6&_nc_cat=105&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=gDYYhKpRLcgQ7kNvgF_4n1K&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYD_GEESx9OTRzLMimojzWs1eMcTkRTfli7wXU-J_4wEZw&oe=6795EA0B",
          "page_profile_uri": "https://facebook.com/WebinarJamOfficial",
          "page_welcome_message": null,
          "root_reshared_post": null,
          "title": "{{product.name}}",
          "version": 3,
          "videos": []
        },
        "spend": null,
        "startDate": 1737446400,
        "stateMediaRunLabel": null,
        "targetedOrReachedCountries": [],
        "totalActiveTime": 7876
      }
    ],
    [
      {
        "adArchiveID": "576850165324978",
        "adid": "0",
        "archiveTypes": [],
        "categories": [
          0
        ],
        "collationCount": 1,
        "collationID": 964810445066787,
        "containsDigitallyCreatedMedia": false,
        "containsSensitiveContent": false,
        "currency": "",
        "endDate": 1737446400,
        "entityType": "person_profile",
        "fevInfo": null,
        "finServAdData": {
          "is_deemed_finserv": false,
          "is_limited_delivery": false
        },
        "gatedType": "eligible",
        "hasUserReported": false,
        "hiddenSafetyData": false,
        "hideDataStatus": "NONE",
        "impressionsWithIndex": {
          "impressionsIndex": -1,
          "impressionsText": null
        },
        "isAAAEligible": false,
        "isActive": true,
        "isAdAccountActioned": false,
        "isProfilePage": false,
        "menuItems": [],
        "pageID": "546141992193058",
        "pageInfo": null,
        "pageIsDeleted": false,
        "pageName": "WebinarJam",
        "politicalCountries": [],
        "publisherPlatform": [
          "facebook",
          "instagram",
          "audience_network",
          "messenger"
        ],
        "reachEstimate": null,
        "regionalRegulationData": {
          "finserv": {
            "is_deemed_finserv": false,
            "is_limited_delivery": false
          },
          "tw_anti_scam": {
            "is_limited_delivery": false
          }
        },
        "reportCount": null,
        "snapshot": {
          "ad_creative_id": 1731296321047423,
          "additional_info": null,
          "body": {
            "callerHash": "1b73237f3c35d1c21cc1454501372314",
            "context": {},
            "markup": {
              "__html": "&#123;&#123;product.brand&#125;&#125;"
            }
          },
          "body_translations": {},
          "branded_content": null,
          "brazil_tax_id": null,
          "byline": null,
          "caption": "home.webinarjam.com",
          "cards": [
            {
              "body": "WebinarJam makes hosting webinars easy, affordable, and impactful! 🚀\n\n✅ Lowest cost per attendee. Save more while scaling.\n✅ Powerful engagement tools like live chat and polls.\n✅ Seamless setup, go live in minutes.\n\nTry WebinarJam today for only $1!",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474670042_806486904970723_3689257541261779044_n.jpg?_nc_cat=103&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=uqq45wIbmR0Q7kNvgGojCmm&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYDKkqn75Ln2wNf6a1axo3bXQXnkbTTuMgKsFQ8zwwmN7A&oe=6795D538",
              "resized_image_url": "https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/474573878_965796335477501_8032311952390473033_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=101&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=jAZVsvM31iYQ7kNvgE4Xt8y&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYC_qT9SNbZ8IvOjyNkf9ho_4UVD_rMcYJN5JObboeBokA&oe=6795C7AD",
              "title": "Discover the power of WebinarJam today",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            },
            {
              "body": "WebinarJam makes hosting webinars easy, affordable, and impactful! 🚀\n\n✅ Lowest cost per attendee. Save more while scaling.\n✅ Powerful engagement tools like live chat and polls.\n✅ Seamless setup, go live in minutes.\n\nTry WebinarJam today for only $1!",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474610051_623364396890716_2633549012431553366_n.jpg?_nc_cat=107&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=CXa-AUM3NZEQ7kNvgGY5T07&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYD1g0tWrru9fSjWpmTsXziHCkJ-znxV352hkqDyDclOkQ&oe=6795E07C",
              "resized_image_url": "https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/474630334_1264239524833737_6056063069650996119_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=108&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=nyOsoSsYsKUQ7kNvgH_-we3&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYB4iEWdR1eX3YRhX_SedTtoQnZU_28bSkj436c60a00qQ&oe=6795CEC9",
              "title": "Discover the power of WebinarJam today",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            },
            {
              "body": "WebinarJam makes hosting webinars easy, affordable, and impactful! 🚀\n\n✅ Lowest cost per attendee. Save more while scaling.\n✅ Powerful engagement tools like live chat and polls.\n✅ Seamless setup, go live in minutes.\n\nTry WebinarJam today for only $1!",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474564554_635165525525821_2530415838762775951_n.jpg?_nc_cat=106&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=igNO8Kqq_aYQ7kNvgGDdFTz&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYAx9IBy0aMgmE8Zo-lALbBvNwRXfcNdLcZYiEzBPvzNZg&oe=6795D64D",
              "resized_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474469853_953535473372103_358803561893977763_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=102&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=RbOi4yoc7lYQ7kNvgEGVo6D&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYA2wKRYDxhcLkzNZ1U8paxHqFVVtGWq5EVwZB4KvdGimA&oe=6795E1B6",
              "title": "Discover the power of WebinarJam today",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            }
          ],
          "country_iso_code": null,
          "creation_time": 1737484365,
          "cta_text": "Learn more",
          "cta_type": "LEARN_MORE",
          "current_page_name": "WebinarJam",
          "disclaimer_label": null,
          "display_format": "dco",
          "dynamic_item_flags": {},
          "dynamic_versions": null,
          "ec_certificates": null,
          "edited_snapshots": [],
          "effective_authorization_category": "NONE",
          "event": [],
          "extra_images": [],
          "extra_links": [],
          "extra_texts": [],
          "extra_videos": [],
          "images": [],
          "instagram_actor_name": "WebinarJam",
          "instagram_branded_content": null,
          "instagram_handle": "",
          "instagram_profile_pic_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474377523_439387705809557_3631581727718847570_n.jpg?_nc_cat=106&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=LJJofvNNAyYQ7kNvgE5gPry&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCAM4Lw7ZvySu1HO62gE_2K_ngAnIgm51DfUhZhLEl5Hw&oe=6795E348",
          "instagram_shopping_products": [],
          "instagram_url": "",
          "is_reshared": false,
          "link_description": "{{product.description}}",
          "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
          "page_categories": {
            "2211": "Software"
          },
          "page_entity_type": "person_profile",
          "page_id": 546141992193058,
          "page_is_deleted": false,
          "page_is_profile_page": false,
          "page_like_count": 9686,
          "page_name": "WebinarJam",
          "page_profile_picture_url": "https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/474220161_1382431916073494_3172018676809675266_n.jpg?stp=dst-jpg_s60x60_tt6&_nc_cat=101&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=J20WJ7BEa3YQ7kNvgFRhsmT&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYDwFg464luyYU56hARlOSf0Mp0f9mwxTedmiCmPLLFSfQ&oe=6795D70F",
          "page_profile_uri": "https://facebook.com/WebinarJamOfficial",
          "page_welcome_message": null,
          "root_reshared_post": null,
          "title": "{{product.name}}",
          "version": 3,
          "videos": []
        },
        "spend": null,
        "startDate": 1737446400,
        "stateMediaRunLabel": null,
        "targetedOrReachedCountries": [],
        "totalActiveTime": 8590
      }
    ],
    [
      {
        "adArchiveID": "1796070101216882",
        "adid": "0",
        "archiveTypes": [],
        "categories": [
          0
        ],
        "collationCount": 1,
        "collationID": 584052621136363,
        "containsDigitallyCreatedMedia": false,
        "containsSensitiveContent": false,
        "currency": "",
        "endDate": 1737446400,
        "entityType": "person_profile",
        "fevInfo": null,
        "finServAdData": {
          "is_deemed_finserv": false,
          "is_limited_delivery": false
        },
        "gatedType": "eligible",
        "hasUserReported": false,
        "hiddenSafetyData": false,
        "hideDataStatus": "NONE",
        "impressionsWithIndex": {
          "impressionsIndex": -1,
          "impressionsText": null
        },
        "isAAAEligible": false,
        "isActive": true,
        "isAdAccountActioned": false,
        "isProfilePage": false,
        "menuItems": [],
        "pageID": "546141992193058",
        "pageInfo": null,
        "pageIsDeleted": false,
        "pageName": "WebinarJam",
        "politicalCountries": [],
        "publisherPlatform": [
          "facebook",
          "instagram",
          "audience_network",
          "messenger"
        ],
        "reachEstimate": null,
        "regionalRegulationData": {
          "finserv": {
            "is_deemed_finserv": false,
            "is_limited_delivery": false
          },
          "tw_anti_scam": {
            "is_limited_delivery": false
          }
        },
        "reportCount": null,
        "snapshot": {
          "ad_creative_id": 961035655494205,
          "additional_info": null,
          "body": {
            "callerHash": "1b73237f3c35d1c21cc1454501372314",
            "context": {},
            "markup": {
              "__html": "&#123;&#123;product.brand&#125;&#125;"
            }
          },
          "body_translations": {},
          "branded_content": null,
          "brazil_tax_id": null,
          "byline": null,
          "caption": "home.webinarjam.com",
          "cards": [
            {
              "body": "Don’t overspend on webinars! WebinarJam combines low costs with high performance to grow your business.",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474168362_495939946863356_6715125440856930118_n.jpg?_nc_cat=107&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=yHPh4veyPl8Q7kNvgED72HX&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYCDoSI6yi1s8Oust9j2NmHdSxX6TXjzRQiEc7c_ueB7NQ&oe=6795EE79",
              "resized_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474526415_1646708755933044_6254642647147959994_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=100&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=lZ0Nlrr2EaYQ7kNvgFe97hb&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBXfsyZBUSZE_zUeghEVJ8GbkvKVOp5kUjfOK6slALS4Q&oe=6795F3FC",
              "title": "Host more attendees, close more sales without the hefty price tag",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            },
            {
              "body": "Don’t overspend on webinars! WebinarJam combines low costs with high performance to grow your business.",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474081091_956365506420787_401432663002931931_n.jpg?_nc_cat=110&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=51RL3uiBcaAQ7kNvgEKbt9G&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYDi-IK4ywPanc_8f5hzlHd9JrEhnfcalc2xchz42L_1jg&oe=6795C374",
              "resized_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474475005_1644820142783019_2593183628864839384_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=103&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=4rnUBt-Yf2IQ7kNvgGU065F&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYB3OCbI7Roy6HMZtjrQR_pJK0lcopmpnrliwiIrDh_RNQ&oe=6795DCB9",
              "title": "Host more attendees, close more sales without the hefty price tag",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            },
            {
              "body": "Don’t overspend on webinars! WebinarJam combines low costs with high performance to grow your business.",
              "caption": null,
              "cta_text": "Learn More",
              "cta_type": "LEARN_MORE",
              "image_crops": null,
              "link_description": null,
              "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
              "original_image_url": "https://scontent-ord5-1.xx.fbcdn.net/v/t39.35426-6/474562192_1279051666662875_7660779475941758106_n.jpg?_nc_cat=101&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=GOeiEZ_72E4Q7kNvgH-OrOX&_nc_zt=14&_nc_ht=scontent-ord5-1.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBRPEwZuFr8qkT4tyWlGHMNQEwRl3_pdQDhft_7ImBGSA&oe=6795DFAB",
              "resized_image_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474438160_3807969282812535_3404643337214227731_n.jpg?stp=dst-jpg_s600x600_tt6&_nc_cat=104&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=Ux50DPg-hhAQ7kNvgE_j4Zw&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYBYPIvE9qMNBT6qFWJAJeITgDx6ibCyozKVtWvSYFbxnw&oe=6795C3B9",
              "title": "Host more attendees, close more sales without the hefty price tag",
              "video_hd_url": null,
              "video_preview_image_url": null,
              "video_sd_url": null,
              "watermarked_resized_image_url": "",
              "watermarked_video_hd_url": null,
              "watermarked_video_sd_url": null
            }
          ],
          "country_iso_code": null,
          "creation_time": 1737484668,
          "cta_text": "Learn more",
          "cta_type": "LEARN_MORE",
          "current_page_name": "WebinarJam",
          "disclaimer_label": null,
          "display_format": "dco",
          "dynamic_item_flags": {},
          "dynamic_versions": null,
          "ec_certificates": null,
          "edited_snapshots": [],
          "effective_authorization_category": "NONE",
          "event": [],
          "extra_images": [],
          "extra_links": [],
          "extra_texts": [],
          "extra_videos": [],
          "images": [],
          "instagram_actor_name": "WebinarJam",
          "instagram_branded_content": null,
          "instagram_handle": "",
          "instagram_profile_pic_url": "https://scontent-ord5-3.xx.fbcdn.net/v/t39.35426-6/474217954_1087121206786885_957350998489867886_n.jpg?_nc_cat=106&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=OA9sr7vFsOkQ7kNvgHbzbIn&_nc_zt=14&_nc_ht=scontent-ord5-3.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYAl8nRj7oMms3pwZNXPmDRJytFkPVUIHt_rxHNzJDpOkA&oe=6795E419",
          "instagram_shopping_products": [],
          "instagram_url": "",
          "is_reshared": false,
          "link_description": "{{product.description}}",
          "link_url": "https://home.webinarjam.com/ultimate-platform/?utm_source=Facebook&utm_medium=paid-social&utm_campaign={{campaign.name}}&utm_content={{adset.name}}",
          "page_categories": {
            "2211": "Software"
          },
          "page_entity_type": "person_profile",
          "page_id": 546141992193058,
          "page_is_deleted": false,
          "page_is_profile_page": false,
          "page_like_count": 9686,
          "page_name": "WebinarJam",
          "page_profile_picture_url": "https://scontent-ord5-2.xx.fbcdn.net/v/t39.35426-6/474553792_1606954749954942_460580635452862354_n.jpg?stp=dst-jpg_s60x60_tt6&_nc_cat=105&ccb=1-7&_nc_sid=c53f8f&_nc_ohc=zIqfGdUfVWEQ7kNvgF-UEDz&_nc_zt=14&_nc_ht=scontent-ord5-2.xx&_nc_gid=AAe60fYPRqBmTxU84lZYUvD&oh=00_AYDQaZaUmpIoxc3Jsxrjplf0lNgwKa8iDCp6-m7SktizEg&oe=6795F0E7",
          "page_profile_uri": "https://facebook.com/WebinarJamOfficial",
          "page_welcome_message": null,
          "root_reshared_post": null,
          "title": "{{product.name}}",
          "version": 3,
          "videos": []
        },
        "spend": null,
        "startDate": 1737446400,
        "stateMediaRunLabel": null,
        "targetedOrReachedCountries": [],
        "totalActiveTime": 8043
      }
    ]
  ],
  "search_type": "keyword_unordered",
  "start_max_date": null,
  "start_min_date": null
}
```


# LinkedIn

{% hint style="success" %}
You first need to create an account, you can sign up [here](https://app.adyntel.com/signup) to receive 50 credits to test it out.
{% endhint %}

The LinkedIn endpoint allows you find all LinkedIn ads for a given company.

It takes a company domain as input.

{% hint style="warning" %}
Company domain has to be passed in the 'company.com' format, meaning all prefixes like 'https\://' or '[www](http://www).' need to be removed.
{% endhint %}

##

## API endpoint

<mark style="color:green;">`POST`</mark> `api.adyntel.com/linkedin`

*See which LinkedIn ads a company is running by providing their website as input.*

### Headers <a href="#headers" id="headers"></a>

<table><thead><tr><th>Name</th><th>Value</th><th data-type="checkbox">Required</th></tr></thead><tbody><tr><td>Content-Type</td><td><code>application/json</code></td><td>true</td></tr></tbody></table>

### &#x20;<a href="#undefined" id="undefined"></a>

### Body <a href="#body" id="body"></a>

<table><thead><tr><th width="166">Name</th><th width="97">Type</th><th width="353">Description</th><th data-type="checkbox">Required</th></tr></thead><tbody><tr><td><code>api_key</code></td><td>string</td><td>Adyntel API key</td><td>true</td></tr><tr><td><code>email</code></td><td>string</td><td>Adyntel account email</td><td>true</td></tr><tr><td><code>company_domain</code></td><td>string</td><td>Company website</td><td>false</td></tr><tr><td><code>linkedin_page_id</code></td><td>number</td><td>LinkedIn Page ID</td><td>false</td></tr><tr><td><code>all_ads</code></td><td>boolean</td><td>This will automatically use the <code>continuation_token</code> and scrape all the pages, returning all available ads.<br><br>Works only with a <code>webhook_url</code> as it needs a place to send each page, one by one. <br><br><em><mark style="color:$danger;"><strong>Warning</strong></mark>: use this cautiously because there is no way of stopping it. If you use this on a domain that runs 10000 ads, it will try to scrape all the ads and it will use the credits (one page = one credit)</em> </td><td>false</td></tr><tr><td><code>date_filter</code></td><td>string or object</td><td>Filters returned ads by the date they ran in LinkedIn's Ad Library. Accepts a preset string — last30d, month, year, lastyear — or a custom range {"startdate": "YYYY-MM-DD", "enddate": "YYYY-MM-DD"}.<br><br><em>Do not use today's date as the enddate as Linkedin would return 0 ads, always use yesterday's date. Also the difference between startdate and enddate can't be more than 364 days as Linkedin would return 0 ads again.</em> </td><td>false</td></tr></tbody></table>

### Example request

Request using company domain

```
{
    "api_key": "hd-nndgi7gy6b3kdsgd-a",
    "email": "elon@tesla.com",
    "company_domain": "clay.com"
}
```

Request using linkedin\_page\_id

```
{
    "api_key": "hd-nndgi7gy6b3kdsgd-a",
    "email": "elon@tesla.com",
    "linkedin_page_id": "15564"
}
```

You can read more [here](/integrations/extracting-linkedin-page-id) about how to find the LinkedIn page id via Clay.

### Example response

```
{
    "page_id": "13018048",
    "continuation_token": "1362084046-1772576023482",
    "is_last_page": false,
    "total_ads": 834,
    "ads": [
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362645846",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "Most GTM stacks weren\u2019t built for Europe, where regional coverage gaps, multi-language campaigns, and country-specific p\u2026",
                "link": null
            },
            "image": {
                "alt_text": "See how Clay is scaling in Europe",
                "url": "https://media.licdn.com/dms/image/v2/D5610AQFqBxlQ__-v4w/image-shrink_1280/B56ZzALtcLIAAc-/0/1772750821490/Clay-Europe-Launch_Ad-2Apng?e=2147483647&v=beta&t=Wn0AjU75BoO0McSSgPRv_znMu6_L2Xyz8LV17H21XDQ"
            },
            "carousel": null,
            "headline": {
                "title": "See how Clay is scaling in Europe",
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362645846?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362636036",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "European GTM requires regional data infrastructure.\n\nClay now supports teams in Europe with:\n- Waterfall enrichment opti\u2026",
                "link": null
            },
            "image": {
                "alt_text": "See how Clay is scaling in Europe",
                "url": "https://media.licdn.com/dms/image/v2/D5610AQHH2id3C3d-rw/image-shrink_1280/B56ZzAK_llHUAc-/0/1772750633736/Clay-Europe-Launch_Ad-1Apng?e=2147483647&v=beta&t=WkLK90bW5nY-OB-DOde8uRLiW7gw20n_jm1h4yLaWc8"
            },
            "carousel": null,
            "headline": {
                "title": "See how Clay is scaling in Europe",
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362636036?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362692676",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "Clay in Europe: See how Legora uses Clay to find hard to source buying signals and turn ambitious GTM ideas into scalabl\u2026",
                "link": null
            },
            "image": {
                "alt_text": "Book a demo now",
                "url": "https://media.licdn.com/dms/image/v2/D5610AQGBKgiEbnfHJA/image-shrink_1280/B56ZzAZqr6JQAc-/0/1772754480278/legora_demojpg?e=2147483647&v=beta&t=c6WVy3npCIj-aAJ4qnkpHlGeV5fVGHvol0InaBd9pTk"
            },
            "carousel": null,
            "headline": {
                "title": "Book a demo now",
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362692676?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362722516",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "European GTM requires regional data infrastructure.\n\nClay now supports teams in Europe with:\n- Waterfall enrichment opti\u2026",
                "link": null
            },
            "image": {
                "alt_text": "See how Clay is scaling in Europe",
                "url": "https://media.licdn.com/dms/image/v2/D5610AQHH2id3C3d-rw/image-shrink_1280/B56ZzAK_llHUAc-/0/1772750633736/Clay-Europe-Launch_Ad-1Apng?e=2147483647&v=beta&t=WkLK90bW5nY-OB-DOde8uRLiW7gw20n_jm1h4yLaWc8"
            },
            "carousel": null,
            "headline": {
                "title": "See how Clay is scaling in Europe",
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362722516?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362791966",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "Most GTM stacks weren\u2019t built for Europe, where regional coverage gaps, multi-language campaigns, and country-specific p\u2026",
                "link": null
            },
            "image": {
                "alt_text": "See how Clay is scaling in Europe",
                "url": "https://media.licdn.com/dms/image/v2/D5610AQFqBxlQ__-v4w/image-shrink_1280/B56ZzALtcLIAAc-/0/1772750821490/Clay-Europe-Launch_Ad-2Apng?e=2147483647&v=beta&t=Wn0AjU75BoO0McSSgPRv_znMu6_L2Xyz8LV17H21XDQ"
            },
            "carousel": null,
            "headline": {
                "title": "See how Clay is scaling in Europe",
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362791966?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362734276",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "With thousands of customers and dozens of Clay Clubs already in Europe, we're buzzing to open our brand new London offic\u2026",
                "link": "https://www.linkedin.com/company/grow-with-clay"
            },
            "image": {
                "alt_text": "",
                "url": "https://media.licdn.com/dms/image/v2/D4E10AQFstODodOUsUw/image-shrink_1280/B4EZy4AfKCHgAg-/0/1772613662089?e=2147483647&v=beta&t=qgfWB2a9IUT7UDr-7kE0yfjoGEEt_NrO7tLXwtyP50o"
            },
            "carousel": null,
            "headline": {
                "title": null,
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362734276?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362665306",
            "type": "carousel",
            "advertiser": {
                "name": "Bruno Estrella\n        \n      \n\nHead of Marketing @ Clay | ex-Webflow\nPromoted by Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/C4E03AQHTCkglpf6XMw/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1617764992248?e=1775088000&v=beta&t=Bsm7ppI0fMqE-HfDEOqsoCnmKJgU_q9Z8m1APIxlzmw",
                "promoted": false
            },
            "commentary": {
                "text": "I\u2019m hiring! We just opened a very special role in our marketing team at Clay. We\u2019re looking for a Founding Marketer to l\u2026",
                "link": "https://www.linkedin.com/company/grow-with-clay"
            },
            "image": null,
            "carousel": null,
            "headline": {
                "title": null,
                "description": "Head of Marketing @ Clay | ex-Webflow"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362665306",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362084046",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "Inbound leads are coming in, but routing is delayed, enrichment is manual, and reps are working incomplete data.\n\nWhat i\u2026",
                "link": null
            },
            "image": {
                "alt_text": "Join us on March 12th for a live workshop on supercharging lead conversion in Clay",
                "url": "https://media.licdn.com/dms/image/v2/D5610AQE-2wh76m5qtA/image-shrink_1280/B56Zy29VopKcAc-/0/1772596059154/MetaEp41x1copy1png?e=2147483647&v=beta&t=TG15Iarwe02uPAPH3YQiCOdBtKZS0QkJIiYW6f0823k"
            },
            "carousel": null,
            "headline": {
                "title": "Join us on March 12th for a live workshop on supercharging lead conversion in Clay",
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362084046?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362821216",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "Clay in Europe: See how Sana unified fragmented enrichment, rebuilt trust in their CRM, and scaled smarter GTM workflows\u2026",
                "link": null
            },
            "image": {
                "alt_text": "Read the full case study with Sana",
                "url": "https://media.licdn.com/dms/image/v2/D5610AQGG383KkGBrBA/image-shrink_1280/B56ZzATV7_KEAc-/0/1772752822449/sana_csjpg?e=2147483647&v=beta&t=DNw7tKaQS5QsgQe7JlJsAPGm9IBeLMLFFuxZ3LFnMus"
            },
            "carousel": null,
            "headline": {
                "title": "Read the full case study with Sana",
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362821216?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362762206",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "Clay in Europe: Mistral AI used Clay to map 25,000+ global enterprise accounts in just 2 weeks, unify 10+ data providers\u2026",
                "link": null
            },
            "image": {
                "alt_text": "Read the full case study with Mistral AI",
                "url": "https://media.licdn.com/dms/image/v2/D5610AQFkVixZO6-dSw/image-shrink_1280/B56ZzAS99xJ8Ac-/0/1772752724233/mistral_csjpg?e=2147483647&v=beta&t=0L1JiVmJNGjwELbfsT79tspqNlhDZpY5CsVeCjJmPWs"
            },
            "carousel": null,
            "headline": {
                "title": "Read the full case study with Mistral AI",
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362762206?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362563266",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "Pipeline in Europe isn\u2019t built the same way anymore.\n\nJoin Clay and NewEdge Growth on Thursday, March 12th for a tactica\u2026",
                "link": null
            },
            "image": {
                "alt_text": "Join us on Thursday, 3/12 for a tactical session on driving pipeline in Europe",
                "url": "https://media.licdn.com/dms/image/v2/D5610AQGy8z3rn-y5vA/image-shrink_1280/B56ZyxslyKKAAc-/0/1772507782943/GTMstrategiesthatactuallyworkineuropewithNewEdge16x9png?e=2147483647&v=beta&t=xivvUcL_WmVTzIn8wrhbOJObn16Nu3-Cux6Hh9kUr54"
            },
            "carousel": null,
            "headline": {
                "title": "Join us on Thursday, 3/12 for a tactical session on driving pipeline in Europe",
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362563266?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362742506",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "Clay in Europe: See how Terrapinn uses Clay to build targeted prospect lists, identify the right sponsors and speakers, \u2026",
                "link": null
            },
            "image": {
                "alt_text": "Book a demo now",
                "url": "https://media.licdn.com/dms/image/v2/D5610AQHqdpeYoCR63g/image-shrink_1280/B56ZzAZYbVG4Ac-/0/1772754405548/terrapin_demojpg?e=2147483647&v=beta&t=RKApco5_MjDDrHllYidacqeRbMIlmpvhbzw-GrII16I"
            },
            "carousel": null,
            "headline": {
                "title": "Book a demo now",
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362742506?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362646176",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "Clay in Europe: See how Sana unified fragmented enrichment, rebuilt trust in their CRM, and scaled smarter GTM workflows\u2026",
                "link": null
            },
            "image": {
                "alt_text": "Book a demo now",
                "url": "https://media.licdn.com/dms/image/v2/D5610AQF7-ItCJMx45A/image-shrink_1280/B56ZzAZ46SIYAc-/0/1772754538532/sana_demojpg?e=2147483647&v=beta&t=T2LRMsSSdSEB0Xi0xOVD4d9Czykq8JAFzF3XYixXIP4"
            },
            "carousel": null,
            "headline": {
                "title": "Book a demo now",
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362646176?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362842726",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "Feel like you're flying blind with UK/EU data? SMARTe has seen a 542% uplift on Clay since launching in June and waterfa\u2026",
                "link": "https://www.linkedin.com/company/smarte-pro"
            },
            "image": {
                "alt_text": "",
                "url": "https://media.licdn.com/dms/image/v2/D4E22AQHEogHV2m0vWg/feedshare-shrink_1280/B4EZqiN21HKsAw-/0/1763658134650?e=2147483647&v=beta&t=-z4MxXuDN9aiipz2WaMO8S6nzQYzXHaKGJNKFBJo75c"
            },
            "carousel": null,
            "headline": {
                "title": null,
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362842726?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362840866",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "Clay in Europe: See how Legora uses Clay to find hard to source buying signals and turn ambitious GTM ideas into scalabl\u2026",
                "link": null
            },
            "image": {
                "alt_text": "Read the full case study with Legora",
                "url": "https://media.licdn.com/dms/image/v2/D5610AQHJeKZLXKjVjA/image-shrink_1280/B56ZzATk9IHAAc-/0/1772752883925/legora_csjpg?e=2147483647&v=beta&t=ELiGzpkeD6DW3_QalbuXNpLKIfNSU94n4TTDhywLeKQ"
            },
            "carousel": null,
            "headline": {
                "title": "Read the full case study with Legora",
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362840866?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362673206",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "Clay in Europe: See how Sana unified fragmented enrichment, rebuilt trust in their CRM, and scaled smarter GTM workflows\u2026",
                "link": null
            },
            "image": {
                "alt_text": "Read the full case study with Sana",
                "url": "https://media.licdn.com/dms/image/v2/D5610AQGG383KkGBrBA/image-shrink_1280/B56ZzATV7_KEAc-/0/1772752822449/sana_csjpg?e=2147483647&v=beta&t=DNw7tKaQS5QsgQe7JlJsAPGm9IBeLMLFFuxZ3LFnMus"
            },
            "carousel": null,
            "headline": {
                "title": "Read the full case study with Sana",
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362673206?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362112826",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "Inbound leads are coming in, but routing is delayed, enrichment is manual, and reps are working incomplete data.\n\nWhat i\u2026",
                "link": null
            },
            "image": {
                "alt_text": "Join us on March 12th for a live workshop on supercharging lead conversion in Clay",
                "url": "https://media.licdn.com/dms/image/v2/D5610AQGMxn713LBAtw/image-shrink_1280/B56ZzYzU1fKsAc-/0/1773163859823/UPDATEDHCUCep4png?e=2147483647&v=beta&t=2tKU9SasP_Bg9lL3agIc7PHf1VF44_cE3CMWnfhrmFg"
            },
            "carousel": null,
            "headline": {
                "title": "Join us on March 12th for a live workshop on supercharging lead conversion in Clay",
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362112826?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362742436",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "Clay in Europe: See how Terrapinn uses Clay to build targeted prospect lists, identify the right sponsors and speakers, \u2026",
                "link": null
            },
            "image": {
                "alt_text": "Read the full case study with Terrapinn",
                "url": "https://media.licdn.com/dms/image/v2/D5610AQHJJyB9VXqDfQ/image-shrink_1280/B56ZzATxSUIIAc-/0/1772752934436/terrapin_csjpg?e=2147483647&v=beta&t=poTnCrYT7_nBBAGaUewTHXAxgfym8oog73DlvFjKApM"
            },
            "carousel": null,
            "headline": {
                "title": "Read the full case study with Terrapinn",
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362742436?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362803716",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "Introducing our European GTM Livestream Series \ud83c\udf99\ufe0f\n\nOver the next few weeks, we're teaming up with NewEdge Growth, The K\u2026",
                "link": null
            },
            "image": {
                "alt_text": "",
                "url": "https://media.licdn.com/dms/image/v2/D4E10AQFmAOCLPeVWRg/image-shrink_1280/B4EZyaeKb3JcAc-/0/1772118125203?e=2147483647&v=beta&t=QORV7915A50UuCj5GFdUnxiigs-ZvTlIMTWjTq-Uf5s"
            },
            "carousel": null,
            "headline": {
                "title": null,
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362803716?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362636346",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "Clay in Europe: Mistral AI used Clay to map 25,000+ global enterprise accounts in just 2 weeks, unify 10+ data providers\u2026",
                "link": null
            },
            "image": {
                "alt_text": "Book a demo now",
                "url": "https://media.licdn.com/dms/image/v2/D5610AQERaADm3vzgtA/image-shrink_1280/B56ZzAY5M3IoAc-/0/1772754277604/mistral_demojpg?e=2147483647&v=beta&t=kVtOVyPHF_RLYKRJRH0nYLqhPI-9IhvQD6e_Ivr4dn0"
            },
            "carousel": null,
            "headline": {
                "title": "Book a demo now",
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362636346?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362674976",
            "type": "image",
            "advertiser": {
                "name": "Varun Anand\n        \n      \n\nCo-Founder @ Clay\nPromoted by Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D5603AQFCs4pv_r3nWA/profile-displayphoto-shrink_100_100/B56ZSTV50bGsAY-/0/1737638780851?e=1775088000&v=beta&t=xR9iXz4Bi-5_bvl7ikeeS00NSggdXt97tU-pCkgdCLY",
                "promoted": false
            },
            "commentary": {
                "text": "Today, Clay is opening our first international office -- in London!\n\nAfter spending nearly a month in Europe this past w\u2026",
                "link": "https://www.linkedin.com/company/grow-with-clay"
            },
            "image": {
                "alt_text": "",
                "url": "https://media.licdn.com/dms/image/v2/D4E10AQGYA7b6zBvuCg/image-shrink_1280/B4EZy4AtzIIMAc-/0/1772613722159?e=2147483647&v=beta&t=oIjIpfxxycteEFeEtc6wnWGVN454Cd4VvNStjCGIiZU"
            },
            "carousel": null,
            "headline": {
                "title": null,
                "description": "Co-Founder @ Clay"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362674976?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362801946",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "Clay in Europe: Mistral AI used Clay to map 25,000+ global enterprise accounts in just 2 weeks, unify 10+ data providers\u2026",
                "link": null
            },
            "image": {
                "alt_text": "Read the full case study with Mistral AI",
                "url": "https://media.licdn.com/dms/image/v2/D5610AQFkVixZO6-dSw/image-shrink_1280/B56ZzAS99xJ8Ac-/0/1772752724233/mistral_csjpg?e=2147483647&v=beta&t=0L1JiVmJNGjwELbfsT79tspqNlhDZpY5CsVeCjJmPWs"
            },
            "carousel": null,
            "headline": {
                "title": "Read the full case study with Mistral AI",
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362801946?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362692626",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "Clay in Europe: See how Terrapinn uses Clay to build targeted prospect lists, identify the right sponsors and speakers, \u2026",
                "link": null
            },
            "image": {
                "alt_text": "Read the full case study with Terrapinn",
                "url": "https://media.licdn.com/dms/image/v2/D5610AQHJJyB9VXqDfQ/image-shrink_1280/B56ZzATxSUIIAc-/0/1772752934436/terrapin_csjpg?e=2147483647&v=beta&t=poTnCrYT7_nBBAGaUewTHXAxgfym8oog73DlvFjKApM"
            },
            "carousel": null,
            "headline": {
                "title": "Read the full case study with Terrapinn",
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362692626?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362654316",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "Clay in Europe: See how Legora uses Clay to find hard to source buying signals and turn ambitious GTM ideas into scalabl\u2026",
                "link": null
            },
            "image": {
                "alt_text": "Read the full case study with Legora",
                "url": "https://media.licdn.com/dms/image/v2/D5610AQHJeKZLXKjVjA/image-shrink_1280/B56ZzATk9IHAAc-/0/1772752883925/legora_csjpg?e=2147483647&v=beta&t=ELiGzpkeD6DW3_QalbuXNpLKIfNSU94n4TTDhywLeKQ"
            },
            "carousel": null,
            "headline": {
                "title": "Read the full case study with Legora",
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362654316?trk=ad_library_ad_preview_content_image",
            "raw": null
        }
    ]
}
```


# LinkedIn keyword search

{% hint style="success" %}
You first need to create an account, you can sign up [here](https://app.adyntel.com/signup) to receive 50 credits to test it out.
{% endhint %}

The LinkedIn endpoint allows you find all LinkedIn ads for a given company.

It takes a company domain as input.

{% hint style="warning" %}
Company domain has to be passed in the 'company.com' format, meaning all prefixes like 'https\://' or '[www](http://www).' need to be removed.
{% endhint %}

##

## API endpoint

<mark style="color:green;">`POST`</mark> `api.adyntel.com/linkedin-keyword-search`

*This endpoint runs a search in the LinkedIn Ad Library with the keyword and, optionally, the filters you provide. The response contains the ads on the first page of that search page.*

### Headers <a href="#headers" id="headers"></a>

<table><thead><tr><th>Name</th><th>Value</th><th data-type="checkbox">Required</th></tr></thead><tbody><tr><td>Content-Type</td><td><code>application/json</code></td><td>true</td></tr></tbody></table>

### &#x20;<a href="#undefined" id="undefined"></a>

### Body <a href="#body" id="body"></a>

<table><thead><tr><th width="184">Name</th><th width="97">Type</th><th width="353">Description</th><th data-type="checkbox">Required</th></tr></thead><tbody><tr><td><code>api_key</code></td><td>string</td><td>Adyntel API key</td><td>true</td></tr><tr><td><code>email</code></td><td>string</td><td>Adyntel account email</td><td>true</td></tr><tr><td><code>keyword</code></td><td>string</td><td>Company website</td><td>true</td></tr><tr><td><code>country</code></td><td>string</td><td>The 2-digit country code</td><td>false</td></tr><tr><td><code>dateOption</code></td><td>string</td><td>Valid options: current-month, current-year, custom-date-range, last-30-days, last-year or custom-date-range</td><td>false</td></tr><tr><td><code>startDate</code></td><td>string</td><td>YYYY-MM-DD format (e.g. 2026-01-15)</td><td>false</td></tr><tr><td><code>endDate</code></td><td>string</td><td>YYYY-MM-DD format (e.g. 2026-01-15)</td><td>false</td></tr><tr><td><code>continuation_token</code></td><td>string</td><td>A token that you can use to scrape the next page</td><td>false</td></tr></tbody></table>

### Example request

Request using company domain

```
{
    "api_key": "hd-nndgi7gy6b3kdsgd-a",
    "email": "elon@tesla.com",
    "company_domain": "clay.com"
}
```

Request using linkedin\_page\_id

```
{
    "api_key": "hd-nndgi7gy6b3kdsgd-a",
    "email": "elon@tesla.com",
    "linkedin_page_id": "15564"
}
```

You can read more [here](/integrations/extracting-linkedin-page-id) about how to find the LinkedIn page id via Clay.

### Example response

```
{
    "page_id": "13018048",
    "continuation_token": "1362084046-1772576023482",
    "is_last_page": false,
    "total_ads": 834,
    "ads": [
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362645846",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "Most GTM stacks weren\u2019t built for Europe, where regional coverage gaps, multi-language campaigns, and country-specific p\u2026",
                "link": null
            },
            "image": {
                "alt_text": "See how Clay is scaling in Europe",
                "url": "https://media.licdn.com/dms/image/v2/D5610AQFqBxlQ__-v4w/image-shrink_1280/B56ZzALtcLIAAc-/0/1772750821490/Clay-Europe-Launch_Ad-2Apng?e=2147483647&v=beta&t=Wn0AjU75BoO0McSSgPRv_znMu6_L2Xyz8LV17H21XDQ"
            },
            "carousel": null,
            "headline": {
                "title": "See how Clay is scaling in Europe",
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362645846?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362636036",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "European GTM requires regional data infrastructure.\n\nClay now supports teams in Europe with:\n- Waterfall enrichment opti\u2026",
                "link": null
            },
            "image": {
                "alt_text": "See how Clay is scaling in Europe",
                "url": "https://media.licdn.com/dms/image/v2/D5610AQHH2id3C3d-rw/image-shrink_1280/B56ZzAK_llHUAc-/0/1772750633736/Clay-Europe-Launch_Ad-1Apng?e=2147483647&v=beta&t=WkLK90bW5nY-OB-DOde8uRLiW7gw20n_jm1h4yLaWc8"
            },
            "carousel": null,
            "headline": {
                "title": "See how Clay is scaling in Europe",
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362636036?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362692676",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "Clay in Europe: See how Legora uses Clay to find hard to source buying signals and turn ambitious GTM ideas into scalabl\u2026",
                "link": null
            },
            "image": {
                "alt_text": "Book a demo now",
                "url": "https://media.licdn.com/dms/image/v2/D5610AQGBKgiEbnfHJA/image-shrink_1280/B56ZzAZqr6JQAc-/0/1772754480278/legora_demojpg?e=2147483647&v=beta&t=c6WVy3npCIj-aAJ4qnkpHlGeV5fVGHvol0InaBd9pTk"
            },
            "carousel": null,
            "headline": {
                "title": "Book a demo now",
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362692676?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362722516",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "European GTM requires regional data infrastructure.\n\nClay now supports teams in Europe with:\n- Waterfall enrichment opti\u2026",
                "link": null
            },
            "image": {
                "alt_text": "See how Clay is scaling in Europe",
                "url": "https://media.licdn.com/dms/image/v2/D5610AQHH2id3C3d-rw/image-shrink_1280/B56ZzAK_llHUAc-/0/1772750633736/Clay-Europe-Launch_Ad-1Apng?e=2147483647&v=beta&t=WkLK90bW5nY-OB-DOde8uRLiW7gw20n_jm1h4yLaWc8"
            },
            "carousel": null,
            "headline": {
                "title": "See how Clay is scaling in Europe",
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362722516?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362791966",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "Most GTM stacks weren\u2019t built for Europe, where regional coverage gaps, multi-language campaigns, and country-specific p\u2026",
                "link": null
            },
            "image": {
                "alt_text": "See how Clay is scaling in Europe",
                "url": "https://media.licdn.com/dms/image/v2/D5610AQFqBxlQ__-v4w/image-shrink_1280/B56ZzALtcLIAAc-/0/1772750821490/Clay-Europe-Launch_Ad-2Apng?e=2147483647&v=beta&t=Wn0AjU75BoO0McSSgPRv_znMu6_L2Xyz8LV17H21XDQ"
            },
            "carousel": null,
            "headline": {
                "title": "See how Clay is scaling in Europe",
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362791966?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362734276",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "With thousands of customers and dozens of Clay Clubs already in Europe, we're buzzing to open our brand new London offic\u2026",
                "link": "https://www.linkedin.com/company/grow-with-clay"
            },
            "image": {
                "alt_text": "",
                "url": "https://media.licdn.com/dms/image/v2/D4E10AQFstODodOUsUw/image-shrink_1280/B4EZy4AfKCHgAg-/0/1772613662089?e=2147483647&v=beta&t=qgfWB2a9IUT7UDr-7kE0yfjoGEEt_NrO7tLXwtyP50o"
            },
            "carousel": null,
            "headline": {
                "title": null,
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362734276?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362665306",
            "type": "carousel",
            "advertiser": {
                "name": "Bruno Estrella\n        \n      \n\nHead of Marketing @ Clay | ex-Webflow\nPromoted by Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/C4E03AQHTCkglpf6XMw/profile-displayphoto-shrink_100_100/profile-displayphoto-shrink_100_100/0/1617764992248?e=1775088000&v=beta&t=Bsm7ppI0fMqE-HfDEOqsoCnmKJgU_q9Z8m1APIxlzmw",
                "promoted": false
            },
            "commentary": {
                "text": "I\u2019m hiring! We just opened a very special role in our marketing team at Clay. We\u2019re looking for a Founding Marketer to l\u2026",
                "link": "https://www.linkedin.com/company/grow-with-clay"
            },
            "image": null,
            "carousel": null,
            "headline": {
                "title": null,
                "description": "Head of Marketing @ Clay | ex-Webflow"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362665306",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362084046",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "Inbound leads are coming in, but routing is delayed, enrichment is manual, and reps are working incomplete data.\n\nWhat i\u2026",
                "link": null
            },
            "image": {
                "alt_text": "Join us on March 12th for a live workshop on supercharging lead conversion in Clay",
                "url": "https://media.licdn.com/dms/image/v2/D5610AQE-2wh76m5qtA/image-shrink_1280/B56Zy29VopKcAc-/0/1772596059154/MetaEp41x1copy1png?e=2147483647&v=beta&t=TG15Iarwe02uPAPH3YQiCOdBtKZS0QkJIiYW6f0823k"
            },
            "carousel": null,
            "headline": {
                "title": "Join us on March 12th for a live workshop on supercharging lead conversion in Clay",
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362084046?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362821216",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "Clay in Europe: See how Sana unified fragmented enrichment, rebuilt trust in their CRM, and scaled smarter GTM workflows\u2026",
                "link": null
            },
            "image": {
                "alt_text": "Read the full case study with Sana",
                "url": "https://media.licdn.com/dms/image/v2/D5610AQGG383KkGBrBA/image-shrink_1280/B56ZzATV7_KEAc-/0/1772752822449/sana_csjpg?e=2147483647&v=beta&t=DNw7tKaQS5QsgQe7JlJsAPGm9IBeLMLFFuxZ3LFnMus"
            },
            "carousel": null,
            "headline": {
                "title": "Read the full case study with Sana",
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362821216?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362762206",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "Clay in Europe: Mistral AI used Clay to map 25,000+ global enterprise accounts in just 2 weeks, unify 10+ data providers\u2026",
                "link": null
            },
            "image": {
                "alt_text": "Read the full case study with Mistral AI",
                "url": "https://media.licdn.com/dms/image/v2/D5610AQFkVixZO6-dSw/image-shrink_1280/B56ZzAS99xJ8Ac-/0/1772752724233/mistral_csjpg?e=2147483647&v=beta&t=0L1JiVmJNGjwELbfsT79tspqNlhDZpY5CsVeCjJmPWs"
            },
            "carousel": null,
            "headline": {
                "title": "Read the full case study with Mistral AI",
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362762206?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362563266",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "Pipeline in Europe isn\u2019t built the same way anymore.\n\nJoin Clay and NewEdge Growth on Thursday, March 12th for a tactica\u2026",
                "link": null
            },
            "image": {
                "alt_text": "Join us on Thursday, 3/12 for a tactical session on driving pipeline in Europe",
                "url": "https://media.licdn.com/dms/image/v2/D5610AQGy8z3rn-y5vA/image-shrink_1280/B56ZyxslyKKAAc-/0/1772507782943/GTMstrategiesthatactuallyworkineuropewithNewEdge16x9png?e=2147483647&v=beta&t=xivvUcL_WmVTzIn8wrhbOJObn16Nu3-Cux6Hh9kUr54"
            },
            "carousel": null,
            "headline": {
                "title": "Join us on Thursday, 3/12 for a tactical session on driving pipeline in Europe",
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362563266?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362742506",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "Clay in Europe: See how Terrapinn uses Clay to build targeted prospect lists, identify the right sponsors and speakers, \u2026",
                "link": null
            },
            "image": {
                "alt_text": "Book a demo now",
                "url": "https://media.licdn.com/dms/image/v2/D5610AQHqdpeYoCR63g/image-shrink_1280/B56ZzAZYbVG4Ac-/0/1772754405548/terrapin_demojpg?e=2147483647&v=beta&t=RKApco5_MjDDrHllYidacqeRbMIlmpvhbzw-GrII16I"
            },
            "carousel": null,
            "headline": {
                "title": "Book a demo now",
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362742506?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362646176",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "Clay in Europe: See how Sana unified fragmented enrichment, rebuilt trust in their CRM, and scaled smarter GTM workflows\u2026",
                "link": null
            },
            "image": {
                "alt_text": "Book a demo now",
                "url": "https://media.licdn.com/dms/image/v2/D5610AQF7-ItCJMx45A/image-shrink_1280/B56ZzAZ46SIYAc-/0/1772754538532/sana_demojpg?e=2147483647&v=beta&t=T2LRMsSSdSEB0Xi0xOVD4d9Czykq8JAFzF3XYixXIP4"
            },
            "carousel": null,
            "headline": {
                "title": "Book a demo now",
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362646176?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362842726",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "Feel like you're flying blind with UK/EU data? SMARTe has seen a 542% uplift on Clay since launching in June and waterfa\u2026",
                "link": "https://www.linkedin.com/company/smarte-pro"
            },
            "image": {
                "alt_text": "",
                "url": "https://media.licdn.com/dms/image/v2/D4E22AQHEogHV2m0vWg/feedshare-shrink_1280/B4EZqiN21HKsAw-/0/1763658134650?e=2147483647&v=beta&t=-z4MxXuDN9aiipz2WaMO8S6nzQYzXHaKGJNKFBJo75c"
            },
            "carousel": null,
            "headline": {
                "title": null,
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362842726?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362840866",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "Clay in Europe: See how Legora uses Clay to find hard to source buying signals and turn ambitious GTM ideas into scalabl\u2026",
                "link": null
            },
            "image": {
                "alt_text": "Read the full case study with Legora",
                "url": "https://media.licdn.com/dms/image/v2/D5610AQHJeKZLXKjVjA/image-shrink_1280/B56ZzATk9IHAAc-/0/1772752883925/legora_csjpg?e=2147483647&v=beta&t=ELiGzpkeD6DW3_QalbuXNpLKIfNSU94n4TTDhywLeKQ"
            },
            "carousel": null,
            "headline": {
                "title": "Read the full case study with Legora",
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362840866?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362673206",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "Clay in Europe: See how Sana unified fragmented enrichment, rebuilt trust in their CRM, and scaled smarter GTM workflows\u2026",
                "link": null
            },
            "image": {
                "alt_text": "Read the full case study with Sana",
                "url": "https://media.licdn.com/dms/image/v2/D5610AQGG383KkGBrBA/image-shrink_1280/B56ZzATV7_KEAc-/0/1772752822449/sana_csjpg?e=2147483647&v=beta&t=DNw7tKaQS5QsgQe7JlJsAPGm9IBeLMLFFuxZ3LFnMus"
            },
            "carousel": null,
            "headline": {
                "title": "Read the full case study with Sana",
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362673206?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362112826",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "Inbound leads are coming in, but routing is delayed, enrichment is manual, and reps are working incomplete data.\n\nWhat i\u2026",
                "link": null
            },
            "image": {
                "alt_text": "Join us on March 12th for a live workshop on supercharging lead conversion in Clay",
                "url": "https://media.licdn.com/dms/image/v2/D5610AQGMxn713LBAtw/image-shrink_1280/B56ZzYzU1fKsAc-/0/1773163859823/UPDATEDHCUCep4png?e=2147483647&v=beta&t=2tKU9SasP_Bg9lL3agIc7PHf1VF44_cE3CMWnfhrmFg"
            },
            "carousel": null,
            "headline": {
                "title": "Join us on March 12th for a live workshop on supercharging lead conversion in Clay",
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362112826?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362742436",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "Clay in Europe: See how Terrapinn uses Clay to build targeted prospect lists, identify the right sponsors and speakers, \u2026",
                "link": null
            },
            "image": {
                "alt_text": "Read the full case study with Terrapinn",
                "url": "https://media.licdn.com/dms/image/v2/D5610AQHJJyB9VXqDfQ/image-shrink_1280/B56ZzATxSUIIAc-/0/1772752934436/terrapin_csjpg?e=2147483647&v=beta&t=poTnCrYT7_nBBAGaUewTHXAxgfym8oog73DlvFjKApM"
            },
            "carousel": null,
            "headline": {
                "title": "Read the full case study with Terrapinn",
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362742436?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362803716",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "Introducing our European GTM Livestream Series \ud83c\udf99\ufe0f\n\nOver the next few weeks, we're teaming up with NewEdge Growth, The K\u2026",
                "link": null
            },
            "image": {
                "alt_text": "",
                "url": "https://media.licdn.com/dms/image/v2/D4E10AQFmAOCLPeVWRg/image-shrink_1280/B4EZyaeKb3JcAc-/0/1772118125203?e=2147483647&v=beta&t=QORV7915A50UuCj5GFdUnxiigs-ZvTlIMTWjTq-Uf5s"
            },
            "carousel": null,
            "headline": {
                "title": null,
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362803716?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362636346",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "Clay in Europe: Mistral AI used Clay to map 25,000+ global enterprise accounts in just 2 weeks, unify 10+ data providers\u2026",
                "link": null
            },
            "image": {
                "alt_text": "Book a demo now",
                "url": "https://media.licdn.com/dms/image/v2/D5610AQERaADm3vzgtA/image-shrink_1280/B56ZzAY5M3IoAc-/0/1772754277604/mistral_demojpg?e=2147483647&v=beta&t=kVtOVyPHF_RLYKRJRH0nYLqhPI-9IhvQD6e_Ivr4dn0"
            },
            "carousel": null,
            "headline": {
                "title": "Book a demo now",
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362636346?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362674976",
            "type": "image",
            "advertiser": {
                "name": "Varun Anand\n        \n      \n\nCo-Founder @ Clay\nPromoted by Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D5603AQFCs4pv_r3nWA/profile-displayphoto-shrink_100_100/B56ZSTV50bGsAY-/0/1737638780851?e=1775088000&v=beta&t=xR9iXz4Bi-5_bvl7ikeeS00NSggdXt97tU-pCkgdCLY",
                "promoted": false
            },
            "commentary": {
                "text": "Today, Clay is opening our first international office -- in London!\n\nAfter spending nearly a month in Europe this past w\u2026",
                "link": "https://www.linkedin.com/company/grow-with-clay"
            },
            "image": {
                "alt_text": "",
                "url": "https://media.licdn.com/dms/image/v2/D4E10AQGYA7b6zBvuCg/image-shrink_1280/B4EZy4AtzIIMAc-/0/1772613722159?e=2147483647&v=beta&t=oIjIpfxxycteEFeEtc6wnWGVN454Cd4VvNStjCGIiZU"
            },
            "carousel": null,
            "headline": {
                "title": null,
                "description": "Co-Founder @ Clay"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362674976?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362801946",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "Clay in Europe: Mistral AI used Clay to map 25,000+ global enterprise accounts in just 2 weeks, unify 10+ data providers\u2026",
                "link": null
            },
            "image": {
                "alt_text": "Read the full case study with Mistral AI",
                "url": "https://media.licdn.com/dms/image/v2/D5610AQFkVixZO6-dSw/image-shrink_1280/B56ZzAS99xJ8Ac-/0/1772752724233/mistral_csjpg?e=2147483647&v=beta&t=0L1JiVmJNGjwELbfsT79tspqNlhDZpY5CsVeCjJmPWs"
            },
            "carousel": null,
            "headline": {
                "title": "Read the full case study with Mistral AI",
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362801946?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362692626",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "Clay in Europe: See how Terrapinn uses Clay to build targeted prospect lists, identify the right sponsors and speakers, \u2026",
                "link": null
            },
            "image": {
                "alt_text": "Read the full case study with Terrapinn",
                "url": "https://media.licdn.com/dms/image/v2/D5610AQHJJyB9VXqDfQ/image-shrink_1280/B56ZzATxSUIIAc-/0/1772752934436/terrapin_csjpg?e=2147483647&v=beta&t=poTnCrYT7_nBBAGaUewTHXAxgfym8oog73DlvFjKApM"
            },
            "carousel": null,
            "headline": {
                "title": "Read the full case study with Terrapinn",
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362692626?trk=ad_library_ad_preview_content_image",
            "raw": null
        },
        {
            "creative_type": "SPONSORED_STATUS_UPDATE",
            "ad_id": "1362654316",
            "type": "image",
            "advertiser": {
                "name": "Clay",
                "logo_url": "https://media.licdn.com/dms/image/v2/D4E0BAQGztboKKg-YIg/company-logo_100_100/B4EZpKi7pFKkAQ-/0/1762187263005/grow_with_clay_logo?e=1775088000&v=beta&t=icFnpTW_hXgUByEHoD60ahDumxto5tjfDOvaklpym_M",
                "promoted": true
            },
            "commentary": {
                "text": "Clay in Europe: See how Legora uses Clay to find hard to source buying signals and turn ambitious GTM ideas into scalabl\u2026",
                "link": null
            },
            "image": {
                "alt_text": "Read the full case study with Legora",
                "url": "https://media.licdn.com/dms/image/v2/D5610AQHJeKZLXKjVjA/image-shrink_1280/B56ZzATk9IHAAc-/0/1772752883925/legora_csjpg?e=2147483647&v=beta&t=ELiGzpkeD6DW3_QalbuXNpLKIfNSU94n4TTDhywLeKQ"
            },
            "carousel": null,
            "headline": {
                "title": "Read the full case study with Legora",
                "description": "Promoted"
            },
            "view_details_link": "https://www.linkedin.com/ad-library/detail/1362654316?trk=ad_library_ad_preview_content_image",
            "raw": null
        }
    ]
}
```


# Google

{% hint style="success" %}
You first need to create an account, you can sign up [here](https://app.adyntel.com/signup) to receive 50 credits to test it out.
{% endhint %}

The Google endpoint allows you find all Google ads for a given company.

It takes a company domain as input.

{% hint style="warning" %}
Company domain has to be passed in the 'company.com' format, meaning all prefixes like 'https\://' or '[www](http://www).' need to be removed.
{% endhint %}

##

## API endpoint

<mark style="color:green;">`POST`</mark> `api.adyntel.com/google`

*See which Google ads a company is running by providing their website as input.*

### Headers <a href="#headers" id="headers"></a>

<table><thead><tr><th>Name</th><th>Value</th><th data-type="checkbox">Required</th></tr></thead><tbody><tr><td>Content-Type</td><td><code>application/json</code></td><td>true</td></tr></tbody></table>

### &#x20;<a href="#undefined" id="undefined"></a>

### Body <a href="#body" id="body"></a>

<table><thead><tr><th width="159">Name</th><th width="89">Type</th><th width="359">Description</th><th data-type="checkbox">Required</th></tr></thead><tbody><tr><td><code>api_key</code></td><td>string</td><td>Adyntel API key</td><td>true</td></tr><tr><td><code>email</code></td><td>number</td><td>Adyntel account email</td><td>true</td></tr><tr><td><code>company_domain</code></td><td>string</td><td>Company website</td><td>true</td></tr><tr><td><code>media_type</code></td><td>string</td><td>Filter results based on media type. <br><br>Possible values: text, image, video.</td><td>false</td></tr><tr><td><code>all_ads</code></td><td>boolean</td><td>This will automatically use the <code>continuation_token</code> and scrape all the pages, returning all available ads.<br><br>Works only with a <code>webhook_url</code> as it needs a place to send each page, one by one. <br><br><em><mark style="color:$danger;"><strong>Warning</strong></mark>: use this cautiously because there is no way of stopping it. If you use this on a domain that runs 10000 ads, it will try to scrape all the ads and it will use the credits (one page = one credit)</em> </td><td>false</td></tr></tbody></table>

### Example request

Request using company domain

```
{
    "api_key": "hd-nndgi7gy6b3kdsgd-a",
    "email": "elon@tesla.com",
    "company_domain": "clay.com"
}
```

### Example response

```
{
    "continuation_token": "CgoAP7zmzWyVepVfEhCcFXFmJGX7XoQegAEAAAAAGgn8+HwJ+GfueB4=",
    "country_code": "anywhere",
    "total_ad_count": 200,
    "ads": [
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR05168560628939358209",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR05168560628939358209?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/5361381490481140088\" height=\"133\" width=\"348\">",
                    "height": 133.0,
                    "width": 348.0
                }
            ],
            "start": "2025-11-06",
            "last_seen": "2026-03-11",
            "advertiser_name": "Clay Labs",
            "format": "Text"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR12624585097010479105",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR12624585097010479105?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/13498737018381034036\" height=\"506.5\" width=\"723.5\">",
                    "height": 506.5,
                    "width": 723.5
                }
            ],
            "start": "2026-02-10",
            "last_seen": "2026-03-11",
            "advertiser_name": "Clay Labs",
            "format": "Image"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR00674419825224712193",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR00674419825224712193?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/13194807174469449759\" height=\"418.5\" width=\"723.5\">",
                    "height": 418.5,
                    "width": 723.5
                }
            ],
            "start": "2026-02-10",
            "last_seen": "2026-03-11",
            "advertiser_name": "Clay Labs",
            "format": "Image"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR14236790200725405697",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR14236790200725405697?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/5690056528033564324\" height=\"159\" width=\"348\">",
                    "height": 159.0,
                    "width": 348.0
                }
            ],
            "start": "2025-11-06",
            "last_seen": "2026-03-11",
            "advertiser_name": "Clay Labs",
            "format": "Text"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR13679871317690548225",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR13679871317690548225?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/14577011057589730391\" height=\"400\" width=\"400\">",
                    "height": 400.0,
                    "width": 400.0
                }
            ],
            "start": "2025-11-06",
            "last_seen": "2026-03-11",
            "advertiser_name": "Clay Labs",
            "format": "Text"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR02856901478092636161",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR02856901478092636161?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/18328503784328074629\" height=\"153\" width=\"348\">",
                    "height": 153.0,
                    "width": 348.0
                }
            ],
            "start": "2026-02-06",
            "last_seen": "2026-03-11",
            "advertiser_name": "Clay Labs",
            "format": "Text"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR12460921013099560961",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR12460921013099560961?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/4665622502643303233\" height=\"173\" width=\"380\">",
                    "height": 173.0,
                    "width": 380.0
                }
            ],
            "start": "2024-12-17",
            "last_seen": "2026-03-11",
            "advertiser_name": "Clay Labs",
            "format": "Text"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR17201667010610593793",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR17201667010610593793?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/17923592202210806123\" height=\"199\" width=\"348\">",
                    "height": 199.0,
                    "width": 348.0
                }
            ],
            "start": "2025-11-06",
            "last_seen": "2026-03-11",
            "advertiser_name": "Clay Labs",
            "format": "Text"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR16714190284098895873",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR16714190284098895873?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/14846120021916568922\" height=\"159\" width=\"348\">",
                    "height": 159.0,
                    "width": 348.0
                }
            ],
            "start": "2025-11-06",
            "last_seen": "2026-03-11",
            "advertiser_name": "Clay Labs",
            "format": "Text"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR05396327357441114113",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR05396327357441114113?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/17954961706138656021\" height=\"200\" width=\"381\">",
                    "height": 200.0,
                    "width": 381.0
                }
            ],
            "start": "2024-12-17",
            "last_seen": "2026-03-11",
            "advertiser_name": "Clay Labs",
            "format": "Text"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR14700264562632949761",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR14700264562632949761?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/8100032125339771745\" height=\"240\" width=\"381\">",
                    "height": 240.0,
                    "width": 381.0
                }
            ],
            "start": "2025-11-06",
            "last_seen": "2026-03-11",
            "advertiser_name": "Clay Labs",
            "format": "Text"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR08578829258271490049",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR08578829258271490049?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/3539237506455141837\" height=\"478.5\" width=\"723.5\">",
                    "height": 478.5,
                    "width": 723.5
                }
            ],
            "start": "2026-03-09",
            "last_seen": "2026-03-11",
            "advertiser_name": "Clay Labs",
            "format": "Image"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR04972290381677854721",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR04972290381677854721?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/4060499224737399693\" height=\"478.5\" width=\"723.5\">",
                    "height": 478.5,
                    "width": 723.5
                }
            ],
            "start": "2026-03-09",
            "last_seen": "2026-03-11",
            "advertiser_name": "Clay Labs",
            "format": "Image"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR16891066795513872385",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR16891066795513872385?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/14039084932695524507\" height=\"418.5\" width=\"723.5\">",
                    "height": 418.5,
                    "width": 723.5
                }
            ],
            "start": "2026-03-09",
            "last_seen": "2026-03-11",
            "advertiser_name": "Clay Labs",
            "format": "Image"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR11130817985680244737",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR11130817985680244737?region=anywhere",
            "variants": [
                {
                    "content": "https://displayads-formats.googleusercontent.com/ads/preview/content.js?client=ads-integrity-transparency&obfuscatedCustomerId=1509255153&creativeId=788915202369&uiFeatures=12,54&adGroupId=197186924384&sig=ACiVB_wo5UAyIRo_k2BIZPPhTNbpiQxpOQ&htmlParentId=fletch-render-3802147234662097280&responseCallback=fletchCallback3802147234662097280",
                    "height": null,
                    "width": null
                }
            ],
            "start": "2025-12-18",
            "last_seen": "2026-03-11",
            "advertiser_name": "Clay Labs",
            "format": "Video"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR12209156618687873025",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR12209156618687873025?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/1993569601676663850\" height=\"506.5\" width=\"723.5\">",
                    "height": 506.5,
                    "width": 723.5
                }
            ],
            "start": "2026-02-13",
            "last_seen": "2026-03-11",
            "advertiser_name": "Clay Labs",
            "format": "Image"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR10189292185812205569",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR10189292185812205569?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/1425448177521386985\" height=\"418.5\" width=\"723.5\">",
                    "height": 418.5,
                    "width": 723.5
                }
            ],
            "start": "2026-02-13",
            "last_seen": "2026-03-11",
            "advertiser_name": "Clay Labs",
            "format": "Image"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR00417128057011175425",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR00417128057011175425?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/13520646405001850782\" height=\"418.5\" width=\"723.5\">",
                    "height": 418.5,
                    "width": 723.5
                }
            ],
            "start": "2026-03-09",
            "last_seen": "2026-03-11",
            "advertiser_name": "Clay Labs",
            "format": "Image"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR07447528550313230337",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR07447528550313230337?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/2731248705764458407\" height=\"418.5\" width=\"723.5\">",
                    "height": 418.5,
                    "width": 723.5
                }
            ],
            "start": "2026-03-09",
            "last_seen": "2026-03-11",
            "advertiser_name": "Clay Labs",
            "format": "Image"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR06465743831546462209",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR06465743831546462209?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/5590533801673744878\" height=\"418.5\" width=\"723.5\">",
                    "height": 418.5,
                    "width": 723.5
                }
            ],
            "start": "2026-03-09",
            "last_seen": "2026-03-10",
            "advertiser_name": "Clay Labs",
            "format": "Image"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR10732904478480007169",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR10732904478480007169?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/16320348212711953298\" height=\"418.5\" width=\"723.5\">",
                    "height": 418.5,
                    "width": 723.5
                }
            ],
            "start": "2026-03-09",
            "last_seen": "2026-03-10",
            "advertiser_name": "Clay Labs",
            "format": "Image"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR02252906729836642305",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR02252906729836642305?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/14476614141745981240\" height=\"174\" width=\"381\">",
                    "height": 174.0,
                    "width": 381.0
                }
            ],
            "start": "2025-11-06",
            "last_seen": "2026-03-10",
            "advertiser_name": "Clay Labs",
            "format": "Text"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR16263572760763039745",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR16263572760763039745?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/930618437321311653\" height=\"159\" width=\"348\">",
                    "height": 159.0,
                    "width": 348.0
                }
            ],
            "start": "2025-11-06",
            "last_seen": "2026-03-10",
            "advertiser_name": "Clay Labs",
            "format": "Text"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR08466035308180275201",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR08466035308180275201?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/6588204962819451120\" height=\"159\" width=\"348\">",
                    "height": 159.0,
                    "width": 348.0
                }
            ],
            "start": "2025-11-06",
            "last_seen": "2026-03-10",
            "advertiser_name": "Clay Labs",
            "format": "Text"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR02589598080982581249",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR02589598080982581249?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/2850243247281792998\" height=\"240\" width=\"381\">",
                    "height": 240.0,
                    "width": 381.0
                }
            ],
            "start": "2025-11-06",
            "last_seen": "2026-03-10",
            "advertiser_name": "Clay Labs",
            "format": "Text"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR00853176750631288833",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR00853176750631288833?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/13051569905675304472\" height=\"174\" width=\"381\">",
                    "height": 174.0,
                    "width": 381.0
                }
            ],
            "start": "2025-11-06",
            "last_seen": "2026-03-10",
            "advertiser_name": "Clay Labs",
            "format": "Text"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR11459899616850345985",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR11459899616850345985?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/4220245152898956959\" height=\"133\" width=\"348\">",
                    "height": 133.0,
                    "width": 348.0
                }
            ],
            "start": "2025-11-06",
            "last_seen": "2026-03-10",
            "advertiser_name": "Clay Labs",
            "format": "Text"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR12115515654346375169",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR12115515654346375169?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/11486552565864482454\" height=\"458\" width=\"380\">",
                    "height": 458.0,
                    "width": 380.0
                }
            ],
            "start": "2025-05-30",
            "last_seen": "2026-03-10",
            "advertiser_name": "Clay Labs",
            "format": "Text"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR08290717079619764225",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR08290717079619764225?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/10826636237020777819\" height=\"418.5\" width=\"723.5\">",
                    "height": 418.5,
                    "width": 723.5
                }
            ],
            "start": "2026-02-13",
            "last_seen": "2026-03-10",
            "advertiser_name": "Clay Labs",
            "format": "Image"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR02754352270542897153",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR02754352270542897153?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/11371314488275127755\" height=\"385\" width=\"380\">",
                    "height": 385.0,
                    "width": 380.0
                }
            ],
            "start": "2025-05-29",
            "last_seen": "2026-03-10",
            "advertiser_name": "Clay Labs",
            "format": "Text"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR16934894402738847745",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR16934894402738847745?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/17495725102377130529\" height=\"240\" width=\"381\">",
                    "height": 240.0,
                    "width": 381.0
                }
            ],
            "start": "2025-11-06",
            "last_seen": "2026-03-10",
            "advertiser_name": "Clay Labs",
            "format": "Text"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR17396708046821916673",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR17396708046821916673?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/5996673915321475492\" height=\"220\" width=\"381\">",
                    "height": 220.0,
                    "width": 381.0
                }
            ],
            "start": "2025-06-12",
            "last_seen": "2026-03-10",
            "advertiser_name": "Clay Labs",
            "format": "Text"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR08134451197135290369",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR08134451197135290369?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/8416528162631455593\" height=\"411\" width=\"365\">",
                    "height": 411.0,
                    "width": 365.0
                }
            ],
            "start": "2024-10-17",
            "last_seen": "2026-03-10",
            "advertiser_name": "Clay Labs",
            "format": "Text"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR13568089742930608129",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR13568089742930608129?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/14695405837680369011\" height=\"214\" width=\"381\">",
                    "height": 214.0,
                    "width": 381.0
                }
            ],
            "start": "2025-11-12",
            "last_seen": "2026-03-10",
            "advertiser_name": "Clay Labs",
            "format": "Text"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR13971161385594257409",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR13971161385594257409?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/8166283117780633079\" height=\"506.5\" width=\"723.5\">",
                    "height": 506.5,
                    "width": 723.5
                }
            ],
            "start": "2026-02-10",
            "last_seen": "2026-03-10",
            "advertiser_name": "Clay Labs",
            "format": "Image"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR12137983281106780161",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR12137983281106780161?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/9967015050117307545\" height=\"400\" width=\"400\">",
                    "height": 400.0,
                    "width": 400.0
                }
            ],
            "start": "2025-11-06",
            "last_seen": "2026-03-10",
            "advertiser_name": "Clay Labs",
            "format": "Text"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR10612601963482710017",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR10612601963482710017?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/17882421922180096006\" height=\"506.5\" width=\"723.5\">",
                    "height": 506.5,
                    "width": 723.5
                }
            ],
            "start": "2026-02-10",
            "last_seen": "2026-03-10",
            "advertiser_name": "Clay Labs",
            "format": "Image"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR18435998005405417473",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR18435998005405417473?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/6543372107367775277\" height=\"133\" width=\"348\">",
                    "height": 133.0,
                    "width": 348.0
                }
            ],
            "start": "2025-11-06",
            "last_seen": "2026-03-10",
            "advertiser_name": "Clay Labs",
            "format": "Text"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR15579321257181577217",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR15579321257181577217?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/17106991500498340704\" height=\"200\" width=\"381\">",
                    "height": 200.0,
                    "width": 381.0
                }
            ],
            "start": "2024-12-17",
            "last_seen": "2026-03-10",
            "advertiser_name": "Clay Labs",
            "format": "Text"
        },
        {
            "advertiser_id": "AR02473231714533507073",
            "creative_id": "CR14083324765766942721",
            "original_url": "https://adstransparency.google.com/advertiser/AR02473231714533507073/creative/CR14083324765766942721?region=anywhere",
            "variants": [
                {
                    "content": "<img src=\"https://tpc.googlesyndication.com/archive/simgad/15091369664836056378\" height=\"418.5\" width=\"723.5\">",
                    "height": 418.5,
                    "width": 723.5
                }
            ],
            "start": "2026-02-10",
            "last_seen": "2026-03-10",
            "advertiser_name": "Clay Labs",
            "format": "Image"
        }
    ]
}
```


# Google shopping

{% hint style="success" %}
You first need to create an account, you can sign up [here](https://app.adyntel.com/signup) to receive 50 credits to test it out.
{% endhint %}

The Google endpoint allows you find all Google shopping ads for a given company. This is different then the [Google](/ad-libraries/google) endpoint as that reports on certain types of ads (search, image, video) ran on the Google platform while this returns strictly shopping ads.

It takes a company domain as input.

{% hint style="warning" %}
Company domain has to be passed in the 'company.com' format, meaning all prefixes like 'https\://' or '[www](http://www).' need to be removed.
{% endhint %}

##

## API endpoint

<mark style="color:green;">`POST`</mark> `api.adyntel.com/google_shopping`

*See what Google shopping ads a company is running by providing their website as input.*

### Headers <a href="#headers" id="headers"></a>

<table><thead><tr><th>Name</th><th>Value</th><th data-type="checkbox">Required</th></tr></thead><tbody><tr><td>Content-Type</td><td><code>application/json</code></td><td>true</td></tr></tbody></table>

### &#x20;<a href="#undefined" id="undefined"></a>

### Body <a href="#body" id="body"></a>

<table><thead><tr><th width="226">Name</th><th>Type</th><th>Description</th><th data-type="checkbox">Required</th></tr></thead><tbody><tr><td><code>api_key</code></td><td>string</td><td>Adyntel API key</td><td>true</td></tr><tr><td><code>email</code></td><td>number</td><td>Adyntel account email</td><td>true</td></tr><tr><td><code>company_domain</code></td><td>string</td><td>Company website</td><td>true</td></tr></tbody></table>

### Example request

Request using company domain

```
{
    "api_key": "hd-nndgi7gy6b3kdsgd-a",
    "email": "elon@tesla.com",
    "company_domain": "tesla.com"
}
```

### Example response

The response will contain only an id that you then have to use in the Google shopping status endpoint.

```
{
"id": "12172142-7717-0066-0000-f1e50ca3d579"
}
```


# Google shopping status

{% hint style="success" %}
You first need to create an account, you can sign up [here](https://app.adyntel.com/signup) to receive 50 credits to test it out.
{% endhint %}

Using this endpoint you will get the results for your Google shopping search.&#x20;

{% hint style="warning" %}
You will not be charged for using this endpoint.
{% endhint %}

##

## API endpoint

<mark style="color:green;">`POST`</mark> `api.adyntel.com/google_shopping_status`

*Get the results of your Google shopping search by using the id you received as response in the* [*Google shopping*](/ad-libraries/google-shopping) *endpoint.*

### Headers <a href="#headers" id="headers"></a>

<table><thead><tr><th>Name</th><th>Value</th><th data-type="checkbox">Required</th></tr></thead><tbody><tr><td>Content-Type</td><td><code>application/json</code></td><td>true</td></tr></tbody></table>

### &#x20;<a href="#undefined" id="undefined"></a>

### Body <a href="#body" id="body"></a>

<table><thead><tr><th>Name</th><th>Type</th><th>Description</th><th data-type="checkbox">Required</th></tr></thead><tbody><tr><td><code>api_key</code></td><td>string</td><td>Adyntel API key</td><td>true</td></tr><tr><td><code>email</code></td><td>number</td><td>Adyntel account email</td><td>true</td></tr><tr><td><code>id</code></td><td>string</td><td>The id you received as response</td><td>true</td></tr></tbody></table>

### Example response

The response will contain only an id that you then have to use in the Google shopping status endpoint.

```
{
    "ads": [
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR15157585378866626561",
            "first_shown": "2024-02-27 01:02:34 +00:00",
            "format": "text",
            "last_shown": "2024-12-17 17:07:32 +00:00",
            "preview_image": {
                "height": 173,
                "url": "https://tpc.googlesyndication.com/archive/simgad/9720546471572168024",
                "width": 380
            },
            "preview_url": null,
            "rank_absolute": 1,
            "rank_group": 1,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR15157585378866626561?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR05228418239523979265",
            "first_shown": "2022-07-13 20:02:36 +00:00",
            "format": "image",
            "last_shown": "2024-12-17 16:44:57 +00:00",
            "preview_image": {
                "height": null,
                "url": null,
                "width": null
            },
            "preview_url": "https://displayads-formats.googleusercontent.com/ads/preview/content.js?client=ads-integrity-transparency&obfuscatedCustomerId=5208869368&creativeId=610290732130&uiFeatures=12,54&adGroupId=138505634763&itemIds=16818768607040223757&overlay=%3DH4sIAAAAAAAAALMSMxLhEuLk3SVv98El46Ugw-GIvZoOE3Z6yXAJJBcXu2QWF-QkVgaXFGXmpQtxcLG55-en56R6qXJJFGfkFxQARR1T_NPSUouci1ITSzLLUg2EOK3YOdZxCjExM3mp4FRmKMRhxcbxi0mIkRGPKiOwqqecQozcXoo4VRkLsVoxczRzAwAdeFwyzAAAAA&sig=ACiVB_yfh_O1jCJMqonDTbquBzNGW8H76Q&htmlParentId=fletch-render-9058006553094161367&responseCallback=fletchCallback9058006553094161367",
            "rank_absolute": 2,
            "rank_group": 2,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR05228418239523979265?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR10533706051365109761",
            "first_shown": "2024-04-10 08:45:55 +00:00",
            "format": "text",
            "last_shown": "2024-12-17 16:43:19 +00:00",
            "preview_image": {
                "height": 167,
                "url": "https://tpc.googlesyndication.com/archive/simgad/6978354592820282403",
                "width": 380
            },
            "preview_url": null,
            "rank_absolute": 3,
            "rank_group": 3,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR10533706051365109761?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR01119462094463303681",
            "first_shown": "2024-04-10 06:07:15 +00:00",
            "format": "text",
            "last_shown": "2024-12-17 16:29:54 +00:00",
            "preview_image": {
                "height": 173,
                "url": "https://tpc.googlesyndication.com/archive/simgad/14664131898075640092",
                "width": 380
            },
            "preview_url": null,
            "rank_absolute": 4,
            "rank_group": 4,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR01119462094463303681?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR11000426059928698881",
            "first_shown": "2024-04-10 17:25:52 +00:00",
            "format": "text",
            "last_shown": "2024-12-17 16:25:01 +00:00",
            "preview_image": {
                "height": 167,
                "url": "https://tpc.googlesyndication.com/archive/simgad/6311364290513919268",
                "width": 380
            },
            "preview_url": null,
            "rank_absolute": 5,
            "rank_group": 5,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR11000426059928698881?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR17434546554080854017",
            "first_shown": "2024-04-10 18:18:12 +00:00",
            "format": "text",
            "last_shown": "2024-12-17 16:20:16 +00:00",
            "preview_image": {
                "height": 173,
                "url": "https://tpc.googlesyndication.com/archive/simgad/5675482860709973635",
                "width": 380
            },
            "preview_url": null,
            "rank_absolute": 6,
            "rank_group": 6,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR17434546554080854017?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR14192773924177051649",
            "first_shown": "2022-07-13 19:57:57 +00:00",
            "format": "image",
            "last_shown": "2024-12-17 15:06:40 +00:00",
            "preview_image": {
                "height": null,
                "url": null,
                "width": null
            },
            "preview_url": "https://displayads-formats.googleusercontent.com/ads/preview/content.js?client=ads-integrity-transparency&obfuscatedCustomerId=5208869368&creativeId=610290732160&uiFeatures=12,54&adGroupId=138635067333&itemIds=10055994286023813636&overlay=%3DH4sIAAAAAAAAALMSMxLhEuJkWXXOsE2wr1vwTMOysv-Fpju9ZLgEkouLXTKLC3ISK4NLijLz0oU4uNjc8_PTc1K9VLgkijPyCwqAoo4p_mlpqUXORamJJZllqQZCHFZsHL-YhBgZAREPe5pcAAAA&sig=ACiVB_wWuxmnkRukdAzEqgCXw9h4Z8h0Zg&htmlParentId=fletch-render-1745061100854317769&responseCallback=fletchCallback1745061100854317769",
            "rank_absolute": 7,
            "rank_group": 7,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR14192773924177051649?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR15426137726696554497",
            "first_shown": "2021-10-25 07:00:00 +00:00",
            "format": "image",
            "last_shown": "2024-12-17 14:49:49 +00:00",
            "preview_image": {
                "height": null,
                "url": null,
                "width": null
            },
            "preview_url": "https://displayads-formats.googleusercontent.com/ads/preview/content.js?client=ads-integrity-transparency&obfuscatedCustomerId=5427259983&creativeId=489202062868&uiFeatures=12,54&adGroupId=119439287481&itemIds=8911788544798000178&overlay=%3DH4sIAAAAAAAAALMSMxLhEuI0ahH5V8axtlpwz-yT_y_NFjDzkuESSC4udsksLshJrAwuKcrMSxfi4GJzz89Pz0n1UuGSKM7ILygAijqm-KelpRY5F6UmlmSWpRoIcVixcTxkFmJk9VLEqcpQiNWKmWMdNx6DjMAG_WISYmTEo8oYrKqZTYiRDQBGvEs-ywAAAA&sig=ACiVB_ykbF7RW2xXBhry5qwFBYjrBGlYew&htmlParentId=fletch-render-13912595662691176164&responseCallback=fletchCallback13912595662691176164",
            "rank_absolute": 8,
            "rank_group": 8,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR15426137726696554497?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR02205845209806274561",
            "first_shown": "2021-10-25 07:00:00 +00:00",
            "format": "image",
            "last_shown": "2024-12-17 14:00:37 +00:00",
            "preview_image": {
                "height": null,
                "url": null,
                "width": null
            },
            "preview_url": "https://displayads-formats.googleusercontent.com/ads/preview/content.js?client=ads-integrity-transparency&obfuscatedCustomerId=5208869368&creativeId=478004315965&uiFeatures=12,54&adGroupId=112421045013&itemIds=12857898621431961752&overlay=%3DH4sIAAAAAAAAALMSMxLhEuKccSNfYE1ewSbBxr3Pzrfe2X3OS4ZLILm42CWzuCAnsTK4pCgzL12Ig4vNPT8_PSfVS4VLojgjv6AAKOqY4p-WllrkXJSaWJJZlmogxGHFxvGLSYiREY8qQ7Cqp5xCjNxeijhVGQmxWjFzNHPjMcgYbNBXoEECADarit7LAAAA&sig=ACiVB_zYGCgP6voqCJnWLRODW4j166Khow&htmlParentId=fletch-render-7852593252694196422&responseCallback=fletchCallback7852593252694196422",
            "rank_absolute": 9,
            "rank_group": 9,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR02205845209806274561?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR13404761671491125249",
            "first_shown": "2024-07-06 01:40:05 +00:00",
            "format": "image",
            "last_shown": "2024-12-17 11:06:02 +00:00",
            "preview_image": {
                "height": null,
                "url": null,
                "width": null
            },
            "preview_url": "https://displayads-formats.googleusercontent.com/ads/preview/content.js?client=ads-integrity-transparency&obfuscatedCustomerId=9674400793&creativeId=704913886753&uiFeatures=12,54&adGroupId=162698478125&itemIds=3518459034956516529&overlay=%3DH4sIAAAAAAAAALMSMxLhEuLceCbi-E3hKwaC4RWhD_Oy89i8ZLgEkouLXTKLC3ISK4NLijLz0oU4uNjc8_PTc1K9VLgkijPyCwqAoo4p_mlpqUXORamJJZllqQZCHFZsHL-YhBgZ8agyBKt6yinEyO2liFOVkRCrFTNHMzceg4zBBn0FGiQAAHj5NgLLAAAA&sig=ACiVB_yEAOK9lu7th8OtcA8PfF5wGNvC3g&htmlParentId=fletch-render-1676449255738536850&responseCallback=fletchCallback1676449255738536850",
            "rank_absolute": 10,
            "rank_group": 10,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR13404761671491125249?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR05160664494774419457",
            "first_shown": "2024-02-15 00:52:08 +00:00",
            "format": "image",
            "last_shown": "2024-12-17 05:27:31 +00:00",
            "preview_image": {
                "height": null,
                "url": null,
                "width": null
            },
            "preview_url": "https://displayads-formats.googleusercontent.com/ads/preview/content.js?client=ads-integrity-transparency&obfuscatedCustomerId=5208869368&creativeId=690954483037&uiFeatures=12,54&adGroupId=159694096755&itemIds=5934107390362928616&overlay=%3DH4sIAAAAAAAAALMSMxLhEuJ84TrL1Fo_KkgwZdtZYyfVEz5eMlwCycXFLpnFBTmJlcElRZl56UIcXGzu-fnpOaleKlwSxRn5BQVAUccU_7S01CLnotTEksyyVAMhDis2jl9MQoyMeFQZglU94RRi5PZSxKnKSIjVipmjmRsAYmTORqUAAAA&sig=ACiVB_wdEtImSsigzkRVmIA02Z-2CkyTvw&htmlParentId=fletch-render-2457016782602901285&responseCallback=fletchCallback2457016782602901285",
            "rank_absolute": 11,
            "rank_group": 11,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR05160664494774419457?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR10598380081225138177",
            "first_shown": "2021-10-25 07:00:00 +00:00",
            "format": "image",
            "last_shown": "2024-12-16 20:40:59 +00:00",
            "preview_image": {
                "height": null,
                "url": null,
                "width": null
            },
            "preview_url": "https://displayads-formats.googleusercontent.com/ads/preview/content.js?client=ads-integrity-transparency&obfuscatedCustomerId=5208869368&creativeId=478006027873&uiFeatures=12,54&adGroupId=119592584624&itemIds=12942390045403650908&overlay=%3DH4sIAAAAAAAAALMSMxLhEuKMkb62QWf2nM2C58tLf230fT_BS4ZLILm42CWzuCAnsTK4pCgzL12Ig4vNPT8_PSfVS4VLojgjv6AAKOqY4p-WllrkXJSaWJJZlmogxGHFxvGLSYiREY8qQ7Cqp5xCjNxeijhVGQmxWjFzNHPjMcgYbNBXoEECADdTJ6zLAAAA&sig=ACiVB_wCj6XxIwy5PhQM91hjqQyxm5xMAw&htmlParentId=fletch-render-15486357889737243900&responseCallback=fletchCallback15486357889737243900",
            "rank_absolute": 12,
            "rank_group": 12,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR10598380081225138177?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR18000741131955994625",
            "first_shown": "2022-07-13 19:59:08 +00:00",
            "format": "image",
            "last_shown": "2024-12-16 20:21:54 +00:00",
            "preview_image": {
                "height": null,
                "url": null,
                "width": null
            },
            "preview_url": "https://displayads-formats.googleusercontent.com/ads/preview/content.js?client=ads-integrity-transparency&obfuscatedCustomerId=5208869368&creativeId=610290732172&uiFeatures=12,54&adGroupId=138635067733&itemIds=13296915402904583329&overlay=%3DH4sIAAAAAAAAALMSMxLhEuJcaNNzT1qpY4dgm5yUFJPtxqVeMlwCycXFLpnFBTmJlcElRZl56UIcXGzu-fnpOakAyKg3UDYAAAA&sig=ACiVB_xnvp4fr-vm2q8LzQBl-M7alpfxrw&htmlParentId=fletch-render-10083816200075075693&responseCallback=fletchCallback10083816200075075693",
            "rank_absolute": 13,
            "rank_group": 13,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR18000741131955994625?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR13071834842000261121",
            "first_shown": "2021-10-25 07:00:00 +00:00",
            "format": "image",
            "last_shown": "2024-12-16 20:05:06 +00:00",
            "preview_image": {
                "height": null,
                "url": null,
                "width": null
            },
            "preview_url": "https://displayads-formats.googleusercontent.com/ads/preview/content.js?client=ads-integrity-transparency&obfuscatedCustomerId=5208869368&creativeId=477546261999&uiFeatures=12,54&adGroupId=114307188442&itemIds=17256008048626545809&overlay=%3DH4sIAAAAAAAAALMSMxLhEuKcuGXV7SfLK98Lyq960s8QdPqwlwyXQHJxsUtmcUFOYmVwSVFmXroQBxebe35-ek6qlwqXRHFGfkEBUNQxxT8tLbXIuSg1sSSzLNVAiMOKjeMXkxAjIx5VhmBVTzmFGLm9FHGqMhJitWLmaObGY5Ax2KCvQIMEAD_EM0rLAAAA&sig=ACiVB_xrp0TtRR7DLv5Zgph6YKosyfWNAw&htmlParentId=fletch-render-11146057865403403384&responseCallback=fletchCallback11146057865403403384",
            "rank_absolute": 14,
            "rank_group": 14,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR13071834842000261121?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR09488271532179324929",
            "first_shown": "2022-07-13 20:07:15 +00:00",
            "format": "image",
            "last_shown": "2024-12-16 19:29:21 +00:00",
            "preview_image": {
                "height": null,
                "url": null,
                "width": null
            },
            "preview_url": "https://displayads-formats.googleusercontent.com/ads/preview/content.js?client=ads-integrity-transparency&obfuscatedCustomerId=5208869368&creativeId=610290732139&uiFeatures=12,54&adGroupId=138505635003&itemIds=10673118870901968829&overlay=%3DH4sIAAAAAAAAALMSMxLhEuLc67-wUaBTboqg2_TJP9l4b4l4yXAJJBcXu2QWF-QkVgaXFGXmpQtxcLG55-en56QCAPHBD0E2AAAA&sig=ACiVB_wN2SiTxSjpd4JHet--kAfJK9RhWQ&htmlParentId=fletch-render-14850034673017674185&responseCallback=fletchCallback14850034673017674185",
            "rank_absolute": 15,
            "rank_group": 15,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR09488271532179324929?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR06612656271692660737",
            "first_shown": "2024-04-10 18:17:36 +00:00",
            "format": "text",
            "last_shown": "2024-12-16 18:12:56 +00:00",
            "preview_image": {
                "height": 173,
                "url": "https://tpc.googlesyndication.com/archive/simgad/12778805064272527781",
                "width": 380
            },
            "preview_url": null,
            "rank_absolute": 16,
            "rank_group": 16,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR06612656271692660737?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR10650010192327999489",
            "first_shown": "2024-02-27 16:06:46 +00:00",
            "format": "text",
            "last_shown": "2024-12-16 17:52:23 +00:00",
            "preview_image": {
                "height": 173,
                "url": "https://tpc.googlesyndication.com/archive/simgad/15229813770220225370",
                "width": 380
            },
            "preview_url": null,
            "rank_absolute": 17,
            "rank_group": 17,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR10650010192327999489?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR16925408400529948673",
            "first_shown": "2024-08-30 01:57:52 +00:00",
            "format": "image",
            "last_shown": "2024-12-16 15:38:13 +00:00",
            "preview_image": {
                "height": null,
                "url": null,
                "width": null
            },
            "preview_url": "https://displayads-formats.googleusercontent.com/ads/preview/content.js?client=ads-integrity-transparency&obfuscatedCustomerId=5208869368&creativeId=711736218410&uiFeatures=12,54&adGroupId=169452264929&itemIds=12656462369934181972&overlay=%3DH4sIAAAAAAAAALMSMxLhEuIMaWP7WX5yyXrBpDyDU91v-eq9ZLgEkouLXTKLC3ISK4NLijLz0oU4uNjc8_PTc1IB3kMzFzYAAAA&sig=ACiVB_w14Hi6K4ChzJNXm0MFUg_iRVsFdg&htmlParentId=fletch-render-7872052380634903449&responseCallback=fletchCallback7872052380634903449",
            "rank_absolute": 18,
            "rank_group": 18,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR16925408400529948673?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR03501750487844126721",
            "first_shown": "2024-04-10 07:41:25 +00:00",
            "format": "text",
            "last_shown": "2024-12-16 07:16:23 +00:00",
            "preview_image": {
                "height": 173,
                "url": "https://tpc.googlesyndication.com/archive/simgad/17031992437799811761",
                "width": 380
            },
            "preview_url": null,
            "rank_absolute": 19,
            "rank_group": 19,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR03501750487844126721?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR16195387380390166529",
            "first_shown": "2024-08-30 18:39:54 +00:00",
            "format": "text",
            "last_shown": "2024-10-02 17:11:44 +00:00",
            "preview_image": {
                "height": 173,
                "url": "https://tpc.googlesyndication.com/archive/simgad/183115202752550418",
                "width": 380
            },
            "preview_url": null,
            "rank_absolute": 20,
            "rank_group": 20,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR16195387380390166529?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR02762426224943824897",
            "first_shown": "2024-08-30 17:18:28 +00:00",
            "format": "text",
            "last_shown": "2024-10-02 17:03:39 +00:00",
            "preview_image": {
                "height": 173,
                "url": "https://tpc.googlesyndication.com/archive/simgad/893243941116924721",
                "width": 380
            },
            "preview_url": null,
            "rank_absolute": 21,
            "rank_group": 21,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR02762426224943824897?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR15947558559001083905",
            "first_shown": "2024-08-30 17:28:20 +00:00",
            "format": "text",
            "last_shown": "2024-10-02 16:09:44 +00:00",
            "preview_image": {
                "height": 173,
                "url": "https://tpc.googlesyndication.com/archive/simgad/9803345636872906457",
                "width": 380
            },
            "preview_url": null,
            "rank_absolute": 22,
            "rank_group": 22,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR15947558559001083905?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR15240892540224798721",
            "first_shown": "2024-08-30 17:46:36 +00:00",
            "format": "text",
            "last_shown": "2024-10-02 15:34:51 +00:00",
            "preview_image": {
                "height": 173,
                "url": "https://tpc.googlesyndication.com/archive/simgad/4418485911321255295",
                "width": 380
            },
            "preview_url": null,
            "rank_absolute": 23,
            "rank_group": 23,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR15240892540224798721?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR14436324356843896833",
            "first_shown": "2024-08-30 17:29:31 +00:00",
            "format": "text",
            "last_shown": "2024-10-02 13:20:53 +00:00",
            "preview_image": {
                "height": 173,
                "url": "https://tpc.googlesyndication.com/archive/simgad/6764803436720208632",
                "width": 380
            },
            "preview_url": null,
            "rank_absolute": 24,
            "rank_group": 24,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR14436324356843896833?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR17427754492798959617",
            "first_shown": "2022-03-22 11:53:30 +00:00",
            "format": "text",
            "last_shown": "2024-04-23 01:36:34 +00:00",
            "preview_image": {
                "height": 173,
                "url": "https://tpc.googlesyndication.com/archive/simgad/16308462732811651852",
                "width": 380
            },
            "preview_url": null,
            "rank_absolute": 25,
            "rank_group": 25,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR17427754492798959617?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR00819078850649522177",
            "first_shown": "2022-03-22 09:17:49 +00:00",
            "format": "text",
            "last_shown": "2024-04-23 01:19:35 +00:00",
            "preview_image": {
                "height": 173,
                "url": "https://tpc.googlesyndication.com/archive/simgad/12506383848107454316",
                "width": 380
            },
            "preview_url": null,
            "rank_absolute": 26,
            "rank_group": 26,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR00819078850649522177?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR00317366266056671233",
            "first_shown": "2022-04-03 15:16:45 +00:00",
            "format": "text",
            "last_shown": "2024-04-23 01:07:01 +00:00",
            "preview_image": {
                "height": 167,
                "url": "https://tpc.googlesyndication.com/archive/simgad/11727415303717392641",
                "width": 380
            },
            "preview_url": null,
            "rank_absolute": 27,
            "rank_group": 27,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR00317366266056671233?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR00919300778630316033",
            "first_shown": "2022-04-03 15:42:40 +00:00",
            "format": "text",
            "last_shown": "2024-04-23 00:20:31 +00:00",
            "preview_image": {
                "height": 167,
                "url": "https://tpc.googlesyndication.com/archive/simgad/15333520359311402986",
                "width": 380
            },
            "preview_url": null,
            "rank_absolute": 28,
            "rank_group": 28,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR00919300778630316033?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR01821017033437872129",
            "first_shown": "2022-11-15 07:50:20 +00:00",
            "format": "text",
            "last_shown": "2024-04-22 23:41:56 +00:00",
            "preview_image": {
                "height": 173,
                "url": "https://tpc.googlesyndication.com/archive/simgad/8872289692396518795",
                "width": 380
            },
            "preview_url": null,
            "rank_absolute": 29,
            "rank_group": 29,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR01821017033437872129?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR12038411319116824577",
            "first_shown": "2022-03-22 12:43:42 +00:00",
            "format": "text",
            "last_shown": "2024-04-22 23:11:11 +00:00",
            "preview_image": {
                "height": 173,
                "url": "https://tpc.googlesyndication.com/archive/simgad/9289221813999617495",
                "width": 380
            },
            "preview_url": null,
            "rank_absolute": 30,
            "rank_group": 30,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR12038411319116824577?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR07363238468509499393",
            "first_shown": "2022-03-22 07:07:09 +00:00",
            "format": "text",
            "last_shown": "2024-04-22 23:10:18 +00:00",
            "preview_image": {
                "height": 167,
                "url": "https://tpc.googlesyndication.com/archive/simgad/13221045966388084029",
                "width": 380
            },
            "preview_url": null,
            "rank_absolute": 31,
            "rank_group": 31,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR07363238468509499393?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR12040284990009769985",
            "first_shown": "2022-04-02 23:37:51 +00:00",
            "format": "text",
            "last_shown": "2024-04-22 23:03:01 +00:00",
            "preview_image": {
                "height": 173,
                "url": "https://tpc.googlesyndication.com/archive/simgad/10992641551428462173",
                "width": 380
            },
            "preview_url": null,
            "rank_absolute": 32,
            "rank_group": 32,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR12040284990009769985?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR16963305456783065089",
            "first_shown": "2022-03-22 07:03:33 +00:00",
            "format": "text",
            "last_shown": "2024-04-22 22:52:02 +00:00",
            "preview_image": {
                "height": 167,
                "url": "https://tpc.googlesyndication.com/archive/simgad/9317417495344970460",
                "width": 380
            },
            "preview_url": null,
            "rank_absolute": 33,
            "rank_group": 33,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR16963305456783065089?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR13635033594287095809",
            "first_shown": "2022-03-22 11:40:45 +00:00",
            "format": "text",
            "last_shown": "2024-04-22 21:50:49 +00:00",
            "preview_image": {
                "height": 167,
                "url": "https://tpc.googlesyndication.com/archive/simgad/9603120901908461863",
                "width": 380
            },
            "preview_url": null,
            "rank_absolute": 34,
            "rank_group": 34,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR13635033594287095809?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR18183016176743874561",
            "first_shown": "2022-03-23 14:34:22 +00:00",
            "format": "text",
            "last_shown": "2024-04-22 21:34:00 +00:00",
            "preview_image": {
                "height": 167,
                "url": "https://tpc.googlesyndication.com/archive/simgad/13415548772559329840",
                "width": 380
            },
            "preview_url": null,
            "rank_absolute": 35,
            "rank_group": 35,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR18183016176743874561?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR01292545050244284417",
            "first_shown": "2022-03-22 08:41:43 +00:00",
            "format": "text",
            "last_shown": "2024-04-22 20:23:02 +00:00",
            "preview_image": {
                "height": 173,
                "url": "https://tpc.googlesyndication.com/archive/simgad/15101337597938326900",
                "width": 380
            },
            "preview_url": null,
            "rank_absolute": 36,
            "rank_group": 36,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR01292545050244284417?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR04017574668524322817",
            "first_shown": "2022-04-03 12:47:01 +00:00",
            "format": "text",
            "last_shown": "2024-04-22 19:09:47 +00:00",
            "preview_image": {
                "height": 167,
                "url": "https://tpc.googlesyndication.com/archive/simgad/7154595940369260401",
                "width": 380
            },
            "preview_url": null,
            "rank_absolute": 37,
            "rank_group": 37,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR04017574668524322817?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR17472828937619898369",
            "first_shown": "2023-04-13 02:40:06 +00:00",
            "format": "text",
            "last_shown": "2024-04-22 03:12:51 +00:00",
            "preview_image": {
                "height": 173,
                "url": "https://tpc.googlesyndication.com/archive/simgad/9301049066002321294",
                "width": 380
            },
            "preview_url": null,
            "rank_absolute": 38,
            "rank_group": 38,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR17472828937619898369?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR05969148434198822913",
            "first_shown": "2022-03-22 11:55:01 +00:00",
            "format": "text",
            "last_shown": "2024-04-21 17:08:29 +00:00",
            "preview_image": {
                "height": 167,
                "url": "https://tpc.googlesyndication.com/archive/simgad/16261338752980428733",
                "width": 380
            },
            "preview_url": null,
            "rank_absolute": 39,
            "rank_group": 39,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR05969148434198822913?region=US",
            "verified": true
        },
        {
            "advertiser_id": "AR11920289341835837441",
            "creative_id": "CR01000242117383028737",
            "first_shown": "2022-03-23 15:49:57 +00:00",
            "format": "text",
            "last_shown": "2024-04-21 16:26:24 +00:00",
            "preview_image": {
                "height": 173,
                "url": "https://tpc.googlesyndication.com/archive/simgad/1578563133511920339",
                "width": 380
            },
            "preview_url": null,
            "rank_absolute": 40,
            "rank_group": 40,
            "title": "iHerb, LLC",
            "type": "ads_search",
            "url": "https://adstransparency.google.com/advertiser/AR11920289341835837441/creative/CR01000242117383028737?region=US",
            "verified": true
        }
    ]
}
```


# TikTok search

{% hint style="success" %}
You first need to create an account, you can sign up [here](https://app.adyntel.com/signup) to receive 50 credits to test it out.
{% endhint %}

The TikTok endpoint allows you to do an ads search on the platform using a keyword.

##

## API endpoint

<mark style="color:green;">`POST`</mark> `api.adyntel.com/tiktok_search`

*Execute a search for ads on TikTok using a keyword as the starting point.*

### Headers <a href="#headers" id="headers"></a>

<table><thead><tr><th>Name</th><th>Value</th><th data-type="checkbox">Required</th></tr></thead><tbody><tr><td>Content-Type</td><td><code>application/json</code></td><td>true</td></tr></tbody></table>

### &#x20;<a href="#undefined" id="undefined"></a>

### Body <a href="#body" id="body"></a>

<table><thead><tr><th width="148">Name</th><th width="98">Type</th><th width="359">Description</th><th data-type="checkbox">Required</th></tr></thead><tbody><tr><td><code>api_key</code></td><td>string</td><td>Adyntel API key</td><td>true</td></tr><tr><td><code>email</code></td><td>string</td><td>Adyntel account email</td><td>true</td></tr><tr><td><code>keyword</code></td><td>string</td><td>Your search query</td><td>true</td></tr><tr><td><code>country_code</code></td><td>string</td><td>Use if you want to limit the search to only one country</td><td>false</td></tr></tbody></table>

### Country codes

These are the values that can be used for country\_code. You can notice that most of the values are for European countries, for now we cannot use US as a filter.&#x20;

```
AT|BE|BG|CH|CY|CZ|DE|DK|EE|ES|FI|FR|GB|GR|HR|HU|IE|IS|IT|LI|LT|LU|LV|MT|NL|NO|PL|PT|RO|SE|SI|SK|ALL|at|be|bg|ch|cy|cz|de|dk|ee|es|fi|fr|gb|gr|hr|hu|ie|is|it|li|lt|lu|lv|mt|nl|no|pl|pt|ro|se|si|sk|all
```

If you make a call without the country\_code parameter the results would be global, would contain ads from all the countries, in no special order.

### Example request

Request using company domain

```
{
    "api_key": "hd-nndgi7gy6b3kdsgd-a",
    "email": "elon@tesla.com",
    "keyword": "toys",
    "country_code": "DE"
}
```

### Example response

This is the type of response you would get:

```
{
    "code": 0,
    "data": [
        {
            "audit_status": "1",
            "estimated_audience": "1K-10K",
            "first_shown_date": 1732233600000,
            "id": "1816440843906114",
            "image_urls": [
                "https://p21-ad-sg.ibyteimg.com/origin/tos-alisg-p-0051c001-sg/oE1eWLBJAHPb9GGUQAYD9KPvShIGgOfgABCBIf"
            ],
            "impression": 0,
            "last_shown_date": 1734307200000,
            "name": "Moose Toys",
            "rejection_info": null,
            "show_mode": 1,
            "sor_audit_status": "1",
            "spent": "",
            "type": "2",
            "videos": [
                {
                    "cover_img": "https://p21-ad-sg.ibyteimg.com/origin/tos-alisg-p-0051c001-sg/oE1eWLBJAHPb9GGUQAYD9KPvShIGgOfgABCBIf",
                    "video_url": "https://library.tiktok.com/api/v1/cdn/1734454268/video/aHR0cHM6Ly92NTgudGlrdG9rY2RuLmNvbS92aWRlby90b3MvYWxpc2cvdG9zLWFsaXNnLXZlLTAwNTFjMDAxLXNnL293QXhJaXZSbjBZM0FzQkF3VWFaQWl6UWt2R0N0UEFxREVpdkUv/57332311-8238-40af-8457-14ac1d34f7fa?a=475769&bti=PDU2NmYwMy86&ch=0&cr=0&dr=1&cd=0%7C0%7C0%7C0&cv=1&br=1068&bt=534&cs=0&ds=1&ft=.NpOcInz7ThiFf8OXq8Zmo&mime_type=video_mp4&qs=0&rc=aGQ3ZzplNTNlODw0OmU0NUBpM2R4ZWs5cmlldzMzODYzNEBiYDQwYF42NmMxNTYzYmNgYSMtY3JlMmRrLS1gLS1kMC1zcw%3D%3D&vvpl=1&l=20241217165105DC1A2559407258D5E6B3&VExpiration=1734475922&VSignature=0Nb-Eg1WULtmkEeRI3PAoA&btag=e00088000&cc=14"
                }
            ]
        },
        {
            "audit_status": "1",
            "estimated_audience": "10K-100K",
            "first_shown_date": 1733443200000,
            "id": "1817716223452193",
            "image_urls": [
                "https://p21-ad-sg.ibyteimg.com/origin/tos-alisg-p-0051c001-sg/oIioIovfaGVEaEBmwQqzXAiAD9MBXBwAA8xSTA"
            ],
            "impression": 0,
            "last_shown_date": 1734307200000,
            "name": "spielizeug",
            "rejection_info": null,
            "show_mode": 1,
            "sor_audit_status": "1",
            "spent": "",
            "type": "2",
            "videos": [
                {
                    "cover_img": "https://p21-ad-sg.ibyteimg.com/origin/tos-alisg-p-0051c001-sg/oIioIovfaGVEaEBmwQqzXAiAD9MBXBwAA8xSTA",
                    "video_url": "https://library.tiktok.com/api/v1/cdn/1734454268/video/aHR0cHM6Ly92NTgudGlrdG9rY2RuLmNvbS92aWRlby90b3MvYWxpc2cvdG9zLWFsaXNnLXZlLTAwNTFjMDAxLXNnL29vcUFEQWlhR2hCQm01d1ZBWEY4aWxUQWZ4b1FwekVCUWFJd1hQLw==/8d0ce881-c9a3-4d51-a639-572b15cc8dd5?a=475769&bti=PDU2NmYwMy86&ch=0&cr=0&dr=1&cd=0%7C0%7C0%7C0&cv=1&br=890&bt=445&cs=0&ds=1&ft=.NpOcInz7ThiFf8OXq8Zmo&mime_type=video_mp4&qs=0&rc=N2c0NGgzaWg8PDszaDo7PEBpam9lb2s5cnJudzMzODYzNEBjXi0vYzM2XmMxYF42NjUuYSMubG9fMmRjLTZgLS1kMC1zcw%3D%3D&vvpl=1&l=20241217165105DC1A2559407258D5E6B3&VExpiration=1734475888&VSignature=p-TWolTzEsgYDba3XK62Kw&btag=e000b8000&cc=14"
                }
            ]
        },
        {
            "audit_status": "1",
            "estimated_audience": "300K-400K",
            "first_shown_date": 1732147200000,
            "id": "1816327486060610",
            "image_urls": [
                "https://p21-ad-sg.ibyteimg.com/origin/tos-alisg-p-0051c001-sg/oIArBDanQEmBxN0QmSffBFCPxDgjdwIidyurlg"
            ],
            "impression": 0,
            "last_shown_date": 1734307200000,
            "name": "Moose Toys",
            "rejection_info": null,
            "show_mode": 1,
            "sor_audit_status": "1",
            "spent": "",
            "type": "2",
            "videos": [
                {
                    "cover_img": "https://p21-ad-sg.ibyteimg.com/origin/tos-alisg-p-0051c001-sg/oIArBDanQEmBxN0QmSffBFCPxDgjdwIidyurlg",
                    "video_url": "https://library.tiktok.com/api/v1/cdn/1734454268/video/aHR0cHM6Ly92NTgudGlrdG9rY2RuLmNvbS92aWRlby90b3MvYWxpc2cvdG9zLWFsaXNnLXZlLTAwNTFjMDAxLXNnL29vUUJQU2xBWndyREFkaUJnR0tOYW1mbURkQkZmQ0VuZ1FTSXU2Lw==/e542b471-6202-46d7-b66a-3fbea3e2eb0b?a=475769&bti=PDU2NmYwMy86&ch=0&cr=0&dr=1&cd=0%7C0%7C0%7C0&cv=1&br=1276&bt=638&cs=0&ds=1&ft=.NpOcInz7ThiFf8OXq8Zmo&mime_type=video_mp4&qs=0&rc=NDw5ODo6NWU1ZDVkODw0M0BpamhxZms5cjxqdjMzODYzNEBiNjU1NWNeXzYxMy4vMTFiYSNoYmo0MmRrZ3NgLS1kMC1zcw%3D%3D&vvpl=1&l=20241217165105DC1A2559407258D5E6B3&VExpiration=1734475907&VSignature=n-TNgydkqWxHoW19fRFhvA&btag=e00088000&cc=14"
                }
            ]
        },
        {
            "audit_status": "1",
            "estimated_audience": "200K-300K",
            "first_shown_date": 1732147200000,
            "id": "1816327486068738",
            "image_urls": [
                "https://p21-ad-sg.ibyteimg.com/origin/tos-alisg-p-0051c001-sg/oIArBDanQEmBxN0QmSffBFCPxDgjdwIidyurlg"
            ],
            "impression": 0,
            "last_shown_date": 1734307200000,
            "name": "Moose Toys",
            "rejection_info": null,
            "show_mode": 1,
            "sor_audit_status": "1",
            "spent": "",
            "type": "2",
            "videos": [
                {
                    "cover_img": "https://p21-ad-sg.ibyteimg.com/origin/tos-alisg-p-0051c001-sg/oIArBDanQEmBxN0QmSffBFCPxDgjdwIidyurlg",
                    "video_url": "https://library.tiktok.com/api/v1/cdn/1734454268/video/aHR0cHM6Ly92NTgudGlrdG9rY2RuLmNvbS92aWRlby90b3MvYWxpc2cvdG9zLWFsaXNnLXZlLTAwNTFjMDAxLXNnL29vUUJQU2xBWndyREFkaUJnR0tOYW1mbURkQkZmQ0VuZ1FTSXU2Lw==/c26ddfff-01d6-4fbf-b148-10abee7d536e?a=475769&bti=PDU2NmYwMy86&ch=0&cr=0&dr=1&cd=0%7C0%7C0%7C0&cv=1&br=1276&bt=638&cs=0&ds=1&ft=.NpOcInz7ThiFf8OXq8Zmo&mime_type=video_mp4&qs=0&rc=NDw5ODo6NWU1ZDVkODw0M0BpamhxZms5cjxqdjMzODYzNEBiNjU1NWNeXzYxMy4vMTFiYSNoYmo0MmRrZ3NgLS1kMC1zcw%3D%3D&vvpl=1&l=20241217165105DC1A2559407258D5E6B3&VExpiration=1734475907&VSignature=n-TNgydkqWxHoW19fRFhvA&btag=e00088000&cc=14"
                }
            ]
        },
        {
            "audit_status": "1",
            "estimated_audience": "200K-300K",
            "first_shown_date": 1732147200000,
            "id": "1816343708674162",
            "image_urls": [
                "https://p21-ad-sg.ibyteimg.com/origin/tos-alisg-p-0051c001-sg/o4zeAQfgYhebjUj8Ag4dAkLMItfezzYzXxoZUe"
            ],
            "impression": 0,
            "last_shown_date": 1734307200000,
            "name": "Moose Toys",
            "rejection_info": null,
            "show_mode": 1,
            "sor_audit_status": "1",
            "spent": "",
            "type": "2",
            "videos": [
                {
                    "cover_img": "https://p21-ad-sg.ibyteimg.com/origin/tos-alisg-p-0051c001-sg/o4zeAQfgYhebjUj8Ag4dAkLMItfezzYzXxoZUe",
                    "video_url": "https://library.tiktok.com/api/v1/cdn/1734454268/video/aHR0cHM6Ly92NTgudGlrdG9rY2RuLmNvbS92aWRlby90b3MvYWxpc2cvdG9zLWFsaXNnLXZlLTAwNTFjMDAxLXNnL29JYmVZNHhmemdsQVJlRzhmQXpBdFVlOWdxWmpBS0lvRFltRWhmLw==/cd37aaef-fa58-45f3-890a-7aaff56de5e0?a=475769&bti=PDU2NmYwMy86&ch=0&cr=0&dr=1&cd=0%7C0%7C0%7C0&cv=1&br=1148&bt=574&cs=0&ds=1&ft=.NpOcInz7ThiFf8OXq8Zmo&mime_type=video_mp4&qs=0&rc=NzQ5OmQ7ZmQ1NDc1ZmU6aUBpM2k0eXE5cnFudjMzODYzNEBiNS9hMzYuNV4xMV5jYy9fYSMyMXEwMmRzYXNgLS1kMC1zcw%3D%3D&vvpl=1&l=20241217165105DC1A2559407258D5E6B3&VExpiration=1734475882&VSignature=lp9X41b3rP5LvhTGG1vVyQ&btag=e000b8000&cc=14"
                }
            ]
        },
        {
            "audit_status": "1",
            "estimated_audience": "200K-300K",
            "first_shown_date": 1732147200000,
            "id": "1816343708680306",
            "image_urls": [
                "https://p21-ad-sg.ibyteimg.com/origin/tos-alisg-p-0051c001-sg/o4zeAQfgYhebjUj8Ag4dAkLMItfezzYzXxoZUe"
            ],
            "impression": 0,
            "last_shown_date": 1734307200000,
            "name": "Moose Toys",
            "rejection_info": null,
            "show_mode": 1,
            "sor_audit_status": "1",
            "spent": "",
            "type": "2",
            "videos": [
                {
                    "cover_img": "https://p21-ad-sg.ibyteimg.com/origin/tos-alisg-p-0051c001-sg/o4zeAQfgYhebjUj8Ag4dAkLMItfezzYzXxoZUe",
                    "video_url": "https://library.tiktok.com/api/v1/cdn/1734454268/video/aHR0cHM6Ly92NTgudGlrdG9rY2RuLmNvbS92aWRlby90b3MvYWxpc2cvdG9zLWFsaXNnLXZlLTAwNTFjMDAxLXNnL29JYmVZNHhmemdsQVJlRzhmQXpBdFVlOWdxWmpBS0lvRFltRWhmLw==/1eeacf96-29be-45d1-9460-cd6145e2802f?a=475769&bti=PDU2NmYwMy86&ch=0&cr=0&dr=1&cd=0%7C0%7C0%7C0&cv=1&br=1148&bt=574&cs=0&ds=1&ft=.NpOcInz7ThiFf8OXq8Zmo&mime_type=video_mp4&qs=0&rc=NzQ5OmQ7ZmQ1NDc1ZmU6aUBpM2k0eXE5cnFudjMzODYzNEBiNS9hMzYuNV4xMV5jYy9fYSMyMXEwMmRzYXNgLS1kMC1zcw%3D%3D&vvpl=1&l=20241217165105DC1A2559407258D5E6B3&VExpiration=1734475882&VSignature=lp9X41b3rP5LvhTGG1vVyQ&btag=e000b8000&cc=14"
                }
            ]
        },
        {
            "audit_status": "1",
            "estimated_audience": "1K-10K",
            "first_shown_date": 1732233600000,
            "id": "1816440843911234",
            "image_urls": [
                "https://p21-ad-sg.ibyteimg.com/origin/tos-alisg-p-0051c001-sg/oE1eWLBJAHPb9GGUQAYD9KPvShIGgOfgABCBIf"
            ],
            "impression": 0,
            "last_shown_date": 1734307200000,
            "name": "Moose Toys",
            "rejection_info": null,
            "show_mode": 1,
            "sor_audit_status": "1",
            "spent": "",
            "type": "2",
            "videos": [
                {
                    "cover_img": "https://p21-ad-sg.ibyteimg.com/origin/tos-alisg-p-0051c001-sg/oE1eWLBJAHPb9GGUQAYD9KPvShIGgOfgABCBIf",
                    "video_url": "https://library.tiktok.com/api/v1/cdn/1734454268/video/aHR0cHM6Ly92NTgudGlrdG9rY2RuLmNvbS92aWRlby90b3MvYWxpc2cvdG9zLWFsaXNnLXZlLTAwNTFjMDAxLXNnL293QXhJaXZSbjBZM0FzQkF3VWFaQWl6UWt2R0N0UEFxREVpdkUv/a7d1acbe-4225-4855-a77f-888a2fff67bd?a=475769&bti=PDU2NmYwMy86&ch=0&cr=0&dr=1&cd=0%7C0%7C0%7C0&cv=1&br=1068&bt=534&cs=0&ds=1&ft=.NpOcInz7ThiFf8OXq8Zmo&mime_type=video_mp4&qs=0&rc=aGQ3ZzplNTNlODw0OmU0NUBpM2R4ZWs5cmlldzMzODYzNEBiYDQwYF42NmMxNTYzYmNgYSMtY3JlMmRrLS1gLS1kMC1zcw%3D%3D&vvpl=1&l=20241217165105DC1A2559407258D5E6B3&VExpiration=1734475922&VSignature=0Nb-Eg1WULtmkEeRI3PAoA&btag=e00088000&cc=14"
                }
            ]
        },
        {
            "audit_status": "1",
            "estimated_audience": "200K-300K",
            "first_shown_date": 1730160000000,
            "id": "1814266459680817",
            "image_urls": [
                "https://p21-ad-sg.ibyteimg.com/origin/tos-alisg-p-0051c001-sg/oEDyhYtDZWY0EVUB8zDAAMslz1bLivAEBCyiI"
            ],
            "impression": 0,
            "last_shown_date": 1734220800000,
            "name": "Moose Toys",
            "rejection_info": null,
            "show_mode": 1,
            "sor_audit_status": "1",
            "spent": "",
            "type": "2",
            "videos": [
                {
                    "cover_img": "https://p21-ad-sg.ibyteimg.com/origin/tos-alisg-p-0051c001-sg/oEDyhYtDZWY0EVUB8zDAAMslz1bLivAEBCyiI",
                    "video_url": "https://library.tiktok.com/api/v1/cdn/1734454268/video/aHR0cHM6Ly92NTgudGlrdG9rY2RuLmNvbS92aWRlby90b3MvYWxpc2cvdG9zLWFsaXNnLXZlLTAwNTFjMDAxLXNnL29zNUFWV2pPRURiVVl5QnZoeWlZUURJTTF6RUxpQVpBRDBtQkIv/f58a4aa3-787d-45fa-9f77-aef6bad82b02?a=475769&bti=PDU2NmYwMy86&ch=0&cr=0&dr=1&cd=0%7C0%7C0%7C0&cv=1&br=1160&bt=580&cs=0&ds=1&ft=.NpOcInz7ThiFf8OXq8Zmo&mime_type=video_mp4&qs=0&rc=ZjtnZjk5ZjtmZjZlaTQ6N0BpM3Jnd2w5cm9qdjMzODYzNEBiMWJeL2I0NjUxYDI2MC0wYSNfXi1hMmRra2RgLS1kMC1zcw%3D%3D&vvpl=1&l=20241217165105DC1A2559407258D5E6B3&VExpiration=1734475882&VSignature=THTfplYhms8nJWctU1yPgA&btag=e000b8000&cc=14"
                }
            ]
        },
        {
            "audit_status": "1",
            "estimated_audience": "200K-300K",
            "first_shown_date": 1730160000000,
            "id": "1814266459686961",
            "image_urls": [
                "https://p21-ad-sg.ibyteimg.com/origin/tos-alisg-p-0051c001-sg/oEDyhYtDZWY0EVUB8zDAAMslz1bLivAEBCyiI"
            ],
            "impression": 0,
            "last_shown_date": 1734220800000,
            "name": "Moose Toys",
            "rejection_info": null,
            "show_mode": 1,
            "sor_audit_status": "1",
            "spent": "",
            "type": "2",
            "videos": [
                {
                    "cover_img": "https://p21-ad-sg.ibyteimg.com/origin/tos-alisg-p-0051c001-sg/oEDyhYtDZWY0EVUB8zDAAMslz1bLivAEBCyiI",
                    "video_url": "https://library.tiktok.com/api/v1/cdn/1734454268/video/aHR0cHM6Ly92NTgudGlrdG9rY2RuLmNvbS92aWRlby90b3MvYWxpc2cvdG9zLWFsaXNnLXZlLTAwNTFjMDAxLXNnL29zNUFWV2pPRURiVVl5QnZoeWlZUURJTTF6RUxpQVpBRDBtQkIv/fe61e7ed-6e12-42ae-b95d-a52dbebbad41?a=475769&bti=PDU2NmYwMy86&ch=0&cr=0&dr=1&cd=0%7C0%7C0%7C0&cv=1&br=1160&bt=580&cs=0&ds=1&ft=.NpOcInz7ThiFf8OXq8Zmo&mime_type=video_mp4&qs=0&rc=ZjtnZjk5ZjtmZjZlaTQ6N0BpM3Jnd2w5cm9qdjMzODYzNEBiMWJeL2I0NjUxYDI2MC0wYSNfXi1hMmRra2RgLS1kMC1zcw%3D%3D&vvpl=1&l=20241217165105DC1A2559407258D5E6B3&VExpiration=1734475882&VSignature=THTfplYhms8nJWctU1yPgA&btag=e000b8000&cc=14"
                }
            ]
        },
        {
            "audit_status": "1",
            "estimated_audience": "0-1K",
            "first_shown_date": 1733961600000,
            "id": "1818236084771921",
            "image_urls": [
                "https://p21-ad-sg.ibyteimg.com/origin/tos-alisg-p-0051c001-sg/oEqq6OkIIPTXALR1CEoQmADffvKtCEGxGgrebK"
            ],
            "impression": 0,
            "last_shown_date": 1734048000000,
            "name": "杭州不言堂文化有限公司",
            "rejection_info": null,
            "show_mode": 1,
            "sor_audit_status": "1",
            "spent": "",
            "type": "2",
            "videos": [
                {
                    "cover_img": "https://p21-ad-sg.ibyteimg.com/origin/tos-alisg-p-0051c001-sg/oEqq6OkIIPTXALR1CEoQmADffvKtCEGxGgrebK",
                    "video_url": "https://library.tiktok.com/api/v1/cdn/1734454268/video/aHR0cHM6Ly92NTgudGlrdG9rY2RuLmNvbS92aWRlby90b3MvYWxpc2cvdG9zLWFsaXNnLXZlLTAwNTFjMDAxLXNnL29VU0pJY0JuQmdBRTZWTmhCaTYxZlFpQWFyWEJXaThlclVndktELw==/d587217d-98e7-4d50-9fc0-b45c680de2ec?a=475769&bti=PDU2NmYwMy86&ch=0&cr=0&dr=1&cd=0%7C0%7C0%7C0&cv=1&br=760&bt=380&cs=0&ds=1&ft=.NpOcInz7ThiFf8OXq8Zmo&mime_type=video_mp4&qs=0&rc=NzU4PDU4aGY1aGY6NWU0aUBpajVkNXY5cm9ldzMzODYzNEAyMy5eNTEyXjAxLmJhYWEvYSNkLjY2MmRzcmFgLS1kMDFzcw%3D%3D&vvpl=1&l=20241217165105DC1A2559407258D5E6B3&VExpiration=1734475889&VSignature=jx6ShMz5F_SUtJ6wIGmgEg&btag=e000b8000&cc=14"
                }
            ]
        },
        {
            "audit_status": "1",
            "estimated_audience": "0-1K",
            "first_shown_date": 1733961600000,
            "id": "1818236040793170",
            "image_urls": [
                "https://p21-ad-sg.ibyteimg.com/origin/tos-alisg-p-0051c001-sg/o00a7igWfAIC57B0CDNnP0BuvEBQFDeWUrJQY8"
            ],
            "impression": 0,
            "last_shown_date": 1734048000000,
            "name": "杭州不言堂文化有限公司",
            "rejection_info": null,
            "show_mode": 1,
            "sor_audit_status": "1",
            "spent": "",
            "type": "2",
            "videos": [
                {
                    "cover_img": "https://p21-ad-sg.ibyteimg.com/origin/tos-alisg-p-0051c001-sg/o00a7igWfAIC57B0CDNnP0BuvEBQFDeWUrJQY8",
                    "video_url": "https://library.tiktok.com/api/v1/cdn/1734454268/video/aHR0cHM6Ly92NTgudGlrdG9rY2RuLmNvbS92aWRlby90b3MvYWxpc2cvdG9zLWFsaXNnLXZlLTAwNTFjMDAxLXNnL28wYU9FWFFOSkRWcks5RExCQmdGUlcwTklmdjZuN0VCSFE3ZWFBLw==/e87811dd-f705-4695-acaa-ee3e7c4a6fdc?a=475769&bti=PDU2NmYwMy86&ch=0&cr=0&dr=1&cd=0%7C0%7C0%7C0&cv=1&br=876&bt=438&cs=0&ds=1&ft=.NpOcInz7ThiFf8OXq8Zmo&mime_type=video_mp4&qs=0&rc=NWdpMzRoZTU5ZDVpZTk6OEBpams7NHg5cnhldzMzODYzNEA2Yl5fMDE2X18xMjYvYDVgYSNfanMyMmRzcWFgLS1kMC1zcw%3D%3D&vvpl=1&l=20241217165105DC1A2559407258D5E6B3&VExpiration=1734475889&VSignature=jjUiV9IEL6l7gJhwmdFj3Q&btag=e000b8000&cc=14"
                }
            ]
        },
        {
            "audit_status": "1",
            "estimated_audience": "0-1K",
            "first_shown_date": 1734048000000,
            "id": "1818305507691601",
            "image_urls": [
                "https://p21-ad-sg.ibyteimg.com/origin/tos-alisg-p-0051c001-sg/o4BCAzCWHiFcLDeBEniBxoPKIIUSgcv7BQbfVN"
            ],
            "impression": 0,
            "last_shown_date": 1734048000000,
            "name": "杭州不言堂文化有限公司",
            "rejection_info": null,
            "show_mode": 1,
            "sor_audit_status": "1",
            "spent": "",
            "type": "2",
            "videos": [
                {
                    "cover_img": "https://p21-ad-sg.ibyteimg.com/origin/tos-alisg-p-0051c001-sg/o4BCAzCWHiFcLDeBEniBxoPKIIUSgcv7BQbfVN",
                    "video_url": "https://library.tiktok.com/api/v1/cdn/1734454268/video/aHR0cHM6Ly92NTgudGlrdG9rY2RuLmNvbS92aWRlby90b3MvYWxpc2cvdG9zLWFsaXNnLXZlLTAwNTFjMDAxLXNnL29rTFZ0T0JmSWlBY0VHQldLUWlRbXpEQkJ4ZUhQTnZibjdvZGdDLw==/6f3d9886-39ab-4afd-831b-d5377dbec546?a=475769&bti=PDU2NmYwMy86&ch=0&cr=0&dr=1&cd=0%7C0%7C0%7C0&cv=1&br=1454&bt=727&cs=0&ds=1&ft=.NpOcInz7ThiFf8OXq8Zmo&mime_type=video_mp4&qs=0&rc=Z2ZpOGkzOjY7NzZlaWY0NUBpMzV3eGs5cnl2dzMzODYzNEA2LS5fNl80XzMxLi42XzJjYSMyXnEyMmQ0cGFgLS1kMC1zcw%3D%3D&vvpl=1&l=20241217165105DC1A2559407258D5E6B3&VExpiration=1734475886&VSignature=N1V21IlDvfUn-UXdDKZzLA&btag=e000b8000&cc=14"
                }
            ]
        }
    ],
    "has_more": true,
    "search_id": "20241217165105DC1A2559407258D5E6B3",
    "total": 1000
}
```


# TikTok ad details

{% hint style="success" %}
You first need to create an account, you can sign up [here](https://app.adyntel.com/signup) to receive 50 credits to test it out.
{% endhint %}

The TikTok endpoint allows you to see all the details of a specific ad.

{% hint style="warning" %}
This endpoint needs an "id" that you get in the response from the [TikTok search](/ad-libraries/tiktok-search) endpoint.
{% endhint %}

##

## API endpoint

<mark style="color:green;">`POST`</mark> `api.adyntel.com/tiktok_ad_details`

*Get all the details for an ad on TikTok using the ad id as the starting point.*

### Headers <a href="#headers" id="headers"></a>

<table><thead><tr><th>Name</th><th>Value</th><th data-type="checkbox">Required</th></tr></thead><tbody><tr><td>Content-Type</td><td><code>application/json</code></td><td>true</td></tr></tbody></table>

### &#x20;<a href="#undefined" id="undefined"></a>

### Body <a href="#body" id="body"></a>

<table><thead><tr><th>Name</th><th>Type</th><th>Description</th><th data-type="checkbox">Required</th></tr></thead><tbody><tr><td><code>api_key</code></td><td>string</td><td>Adyntel API key</td><td>true</td></tr><tr><td><code>email</code></td><td>number</td><td>Adyntel account email</td><td>true</td></tr><tr><td><code>id</code></td><td>number</td><td>Ad id</td><td>true</td></tr></tbody></table>

### Example request

You can get the ID from the response you receive from the TikTok search endpoint.

```
{
    "api_key": "hd-nndgi7gy6b3kdsgd-a",
    "email": "elon@tesla.com",
    "id": "1816440843906114"
}
```

### Example response

```
{
    "code": 0,
    "data": {
        "ad": {
            "audit_status": "1",
            "estimated_audience": "100K-200K",
            "first_shown_date": 1732665600000,
            "id": "1816831112281202",
            "image_urls": [
                "https://p21-ad-sg.ibyteimg.com/origin/tos-alisg-p-0051c001-sg/ok3dA3fBoE9pmOzBhXRLlosyGAwAui9SiD07Iw"
            ],
            "impression": 0,
            "last_shown_date": 1733702400000,
            "name": "elevateshoes",
            "rejection_info": null,
            "show_mode": 1,
            "sor_audit_status": "1",
            "spent": "",
            "type": "2",
            "videos": [
                {
                    "cover_img": "https://p21-ad-sg.ibyteimg.com/origin/tos-alisg-p-0051c001-sg/ok3dA3fBoE9pmOzBhXRLlosyGAwAui9SiD07Iw",
                    "video_url": "https://library.tiktok.com/api/v1/cdn/1734464111/video/aHR0cHM6Ly92MTZtLnRpa3Rva2Nkbi5jb20vMTdlOThhMDI5NzA0YTE0YTFjY2U1NGVhMzI5MjExNjUvNjc2MjI3MDkvdmlkZW8vdG9zL2FsaXNnL3Rvcy1hbGlzZy12ZS0wMDUxYzAwMS1zZy9vd0hFd2k5UW05M0l6QVhmR2xMb0p5eFBkczlCQkFpN29oYUEyTy8=/ed57d125-b946-4379-8694-22c1c56f77be?a=475769&bti=PDU2NmYwMy86&ch=0&cr=0&dr=1&cd=0%7C0%7C0%7C0&cv=1&br=2126&bt=1063&cs=0&ds=1&ft=.NpOcInz7Thejh8OXq8Zmo&mime_type=video_mp4&qs=0&rc=Zzs2NTlnNTU1OjVmNDpkZ0BpamZ2cXc5cnc4dzMzODYzNEAzY2MuNWBiXjMxMy5gNDZjYSMycWJkMmRzcTBgLS1kMC1zcw%3D%3D&vvpl=1&l=20241217193509589C44FCF926E6EC3DFA&btag=e00088000&cc=3"
                }
            ]
        },
        "advertiser": {
            "adv_biz_ids": "7401666423417765905",
            "name": "elevateshoes",
            "registry_location": "Germany",
            "sponsor": "elevateshoes",
            "tt_user": null
        },
        "targeting": {
            "age": [
                {
                    "13-17": false,
                    "18-24": true,
                    "25-34": true,
                    "35-44": true,
                    "45-54": true,
                    "55+": true,
                    "region": "AT"
                },
                {
                    "13-17": false,
                    "18-24": true,
                    "25-34": true,
                    "35-44": true,
                    "45-54": true,
                    "55+": true,
                    "region": "DE"
                }
            ],
            "audience": "No",
            "creator_interactions": "",
            "gender": [
                {
                    "female": true,
                    "male": true,
                    "region": "AT",
                    "unknown": true
                },
                {
                    "female": true,
                    "male": true,
                    "region": "DE",
                    "unknown": true
                }
            ],
            "interest": "",
            "location": {
                "data": [
                    {
                        "impressions": "27K",
                        "region": "AT"
                    },
                    {
                        "impressions": "116K",
                        "region": "DE"
                    }
                ],
                "total_impressions": "100K-200K",
                "total_region": 2
            },
            "target_audience_size": "21.9M-26.8M",
            "video_interactions": ""
        }
    }
}
```


# Paid vs organic keywords

{% hint style="success" %}
You first need to create an account, you can sign up [here](https://app.adyntel.com/signup) to receive 50 credits to test it out.
{% endhint %}

This endpoint offers an overview of paid and organic keywords for a domain, with estimation of budgets and CPC included.

{% hint style="warning" %}
Company domain has to be passed in the 'company.com' format, meaning all prefixes like 'https\://' or '[www](http://www).' need to be removed.
{% endhint %}

##

## API endpoint

<mark style="color:green;">`POST`</mark> `api.adyntel.com/domain-keywords`

*Get all the details using the company domain as the input.*

### Headers <a href="#headers" id="headers"></a>

<table><thead><tr><th>Name</th><th>Value</th><th data-type="checkbox">Required</th></tr></thead><tbody><tr><td>Content-Type</td><td><code>application/json</code></td><td>true</td></tr></tbody></table>

### &#x20;<a href="#undefined" id="undefined"></a>

### Body <a href="#body" id="body"></a>

<table><thead><tr><th>Name</th><th>Type</th><th>Description</th><th data-type="checkbox">Required</th></tr></thead><tbody><tr><td><code>api_key</code></td><td>string</td><td>Adyntel API key</td><td>true</td></tr><tr><td><code>email</code></td><td>number</td><td>Adyntel account email</td><td>true</td></tr><tr><td><code>company_domain</code></td><td>string</td><td>Company website (without www or http)</td><td>true</td></tr></tbody></table>

### Example request

```
{
    "api_key": "hd-nndgi7gy6b3kdsgd-a",
    "email": "elon@tesla.com",
    "company_domain": "lokalise.com"
}
```

### Example response

The "organic" and "paid" objects contain the absolut numbers while "organic\_percentages" and "paid\_percentages" contains percetanges.&#x20;

For example, `pos_1` from `organic_percentages` is calculated by dividing `pos_1`  to `count` from `organic` and represents the percentage of organic keywords ranking 1st out of all the keywords.

```
{
    "organic": {
        "pos_1": 379,
        "pos_2_3": 1035,
        "pos_4_10": 3364,
        "pos_11_20": 4110,
        "pos_21_30": 4835,
        "pos_31_40": 4781,
        "pos_41_50": 3728,
        "pos_51_60": 2663,
        "pos_61_70": 2260,
        "pos_71_80": 2022,
        "pos_81_90": 1540,
        "pos_91_100": 1004,
        "count": 31721,
        "is_new": 11585,
        "is_up": 9083,
        "is_down": 8971,
        "is_lost": 0,
        "estimated_traffic": 371656
    },
    "organic_percentages": {
        "pos_1": 1.19,
        "pos_2_3": 3.26,
        "pos_4_10": 10.6,
        "pos_11_20": 12.96,
        "pos_21_30": 15.24,
        "pos_31_40": 15.07,
        "pos_41_50": 11.75,
        "pos_51_60": 8.4,
        "pos_61_70": 7.12,
        "pos_71_80": 6.37,
        "pos_81_90": 4.85,
        "pos_91_100": 3.17,
        "is_new": 36.52,
        "is_up": 28.63,
        "is_down": 28.28,
        "is_lost": 0.0
    },
    "paid": {
        "pos_1": 82,
        "pos_2_3": 11,
        "pos_4_10": 1,
        "pos_11_20": 0,
        "pos_21_30": 0,
        "pos_31_40": 0,
        "pos_41_50": 0,
        "pos_51_60": 0,
        "pos_61_70": 0,
        "pos_71_80": 0,
        "pos_81_90": 0,
        "pos_91_100": 0,
        "count": 94,
        "is_new": 88,
        "is_up": 1,
        "is_down": 1,
        "is_lost": 0,
        "estimated_traffic": 8812,
        "estimated_ad_budget": 47297,
        "estimated_avg_cpc": 5.37
    },
    "paid_percentages": {
        "pos_1": 87.23,
        "pos_2_3": 11.7,
        "pos_4_10": 1.06,
        "pos_11_20": 0.0,
        "pos_21_30": 0.0,
        "pos_31_40": 0.0,
        "pos_41_50": 0.0,
        "pos_51_60": 0.0,
        "pos_61_70": 0.0,
        "pos_71_80": 0.0,
        "pos_81_90": 0.0,
        "pos_91_100": 0.0,
        "is_new": 93.62,
        "is_up": 1.06,
        "is_down": 1.06,
        "is_lost": 0.0
    }
}
```


# Billing

I have billing related questions, can you help?

#### Managing your billing

You can manage your billing options and purchase credits from the profile page in the app (<https://app.adyntel.com/profile>).

#### Will I be charged monthly?

No, all purchases are one-time purchases and the credits you buy will never expire.

#### Do you only charge a credit when ads are returned for a company I'm checking?

No, we charge per request. That's because we have to scrape the ad libraries either way the moment you send us a request, which is a resource heavy workflow.

Because of that, we charge a credit for every request you send through the API.


# Contact

How can I contact the Adyntel team?

If you'd like to contact us you can reach out to <hello@adyntel.com> with any questions or suggestions you may have. Please allow for a 24 hour response time.


# Existing endpoints

####

## Facebook & Instagram Ads

> See which Facebook or Instagram ads a company is running by providing their website or Facebook page as input.

```json
{"openapi":"3.0.3","info":{"title":"Adyntel API","version":"1.0.0"},"servers":[{"url":"https://api.adyntel.com","description":"Production"}],"paths":{"/facebook":{"post":{"summary":"Facebook & Instagram Ads","description":"See which Facebook or Instagram ads a company is running by providing their website or Facebook page as input.","operationId":"facebookAds","tags":["Facebook"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/FacebookRequest"}}}},"responses":{"200":{"description":"Ads retrieved successfully. When `webhook_url` is provided, returns a job reference instead of ads data.","content":{"application/json":{"schema":{"oneOf":[{"type":"object","description":"Facebook Ad Library response containing ads data"},{"$ref":"#/components/schemas/JobStartedResponse"}]}}}},"204":{"description":"No ads found. You are not charged when you receive this response code."},"400":{"description":"Missing required parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"$ref":"#/components/responses/Unauthorized"},"402":{"$ref":"#/components/responses/InsufficientCredits"}}}}},"components":{"schemas":{"FacebookRequest":{"type":"object","required":["api_key","email"],"properties":{"api_key":{"type":"string","description":"Adyntel API key"},"email":{"type":"string","description":"Adyntel account email"},"facebook_url":{"type":"string","description":"Facebook page url (needs to start with https://)"},"company_domain":{"type":"string","description":"Company website"},"country_code":{"type":"string","description":"Parameter used to filter results for a specific country."},"continuation_token":{"type":"string","description":"Token used to grab the next set of ads"},"media_type":{"type":"string","enum":["image","meme","image_and_meme","video"],"description":"Parameter used to filter results for a specific type of media."},"active_status":{"type":"string","enum":["inactive","all"],"description":"This filters the search in the ad library by active, inactive or all ads."},"all_ads":{"type":"boolean","default":false,"description":"This will automatically use the continuation_token and scrape all the pages, returning all available ads."},"webhook_url":{"type":"string","description":"Webhook URL where the data will be returned"}}},"JobStartedResponse":{"type":"object","properties":{"status":{"type":"string"},"jobId":{"type":"string","format":"uuid","description":"Unique job ID. Track via GET /track/jobs and /track/results."}}},"ErrorResponse":{"type":"object","properties":{"message":{"type":"string"}}}},"responses":{"Unauthorized":{"description":"Invalid credentials","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"InsufficientCredits":{"description":"Insufficient credits","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}}
```

## Google Ads

> See which Google ads a company is running by providing their website as input.

```json
{"openapi":"3.0.3","info":{"title":"Adyntel API","version":"1.0.0"},"servers":[{"url":"https://api.adyntel.com","description":"Production"}],"paths":{"/google":{"post":{"summary":"Google Ads","description":"See which Google ads a company is running by providing their website as input.","operationId":"googleAds","tags":["Google"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GoogleSearchRequest"}}}},"responses":{"200":{"description":"Ads retrieved successfully. When `webhook_url` is provided, returns a job reference instead of ads data.","content":{"application/json":{"schema":{"oneOf":[{"type":"object","description":"Google Ads response containing ads data and total_ad_count"},{"$ref":"#/components/schemas/JobStartedResponse"}]}}}},"204":{"description":"No ads found, or request timed out (60s sync limit)"},"400":{"description":"Missing required parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"$ref":"#/components/responses/Unauthorized"},"402":{"$ref":"#/components/responses/InsufficientCredits"}}}}},"components":{"schemas":{"GoogleSearchRequest":{"type":"object","required":["email","api_key","company_domain"],"properties":{"email":{"type":"string","description":"Adyntel account email"},"api_key":{"type":"string","description":"Adyntel API key"},"company_domain":{"type":"string","description":"Company website"},"media_type":{"type":"string","enum":["text","image","video"],"description":"Filter results based on media type. Possible values: text, image, video."},"continuation_token":{"type":"string","description":"Token used to grab the next set of ads"},"all_ads":{"type":"boolean","default":false,"description":"This will automatically use the continuation_token and scrape all the pages, returning all available ads. Works only with a webhook_url as it needs a place to send each page, one by one. Warning: use this cautiously because there is no way of stopping it. If you use this on a domain that runs 10000 ads, it will try to scrape all the ads and it will use the credits (one page = one credit)"},"extract_text":{"type":"boolean","default":false,"description":"Extract text content from ad creatives"},"webhook_url":{"type":"string","description":"Webhook URL for async delivery"},"data_provider":{"type":"string","enum":["rapidapi","apify"],"description":"Data provider to use"}}},"JobStartedResponse":{"type":"object","properties":{"status":{"type":"string"},"jobId":{"type":"string","format":"uuid","description":"Unique job ID. Track via GET /track/jobs and /track/results."}}},"ErrorResponse":{"type":"object","properties":{"message":{"type":"string"}}}},"responses":{"Unauthorized":{"description":"Invalid credentials","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"InsufficientCredits":{"description":"Insufficient credits","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}}
```

## LinkedIn Ads

> See which LinkedIn ads a company is running by providing their website as input.

```json
{"openapi":"3.0.3","info":{"title":"Adyntel API","version":"1.0.0"},"servers":[{"url":"https://api.adyntel.com","description":"Production"}],"paths":{"/linkedin":{"post":{"summary":"LinkedIn Ads","description":"See which LinkedIn ads a company is running by providing their website as input.","operationId":"linkedinAds","tags":["LinkedIn"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/LinkedInRequest"}}}},"responses":{"200":{"description":"Ads retrieved successfully. When `webhook_url` is provided, returns a job reference instead of ads data.","content":{"application/json":{"schema":{"oneOf":[{"type":"object","properties":{"page_id":{"type":"string"},"continuation_token":{"type":"string","nullable":true},"is_last_page":{"type":"boolean"},"total_ads":{"type":"integer"},"ads":{"type":"array","items":{"type":"object"}}}},{"$ref":"#/components/schemas/JobStartedResponse"}]}}}},"204":{"description":"No ads found, or request timed out (60s sync limit)"},"400":{"description":"Missing required parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"$ref":"#/components/responses/Unauthorized"},"402":{"$ref":"#/components/responses/InsufficientCredits"}}}}},"components":{"schemas":{"LinkedInRequest":{"type":"object","required":["email","api_key"],"properties":{"email":{"type":"string","description":"Adyntel account email"},"api_key":{"type":"string","description":"Adyntel API key"},"linkedin_page_id":{"type":"string","description":"LinkedIn Page ID"},"company_domain":{"type":"string","description":"Company website"},"linkedin_page_ids":{"type":"array","items":{"type":"string"},"description":"Multiple LinkedIn page IDs for batch mode"},"company_domains":{"type":"array","items":{"type":"string"},"description":"Multiple company domains for batch mode"},"continuation_token":{"type":"string","description":"Token used to grab the next set of ads"},"extract":{"type":"string","description":"Extract specific data. Use 'number_of_ads' to return only the ad count."},"all_ads":{"type":"boolean","default":false,"description":"This will automatically use the continuation_token and scrape all the pages, returning all available ads. Works only with a webhook_url as it needs a place to send each page, one by one. Warning: use this cautiously because there is no way of stopping it. If you use this on a domain that runs 10000 ads, it will try to scrape all the ads and it will use the credits (one page = one credit)"},"live_ads":{"type":"boolean","default":false,"description":"Only return currently active ads"},"webhook_url":{"type":"string","description":"Webhook URL where the data will be returned"},"data_provider":{"type":"string","enum":["rapidapi","apify"],"description":"Data provider to use"}}},"JobStartedResponse":{"type":"object","properties":{"status":{"type":"string"},"jobId":{"type":"string","format":"uuid","description":"Unique job ID. Track via GET /track/jobs and /track/results."}}},"ErrorResponse":{"type":"object","properties":{"message":{"type":"string"}}}},"responses":{"Unauthorized":{"description":"Invalid credentials","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"InsufficientCredits":{"description":"Insufficient credits","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}}
```

## LinkedIn Keyword Search

> This endpoint runs a search in the LinkedIn Ad Library with the keyword and, optionally, the filters you provide.

```json
{"openapi":"3.0.3","info":{"title":"Adyntel API","version":"1.0.0"},"servers":[{"url":"https://api.adyntel.com","description":"Production"}],"paths":{"/linkedin-keyword-search":{"post":{"summary":"LinkedIn Keyword Search","description":"This endpoint runs a search in the LinkedIn Ad Library with the keyword and, optionally, the filters you provide.","operationId":"linkedinKeywordSearch","tags":["LinkedIn"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/LinkedInKeywordSearchRequest"}}}},"responses":{"200":{"description":"Search results retrieved successfully","content":{"application/json":{"schema":{"type":"object","description":"LinkedIn Ad Library keyword search results"}}}},"400":{"description":"Invalid dateOption or date format"},"401":{"$ref":"#/components/responses/Unauthorized"},"402":{"$ref":"#/components/responses/InsufficientCredits"},"500":{"description":"Failed to scrape LinkedIn Ad Library","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}}},"components":{"schemas":{"LinkedInKeywordSearchRequest":{"type":"object","required":["email","api_key","keyword"],"properties":{"email":{"type":"string","description":"Adyntel account email"},"api_key":{"type":"string","description":"Adyntel API key"},"keyword":{"type":"string","description":"Company website"},"country":{"type":"string","description":"The 2-digit country code"},"dateOption":{"type":"string","enum":["current-month","current-year","last-30-days","last-year","custom-date-range"],"description":"Valid options: current-month, current-year, custom-date-range, last-30-days, last-year or custom-date-range"},"startDate":{"type":"string","format":"date","description":"YYYY-MM-DD format (e.g. 2026-01-15)"},"endDate":{"type":"string","format":"date","description":"YYYY-MM-DD format (e.g. 2026-01-15)"},"continuation_token":{"type":"string","description":"A token that you can use to scrape the next page"}}},"ErrorResponse":{"type":"object","properties":{"message":{"type":"string"}}}},"responses":{"Unauthorized":{"description":"Invalid credentials","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"InsufficientCredits":{"description":"Insufficient credits","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}}
```

## Meta Ad Search

> Find ads in the ad library based on a keyword.

```json
{"openapi":"3.0.3","info":{"title":"Adyntel API","version":"1.0.0"},"servers":[{"url":"https://api.adyntel.com","description":"Production"}],"paths":{"/facebook_ad_search":{"post":{"summary":"Meta Ad Search","description":"Find ads in the ad library based on a keyword.","operationId":"facebookAdSearch","tags":["Facebook"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/FacebookAdSearchRequest"}}}},"responses":{"200":{"description":"Ads matching the keyword retrieved successfully","content":{"application/json":{"schema":{"type":"object","description":"Facebook Ad Library keyword search results"}}}},"400":{"description":"Missing keyword","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"$ref":"#/components/responses/Unauthorized"},"402":{"$ref":"#/components/responses/InsufficientCredits"},"500":{"description":"Server error","content":{"application/json":{"schema":{"type":"object","properties":{"error":{"type":"string"}}}}}}}}}},"components":{"schemas":{"FacebookAdSearchRequest":{"type":"object","required":["email","api_key","keyword"],"properties":{"email":{"type":"string","description":"Adyntel account email"},"api_key":{"type":"string","description":"Adyntel API key"},"keyword":{"type":"string","description":"The keyword you want to use in your search"},"country_code":{"type":"string","description":"To limit results to one specific country"},"continuation_token":{"type":"string","description":"Token for paginating through results"},"all_ads":{"type":"boolean","default":false,"description":"Return all ads (auto-paginate)"}}},"ErrorResponse":{"type":"object","properties":{"message":{"type":"string"}}}},"responses":{"Unauthorized":{"description":"Invalid credentials","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"InsufficientCredits":{"description":"Insufficient credits","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}}
```

## Google Shopping Ads

> Retrieve all Google shopping ads for a specified company by providing their domain. This differs from the standard Google endpoint, which reports search, image, and video ads on Google's platform.

```json
{"openapi":"3.0.3","info":{"title":"Adyntel API","version":"1.0.0"},"servers":[{"url":"https://api.adyntel.com","description":"Production"}],"paths":{"/google_shopping":{"post":{"summary":"Google Shopping Ads","description":"Retrieve all Google shopping ads for a specified company by providing their domain. This differs from the standard Google endpoint, which reports search, image, and video ads on Google's platform.","operationId":"googleShopping","tags":["Google"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GoogleShoppingRequest"}}}},"responses":{"200":{"description":"Ads retrieved successfully (shopping=true mode)","content":{"application/json":{"schema":{"type":"object","properties":{"ads":{"type":"array","items":{"type":"object"}}}}}}},"202":{"description":"Task created, poll `/google_shopping_status` with the returned ID","content":{"application/json":{"schema":{"type":"object","properties":{"id":{"type":"string","description":"Task ID for status polling"}}}}}},"204":{"description":"No ads found","content":{"application/json":{"schema":{"type":"object","properties":{"status":{"type":"string"},"message":{"type":"string"}}}}}},"400":{"description":"Missing required parameters"},"401":{"$ref":"#/components/responses/Unauthorized"},"402":{"$ref":"#/components/responses/InsufficientCredits"},"500":{"description":"Server error"}}}}},"components":{"schemas":{"GoogleShoppingRequest":{"type":"object","required":["api_key","email","company_domain"],"properties":{"api_key":{"type":"string","description":"Adyntel API key"},"email":{"type":"string","description":"Adyntel account email"},"company_domain":{"type":"string","description":"Company website"},"shopping":{"type":"boolean","default":false,"description":"When true, use Railway parser for direct synchronous results. When false, use DataForSEO (async, poll with /google_shopping_status)."}}},"ErrorResponse":{"type":"object","properties":{"message":{"type":"string"}}}},"responses":{"Unauthorized":{"description":"Invalid credentials","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"InsufficientCredits":{"description":"Insufficient credits","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}}
```

## Google Shopping Status

> Retrieve results from a Google Shopping search using a request ID obtained from the initial Google Shopping endpoint call. The service is free to use.

```json
{"openapi":"3.0.3","info":{"title":"Adyntel API","version":"1.0.0"},"servers":[{"url":"https://api.adyntel.com","description":"Production"}],"paths":{"/google_shopping_status":{"post":{"summary":"Google Shopping Status","description":"Retrieve results from a Google Shopping search using a request ID obtained from the initial Google Shopping endpoint call. The service is free to use.","operationId":"googleShoppingStatus","tags":["Google"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/GoogleShoppingStatusRequest"}}}},"responses":{"200":{"description":"Task completed, ads returned","content":{"application/json":{"schema":{"type":"object","properties":{"ads":{"type":"array","items":{"type":"object"}}}}}}},"202":{"description":"Task still processing","content":{"application/json":{"schema":{"type":"object","properties":{"status":{"type":"string"},"message":{"type":"string"}}}}}},"204":{"description":"Task completed but no ads found"},"401":{"$ref":"#/components/responses/Unauthorized"},"402":{"$ref":"#/components/responses/InsufficientCredits"}}}}},"components":{"schemas":{"GoogleShoppingStatusRequest":{"type":"object","required":["id","api_key","email"],"properties":{"id":{"type":"string","description":"The id you received as response"},"api_key":{"type":"string","description":"Adyntel API key"},"email":{"type":"string","description":"Adyntel account email"}}},"ErrorResponse":{"type":"object","properties":{"message":{"type":"string"}}}},"responses":{"Unauthorized":{"description":"Invalid credentials","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"InsufficientCredits":{"description":"Insufficient credits","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}}
```

## TikTok Ad Search

> Do an ads search on the platform using a keyword.

```json
{"openapi":"3.0.3","info":{"title":"Adyntel API","version":"1.0.0"},"servers":[{"url":"https://api.adyntel.com","description":"Production"}],"paths":{"/tiktok_search":{"post":{"summary":"TikTok Ad Search","description":"Do an ads search on the platform using a keyword.","operationId":"tiktokSearch","tags":["TikTok"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TikTokSearchRequest"}}}},"responses":{"200":{"description":"Ads matching the keyword retrieved successfully","content":{"application/json":{"schema":{"type":"object","description":"TikTok Ad Library search results"}}}},"400":{"description":"Missing required parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DetailErrorResponse"}}}},"401":{"$ref":"#/components/responses/UnauthorizedDetail"},"402":{"$ref":"#/components/responses/InsufficientCreditsDetail"},"500":{"description":"Server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DetailErrorResponse"}}}}}}}},"components":{"schemas":{"TikTokSearchRequest":{"type":"object","required":["keyword","api_key","email"],"properties":{"keyword":{"type":"string","description":"Your search query"},"api_key":{"type":"string","description":"Adyntel API key"},"email":{"type":"string","description":"Adyntel account email"},"country_code":{"type":"string","description":"Use if you want to limit the search to only one country"}}},"DetailErrorResponse":{"type":"object","properties":{"detail":{"type":"string"}}}},"responses":{"UnauthorizedDetail":{"description":"Invalid credentials","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DetailErrorResponse"}}}},"InsufficientCreditsDetail":{"description":"Insufficient credits","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DetailErrorResponse"}}}}}}}
```

## TikTok Ad Details

> Get all the details for an ad on TikTok using the ad id as the starting point.

```json
{"openapi":"3.0.3","info":{"title":"Adyntel API","version":"1.0.0"},"servers":[{"url":"https://api.adyntel.com","description":"Production"}],"paths":{"/tiktok_ad_details":{"post":{"summary":"TikTok Ad Details","description":"Get all the details for an ad on TikTok using the ad id as the starting point.","operationId":"tiktokAdDetails","tags":["TikTok"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/TikTokAdDetailsRequest"}}}},"responses":{"200":{"description":"Ad details retrieved successfully","content":{"application/json":{"schema":{"type":"object","description":"Detailed TikTok ad information"}}}},"400":{"description":"Missing required parameters","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DetailErrorResponse"}}}},"401":{"$ref":"#/components/responses/UnauthorizedDetail"},"402":{"$ref":"#/components/responses/InsufficientCreditsDetail"},"500":{"description":"Server error","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DetailErrorResponse"}}}}}}}},"components":{"schemas":{"TikTokAdDetailsRequest":{"type":"object","required":["id","api_key","email"],"properties":{"id":{"type":"string","description":"Ad id"},"api_key":{"type":"string","description":"Adyntel API key"},"email":{"type":"string","description":"Adyntel account email"}}},"DetailErrorResponse":{"type":"object","properties":{"detail":{"type":"string"}}}},"responses":{"UnauthorizedDetail":{"description":"Invalid credentials","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DetailErrorResponse"}}}},"InsufficientCreditsDetail":{"description":"Insufficient credits","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DetailErrorResponse"}}}}}}}
```

## Paid vs Organic Keywords

> An overview of paid and organic keywords for a domain, with estimation of budgets and CPC included.

```json
{"openapi":"3.0.3","info":{"title":"Adyntel API","version":"1.0.0"},"servers":[{"url":"https://api.adyntel.com","description":"Production"}],"paths":{"/domain-keywords":{"post":{"summary":"Paid vs Organic Keywords","description":"An overview of paid and organic keywords for a domain, with estimation of budgets and CPC included.","operationId":"domainKeywords","tags":["Keywords"],"requestBody":{"required":true,"content":{"application/json":{"schema":{"$ref":"#/components/schemas/KeywordsRequest"}}}},"responses":{"200":{"description":"Keywords analytics retrieved successfully","content":{"application/json":{"schema":{"$ref":"#/components/schemas/DomainKeywordsResponse"}}}},"400":{"description":"Missing domain","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"401":{"$ref":"#/components/responses/Unauthorized"},"402":{"$ref":"#/components/responses/InsufficientCredits"},"500":{"description":"Server error or API credentials not configured"}}}}},"components":{"schemas":{"KeywordsRequest":{"type":"object","required":["email","api_key","company_domain"],"properties":{"email":{"type":"string","description":"Adyntel account email"},"api_key":{"type":"string","description":"Adyntel API key"},"company_domain":{"type":"string","description":"Company website (without www or http)"},"language":{"type":"string","default":"English","description":"Language for keyword results"},"limit":{"type":"integer","default":1,"description":"Number of results to return"}}},"DomainKeywordsResponse":{"type":"object","properties":{"organic":{"type":"object","properties":{"count":{"type":"integer","description":"Total organic keywords count"},"estimated_traffic":{"type":"integer","description":"Estimated organic traffic"},"pos_1":{"type":"integer","description":"Keywords in position 1"},"pos_2_3":{"type":"integer","description":"Keywords in positions 2-3"},"pos_4_10":{"type":"integer","description":"Keywords in positions 4-10"},"pos_11_20":{"type":"integer","description":"Keywords in positions 11-20"},"pos_21_30":{"type":"integer","description":"Keywords in positions 21-30"},"pos_31_40":{"type":"integer","description":"Keywords in positions 31-40"},"pos_41_50":{"type":"integer","description":"Keywords in positions 41-50"},"pos_51_60":{"type":"integer","description":"Keywords in positions 51-60"},"pos_61_70":{"type":"integer","description":"Keywords in positions 61-70"},"pos_71_80":{"type":"integer","description":"Keywords in positions 71-80"},"pos_81_90":{"type":"integer","description":"Keywords in positions 81-90"},"pos_91_100":{"type":"integer","description":"Keywords in positions 91-100"},"is_new":{"type":"integer","description":"Newly ranked keywords"},"is_up":{"type":"integer","description":"Keywords that moved up"},"is_down":{"type":"integer","description":"Keywords that moved down"},"is_lost":{"type":"integer","description":"Keywords that were lost"}}},"organic_percentages":{"type":"object","description":"Percentage distribution for each organic position range and trend (pos_1, pos_2_3, ..., is_new, is_up, is_down, is_lost)"},"paid":{"type":"object","properties":{"count":{"type":"integer","description":"Total paid keywords count"},"estimated_traffic":{"type":"integer","description":"Estimated paid traffic"},"estimated_ad_budget":{"type":"integer","description":"Estimated advertising budget"},"estimated_avg_cpc":{"type":"number","description":"Estimated average cost per click"}}},"paid_percentages":{"type":"object","description":"Percentage distribution for paid keyword position ranges and trends"}}},"ErrorResponse":{"type":"object","properties":{"message":{"type":"string"}}}},"responses":{"Unauthorized":{"description":"Invalid credentials","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}},"InsufficientCredits":{"description":"Insufficient credits","content":{"application/json":{"schema":{"$ref":"#/components/schemas/ErrorResponse"}}}}}}}
```

## The FacebookRequest object

```json
{"openapi":"3.0.3","info":{"title":"Adyntel API","version":"1.0.0"},"components":{"schemas":{"FacebookRequest":{"type":"object","required":["api_key","email"],"properties":{"api_key":{"type":"string","description":"Adyntel API key"},"email":{"type":"string","description":"Adyntel account email"},"facebook_url":{"type":"string","description":"Facebook page url (needs to start with https://)"},"company_domain":{"type":"string","description":"Company website"},"country_code":{"type":"string","description":"Parameter used to filter results for a specific country."},"continuation_token":{"type":"string","description":"Token used to grab the next set of ads"},"media_type":{"type":"string","enum":["image","meme","image_and_meme","video"],"description":"Parameter used to filter results for a specific type of media."},"active_status":{"type":"string","enum":["inactive","all"],"description":"This filters the search in the ad library by active, inactive or all ads."},"all_ads":{"type":"boolean","default":false,"description":"This will automatically use the continuation_token and scrape all the pages, returning all available ads."},"webhook_url":{"type":"string","description":"Webhook URL where the data will be returned"}}}}}}
```

## The GoogleSearchRequest object

```json
{"openapi":"3.0.3","info":{"title":"Adyntel API","version":"1.0.0"},"components":{"schemas":{"GoogleSearchRequest":{"type":"object","required":["email","api_key","company_domain"],"properties":{"email":{"type":"string","description":"Adyntel account email"},"api_key":{"type":"string","description":"Adyntel API key"},"company_domain":{"type":"string","description":"Company website"},"media_type":{"type":"string","enum":["text","image","video"],"description":"Filter results based on media type. Possible values: text, image, video."},"continuation_token":{"type":"string","description":"Token used to grab the next set of ads"},"all_ads":{"type":"boolean","default":false,"description":"This will automatically use the continuation_token and scrape all the pages, returning all available ads. Works only with a webhook_url as it needs a place to send each page, one by one. Warning: use this cautiously because there is no way of stopping it. If you use this on a domain that runs 10000 ads, it will try to scrape all the ads and it will use the credits (one page = one credit)"},"extract_text":{"type":"boolean","default":false,"description":"Extract text content from ad creatives"},"webhook_url":{"type":"string","description":"Webhook URL for async delivery"},"data_provider":{"type":"string","enum":["rapidapi","apify"],"description":"Data provider to use"}}}}}}
```

## The LinkedInKeywordSearchRequest object

```json
{"openapi":"3.0.3","info":{"title":"Adyntel API","version":"1.0.0"},"components":{"schemas":{"LinkedInKeywordSearchRequest":{"type":"object","required":["email","api_key","keyword"],"properties":{"email":{"type":"string","description":"Adyntel account email"},"api_key":{"type":"string","description":"Adyntel API key"},"keyword":{"type":"string","description":"Company website"},"country":{"type":"string","description":"The 2-digit country code"},"dateOption":{"type":"string","enum":["current-month","current-year","last-30-days","last-year","custom-date-range"],"description":"Valid options: current-month, current-year, custom-date-range, last-30-days, last-year or custom-date-range"},"startDate":{"type":"string","format":"date","description":"YYYY-MM-DD format (e.g. 2026-01-15)"},"endDate":{"type":"string","format":"date","description":"YYYY-MM-DD format (e.g. 2026-01-15)"},"continuation_token":{"type":"string","description":"A token that you can use to scrape the next page"}}}}}}
```

## The FacebookAdSearchRequest object

```json
{"openapi":"3.0.3","info":{"title":"Adyntel API","version":"1.0.0"},"components":{"schemas":{"FacebookAdSearchRequest":{"type":"object","required":["email","api_key","keyword"],"properties":{"email":{"type":"string","description":"Adyntel account email"},"api_key":{"type":"string","description":"Adyntel API key"},"keyword":{"type":"string","description":"The keyword you want to use in your search"},"country_code":{"type":"string","description":"To limit results to one specific country"},"continuation_token":{"type":"string","description":"Token for paginating through results"},"all_ads":{"type":"boolean","default":false,"description":"Return all ads (auto-paginate)"}}}}}}
```

## The LinkedInRequest object

```json
{"openapi":"3.0.3","info":{"title":"Adyntel API","version":"1.0.0"},"components":{"schemas":{"LinkedInRequest":{"type":"object","required":["email","api_key"],"properties":{"email":{"type":"string","description":"Adyntel account email"},"api_key":{"type":"string","description":"Adyntel API key"},"linkedin_page_id":{"type":"string","description":"LinkedIn Page ID"},"company_domain":{"type":"string","description":"Company website"},"linkedin_page_ids":{"type":"array","items":{"type":"string"},"description":"Multiple LinkedIn page IDs for batch mode"},"company_domains":{"type":"array","items":{"type":"string"},"description":"Multiple company domains for batch mode"},"continuation_token":{"type":"string","description":"Token used to grab the next set of ads"},"extract":{"type":"string","description":"Extract specific data. Use 'number_of_ads' to return only the ad count."},"all_ads":{"type":"boolean","default":false,"description":"This will automatically use the continuation_token and scrape all the pages, returning all available ads. Works only with a webhook_url as it needs a place to send each page, one by one. Warning: use this cautiously because there is no way of stopping it. If you use this on a domain that runs 10000 ads, it will try to scrape all the ads and it will use the credits (one page = one credit)"},"live_ads":{"type":"boolean","default":false,"description":"Only return currently active ads"},"webhook_url":{"type":"string","description":"Webhook URL where the data will be returned"},"data_provider":{"type":"string","enum":["rapidapi","apify"],"description":"Data provider to use"}}}}}}
```

## The GoogleShoppingRequest object

```json
{"openapi":"3.0.3","info":{"title":"Adyntel API","version":"1.0.0"},"components":{"schemas":{"GoogleShoppingRequest":{"type":"object","required":["api_key","email","company_domain"],"properties":{"api_key":{"type":"string","description":"Adyntel API key"},"email":{"type":"string","description":"Adyntel account email"},"company_domain":{"type":"string","description":"Company website"},"shopping":{"type":"boolean","default":false,"description":"When true, use Railway parser for direct synchronous results. When false, use DataForSEO (async, poll with /google_shopping_status)."}}}}}}
```

## The GoogleShoppingStatusRequest object

```json
{"openapi":"3.0.3","info":{"title":"Adyntel API","version":"1.0.0"},"components":{"schemas":{"GoogleShoppingStatusRequest":{"type":"object","required":["id","api_key","email"],"properties":{"id":{"type":"string","description":"The id you received as response"},"api_key":{"type":"string","description":"Adyntel API key"},"email":{"type":"string","description":"Adyntel account email"}}}}}}
```

## The TikTokSearchRequest object

```json
{"openapi":"3.0.3","info":{"title":"Adyntel API","version":"1.0.0"},"components":{"schemas":{"TikTokSearchRequest":{"type":"object","required":["keyword","api_key","email"],"properties":{"keyword":{"type":"string","description":"Your search query"},"api_key":{"type":"string","description":"Adyntel API key"},"email":{"type":"string","description":"Adyntel account email"},"country_code":{"type":"string","description":"Use if you want to limit the search to only one country"}}}}}}
```

## The TikTokAdDetailsRequest object

```json
{"openapi":"3.0.3","info":{"title":"Adyntel API","version":"1.0.0"},"components":{"schemas":{"TikTokAdDetailsRequest":{"type":"object","required":["id","api_key","email"],"properties":{"id":{"type":"string","description":"Ad id"},"api_key":{"type":"string","description":"Adyntel API key"},"email":{"type":"string","description":"Adyntel account email"}}}}}}
```

## The KeywordsRequest object

```json
{"openapi":"3.0.3","info":{"title":"Adyntel API","version":"1.0.0"},"components":{"schemas":{"KeywordsRequest":{"type":"object","required":["email","api_key","company_domain"],"properties":{"email":{"type":"string","description":"Adyntel account email"},"api_key":{"type":"string","description":"Adyntel API key"},"company_domain":{"type":"string","description":"Company website (without www or http)"},"language":{"type":"string","default":"English","description":"Language for keyword results"},"limit":{"type":"integer","default":1,"description":"Number of results to return"}}}}}}
```

## The DomainKeywordsResponse object

```json
{"openapi":"3.0.3","info":{"title":"Adyntel API","version":"1.0.0"},"components":{"schemas":{"DomainKeywordsResponse":{"type":"object","properties":{"organic":{"type":"object","properties":{"count":{"type":"integer","description":"Total organic keywords count"},"estimated_traffic":{"type":"integer","description":"Estimated organic traffic"},"pos_1":{"type":"integer","description":"Keywords in position 1"},"pos_2_3":{"type":"integer","description":"Keywords in positions 2-3"},"pos_4_10":{"type":"integer","description":"Keywords in positions 4-10"},"pos_11_20":{"type":"integer","description":"Keywords in positions 11-20"},"pos_21_30":{"type":"integer","description":"Keywords in positions 21-30"},"pos_31_40":{"type":"integer","description":"Keywords in positions 31-40"},"pos_41_50":{"type":"integer","description":"Keywords in positions 41-50"},"pos_51_60":{"type":"integer","description":"Keywords in positions 51-60"},"pos_61_70":{"type":"integer","description":"Keywords in positions 61-70"},"pos_71_80":{"type":"integer","description":"Keywords in positions 71-80"},"pos_81_90":{"type":"integer","description":"Keywords in positions 81-90"},"pos_91_100":{"type":"integer","description":"Keywords in positions 91-100"},"is_new":{"type":"integer","description":"Newly ranked keywords"},"is_up":{"type":"integer","description":"Keywords that moved up"},"is_down":{"type":"integer","description":"Keywords that moved down"},"is_lost":{"type":"integer","description":"Keywords that were lost"}}},"organic_percentages":{"type":"object","description":"Percentage distribution for each organic position range and trend (pos_1, pos_2_3, ..., is_new, is_up, is_down, is_lost)"},"paid":{"type":"object","properties":{"count":{"type":"integer","description":"Total paid keywords count"},"estimated_traffic":{"type":"integer","description":"Estimated paid traffic"},"estimated_ad_budget":{"type":"integer","description":"Estimated advertising budget"},"estimated_avg_cpc":{"type":"number","description":"Estimated average cost per click"}}},"paid_percentages":{"type":"object","description":"Percentage distribution for paid keyword position ranges and trends"}}}}}}
```

## The JobStartedResponse object

```json
{"openapi":"3.0.3","info":{"title":"Adyntel API","version":"1.0.0"},"components":{"schemas":{"JobStartedResponse":{"type":"object","properties":{"status":{"type":"string"},"jobId":{"type":"string","format":"uuid","description":"Unique job ID. Track via GET /track/jobs and /track/results."}}}}}}
```

## The ErrorResponse object

```json
{"openapi":"3.0.3","info":{"title":"Adyntel API","version":"1.0.0"},"components":{"schemas":{"ErrorResponse":{"type":"object","properties":{"message":{"type":"string"}}}}}}
```

## The DetailErrorResponse object

```json
{"openapi":"3.0.3","info":{"title":"Adyntel API","version":"1.0.0"},"components":{"schemas":{"DetailErrorResponse":{"type":"object","properties":{"detail":{"type":"string"}}}}}}
```


