The library provides convenient access to the Outscraper API from applications written in the Java language. Allows using Outscraper's services from your code.
Java 11 or later
Edit your build.gradle file
repositories {
maven { url "https://jitpack.io" }
}
dependencies {
implementation 'com.github.outscraper:outscraper-java:v2.0.0'
}
Add the JitPack repository to your build file
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
Add the dependency
<dependency>
<groupId>com.github.outscraper</groupId>
<artifactId>outscraper-java</artifactId>
<version>v2.0.0</version>
</dependency>
You'll need to manually install the following JARs:
OutscraperClient client = new OutscraperClient("SECRET_API_KEY");
Link to the profile page to create the API key
// Search for businesses in specific locations:
JSONArray results = client.googleMapsSearch(new HashMap<String, Object>() {{
put("query", "bars ny usa");
put("limit", 10);
}});
System.out.println(results);
// Get data of the specific place by id
JSONArray results = client.googleMapsSearch(new HashMap<String, Object>() {{
put("query", "rChIJrc9T9fpYwokRdvjYRHT8nI4");
put("language", "en");
}});
System.out.println(results);
// Get reviews of the specific place by id
JSONArray results = client.googleMapsReviews(new HashMap<String, Object>() {{
put("query", "rChIJrc9T9fpYwokRdvjYRHT8nI4");
put("reviewsLimit", 20);
put("language", "en");
}});
System.out.println(results);
// Search contacts from website
JSONArray results = client.emailsAndContacts(new HashMap<String, Object>() {{
put("query", "outscraper.com");
}});
System.out.println(results);
Bug reports and pull requests are welcome on GitHub at https://github.com/outscraper/outscraper-java.