Flagler County Inmate Records

Public database of recent bookings and inmate information

Clear
{% if inmates %}

About This Data

This information is sourced from the Flagler County Sheriff's Office public records. The data is updated regularly and represents recent bookings and inmate information. Showing {{ inmates|length }} of {{ total_inmates }} inmates (Page {{ page }} of {{ total_pages }}).

Last updated: Today
{% for inmate in inmates %}
Booking #
{{ inmate.booking_num | default('N/A') }}
Subject 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.seq_number | default(loop.index) }}
    {{ charge.charge_description | default('N/A') }}
    {% if charge.crime_class %} Class: {{ charge.crime_class }} {% endif %} {% if charge.counts %} Counts: {{ charge.counts }} {% endif %} {% if charge.offense_date %} Offense: {{ charge.offense_date }} {% endif %} {% if charge.disposition %} Disposition: {{ charge.disposition }} {% endif %} {% if charge.docket_number %} Docket: {{ charge.docket_number }} {% endif %} {% if charge.arresting_agencies %} Agency: {{ charge.arresting_agencies }} {% endif %}
  • {% endfor %}
{% endif %}
{% endfor %}
{% if total_pages > 1 %}
{% endif %} {% else %}

No Inmate Records Found

{% if search_name or search_race or search_gender %} No inmates match your search criteria. Try adjusting your filters or clearing them. {% else %} The inmate database appears to be empty. Please ensure the data scraping script has been run successfully. {% endif %}

Run the data collection script first

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

{% endif %}