canonical: https://jentic.com/apis/nativeads.com/native-ads-publisher-api

# Native Ads Publisher API

The Native Ads Publisher API returns publisher performance reports for a Native Ads account, matching the functionality of the publisher account interface. It reports earnings and activity by day, by website, and by widget over a date range, and issues the authentication token those report calls require through a login operation.

## For AI agents

Log in for an authentication token, then pull publisher performance reports by day, by website, and by widget over a date range for a Native Ads account.

## Scope

Does not handle campaign creation, billing, or ad serving. Use for retrieving publisher performance reports only.

## Capabilities

- Authenticate and obtain a publisher token through the login operation
- Retrieve daily publisher performance reports over a date range
- Retrieve per-website publisher reports over a date range
- Retrieve per-widget publisher reports over a date range

## Use cases

### Daily Revenue Reporting Inside an AI Agent

An AI agent logs in for a token and then pulls the daily publisher report for a date range, paging through the results. The daily report operation returns earnings and activity per day, so a monitoring assistant can summarize how a publisher account is performing without opening the account interface.

Example prompt: Call the login operation for a token, then request the daily report with a start and end date and page through the results.

### Website-Level Performance Breakdown

A workflow compares how different websites in a publisher account are earning. The website report operation returns activity grouped by website over a date range, giving an agent the figures it needs to rank sites or flag drops.

Example prompt: Request the website report with the token and a date range, then compare the per-website figures.

### Widget Performance Monitoring

An agent tracks how individual ad widgets perform so it can spot which placements earn most. The widget report operation returns activity grouped by widget over a date range, letting the agent monitor placements on a schedule.

Example prompt: Request the widget report with the token and a date range, then track the per-widget figures over time.

## Key endpoints

| Method | Path | Description |
| --- | --- | --- |
| POST | `/auth/default/login` | Log in and obtain an authentication token |
| GET | `/publisher/reports/daily` | Retrieve daily publisher reports |
| GET | `/publisher/reports/website` | Retrieve per-website publisher reports |
| GET | `/publisher/reports/widget` | Retrieve per-widget publisher reports |

## Key resources

- **Authentication** — Obtain the token that report operations require via login
- **Reports** — Retrieve publisher performance by day, by website, and by widget

## Why Jentic

- **Setup:** Wiring the Native Ads Publisher API by hand means logging in to fetch a token, appending it to every report call, and paging through date-ranged results yourself. Through Jentic you install once, import it from the API Directory, store the credentials once, and your agent calls it.
- **Permission scoping:** The operations are what a rule bounds, so you can allow just the daily report and leave the website and widget reports out. You choose the operations your agent may call, so the rest are not included unless you add them.
- **Credential handling:** Your Native Ads Publisher credentials are stored once, encrypted, by your own Jentic One instance, and the token is injected as the token query parameter at execution time. It never enters the agent's prompt, logs, or context.
- **Discovery method:** Agents search Jentic by intent such as 'get a native ads publisher report' or 'ad revenue by website', and Jentic returns the matching Native Ads operation with its input schema so the agent calls the right endpoint without browsing the reference docs.

## Related APIs

- **Outbrain** — Native advertising platform with publisher reporting.
- **Criteo** — Advertising platform with performance reporting APIs.
- **Snapchat Marketing** — Ads reporting and management for Snapchat campaigns.

## FAQ

### What authentication does the Native Ads Publisher API use?

The three report operations require a token passed as the token query parameter, per its OpenAPI spec. You obtain that token from the login operation, which itself needs no token. Through Jentic the credentials are stored encrypted in your own Jentic One instance and injected at call time.

### What reports can the Native Ads Publisher API return?

It returns daily, per-website, and per-widget publisher reports. Each takes a start date, an end date, and limit and page parameters, so an agent can request a date range and page through the results.

### What are the rate limits for the Native Ads Publisher API?

The OpenAPI spec does not specify rate limits. Each report call takes limit and page parameters, so an agent pages through results; check the Native Ads documentation for any account limits.

### How do I pull a native ads report through Jentic?

Search Jentic for 'get a native ads publisher report', add the Native Ads Publisher API from the directory, and your agent logs in for a token, then calls the daily, website, or widget report with a start and end date. To run it on your own infrastructure, install Jentic One from its GitHub repo.

### Is there a Native Ads Publisher API MCP server?

You don't need an MCP server to give your agent the Native Ads Publisher API. Jentic connects it directly from the API Directory: import it, store your login credentials once, and your agent calls the report operations. Nothing extra loads into the agent's context until a call is made.

### Can I limit what my agent is allowed to do with the Native Ads Publisher API?

Yes. Write a rule that allows just the operations you want, such as the daily report without the website or widget reports, so the agent cannot call anything else, and every call is logged. The API takes its inputs as query parameters, so rules bound which operations your agent may call.
