Test Azure Content Safety. Ethnus Codemithra article cover.

Responsible AI in Azure: testing Content Safety on your own text

Codemithra Team

Codemithra Team

Microsoft's answer is a callable service, not a policy page. Azure AI Content Safety is an AI service with text and image APIs. It detects harmful user-generated and AI-generated content, and you can test it on your own sample text today. This guide explains what it checks and how the scores work. It also shows how to try it yourself, using the current documented path, which replaced an older shortcut that no longer exists. Checked against the official Microsoft Learn documentation on 8 September 2026.

What Azure AI Content Safety actually checks

Azure AI Content Safety scans text or images and returns a harm score for each category it supports. A developer then decides what to accept, flag or reject. It sits in front of user-generated content and generative AI output, and catches harm before another user sees it.

The service has one hard limit. Microsoft states plainly that Content Safety cannot detect illegal child exploitation images. That task needs a different, specialised system. Content Safety was never designed for it.

The four harm categories, and how severity is scored

Content Safety recognises four distinct harm categories: Hate and Fairness, Sexual, Violence and Self-Harm. Each has a matching API term: Hate, Sexual, Violence and SelfHarm. Each category is scored independently. One piece of text can score high on one category and zero on the rest.

Text and multimodal content support a full severity scale from 0 to 7. Most applications ask for the trimmed version instead, where the API reports 0, 2, 4 or 6. Microsoft maps the full scale down as follows: 0 or 1 becomes 0, and 2 or 3 becomes 2. 4 or 5 becomes 4, and 6 or 7 becomes 6. Image analysis only ever returns the trimmed scale.

How Content Safety scores text. Submit text: Paste text into the Foundry Try it out panel or call the Analyze Text API directly Then Score four categories: The service scores Hate, Sexual, Violence and Self-Harm independently, one text input, four separate results Then Read the severity band: Each category returns a severity level on the 0, 2, 4, 6 scale, from safe to high Then Accept or reject: Your configured threshold per category decides whether the text is accepted or rejected
One text input produces four independent category scores, each read on the 0, 2, 4, 6 severity band. Source: Microsoft Learn, harm categories, checked 8 September 2026.

Two more checks worth knowing

Content moderation is not the only tool in Content Safety. Prompt Shields scans text for the risk of a user-input attack on a large language model. It covers a direct jailbreak attempt and an indirect, cross-domain prompt injection hidden inside a document. This matters once your application lets a model read files a user has uploaded.

Groundedness detection is currently in public preview. It checks whether an LLM's text response is grounded in the source material the user supplied. It works in English only. Use it when a model must answer strictly from a given document. It helps you catch answers that drift from that source.

Which check to use. Analyze Text (moderation): Checks Hate, Sexual, Violence and Self-Harm severity in a block of text. Needs only the text. Use it to filter user comments or chat messages. Generally available.. Prompt Shields: Checks user input for jailbreak attempts and indirect prompt injection hidden in documents. Needs the prompt plus any attached documents. Use it to protect an LLM from attack. Generally available.. Groundedness detection: Checks whether an LLM answer is actually supported by the source text you gave it. Needs the source text, the query and the response. English only. Public preview.. Protected material detection: Checks generated text against known protected content such as song lyrics. Needs the generated text. Use it before publishing AI-written content. English only.
Four features, four different jobs. Pick the one that matches the risk you are checking for. Source: Microsoft Learn, Content Safety overview, checked 8 September 2026.

Try it yourself, with the real prerequisites

An older standalone Content Safety Studio quickstart used to promise a demo you could open with no sign-up. That page now redirects into Azure AI Foundry. The current documented path lists two prerequisites: an Azure account and an Azure AI resource. There is no free-floating demo view left. Set expectations correctly before you start.

The good part is the cost. Azure's pricing page confirms an F0 free tier. It includes 5,000 text records and 5,000 images per month, at no cost. A short exercise on a handful of sentences will not come close to that limit.

Follow these steps to run the exercise.

  1. Sign in to Azure AI Foundry.
  2. Create or select an Azure AI resource.
  3. Open Guardrails and controls, then choose Try it out.
  4. Select Moderate text content and paste in a sentence.
  5. Adjust the category severity settings to see the accept and reject boundary move.
  6. Run the test and read the four category scores it returns.

You can also make the same call directly through the REST API. This is useful once you want to check text from your own code instead of a browser panel.

POST {endpoint}/contentsafety/text:analyze?api-version=<current-version>
Content-Type: application/json
Ocp-Apim-Subscription-Key: <your-key>

{
  "text": "Sample text to analyze",
  "categories": ["Hate", "SelfHarm", "Sexual", "Violence"],
  "outputType": "FourSeverityLevels"
}
{
  "categoriesAnalysis": [
    { "category": "Hate", "severity": 0 },
    { "category": "SelfHarm", "severity": 0 },
    { "category": "Sexual", "severity": 0 },
    { "category": "Violence", "severity": 2 }
  ]
}

Each entry in categoriesAnalysis is one of the four harm categories with its own severity value. Your application then applies its own threshold per category to accept or reject the text, the same way the Try it out panel does. Do not hard-code the api-version shown above. Microsoft retires a public preview API 90 days after a newer preview ships. It also retires a general availability version 90 days after a newer compatible GA release. Check the current value in the quickstart before you build against it.

Reading your own results

Run this exercise with sentences you write yourself, ordered from mild to severe, and watch how each category behaves. Try a plain factual sentence first and expect all four categories to sit at 0. Add a mildly aggressive sentence next. Watch whether Violence or Hate moves to 2 while the others stay at 0.

Write a sentence describing a violent scene in more graphic detail. Check whether the Violence score climbs to 4 or 6, while Self-Harm and Sexual stay low. The exact score for any single sentence can vary as the underlying model changes. Treat this as a live exercise, not a fixed table of expected numbers. The pattern to notice is that categories move independently, not together.

Limits worth knowing before you rely on this

A few input limits shape what you can send to each feature. The Analyze Text API has a default maximum input length of 10,000 characters. Split longer text before you send it. Prompt Shields accepts a prompt of up to 10,000 characters. It also accepts up to five documents that together total 10,000 characters.

Groundedness detection allows up to 55,000 characters of grounding source per call. The text or query itself is capped at 7,500 characters, with a minimum length of three words. Protected material detection and groundedness detection work in English only. So does the standard custom-categories model. The other harm-category models are trained and tested on eight languages: Chinese, English, French, German, Spanish, Italian, Japanese and Portuguese. Other languages may still work, but at varying quality.

Where this fits in a learning path

Codemithra's course catalogue does not currently include a dedicated Azure or Microsoft AI course. This exercise is worth doing on your own, not through a batch lab. It teaches one habit that carries over to any cloud program. Test a safety layer yourself before you build on it, rather than trusting a product page alone.

That hands-on habit is exactly how Ethnus structures its AWS Solutions Architect Associate course. Students test each AWS service themselves in labs with unlimited attempts, the same habit this article recommends for Content Safety.

Try this Azure exercise first to get a feel for testing a cloud service directly. That AWS course is a structured next step from there. It is a separate, AWS-focused syllabus that does not include this Azure exercise as a lab.

Frequently asked questions

Do I need to write code to try Content Safety?

No. The Try it out panel inside Azure AI Foundry lets you paste text and read the category scores. You do not need to write a request yourself. Code is only needed once you want to call the API from your own application.

Is there a free way to test Content Safety?

Yes, in terms of cost. The F0 tier includes 5,000 text records and 5,000 images per month, at no charge. You still need an Azure account and an Azure AI resource to reach the Try it out panel.

What is the difference between Content Safety and Prompt Shields?

Content Safety's Analyze Text checks whether a piece of text itself contains harmful content across four categories. Prompt Shields instead checks whether a piece of text is trying to attack or manipulate the model reading it. This can happen through a jailbreak attempt or a hidden instruction in a document.

Can groundedness detection check a response in Hindi?

No. Groundedness detection currently works in English only. A response or source document in another language falls outside what it can check today.

Does Codemithra teach Azure AI Content Safety?

No. Codemithra's current course catalogue does not include a dedicated Azure or Microsoft AI course. This exercise is meant to be run independently on Microsoft's own documentation.

About the Author

Read More

Ethnus User Agreement

I agree to submit my personally identifiable information to Ethnus, who may use it to communicate regarding their events, courses, and other services through various media including phone calls, text messages, email, and social media. I also agree with Ethnus' Privacy Policy and Terms of Service.

I agree with Ethnus sharing my personal data, including email address, with Salesforce family of companies, who may contact me for sales and marketing purposes and as described in Salesforce's Privacy Statement.

Privacy Policy

This Privacy Notice describes how we collect and use your personal information in relation to Ethnus websites, applications, products, services, events, and experiences that reference this Privacy Notice (together, "Ethnus Offerings").

This Privacy Notice does not apply to the "content" processed, stored, or hosted by our customers using Ethnus Offerings in connection with an Ethnus account. This Privacy Notice also does not apply to any products, services, websites, or content that are offered by third parties or have their own privacy notice.

Personal Information We Collect

We collect your personal information in the course of providing Ethnus Offerings to you.

Here are the types of information we gather:

        a) Information You Give Us: We collect any information you provide in relation to Ethnus Offerings. Click here to see examples of information you give us. Example: Name, email, phone, etc.

        b) Automatic Information: We automatically collect certain types of information when you interact with Ethnus Offerings. Example: IP address, location, browser identity, etc.

        c) Information from Other Sources: We might collect information about you from other sources, including service providers, partners, and publicly available sources. Example: marketing analytics, keywords, etc.

How We Use Personal Information

We use your personal information to operate, provide, and improve Ethnus Offerings. Our purposes for using personal information include:

        a) Provide Ethnus Offerings: We may use your personal information to provide and deliver Ethnus Offerings and process transactions related to Ethnus Offerings, including registrations, subscriptions, purchases, and payments.

        b) Measure, Support, and Improve Ethnus Offerings: We use your personal information to measure use of, analyze the performance of, fix errors in, provide support for, improve, and develop Ethnus Offerings.

        c) Recommendations and Personalization: We use your personal information to recommend Ethnus Offerings that might be of interest to you, identify your preferences, and personalize your experience with Ethnus Offerings.

        d) Comply with Legal Obligations: In certain cases, we have a legal obligation to collect, use, or retain your personal information.

        e) Communicate with You: We use your personal information to communicate with you in relation to Ethnus Offerings via different channels (e.g., by phone, email, chat) and to respond to your requests.

        f) Marketing: We use your personal information to market and promote Ethnus Offerings. We might display interest-based ads for Ethnus Offerings.

        g) Purposes for Which We Seek Your Consent: We may also ask for your consent to use your personal information for a specific purpose that we communicate to you.

Cookies

To enable our systems to recognize your browser or device and to provide Ethnus Offerings, we use cookies.

How We Share Personal Information

Information about our customers is an important part of our business and we are not in the business of selling our customers' personal information to others. We share personal information only as described below and with Ethnus Consultancy Services Private Limited, . and its affiliates that are either subject to this Privacy Notice or follow practices at least as protective as those described in this Privacy Notice.

Transactions Involving Third Parties: We make available to you services, software, training, and content provided by third parties for use on or through Ethnus Offerings. You can tell when a third party is involved in your transactions, and we share information related to those transactions with that third party. For example, you can order services, software, and content from sellers using the Authorized Training Partner's marketplace and we provide those sellers information to facilitate your subscription, purchases, or support.

Other than as set out above, you will receive notice when personal information about you might be shared with third parties, and you will have an opportunity to choose not to share the information.

How We Secure Information

        a) We protect the security of your information during transmission to or from websites, applications, products, or services by using encryption protocols and software.

        b) We maintain physical, electronic, and procedural safeguards in connection with the collection, storage, and disclosure of personal information.

Internet Advertising and Third Parties

Ethnus Offerings may include third-party advertising and links to other websites and applications. Third party advertising partners may collect information about you when you interact with their content, advertising, or services. For more information about third-party advertising, including interest-based ads, please read our Interest-Based Ads notice.

Access and Choice

You have choices about the collection and use of your personal information. Many Ethnus Offerings include settings that provide you with options as to how your information is being used. You can choose not to provide certain information, but then you might not be able to take advantage of certain Ethnus Offerings.

        a) Communications: If you do not want to receive promotional messages from us, please unsubscribe or adjust your communication preferences in the emails.

        b) Advertising: If you don't want to see interest-based ads, please adjust your Advertising Preferences.

        c) Browser and Devices: The Help feature on most browsers and devices will tell you how to prevent your browser or device from accepting new cookies, how to have the browser notify you when you receive a new cookie, or how to disable cookies altogether.

Children's Personal Information

We don't provide Ethnus Offerings for purchase by children. If you're under 18, you may use Ethnus Offerings only with the involvement of a parent or guardian.

Retention of Personal Information

We keep your personal information to enable your continued use of Ethnus Offerings, for as long as it is required in order to fulfill the relevant purposes described in this Privacy Notice, as may be required by law (including for tax and accounting purposes), or as otherwise communicated to you. How long we retain specific personal information varies depending on the purpose for its use, and we may delete your personal information in accordance with applicable law.

Contacts, Notices, and Revisions

If you have any concern about privacy at Ethnus, you may also contact us at the addresses below:

Ethnus Consultancy Services Pvt Ltd,

SST Chambers, No.151/17/1 Second Floor, 36th Cross Rd, 5th Block, Jayanagar, Bengaluru, Karnataka 560041

Or, email us at [email protected]

Or call us at: +91 - 8929 334 324

You will find the updated contact information on our website: www.ethnus.com/contact/

If you interact with Ethnus Offerings on behalf of or through your organization, then your personal information may also be subject to your organization's privacy practices, and you should direct privacy inquiries to your organization.

Our business changes constantly, and our Privacy Notice may also change. You should check our website frequently to see recent changes. You can see the date on which the latest version of this Privacy Notice was posted. Unless stated otherwise, our current Privacy Notice applies to all personal information we have about you and your account. We stand behind the promises we make, however, and will never materially change our policies and practices to make them less protective of personal information collected in the past without informing affected customers and giving them a choice.

Terms & Conditions

This Privacy and Security Policy is provided for the benefit of customers and clients of Ethnus Consultancy Services Private Limited. ("Ethnus") as well as other consumers and parties who use Ethnus and/or its website(s), particularly codemithra.com ("Website", "www.codemithra.com", "Codemithra" or "Ethnus Codemithra"), and/or applications ("Apps") (collectively, "Ethnus Services" or "Ethnus Platform").

Since Ethnus serves several different audiences, customers find it helpful to read the Terms of Use that apply specifically to them based upon the purpose for which they use Ethnus. For this reason, we link to three separate agreements below for employer customers, job seeker customers, and staffing customers, respectively.

For your convenience, we define each of these audiences that Ethnus serves as follows:

"Employer Customer" means an entity using Ethnus Services that is seeking to hire an individual as an employee and/or independent contractor to be employed by it directly.

"Job Seeker Customer" means an individual using Ethnus Services who is seeking to be employed as an employee or independent contractor by an employer.

"Staffing Customer" means a staffing company using Ethnus Services that provides staffing services to their own Staffing Clients.

So long as your use of the Ethnus website and services remains within the scope of the particular audience or customer for which you began using Ethnus (e.g. a job seeker does not use Ethnus as an employer, or an employer does not use Ethnus as a job seeker), the complete Terms of Use applicable to your use of the Ethnus website and services is contained within the applicable Terms of Use linked below.

Employer Terms of Use

The following Terms of Use apply to any Ethnus Employer Customer seeking to hire employees or independent contractors for its own business. If you seek to find employees or independent contractors for the benefit of your clients (and not yourself), you need to review the Terms of Use specifically for our Ethnus Staffing Customers accessible at www.Codemithra.com/terms/staffing.

Ethnus, Inc. ("Ethnus") provides online services through which employers and staffing companies seeking employees and independent contractors can efficiently and effectively review and interview candidates. Ethnus provides these services and its suite of features and products through its Apps and Website (collectively, "Ethnus Services") subject to these terms of use ("Terms of Use") and the agreements incorporated herein.

Your privacy is very important to us. We designed our accompanying Privacy and Security Policy to provide important disclosures about how your information will be used by Ethnus in providing you Ethnus Services. These Terms of Use expressly incorporate our Privacy and Security Policy.

Please read these Terms of Use and our Privacy and Security Policy carefully before using any of the diverse Ethnus Services. By visiting the Website, installing any of the Apps, and/or using any of the Ethnus Services, you shall have affirmed your agreement to these Terms of Use.

1. Definitions

2. Modifications - Will Ethnus ever modify these Terms of Use?

3. Ethnus Services - What are the Ethnus Services?

4. Video Content and Services - How and when do you record videos?

5. Pricing, Payments, and Billing - How and when will I be billed for Ethnus Services?

6. Objectionable Content - What if I find content to be objectionable?

7. Customer Conduct

8. Intellectual Property

9. DMCA Policy

10. Reserved for Future Use

11. Resale of Services

12. Indemnification

13. Disclaimer of Warranties

14. Third Party Links and Products

15. Limitations of Liability

16. Exclusions and Limitations

17. General Terms

1. Definitions

"Consumer" means any individual or entity that uses any of the Ethnus Services. Where applicable, the term "Consumer" shall encompass all Ethnus Customers.

"Content" means all material, whether publicly posted or privately transmitted, available on or through any of the Ethnus Services.

"Customer" means, for purposes of this Terms of Use, You, a Job Seeker Customer.

"Customer Content" means any Content uploaded to and/or created through the Ethnus Services by a Ethnus Customer.

"Employer Customer" means an entity using Ethnus Services that is seeking to hire an individual as an employee and/or independent contractor to be employed by it directly.

"GDPR" means the European Union's General Data Protection Regulation.

"Job Seeker Customer" means an individual using Ethnus Services who is seeking to be employed as an employee or independent contractor by an employer.

"Profile Video" means a promotional video created by a Job Seeker Customer to promote themselves as a candidate employee and/or independent contractor. It is not an interview. The Job Seeker Customer completes this independently and on their own.

"Software" means any necessary software used in connection with the Ethnus Services.

"Ethnus Account" means an account associated with a Ethnus Customer who uses or has used Ethnus Services.

"Ethnus Content" means any Content excluding Customer Content and Video Content in which Ethnus does not participate.

"Ethnus Customer" means any person who uses or has used Ethnus Services including, but not limited to, Employer Customers, Job Seeker Customers, and Staffing Customers.

"Ethnus Services" means the suite of features, products and services offered through Ethnus, its Apps, its App Services, the Website, and the Website Services.

"Ethnus Trademarks" means any trademarks, tradenames, logos, and other commercial designs of Ethnus or licensed to Ethnus, whether or not formal registration exists including, but not limited to, "Ethnus."

"Staffing Clients" means third-party employer clients of Staffing Customers.

"Staffing Customer" means a staffing company using Ethnus Services that provides staffing services to their own Staffing Clients.

"Strategic Partners" means those trusted partners that Ethnus employs, engages, or retains to perform functions and/or provide services on its behalf.

"Sub Accounts" means subsidiary accounts created for or by an Employer Customer or Staffing Customer ("such as a consultant group or employer") under its primary account.

"Username" means the valid email address provided by each Ethnus Customer to be used as their username or login identification.

"Video Content" means any video content created by or associated with any Ethnus Customer accessible on and through Ethnus Services including, but not limited to, Profile Videos, Video Questions, Video Interviews, and Welcome Videos.

"Video Interview" means an interview completed through Ethnus Services using a video or "web" camera that an Employer Customer or Staffing Customer requests a Job Seeker Customer complete. A Video Interview may involve a Job Seeker Customer alone or with other participants from an Employer Customer or Staffing Customer. A Video Interview may be pre-recorded by a Job Seeker in response to questions or occur live at which time it would be recorded.

"Video Question" means a question recorded in video and audio that can be sent to potential employee and independent contractor candidates by an Employer Customer or Staffing Customer.

"Website" means all of the content, information and services (in any format whatsoever) accessible through the World Wide Web at the domain name Codemithra.com.

"Website Services" means the services provided by Ethnus through the website at the domain name Codemithra.com, hire.li, and any of our other websites that may be used from time to time