As Seen On
Recognized By
5 Important Details About Theft and Burglary Laws in Arizona
Â
Introduction
In the picturesque state of Arizona, known for its desert landscapes and vibrant cultural heritage, understanding the intricacies of the law is paramount for both residents and visitors. This is especially true when it comes to theft and burglary laws. Whether you’re a homeowner, a business owner, or just someone looking to stay informed, this guide, brought to you by Tamou Law Group PLLC, will delve into five crucial aspects of theft and burglary laws in Arizona. Our aim is to provide you with a comprehensive understanding to safeguard your rights and property.1
Defining Theft and Burglary in Arizona
Theft under Arizona law (ARS §13-1802) is a broad term that encompasses various acts, including unlawfully controlling another person’s property with the intent to deprive them of it. This can include physically taking something or even using deception or embezzlement.Burglary, on the other hand, is defined under ARS §13-1506 to §13-1508 and involves entering or remaining unlawfully in a structure with the intent to commit theft or any felony therein. There are three degrees of burglary in Arizona, each with its unique set of elements and penalties.2
Degrees of Burglary and Their Consequences
In Arizona, burglary is categorized into three degrees:
- First-Degree Burglary (ARS §13-1508): Involves the use of a deadly weapon, explosive, or dangerous instrument during the act. It’s a Class 2 felony for a residential structure and Class 3 for a non-residential structure.
- Second-Degree Burglary (ARS §13-1507): This occurs when a person unlawfully enters or remains in a residential structure with the intent to commit theft or any felony. It is a Class 3 felony.
- Third-Degree Burglary (ARS §13-1506): This is committed when a person unlawfully enters or remains in a non-residential structure or in a fenced commercial or residential yard. It is a Class 4 felony.
3
Penalties for Theft in Arizona
Penalties for theft (ARS §13-1802) in Arizona vary based on the value of the stolen property:
- Less than $1,000: Generally considered a misdemeanor, except in cases of stolen firearms or animals taken for animal fighting.
- $1,000 – $2,000: Class 6 felony.
- $2,000 – $3,000: Class 5 felony.
- Over $3,000: Class 2, 3, or 4 felony, depending on the amount.
Theft of any property, regardless of its value, directly from a person (like pickpocketing) is a Class 6 felony.4
Aggravating and Mitigating Factors
In Arizona, certain factors can either increase (aggravating) or decrease (mitigating) the severity of the punishment. Aggravating factors include a prior criminal record, the involvement of an accomplice, or the use of a weapon. Mitigating factors might include the defendant’s age, background, restitution to the victim, or lack of prior criminal history.5
Your Legal Rights and Defenses
If you’re accused of theft or burglary in Arizona, it’s vital to know your legal rights and potential defenses. These can include challenging the evidence, proving lack of intent, mistaken identity, or even lawful possession of the property in question. The complexity of these cases underlines the importance of having knowledgeable legal representation.
Conclusion
Understanding the nuances of theft and burglary laws in Arizona is crucial for protecting your rights and navigating the legal system. Whether you’re facing charges or just seeking to be more informed, Tamou Law Group PLLC is here to offer experienced legal advice and representation. With a commitment to justice and a deep understanding of Arizona laws, we’re prepared to guide you through every step of the process.For more information or to schedule a consultation, contact Tamou Law at 623-321-4699.
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);
})();






