OK for AI Logo

OK for AI - Control How AI Uses Your Content

Empowering content creators with AI permissions and attribution meta tags.

About OK for AI

The OK for AI initiative is a movement designed to empower content creators, artists, developers, and publishers with control over how artificial intelligence (AI) systems interact with and use their work.

As AI continues to grow in power and influence, it has become common for machine learning models to scrape, analyze, and repurpose publicly available content without explicit permission from the original creators. This initiative introduces a standardized way to communicate AI usage preferences through meta tags and structured data, ensuring that AI respects content ownership and properly attributes sources when required.

Why OK for AI Matters

AI models are being trained on vast amounts of data, often without clear consent from content owners. While some platforms are adding opt-out mechanisms, there is currently no universal standard for signaling AI inclusion or exclusion. The OK for AI initiative seeks to establish a transparent, easy-to-implement system that:

  • Gives creators a choice over how AI systems interact with their work.
  • Encourages ethical AI development that respects content ownership.
  • Promotes transparency by requiring attribution where appropriate.
  • Provides a flexible, structured format that integrates with HTML5 microdata and existing web standards.

How It Works

The OK for AI system is built on HTML microdata attributes and meta tags that content creators can add to their web pages, individual sections of content, or media files. These signals help AI systems determine:

  • Whether content can be used (allow or deny).
  • If attribution is required (required, optional, none).
  • How specific page elements (text, images, videos, etc.) should be handled.

For example:

  • A blog post might allow AI usage but require attribution to the original author.
  • A confidential report could explicitly block AI access.
  • A photo or video might be open for AI training but only with proper citation.

By adopting OK for AI, content creators can assert their digital rights in a rapidly evolving AI-driven landscape. While this system does not yet enforce compliance, it establishes an industry standard that AI developers, search engines, and content platforms can voluntarily recognize and adopt.

What’s Next for OK for AI?

For this initiative to be effective, broad industry adoption is essential. This movement aims to:

  1. Encourage website owners and content creators to implement these tags on their platforms.
  2. Work with AI companies, developers, and organizations to recognize and respect these signals.
  3. Submit proposals to standardization bodies (such as W3C) to establish this as a web standard.
  4. Educate the community about AI ethics and content ownership in the AI era.

OK for AI is not just a technical solution—it’s a statement about digital rights, content ownership, and the ethical future of AI. By implementing this system today, we take a step toward a more responsible AI ecosystem that respects human creativity.

Use Cases & Copy-Paste Examples

1. Global AI Permissions

These meta tags apply to the entire webpage and specify whether AI systems are allowed to use the content and whether attribution is required. This is the simplest way to set AI permissions for your entire site.

Example Use Case: A blog wants AI to be able to use its content but requires attribution.

<head>
  <meta name="okforai" content="true">
  <meta name="okforai-attribution" content="required">
</head>
        

Settings Explained:

  • okforai="true" → AI is allowed to use the content.
  • okforai-attribution="required" → AI must provide credit to the author when using the content.

2. Blocking AI from Using Content

This meta tag setup completely blocks AI from accessing and using content from the webpage.

Example Use Case: A company wants to prevent AI from scraping their website's proprietary research and reports.

<head>
  <meta name="okforai" content="false">
</head>
        

Settings Explained:

  • okforai="false" → AI is not allowed to use the content.

3. Section-Specific AI Permissions

Use this when different parts of the page have different AI permissions.

Example Use Case: A news website wants to allow AI to use its freely available news articles but block AI from premium content.

<article itemscope itemtype="https://schema.org/CreativeWork" data-ai-permission="allow" data-ai-attribution="required">
  <h2 itemprop="name">Public News Article</h2>
  <p itemprop="author">By Jane Doe</p>
  <p itemprop="text">This content can be used by AI but must provide attribution to the author.</p>
</article>

<section itemscope itemtype="https://schema.org/CreativeWork" data-ai-permission="deny">
  <h2 itemprop="name">Premium Content - AI Not Allowed</h2>
  <p>This section contains paid subscriber content that AI is not permitted to use.</p>
</section>
        

Settings Explained:

  • data-ai-permission="allow" → AI can use the content.
  • data-ai-attribution="required" → AI must provide credit.
  • data-ai-permission="deny" → AI is not allowed to use the premium content.

4. AI Permissions for Images

AI can be given specific rules for images, ensuring proper attribution when needed.

Example Use Case: A photographer allows AI to use an image as long as they are credited.

<figure itemscope itemtype="https://schema.org/ImageObject" data-ai-permission="allow" data-ai-attribution="required">
  <img src="photo.jpg" alt="Sunset Landscape" itemprop="contentUrl">
  <figcaption itemprop="caption">Photo by John Smith. AI must provide attribution when using this image.</figcaption>
</figure>
        

Settings Explained:

  • data-ai-permission="allow" → AI is allowed to use the image.
  • data-ai-attribution="required" → AI must credit the photographer.

5. Blocking AI from Using a Video

Prevent AI from accessing specific videos on your website.

Example Use Case: A filmmaker does not want AI to analyze or repurpose their video content.

<video controls data-ai-permission="deny" itemscope itemtype="https://schema.org/VideoObject">
  <source src="film-trailer.mp4" type="video/mp4">
  <p>Your browser does not support the video tag.</p>
</video>
        

Settings Explained:

  • data-ai-permission="deny" → AI is not allowed to use this video.

6. Allowing AI to Use Content Without Attribution

Some websites may allow AI to use content freely without requiring credit.

Example Use Case: An open-source documentation site allows AI to use its content without restrictions.

<section itemscope itemtype="https://schema.org/CreativeWork" data-ai-permission="allow" data-ai-attribution="none">
  <h2 itemprop="name">Open-Source Documentation</h2>
  <p>This content is freely available, and AI can use it without attribution.</p>
</section>
        

Settings Explained:

  • data-ai-permission="allow" → AI is allowed to use the content.
  • data-ai-attribution="none" → AI does not need to provide credit.

Live Markup Demonstration

This section demonstrates live implementations of the AI permission markup using Google microdata.

Public News Article

This content can be used by AI but must provide attribution to the author.

Premium Content - AI Not Allowed

This section contains paid subscriber content that AI is not permitted to use.

Sunset Landscape
Photo by Ken McClary. AI must provide attribution when using this image.

Open-Source Documentation

This content is freely available, and AI can use it without attribution.

Conclusion

The rise of AI has changed how digital content is created, shared, and consumed. While AI has the potential to drive innovation and make information more accessible, it also raises important questions about content ownership, ethical usage, and proper attribution.

The OK for AI initiative is more than just a technical solution—it’s a movement advocating for transparency, ethical AI practices, and creator rights in the digital era. By implementing AI permission tags, we empower individuals and businesses to take control of how their work is used by AI models, ensuring that their preferences are recognized and respected.

Our Mission

Our mission is to establish a clear, universally recognized standard for AI content permissions that protects creators while promoting ethical AI development. Through collaboration with content creators, developers, AI companies, and the broader web community, we aim to:

  • Give content owners control over how AI interacts with their work.
  • Encourage AI developers to recognize and respect user-defined permissions.
  • Work toward industry-wide adoption of AI permission tags as a formal web standard.
  • Educate the public about their rights in the evolving AI-driven internet.

How You Can Get Involved

The success of OK for AI depends on widespread adoption. Here’s how you can contribute to the movement:

  • Implement AI permissions on your website using the tags provided on this page.
  • Share this initiative with fellow content creators, developers, and organizations.
  • Advocate for ethical AI by encouraging companies and platforms to respect AI permissions.
  • Provide feedback to help improve and refine this standard.

By taking action today, you help shape the future of AI in a way that respects creativity, ownership, and transparency. Together, we can create an AI-powered world that values the rights of content creators and fosters responsible AI innovation.

Join the conversation and spread the word! Use #OKforAI on social media and let’s build a better AI future—together.

Disclaimer

These AI meta tags and structured data are provided solely as technical guidelines and do not enforce any permissions or confer legally binding rights until such practices become widely accepted as an industry standard. We encourage AI developers and platforms to recognize and respect these tags; however, they are offered “as is” without any warranty of accuracy, reliability, or legal enforceability. At this point in time, there is nothing in place on this website that can prevent AI from accessing or controlling how it absorbs content. Neither we nor any affiliated parties shall be held liable for any damages, losses, or legal consequences arising from the use or reliance on these tags or from any AI activity involving content from this site. This statement is not intended to provide legal advice, and you should consult with qualified legal counsel regarding your specific circumstances and any legal questions you may have.