As Seen On

Recognized By
7 Critical Points About Bail and Bonds in Arizona
Navigating the bail and bond system in Arizona can be complex, but understanding its key components is crucial for anyone facing the criminal justice system. Tamou Law Group PLLC is committed to providing you with comprehensive guidance on this topic. Here are seven critical points to consider:1
Understanding Bail and Bonds
Bail is a set amount of money that acts as insurance between the court and the person in jail (the defendant). Bonds, on the other hand, are bail paid on the defendant’s behalf by a bail bond company. In Arizona, the purpose of bail is not to punish the defendant but to ensure that they appear for all court proceedings.2
Types of Bonds in Arizona
Arizona law provides for various types of bonds, including:
- Cash Bonds: The full bail amount must be paid in cash. This amount is returned at the end of the trial, provided the defendant adheres to the terms of the bail.
- Surety Bonds: A bail bond company pays the bail in exchange for a fee (typically 10% of the bail amount) and possibly collateral. This fee is non-refundable.
- Property Bonds: In some cases, property can be used as collateral to secure the defendant’s release.
3
Setting Bail Amounts
Judges consider several factors when setting bail, including the severity of the offense, the defendant’s past criminal record, the risk of flight, and the safety of the community. Arizona’s statutes provide guidelines for bail amounts and conditions under ARS Title 13, Criminal Code, but judges have wide discretion within these guidelines.4
Bail Schedule
Arizona utilizes a bail schedule, which is a predetermined list of bail amounts for various offenses. This allows for a more streamlined process, especially during initial court appearances or arraignments. However, a defendant or their attorney can request a bail hearing to argue for lower bail or different conditions.5
Right to Bail
Most defendants in Arizona have the right to bail. However, there are exceptions for certain offenses, such as capital offenses or sexual assault, where bail can be denied if the prosecution can show clear and convincing evidence of the defendant’s guilt. This is outlined in the Arizona Constitution, Article 2, Section 22.6
Release on Own Recognizance (OR)
In some cases, a judge may release a defendant on their own recognizance (OR), meaning no bail is required. This decision is based on the defendant’s likelihood to return to court without the financial incentive of bail, considering factors such as ties to the community, employment, and family responsibilities.7
Legal Support for Bail Hearings
An experienced attorney can make a significant difference in bail hearings. They can present arguments regarding the defendant’s character, the circumstances of the offense, and other factors that might persuade a judge to reduce bail or alter release conditions.
Conclusion
The bail and bond system in Arizona is designed to balance the rights of the defendant with the safety of the community. Understanding this system is crucial for anyone navigating the criminal justice process. If you or a loved one need assistance with bail and bonds in Arizona, Tamou Law Group PLLC is here to help. Our team is committed to providing you with the guidance and support you need during this challenging time.For more information or to discuss your case, contact Tamou Law at 623-321-4699. Our knowledgeable team is ready to assist you with your legal needs and ensure that you understand every step of the bail and bond process in Arizona.
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);
})();






