As Seen On

Recognized By
Understanding Stolen Property Laws in Arizona
Â
Introduction
In Arizona, dealing with stolen property cases requires a thorough understanding of state laws and legal procedures. At Tamou Law Group PLLC, we are committed to providing comprehensive guidance on Arizona’s stolen property laws. This blog aims to enlighten you about these laws, ensuring you are well-informed about your rights and obligations.
Understanding Stolen Property Laws in Arizona
Stolen property laws in Arizona are detailed in the Arizona Revised Statutes (ARS), particularly under sections ARS 13-1802 (Theft), ARS 13-1803 (Unlawful Use of Means of Transportation), and ARS 13-1805 (Shoplifting). These statutes define what constitutes stolen property, the various categories of theft, and the legal ramifications of possessing, selling, or buying stolen goods. Understanding these laws is crucial for anyone involved in a property dispute or facing criminal charges related to theft.
Categories of Theft and Penalties
Arizona law categorizes theft based on the value and type of property stolen. For instance, theft of property worth less than $1,000 is generally treated as a misdemeanor, while higher values can result in felony charges. Additionally, the law considers factors like the manner of theft and the type of property stolen. Specific categories like shoplifting, vehicle theft, and burglary carry their own set of penalties and aggravating factors. The severity of the punishment also depends on the offender’s criminal history and the circumstances of the theft.
Legal Defenses Against Stolen Property Charges
Defending against stolen property charges in Arizona requires a nuanced approach. Common defenses include asserting a lack of intent to steal, claiming the property was obtained lawfully, or challenging the prosecution’s evidence. Each case is unique, and a successful defense strategy often involves a thorough investigation of the facts and an understanding of the intricacies of the law. At Tamou Law Group PLLC, our attorneys are adept at crafting robust defense strategies tailored to the specifics of each case.
Victim’s Rights and Recovery Options
Victims of theft have specific rights under Arizona law. These include the right to restitution, which can involve the return of stolen property or compensation for losses. The legal system offers various avenues for victims to pursue justice and recover their losses. Understanding and asserting these rights is vital for victims seeking to navigate the aftermath of theft.
How Tamou Law Group PLLC Can Help
Tamou Law Group PLLC is experienced in handling stolen property cases in Arizona. Our experienced attorneys provide comprehensive legal support, from representing theft victims to defending those accused of possessing stolen property. We guide our clients through the complexities of the legal process, ensuring their rights are upheld and their voices heard.
Conclusion
Stolen property laws in Arizona are complex, and navigating them requires professional legal assistance. Whether you are a victim of theft or facing related charges, understanding these laws is critical. For experienced legal guidance and representation in stolen property cases, contact Tamou Law Group PLLC at 623-321-4699. Our dedicated team is here to support you through every step of the legal journey.
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.
Frequently Asked Questions
Is possessing stolen property a felony in Arizona?
Possessing stolen property in Arizona is a felony when the property is worth $1,000 or more, and a class 1 misdemeanor below that amount. Under ARS 13-1802, knowingly controlling property you know or should know is stolen is prosecuted as theft, with the felony class rising as the value increases.
What class misdemeanor is shoplifting in Arizona?
Shoplifting property worth less than $1,000 is a class 1 misdemeanor in Arizona under ARS 13-1805, punishable by up to six months in jail and a $2,500 fine. It becomes a felony if the value is higher, a firearm is taken, a device is used, or you have qualifying prior convictions.
Does the State have to prove you knew property was stolen in Arizona?
Yes, to convict you of possessing stolen property, Arizona prosecutors must prove you knew or had reason to know the property was stolen. Buying goods innocently without red flags, such as paying fair market value to a legitimate seller, is a strong defense under ARS 13-1802.
How long does Arizona have to file stolen property charges?
Arizona must file felony theft or stolen property charges within seven years and misdemeanor charges within one year under ARS 13-107. The clock generally starts when the offense is discovered, so charges can sometimes be filed years after the property actually went missing.
Can a store detain you for suspected shoplifting in Arizona?
Yes, Arizona’s shopkeeper’s privilege under ARS 13-1805 lets a merchant detain a suspected shoplifter in a reasonable manner for a reasonable time to question them or summon police. Detention that becomes excessive, however, can expose the store to liability and does not prove guilt.
What is second degree burglary in Arizona?
Second degree burglary in Arizona is entering or remaining unlawfully in a residential structure with intent to commit theft or any felony inside, a class 3 felony under ARS 13-1507. A first offense carries a presumptive prison term of 3.5 years, though probation is often possible.
How is joyriding different from car theft in Arizona?
Joyriding is charged as unlawful use of means of transportation under ARS 13-1803, a class 5 felony, while stealing a vehicle intending to permanently keep it is theft of means of transportation, a class 3 felony under ARS 13-1814. The difference often turns on whether you intended to return the vehicle.
What happens if you sell stolen property in Arizona?
Selling stolen property in Arizona can be charged as trafficking in stolen property under ARS 13-2307, a class 2 or class 3 felony carrying possible prison time. Because knowledge and intent are heavily contested in these cases, an experienced defense attorney should review yours immediately. 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);
})();






