As Seen On

Recognized By
What Constitutes Indecent Exposure in Arizona?
Indecent exposure is a topic that is often met with both curiosity and concern. Understanding what constitutes this offense is crucial to ensuring that you are aware of your legal rights and obligations. This blog post is designed to provide clear and comprehensive information about the laws surrounding indecent exposure in Arizona.
What is Indecent Exposure?
Indecent exposure is a criminal offense defined by intentionally exposing one’s genitals or private parts to another person, and it can lead to serious legal consequences. In Arizona, this offense is regulated by specific statutes that outline the crime’s elements, penalties, and exceptions.
Arizona Statutes
According to Arizona Revised Statutes (A.R.S.) § 13-1402, indecent exposure occurs when a person exposes his or her genitals or anus, or a female exposes her breasts, and another person is present, and the exposure is likely to offend, annoy or alarm that person. The statute reads as follows:”A. A person commits indecent exposure if he or she exposes his or her genitals, anus or female areola or nipple, and another person is present, and the defendant is reckless about whether the other person, as a reasonable person, would be offended or alarmed by the act.”
Key Elements of Indecent Exposure
- Intentional Exposure: The exposure must be done intentionally. Accidental exposure is not covered under this law.
- Presence of Another Person: There must be at least one other person present during the exposure.
- Reckless Behavior: The offender must be reckless about whether the exposure would offend or alarm a reasonable person.
- Location and Context: The location and context of the exposure may also play a role in determining whether the behavior is considered indecent.
Penalties
The penalties for indecent exposure can vary depending on the circumstances:
- If the victim is 15 years old or older, it is considered a Class 1 misdemeanor, punishable by up to six months in jail and a fine of up to $2,500.
- If the victim is under 15 years old, the offense is considered a Class 6 felony, which can lead to more severe penalties, including imprisonment.
Defenses and Exceptions
There are certain defenses and exceptions that may apply in indecent exposure cases. For example:
- Consent from the other person
- Locations where exposure is expected, such as locker rooms or medical settings
- Artistic performances that include nudity
Conclusion
Understanding the law surrounding indecent exposure in Arizona is vital for all residents and visitors to the state. If you find yourself in a situation involving these matters, it’s essential to seek professional legal assistance.The Tamou Law Group PLLC has a team of experienced attorneys who specialize in criminal law, including indecent exposure cases in Arizona. Don’t hesitate to reach out to us at 623-321-4699. We’re here to provide you with experienced guidance and representation to protect your rights and ensure a fair legal process.
Awards & Recognition
Our recognition for Phoenix sex crime defense is independently verified, click any award to confirm it:
- National Trial Lawyers Top 100
- National Trial Lawyers Top 40 Under 40
- Elite Lawyer 2026 – Criminal Defense
- Super Lawyers – Southwest
- National College for DUI Defense (NCDD)
When you are looking for the best Phoenix sex crime lawyers, these are the independently verified credentials that matter, earned by Founding Attorney Michael Tamou and a full team of attorneys, including former prosecutors.
What Clients Say About Tamou Law
Real Google reviews from clients we have defended across Phoenix and Maricopa County. Every review is from a criminal defense client, never padded with non-legal work.
Frequently Asked Questions
Is indecent exposure a felony in Arizona?
Indecent exposure is usually a Class 1 misdemeanor in Arizona, but it becomes a Class 6 felony when the person exposed to is under 15 years old. Under A.R.S. 13-1402, repeat offenders with prior convictions can also face felony charges, which carry possible prison time instead of jail.
What must the State prove to convict someone of indecent exposure in Arizona?
To convict, prosecutors must prove you exposed your genitals, anus or female areola while another person was present and were reckless about whether a reasonable person would be offended or alarmed. All elements under A.R.S. 13-1402 must be proven beyond a reasonable doubt, and failure on any one defeats the charge.
How long can you go to jail for indecent exposure in Arizona?
A misdemeanor indecent exposure conviction carries up to six months in jail and a fine of up to $2,500 in Arizona. If the offense is a Class 6 felony because the victim was under 15, a first-time offender faces a prison range of roughly four months to two years.
Do you have to register as a sex offender for indecent exposure in Arizona?
A first indecent exposure conviction does not automatically require sex-offender registration in Arizona, though a judge has discretion to order it. Registration becomes mandatory for a third or subsequent conviction under A.R.S. 13-1402, so avoiding repeat convictions and negotiating charges carefully is critical.
Can you be charged with indecent exposure in Arizona if it was an accident?
No, accidental exposure is not a crime in Arizona because the statute requires recklessness about whether another person would be offended or alarmed. A wardrobe malfunction, a slipped towel, or unknowingly being visible through a window generally lacks the mental state A.R.S. 13-1402 demands.
Does breastfeeding count as indecent exposure in Arizona?
No, breastfeeding is expressly excluded from Arizona’s indecent exposure law, so a mother nursing a child cannot be charged under A.R.S. 13-1402. The statute also does not reach settings where nudity is expected, such as locker rooms, medical exams, or certain artistic performances.
How can an indecent exposure charge be dismissed in Arizona?
Indecent exposure charges are often dismissed or reduced when the State cannot prove recklessness, no one was actually present, the witness’s account is unreliable, or the exposure occurred where nudity is expected. Early defense work, including witness interviews and negotiating with prosecutors, frequently resolves these cases without conviction.
Does an out-of-state indecent exposure conviction require sex-offender registration in Arizona?
If you must register in the state where you were convicted, Arizona generally requires you to register after moving here, even for an out-of-state indecent exposure conviction. These interstate rules are complicated, so speak with an Arizona defense lawyer before relocating. Call 623-321-4699, 24/7.
Two Arizona Offices, One Team
We serve all of Maricopa County and the surrounding area, with free, confidential consultations 24/7 by phone and in-person meetings at either office by appointment.
Case Results Disclaimer: The results described on this page are based on specific facts and circumstances and do not guarantee or predict a similar outcome in any future case. Every case is different. Past results do not guarantee future results. No attorney-client relationship is formed by viewing this page or submitting a contact form until a written fee agreement has been signed. Tamou Law Group, PLLC is licensed to practice law in the State of Arizona. This website is for informational purposes only and does not constitute legal advice.
(function() {
function customizeConsultForm() {
var form = document.querySelector('#consult-form');
if (!form) return false;
var fields = form.querySelectorAll('.gfield');
var emailField = null;
var didWork = false;
fields.forEach(function(field) {
var label = field.querySelector('.gfield_label, label');
if (!label) return;
var labelText = (label.textContent || '').trim().toLowerCase();
if (labelText.indexOf('best way to reply') !== -1 || labelText.indexOf('preferred contact') !== -1) {
field.classList.add('tlg-hide-field');
field.querySelectorAll('input').forEach(function(input) {
input.checked = false;
input.removeAttribute('required');
});
didWork = true;
}
if (labelText.indexOf('email') !== -1) {
emailField = field;
field.classList.add('tlg-email-required');
field.querySelectorAll('input[type="email"], input[type="text"]').forEach(function(input) {
input.setAttribute('required', 'required');
input.setAttribute('aria-required', 'true');
});
didWork = true;
}
});
var gform = form.tagName === 'FORM' ? form : (form.querySelector('form') || form.closest('form'));
if (!gform) gform = document.querySelector('#consult-form form, form[id^="gform_"]');
if (gform && !gform.dataset.tlgSourceBound) {
gform.dataset.tlgSourceBound = '1';
var pageUrl = window.location.href;
var pageTitle = document.title || 'Phoenix White Collar Defense Lawyers';
var pagePath = window.location.pathname;
var sourceTag = '[Source: ' + pageTitle.replace(/\s*[,|].*$/, '') + ' | ' + pagePath + ']';
['source_page', 'page_url', 'lander_url'].forEach(function(name) {
var h = document.createElement('input');
h.type = 'hidden';
h.name = name;
h.value = pageUrl;
gform.appendChild(h);
});
var hp = document.createElement('input');
hp.type = 'hidden';
hp.name = 'source_path';
hp.value = pagePath;
gform.appendChild(hp);
function findMessageField() {
var match = null;
form.querySelectorAll('.gfield').forEach(function(field) {
var label = field.querySelector('.gfield_label, label');
if (!label) return;
var t = (label.textContent || '').trim().toLowerCase();
if (t.indexOf('message') !== -1 || t.indexOf('comment') !== -1 || t.indexOf('detail') !== -1 || t.indexOf('describe') !== -1 || t.indexOf('tell us') !== -1 || t.indexOf('your story') !== -1) {
match = field.querySelector('textarea, input[type="text"]');
}
});
if (!match) match = form.querySelector('textarea');
return match;
}
function prependSource() {
var textarea = findMessageField();
if (textarea && textarea.value.indexOf('[Source:') === -1) {
textarea.value = sourceTag + '\n\n' + (textarea.value || '');
}
}
gform.addEventListener('submit', prependSource, true);
var submitBtns = gform.querySelectorAll('input[type="submit"], button[type="submit"], .gform_button');
submitBtns.forEach(function(btn) {
btn.addEventListener('click', function() {
setTimeout(prependSource, 0);
prependSource();
}, true);
});
}
var submitBtn = form.querySelector('input[type="submit"], button[type="submit"]');
if (submitBtn && emailField && !submitBtn.dataset.tlgBound) {
submitBtn.dataset.tlgBound = '1';
submitBtn.addEventListener('click', function(e) {
var emailInput = emailField.querySelector('input[type="email"], input[type="text"]');
if (emailInput && !emailInput.value.trim()) {
e.preventDefault();
emailInput.focus();
emailInput.style.borderColor = '#c62828';
emailInput.style.boxShadow = '0 0 0 3px rgba(198,40,40,.15)';
}
});
}
return didWork;
}
if (document.readyState === 'loading') {
document.addEventListener('DOMContentLoaded', customizeConsultForm);
} else {
customizeConsultForm();
}
var attempts = 0;
var interval = setInterval(function() {
attempts++;
var done = customizeConsultForm();
if (done || attempts > 10) clearInterval(interval);
}, 500);
})();






