Volusia County Inmate Records

Public database of recent bookings and inmate information

{% if inmates %}

About This Data

This information is sourced from the Volusia County Sheriff's Office public records. The data is updated regularly and represents recent bookings and inmate information.

Last updated: Today
{% for inmate in inmates %}
{% if inmate.photo_link %}
{{ inmate.first_name }} {{ inmate.last_name }}
{% else %}
{% endif %}

{{ inmate.last_name | default('N/A') }}{% if inmate.first_name %}, {{ inmate.first_name }}{% endif %} {% if inmate.middle_name %} {{ inmate.middle_name }}{% endif %} {% if inmate.suffix %} {{ inmate.suffix }}{% endif %}

{% if inmate.in_custody == 'Y' %} In Custody {% else %} Released {% endif %}
Booking #
{{ inmate.booking_num | default('N/A') }}
Inmate ID
{{ inmate.inmate_id | default('N/A') }}
Demographic
{{ inmate.sex }} {{ inmate.race }}
Booking Date
{{ inmate.booking_date | default('N/A') }}
Release Date
{{ inmate.release_date | default('N/A') }}
Charges
{{ inmate.charge_count }} Charge{% if inmate.charge_count != 1 %}s{% endif %}
{% if inmate.charges %}

Charges Information

    {% for charge in inmate.charges %}
  • {{ charge.charge_num | default('?') }}
    {{ charge.description | default('N/A') }}
    {% if charge.statute %} Statute: {{ charge.statute }} {% endif %} {% if charge.bond_amount and charge.bond_amount != "$0.00" %} Bond: {{ charge.bond_amount }} {% endif %} {% if charge.bond_type and charge.bond_type != " " %} Type: {{ charge.bond_type }} {% endif %} {% if charge.charge_status and charge.charge_status != " " %} Status: {{ charge.charge_status }} {% endif %} {% if charge.arrest_case and charge.arrest_case != " " %} Arrest Case: {{ charge.arrest_case }} {% endif %} {% if charge.court_case and charge.court_case != " " %} Court Case: {{ charge.court_case }} {% endif %} {% if charge.disposition and charge.disposition != " " %} Disposition: {{ charge.disposition }} {% endif %}
  • {% endfor %}
{% endif %}
{% endfor %}
Displaying {{ inmates|length }} inmates. Filtered results based on your criteria.
{% else %}

No Inmate Records Found

The inmate database appears to be empty. Please ensure the data scraping script has been run successfully.

Run the data collection script first

This interface relies on data collected from the Volusia County inmate records.

{% endif %}