As Seen On
Recognized By
7 Facts about ARS §13-1502: Arizona’s Laws on Criminal Trespass Exploring the degrees of criminal trespass and legal repercussions.
Navigating the legal landscape of criminal trespass in Arizona can be complex. At Tamou Law Group PLLC, we believe in empowering our clients and the community with clear, accurate information. Today, we delve into Arizona Revised Statutes (ARS) §13-1502, which outlines the specifics of criminal trespass in the second degree, a charge that can have significant legal implications. Here are seven crucial facts you need to know:1
Definition and Scope
ARS §13-1502 defines criminal trespass in the second degree as knowingly entering or remaining unlawfully on any nonresidential property or in any fenced commercial yard. This statute is designed to protect property rights and ensure that individuals respect the boundaries set by property owners.2
The Legal Threshold for Criminal Trespass
Under Arizona law, the threshold for an act to be considered criminal trespass is relatively straightforward: if an individual knowingly enters or remains on property without lawful authority, they can be charged. This includes ignoring “No Trespassing” signs, fences, or any other clear indications that entry is not permitted.3
Penalties and Consequences
Criminal trespass in the second degree is classified as a Class 2 misdemeanor. This can carry penalties including up to four months in jail, fines of up to $750, and probation. The severity of the penalty often depends on the circumstances of the trespass and the individual’s criminal history.4
Aggravated Trespass
Arizona law also recognizes more severe forms of trespass, such as ARS §13-1503 (Criminal Trespass in the First Degree), which involves unlawfully entering or remaining in or on a residential structure or in a fenced residential yard. This is considered a more serious offense due to the invasion of residential privacy and carries stiffer penalties.5
Legal Defenses
Several defenses can be used in cases of criminal trespass, including lack of knowledge that the entry was unlawful, temporary necessity, or the presence of an easement or other legal right to be on the property. An experienced attorney can help navigate these defenses to protect your rights.6
Impact on Your Record
A criminal trespass conviction can have long-lasting effects on your record, potentially impacting employment opportunities, housing applications, and more. It’s crucial to address these charges head-on with competent legal representation to mitigate their impact.7
The Importance of Legal Representation
Facing criminal trespass charges in Arizona is a serious matter. At Tamou Law Group PLLC, we understand the intricacies of ARS §13-1502 and are committed to providing our clients with the robust defense they deserve. Our team is well-versed in property rights and criminal law, ensuring that your case is handled with the utmost care and professionalism.
Engage with Tamou Law Group PLLC
If you or someone you know is dealing with criminal trespass charges in Arizona, it’s essential to act swiftly and secure knowledgeable legal representation. The nuances of ARS §13-1502 require a strategic approach to defense, and our team at Tamou Law Group PLLC is here to guide you through every step of the process.Understanding your rights and the legal framework of criminal trespass in Arizona is the first step toward navigating these charges. With the right support and representation, it’s possible to achieve a favorable outcome and move forward.For a consultation or to discuss your case in detail, contact Tamou Law Group PLLC at 623-321-4699. Our experience in Arizona’s criminal trespass laws can provide the clarity and direction you need during this challenging time.
Awards & Recognition
Our recognition for Phoenix criminal defense 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 criminal defense 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.
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);
})();






