Integrates information on child labor and forced labor taken from the reports “Findings on the Worst Forms of Child Labor,” “List of Goods Produced by Child Labor or Forced Labor,” and “List of Products Produced by Forced or Indentured Child Labor.”

FBI Wanted API
- Category: Open Data
FBI Wanted API: Simplifying FBI Wanted Program Information Retrieval
The FBI Wanted API is a RESTful endpoint that enables developers to retrieve information on the FBI Wanted program easily. This API uses query parameters for options and delivers JSON responses.
Benefits of Using FBI Wanted API
- Saves Time: Developers no longer need to comb through pages of data to extract information about the FBI Wanted list.
- Easy Integration: The API is user-friendly and straightforward to integrate into your software and applications.
- Automatic Updates: The API receives automatic updates, so the information you receive is always up-to-date.
- Increased Speed: The API offers fast retrieval of FBI Wanted program information, allowing you to deliver results quickly.
- Customizable Results: The query parameters make it possible to retrieve specific details of the wanted individuals that match the criteria.
Here is an example code snippet in JavaScript to query the FBI Wanted API:
fetch('https://api.fbi.gov/wanted/v1/list', { method: 'get', headers: { 'Content-Type': 'application/json' }, params: { min_reward: 50000, page: 2, sort_on: 'dates_of_birth', sort_order: 'DESC' } }) .then(function(response) { // do something with the response console.log(response.json()); }) .catch(function(err) { // handle error console.error(err); });
Feel free to use this API to gather information and help raise awareness about individuals listed in the FBI's most wanted list.