{% extends "_section.html" %} {% block patent_section_class %}section-selected{% endblock %} {% block section_title %}Patent{% endblock %} {% block section_title_plural %}Patents{% endblock %} {% block section_get_url %}/api/patents/query?q{,f,o,s}{% endblock %} {% block section_post_url %}/api/patents/query{% endblock %} {% block section_introduction %}
This will search for patents 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 %} patent_id, patent_number, and patent_title {% endblock %} {% block section_field_example %} ["patent_number", "date"] {% endblock %} {% block section_sort_default %} patent_number {% endblock %} {% block section_sort_example %} [{"patent_number":"desc"}] {% endblock %} {% block section_get_url_example %} patents/query?q={"_gte":{"patent_date":"2007-01-04"}}&f=["patent_number","patent_date"] {% endblock %} {% block section_post_url_example %} patents/query {% endblock %} {% block section_post_body_example %} {"q":{"_gte":{"patent_date":"2007-01-04"}},"f":["patent_number","patent_date"]} {% endblock %} {% block section_examples %}Return all patent numbers and titles after 2006 where the inventor's last name was "Jobs" and the assignee was based in the US.
Return the patent number, processing time, and patent kind for patents granted after 2001 that have the word "international" in the abstract and have a foreign company or corporation assignee.