As Seen On

Recognized By
5 Insights into ARS §13-2923: Stalking Laws in Arizona Exploring the legal definitions and penalties for stalking.
When it comes to personal safety and peace of mind, understanding the legal protections in place is paramount. In Arizona, one critical statute designed to safeguard individuals from unwelcome and threatening behaviors is ARS §13-2923, commonly referred to as the stalking law. This law provides clear definitions and repercussions for actions deemed as stalking, ensuring victims have a legal recourse. In this blog, we’ll delve into five key insights about Arizona’s stalking laws, providing you with a comprehensive understanding of your rights and the legal framework designed to protect them. Whether you’re seeking information for personal knowledge or you’re in a situation that requires legal assistance, Tamou Law Group PLLC is here to help.1
Definition of Stalking under Arizona Law
Under ARS §13-2923, stalking is defined as engaging in a course of conduct that causes another person to feel frightened, intimidated, threatened, harassed, or to suffer substantial emotional distress. This law recognizes stalking behaviors as not just physical following but also includes actions like repeatedly making unwanted communications, surveilling, or using other forms of electronic means to monitor someone without their consent. It’s crucial to understand that the law covers a broad spectrum of behaviors, acknowledging the diverse ways stalking can manifest in our digital age.2
The Importance of “Course of Conduct”
One of the key elements in stalking cases under Arizona law is the “course of conduct.” This term refers to a series of acts over a period, showing a continuity of purpose that is deemed as threatening or harassing. It’s not about a one-time incident but rather a pattern of behavior that creates a sustained feeling of fear or distress in the victim. This aspect of the law highlights the importance of documenting incidents, as a pattern needs to be established to prove stalking under legal standards.3
Criminal Penalties and Consequences
The penalties for stalking in Arizona can be severe, reflecting the serious nature of the offense. Depending on specific circumstances, such as the defendant’s criminal history, the presence of protective orders, or if the victim is under 15 years old, stalking can be classified as either a Class 5 or Class 3 felony. Convictions can lead to significant prison time, fines, and mandatory counseling or probation. These stringent penalties underscore the state’s commitment to protecting individuals from such invasive and harmful behaviors.4
Protective Measures and Orders of Protection
For victims of stalking, Arizona law provides mechanisms for immediate protection, such as injunctions against harassment and orders of protection. These legal tools can restrict the stalker from making any contact with the victim, directly or indirectly, and can be critical in ensuring the victim’s safety while the legal process unfolds. Understanding how to obtain and enforce these orders can be a crucial step in safeguarding oneself from further stalking behaviors.5
The Role of Evidence in Stalking Cases
In stalking cases, the collection and presentation of evidence are vital. Documentation of incidents, including dates, times, descriptions, and any communication records, can strengthen a case significantly. Evidence can also include witness testimonies, surveillance footage, or electronic records that demonstrate the stalker’s pattern of behavior. Engaging with legal professionals who are experienced in handling such cases can be instrumental in effectively gathering and presenting this evidence.
Conclusion
Stalking is a serious offense that can have profound effects on a person’s life and well-being. Understanding the legal protections available is the first step in combating such actions. If you or someone you know is dealing with a situation that may constitute stalking under ARS §13-2923, it’s essential to seek professional legal assistance.At Tamou Law Group PLLC, we’re dedicated to providing our clients with the knowledgeable and compassionate representation they need to navigate these challenging situations. Our team is well-versed in Arizona’s stalking laws and is here to guide you through every step of the legal process, ensuring your rights are protected.For more information or to discuss your case, please don’t hesitate to contact us at 623-321-4699. Your safety and peace of mind are our top priorities.
Awards & Recognition
Our recognition for Phoenix DUI 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 DUI 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);
})();






