{% extends "_section.html" %} {% block inventor_section_class %}section-selected{% endblock %} {% block section_title %}Inventor{% endblock %} {% block section_title_plural %}Inventors{% endblock %} {% block section_get_url %}/api/inventors/query?q{,f,o,s}{% endblock %} {% block section_post_url %}/api/inventors/query{% endblock %} {% block section_introduction %}
This will search for inventors matching the query string (q) and returning the data fields listed in the field string (f) sorted by the fields in the sort string (s) using options provided in the option string (o).
{% endblock %} {% block section_query_example %} {"inventor_last_name": "Whitney"} {% endblock %} {% block section_field_defaults %} inventor_id, inventor_first_name, and inventor_last_name {% endblock %} {% block section_field_example %} ["patent_number", "date"] {% endblock %} {% block section_sort_default %} inventor_key_id {% endblock %} {% block section_sort_example %} [{"inventor_last_name":"desc"}] {% endblock %} {% block section_get_url_example %} inventors/query?q={"inventor_last_name":"Young"}&f=["inventor_id","inventor_last_name","inventor_first_name","patent_number","patent_date"] {% endblock %} {% block section_post_url_example %} inventors/query {% endblock %} {% block section_post_body_example %} {"q":{"inventor_last_name":"Young"},"f":["inventor_id","inventor_last_name","inventor_first_name","patent_number","patent_date"]} {% endblock %} {% block section_examples %}Return the first name, last name, and associated patent title of all inventors who had patents granted between 2000 and 2006 where the patent title contains the word "bicycle".
Return the last known location of inventors with patents in NBER subcategory 25.
Return the organization names of assigness linked to inventors whose last known location was the city of Washington, D.C.