Advertisers in Europe will gain access to a new high-intent channel as OpenAI significantly expands its global advertising footprint.
OpenAI is bringing ChatGPT Ads to its biggest group of new markets yet, giving European advertisers access to an emerging ad channel built around conversations rather than traditional search queries or social feeds.
What’s happening: ChatGPT Ads will expand to 31 European countries next week, including Germany, France, Spain, Italy, Sweden, Norway, Denmark, the Netherlands and Austria.
Advertisers won’t initially get direct self-service access. Campaigns will be available through OpenAI’s Ads Solutions team, agency partners and technology partners, with self-service access through Ads Manager expected later this summer.
The details: Ads will continue to appear only for people using ChatGPT’s Free and Go plans.
Plus, Pro and Enterprise users will remain ad-free.
OpenAI says ads are clearly labeled and kept separate from ChatGPT’s answers. Advertisers don’t receive users’ conversations, and advertising doesn’t influence the answers ChatGPT generates.
Why we care: The European expansion significantly increases the potential scale of ChatGPT as an advertising channel.
But the more interesting proposition for marketers is where those ads can appear in the customer journey.
People increasingly use ChatGPT to research products, compare alternatives and work through purchasing decisions by explaining their goals, preferences and constraints in natural language.
That creates an opportunity for advertisers to reach users while they’re actively evaluating what to do or buy — potentially providing a richer intent signal than a standalone keyword or passive social impression.
OpenAI also says tens of thousands of marketers have now advertised on ChatGPT.
Meanwhile: The ad platform itself has been evolving quickly.
- Expanded beyond CPM and CPC bidding to include conversion optimization.
- Added geo-targeting and custom audiences.
- Introduced the OpenAI Pixel and Conversions API to measure outcomes beyond clicks.
- Added third-party measurement integrations.
Those additions move ChatGPT Ads closer to the targeting, optimization and measurement infrastructure advertisers expect from established performance advertising platforms.
The big picture: OpenAI is moving rapidly from an experimental U.S. advertising product toward a global advertising platform. Europe is a major step in that transition. The bigger question is whether marketers can turn ChatGPT’s conversational intent into measurable performance — and whether OpenAI can scale advertising without undermining the trust that makes those conversations valuable in the first place.
See where your brand appears in AI search, where competitors are winning, and what it takes to become the answer AI recommends.
See your AI visibility
Topics on this page
ChatGPTDigital marketingEuropean UnionOnline advertisingOpenAIAdvertising TechnologyAustriaConversational AIDenmarkEuropeFranceGermanyItalyNetherlandsNorwayPerformance-based advertisingSpainSwedenUnited States
+14 more
Search Engine Land is owned by Semrush. We remain committed to providing high-quality coverage of marketing topics. Unless otherwise noted, this page’s content was written by either an employee or a paid contractor of Semrush Inc.
About the Author
Anu Adegbola has been Paid Media Editor of Search Engine Landsince 2024. She coverspaid search, paid social, retail media, video and more.
In 2008, Anu started her career delivering digital marketing campaigns (mostly but not exclusively Paid Search) by building strategies, maximising ROI, automating repetitive processes and bringing efficiency from every part of marketing departments through inspiring leadership both on agency, client and marketing tech side.Outside editing Search Engine Land article she is the founder of PPC networking event – PPC Live and host ofweekly podcast PPC Live The Podcast.She is also an international speaker with some of the stages she has presented on being SMX (US, UK, Munich, Berlin), Friends of Search (Amsterdam, NL), brightonSEO, The Marketing Meetup, HeroConf (PPC Hero), SearchLove, BiddableWorld, SESLondon, PPC Chat Live, AdWorld Experience (Bologna, IT) and more.
${fullHTML}
`;
const collapseEl = document.getElementById(collapseId);
const truncatedWrap = bioEl.querySelector(‘.authorTruncatedBio’);
const lessLink = bioEl.querySelector(‘.authorReadLessLink’);
// If Bootstrap’s Collapse is available, wire it up. Otherwise, a tiny fallback.
const hasBootstrap = typeof bootstrap !== ‘undefined’ && bootstrap.Collapse;
if (hasBootstrap) {
collapseEl.addEventListener(‘show.bs.collapse’, () => {
truncatedWrap.classList.add(‘d-none’);
});
collapseEl.addEventListener(‘hide.bs.collapse’, () => {
truncatedWrap.classList.remove(‘d-none’);
});
collapseEl.addEventListener(‘shown.bs.collapse’, () => {
if (lessLink) {
lessLink.onclick = (e) => {
e.preventDefault();
bootstrap.Collapse.getOrCreateInstance(collapseEl).hide();
};
}
});
} else {
// Minimal JS fallback if Bootstrap isn’t present
const moreLink = bioEl.querySelector(‘.authorReadMoreLink’);
moreLink.addEventListener(‘click’, (e) => {
e.preventDefault();
collapseEl.style.display = ‘block’;
truncatedWrap.style.display = ‘none’;
});
if (lessLink) {
lessLink.addEventListener(‘click’, (e) => {
e.preventDefault();
collapseEl.style.display = ‘none’;
truncatedWrap.style.display = ”;
});
}
}
}
// Initialize all author bio blocks on the page (supports multiple posts/cards)
document.querySelectorAll(‘[id^=”authorBio”]’).forEach(initAuthorBio);
})();
