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.”

Jailbase
- Category: Open Data
Access Mugshots and Arrest Data with JailBase API
JailBase.com offers an extensive database of arrest and inmate data sourced from multiple counties throughout the United States. With their user-friendly web API, you can easily access this valuable information for your website or application. By utilizing their API, you can search for arrested and booked individuals in county jails through a REST interface. The results are returned in JSON (JSONP is also supported) format. While no developer key is required for API calls, the webservice does have rate limits to ensure quality service for all users.
Top 5 Benefits of Using JailBase API
- Easy Integration: With JailBase's simple API, you can seamlessly integrate arrest and inmate data into your website or application.
- Nationwide Coverage: The JailBase database sources arrest and inmate data from multiple counties across the United States, providing you with access to a wealth of information.
- User-Friendly Interface: The REST interface and JSON results format make it easy for developers to access the necessary data without complicated programming.
- No Developer Key Required: JailBase wants their API to be accessible for everyone, so no developer key is needed to access the database.
- Limited Rate Restrictions: While JailBase does have rate limits in place, their webservice is reliable and ensures quality service for all users.
Example JavaScript API Code:
fetch('https://api.jailbase.com/api/1/search/?source_id='+source_id+'&last_name='+last_name+'&first_name='+first_name, {method: 'GET', mode: 'cors'}) .then(res => res.json()) .then(data => console.log(data)) .catch(error => console.log('Error:', error));
In the above example code, we use the fetch() method to make a GET request to the JailBase API's search endpoint. We pass in three parameters: source_id, last_name and first_name, which are the source id, last name, and first name of the inmate we are searching for. The response from the API, which contains the search results, is then converted to JSON format, and the data is logged to the console.